From e0bc8bbb52f3a9ac89cbd382ac772cb40075ae55 Mon Sep 17 00:00:00 2001 From: Tim Lovett Date: Thu, 24 Aug 2023 06:23:59 -0400 Subject: [PATCH 01/11] Indicator matter wip wip Additional changes thread support Fix memory issues Cleanup Data structure for storage Send events for virtual dashboard triggers Fix Refactor virtual dashboard controller logic wip Sensecap indicator matter support Update default config, update readme Additional bug fixes from testing --- .gitignore | 4 + examples/indicator_matter/CHANGELOG.md | 5 + examples/indicator_matter/CMakeLists.txt | 33 + examples/indicator_matter/README.md | 55 + .../docs/20202020_3841_qrcode.png | Bin 0 -> 333 bytes examples/indicator_matter/docs/page1.png | Bin 0 -> 509778 bytes examples/indicator_matter/docs/page2.png | Bin 0 -> 19333 bytes examples/indicator_matter/docs/page3.png | Bin 0 -> 76207 bytes examples/indicator_matter/docs/page4.png | Bin 0 -> 46028 bytes examples/indicator_matter/main/CMakeLists.txt | 24 + examples/indicator_matter/main/config.h | 35 + .../main/controller/indicator_controller.c | 307 + .../main/controller/indicator_controller.h | 21 + .../indicator_virtual_dashboard_controller.c | 141 + .../indicator_virtual_dashboard_controller.h | 17 + examples/indicator_matter/main/lv_port.c | 366 + examples/indicator_matter/main/lv_port.h | 35 + examples/indicator_matter/main/main.cpp | 77 + .../indicator_matter/main/matter_config.h | 42 + .../main/model/indicator_btn.c | 115 + .../main/model/indicator_btn.h | 19 + .../main/model/indicator_city.c | 809 ++ .../main/model/indicator_city.h | 17 + .../main/model/indicator_display.c | 321 + .../main/model/indicator_display.h | 26 + .../main/model/indicator_matter.cpp | 565 + .../main/model/indicator_matter.h | 19 + .../main/model/indicator_model.cpp | 18 + .../main/model/indicator_model.h | 16 + .../main/model/indicator_sensor.c | 1062 ++ .../main/model/indicator_sensor.h | 19 + .../main/model/indicator_storage.c | 53 + .../main/model/indicator_storage.h | 24 + .../main/model/indicator_time.c | 271 + .../main/model/indicator_time.h | 22 + .../main/model/indicator_virtual_dashboard.c | 134 + .../main/model/indicator_virtual_dashboard.h | 28 + .../indicator_matter/main/timeapi_cert.pem | 59 + examples/indicator_matter/main/ui/ui.c | 1764 +++ examples/indicator_matter/main/ui/ui.h | 203 + .../indicator_matter/main/ui/ui_font_font0.c | 2191 ++++ .../indicator_matter/main/ui/ui_font_font1.c | 3098 +++++ .../indicator_matter/main/ui/ui_font_font2.c | 3940 ++++++ .../indicator_matter/main/ui/ui_font_font3.c | 10128 ++++++++++++++++ .../indicator_matter/main/ui/ui_font_font4.c | 9720 +++++++++++++++ .../indicator_matter/main/ui/ui_helpers.c | 240 + .../indicator_matter/main/ui/ui_helpers.h | 109 + .../main/ui/ui_img_back_png.c | 28 + .../main/ui/ui_img_background_png.c | 3622 ++++++ .../indicator_matter/main/ui/ui_img_co2_png.c | 36 + .../main/ui/ui_img_display_png.c | 58 + .../main/ui/ui_img_high_light_png.c | 29 + .../main/ui/ui_img_humidity_1_png.c | 32 + .../main/ui/ui_img_humidity_2_png.c | 36 + .../main/ui/ui_img_location2_png.c | 24 + .../main/ui/ui_img_location_png.c | 32 + .../main/ui/ui_img_lock_png.c | 27 + .../main/ui/ui_img_low_light_png.c | 27 + .../main/ui/ui_img_matter_qrcode_png.c | 998 ++ .../main/ui/ui_img_setting_png.c | 28 + .../main/ui/ui_img_temp_1_png.c | 32 + .../main/ui/ui_img_temp_2_png.c | 36 + .../main/ui/ui_img_time_png.c | 71 + .../main/ui/ui_img_tvoc_png.c | 36 + .../main/ui/ui_img_wifi_1_png.c | 29 + .../main/ui/ui_img_wifi_2_png.c | 29 + .../main/ui/ui_img_wifi_3_png.c | 30 + .../main/ui/ui_img_wifi_disconet_png.c | 31 + examples/indicator_matter/main/util/cobs.c | 220 + examples/indicator_matter/main/util/cobs.h | 110 + .../main/util/indicator_util.c | 17 + .../main/util/indicator_util.h | 21 + .../main/view/indicator_view.c | 621 + .../main/view/indicator_view.h | 17 + examples/indicator_matter/main/view_data.h | 152 + examples/indicator_matter/partitions.csv | 8 + .../indicator_matter/partitions_thread.csv | 9 + examples/indicator_matter/sdkconfig.defaults | 151 + 78 files changed, 42749 insertions(+) create mode 100644 examples/indicator_matter/CHANGELOG.md create mode 100644 examples/indicator_matter/CMakeLists.txt create mode 100644 examples/indicator_matter/README.md create mode 100644 examples/indicator_matter/docs/20202020_3841_qrcode.png create mode 100644 examples/indicator_matter/docs/page1.png create mode 100644 examples/indicator_matter/docs/page2.png create mode 100644 examples/indicator_matter/docs/page3.png create mode 100644 examples/indicator_matter/docs/page4.png create mode 100644 examples/indicator_matter/main/CMakeLists.txt create mode 100644 examples/indicator_matter/main/config.h create mode 100644 examples/indicator_matter/main/controller/indicator_controller.c create mode 100644 examples/indicator_matter/main/controller/indicator_controller.h create mode 100644 examples/indicator_matter/main/controller/indicator_virtual_dashboard_controller.c create mode 100644 examples/indicator_matter/main/controller/indicator_virtual_dashboard_controller.h create mode 100644 examples/indicator_matter/main/lv_port.c create mode 100644 examples/indicator_matter/main/lv_port.h create mode 100644 examples/indicator_matter/main/main.cpp create mode 100644 examples/indicator_matter/main/matter_config.h create mode 100644 examples/indicator_matter/main/model/indicator_btn.c create mode 100644 examples/indicator_matter/main/model/indicator_btn.h create mode 100644 examples/indicator_matter/main/model/indicator_city.c create mode 100644 examples/indicator_matter/main/model/indicator_city.h create mode 100644 examples/indicator_matter/main/model/indicator_display.c create mode 100644 examples/indicator_matter/main/model/indicator_display.h create mode 100644 examples/indicator_matter/main/model/indicator_matter.cpp create mode 100644 examples/indicator_matter/main/model/indicator_matter.h create mode 100644 examples/indicator_matter/main/model/indicator_model.cpp create mode 100644 examples/indicator_matter/main/model/indicator_model.h create mode 100644 examples/indicator_matter/main/model/indicator_sensor.c create mode 100644 examples/indicator_matter/main/model/indicator_sensor.h create mode 100644 examples/indicator_matter/main/model/indicator_storage.c create mode 100644 examples/indicator_matter/main/model/indicator_storage.h create mode 100644 examples/indicator_matter/main/model/indicator_time.c create mode 100644 examples/indicator_matter/main/model/indicator_time.h create mode 100644 examples/indicator_matter/main/model/indicator_virtual_dashboard.c create mode 100644 examples/indicator_matter/main/model/indicator_virtual_dashboard.h create mode 100644 examples/indicator_matter/main/timeapi_cert.pem create mode 100644 examples/indicator_matter/main/ui/ui.c create mode 100644 examples/indicator_matter/main/ui/ui.h create mode 100644 examples/indicator_matter/main/ui/ui_font_font0.c create mode 100644 examples/indicator_matter/main/ui/ui_font_font1.c create mode 100644 examples/indicator_matter/main/ui/ui_font_font2.c create mode 100644 examples/indicator_matter/main/ui/ui_font_font3.c create mode 100644 examples/indicator_matter/main/ui/ui_font_font4.c create mode 100644 examples/indicator_matter/main/ui/ui_helpers.c create mode 100644 examples/indicator_matter/main/ui/ui_helpers.h create mode 100644 examples/indicator_matter/main/ui/ui_img_back_png.c create mode 100644 examples/indicator_matter/main/ui/ui_img_background_png.c create mode 100644 examples/indicator_matter/main/ui/ui_img_co2_png.c create mode 100644 examples/indicator_matter/main/ui/ui_img_display_png.c create mode 100644 examples/indicator_matter/main/ui/ui_img_high_light_png.c create mode 100644 examples/indicator_matter/main/ui/ui_img_humidity_1_png.c create mode 100644 examples/indicator_matter/main/ui/ui_img_humidity_2_png.c create mode 100644 examples/indicator_matter/main/ui/ui_img_location2_png.c create mode 100644 examples/indicator_matter/main/ui/ui_img_location_png.c create mode 100644 examples/indicator_matter/main/ui/ui_img_lock_png.c create mode 100644 examples/indicator_matter/main/ui/ui_img_low_light_png.c create mode 100644 examples/indicator_matter/main/ui/ui_img_matter_qrcode_png.c create mode 100644 examples/indicator_matter/main/ui/ui_img_setting_png.c create mode 100644 examples/indicator_matter/main/ui/ui_img_temp_1_png.c create mode 100644 examples/indicator_matter/main/ui/ui_img_temp_2_png.c create mode 100644 examples/indicator_matter/main/ui/ui_img_time_png.c create mode 100644 examples/indicator_matter/main/ui/ui_img_tvoc_png.c create mode 100644 examples/indicator_matter/main/ui/ui_img_wifi_1_png.c create mode 100644 examples/indicator_matter/main/ui/ui_img_wifi_2_png.c create mode 100644 examples/indicator_matter/main/ui/ui_img_wifi_3_png.c create mode 100644 examples/indicator_matter/main/ui/ui_img_wifi_disconet_png.c create mode 100644 examples/indicator_matter/main/util/cobs.c create mode 100644 examples/indicator_matter/main/util/cobs.h create mode 100644 examples/indicator_matter/main/util/indicator_util.c create mode 100644 examples/indicator_matter/main/util/indicator_util.h create mode 100644 examples/indicator_matter/main/view/indicator_view.c create mode 100644 examples/indicator_matter/main/view/indicator_view.h create mode 100644 examples/indicator_matter/main/view_data.h create mode 100644 examples/indicator_matter/partitions.csv create mode 100644 examples/indicator_matter/partitions_thread.csv create mode 100644 examples/indicator_matter/sdkconfig.defaults diff --git a/.gitignore b/.gitignore index 0d94411..432f340 100644 --- a/.gitignore +++ b/.gitignore @@ -6,6 +6,10 @@ bin sdkconfig sdkconfig.old dependencies.lock + +# Generated during build process +managed_components + # emacs .dir-locals.el diff --git a/examples/indicator_matter/CHANGELOG.md b/examples/indicator_matter/CHANGELOG.md new file mode 100644 index 0000000..b4d5888 --- /dev/null +++ b/examples/indicator_matter/CHANGELOG.md @@ -0,0 +1,5 @@ +## changelog + +### v1.0.0 ### + +* Initial version. \ No newline at end of file diff --git a/examples/indicator_matter/CMakeLists.txt b/examples/indicator_matter/CMakeLists.txt new file mode 100644 index 0000000..20c03ef --- /dev/null +++ b/examples/indicator_matter/CMakeLists.txt @@ -0,0 +1,33 @@ +cmake_minimum_required(VERSION 3.5) + +if(NOT DEFINED ENV{ESP_MATTER_PATH}) + message(FATAL_ERROR "Please set ESP_MATTER_PATH to the path of esp-matter repo") +endif(NOT DEFINED ENV{ESP_MATTER_PATH}) + +set(ENV{ESP_MATTER_DEVICE_PATH} $ENV{ESP_MATTER_PATH}/device_hal/device/esp32s3_devkit_c) + +set(PROJECT_VER "1.0") +set(PROJECT_VER_NUMBER 1) + +set(ESP_MATTER_PATH $ENV{ESP_MATTER_PATH}) +set(MATTER_SDK_PATH ${ESP_MATTER_PATH}/connectedhomeip/connectedhomeip) + +include($ENV{IDF_PATH}/tools/cmake/project.cmake) +include($ENV{ESP_MATTER_DEVICE_PATH}/esp_matter_device.cmake) + +set(EXTRA_COMPONENT_DIRS +"../../components" +"${MATTER_SDK_PATH}/config/esp32/components" +"${ESP_MATTER_PATH}/components" +) + +add_compile_options(-fdiagnostics-color=always -w) +add_compile_options(-fdata-sections) +add_compile_options(-ffunction-sections) +add_link_options(-Wl,-gc-sections) + +project(indicator_matter) + +idf_build_set_property(CXX_COMPILE_OPTIONS "-std=gnu++14;-Os;-DCHIP_HAVE_CONFIG_H" APPEND) +idf_build_set_property(C_COMPILE_OPTIONS "-Os" APPEND) +idf_build_set_property(COMPILE_OPTIONS "-Wno-format-nonliteral;-Wno-format-security" APPEND) \ No newline at end of file diff --git a/examples/indicator_matter/README.md b/examples/indicator_matter/README.md new file mode 100644 index 0000000..ead85ad --- /dev/null +++ b/examples/indicator_matter/README.md @@ -0,0 +1,55 @@ +# Indicator Matter Demo + +This demo builds off of the indicator basis demo to implement the Matter 1.0 specification for tracking of the associated sensor data. In addition the demo provides a pull down virtual interface for enabling some Matter device elements. + +In the case of this demo it does such by implementing two light dimmer devices and a door lock device. + +This demo mainly implements time, sensor data display, and some configuration functions. + +
+ + +
+ +## Function +- [x] Matter configuration +- [x] Home assistant dashboard +- [x] Time display. +- [x] CO2, tVOC, Temperature and Humidity data real-time display. +- [x] CO2, tVOC, Temperature and Humidity history data display. +- [x] Wifi config. +- [x] Display config. +- [x] time config. + + +## How to use example + +Please first read the [User Guide](https://wiki.seeedstudio.com/SenseCAP_Indicator_Get_Started) of the SenseCAP Indicator Board to learn about its software and hardware information. + + +### Dependencies + +In order to build this project you will need an environment setup to build esp-matter applications. Please read the [install guide](https://docs.espressif.com/projects/esp-matter/en/latest/esp32/developing.html) from Espressif to get your machine ready for installation. + +#### Versions + +The following library versions were used for this example: +- esp-idf: v5.0.1 +- esp-matter: v1.1 + +#### Preparing your environment + +1. Install esp-idf 5.0.1 +2. Install the patch as mentioned below in the build and flash section for the 120M Octal PSRAM +3. Install esp-matter +4. Export your environment for esp-idf and matter +5. Build, flash, and (optionally) monitor the deployment + +#### Build and Flash + +1. The project configure PSRAM with Octal 120M by default. please see [here](../../tools/patch/README.md#idf-patch) to enable `PSRAM Octal 120M` feature. +2. Run `idf.py -p PORT flash monitor` to build, flash and monitor the project. + +(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. diff --git a/examples/indicator_matter/docs/20202020_3841_qrcode.png b/examples/indicator_matter/docs/20202020_3841_qrcode.png new file mode 100644 index 0000000000000000000000000000000000000000..a6c6756b933b1cdf2507a1fe5b91245cfcc50670 GIT binary patch literal 333 zcmV-T0kZyyP)R=@)mqg-Ok3ardNoG4a z)J47PJ1a@$8&_@hC=&^P;81^TRwWA=)s?HY_)lWZLVV9vjI7}<38M%Nku*x0xMg>N z(U5^C!%ErJz1;R{5^@5?^90Rkh;Mjn86l+R;&YzmM9Rdu5iPl&>tHddKu!TtjgW?% zrcTUv8V#u_AdOO@GLe}q-lMvak%1zYo=8FvKF;;`KZ&Kp=F}NV#zdezq+F8r)w*gP favPg$@&I`OL!d>p{~4q!00000NkvXXu0mjfrxuT^ literal 0 HcmV?d00001 diff --git a/examples/indicator_matter/docs/page1.png b/examples/indicator_matter/docs/page1.png new file mode 100644 index 0000000000000000000000000000000000000000..d1b631caa69a0e981850c2ef50070c0ff0973512 GIT binary patch literal 509778 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

y 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

`e?jywrTA1LJ72j2uT?VrU6S3N!(6d?bj> zbQEI*>c^89p`h+)NcOVjE5#mrs1E@t!Gg~K03ZNKL_t*W0rsB5m;Q7|K(;*-T*>Aq zzP7g5a7>?x3jjX$S{9>oF+^gn*m($*MAnz^nMHM3>6s9Z-D_`e;?7U#Il2iR%%-TX>ZOEiUzO7DQ%2i3s9ZSAeA76a3J-JOqIK z9$>zasz4tsK-<^s@@*6j0r0+tYwwdZ(DC`a`g@^3$6d_7l);<7JBK6BrTexxQjX!t zY^e1Th?o;gu&)8YyL$TlEVIwgqa6|jPux13U|D*Bd$xy|6~mY{DLugPKpa7Y5a_C~ zOULb^=oPTuSVFN|5b!GsnE?xn(gU2s%^y|KD0-6G4rleWtmoA_g#r2T*GBNh?;R6A zOn9~kV^zy-`>W1keov1+yt0?8 zz#Dt!n&l4il8o($2PXw6+f4@M7D91X051h>2!K;lA^Cj8RRtB<*^ne~*RGev!};3V z>q3E^I-kXf*G6&ftqG82vUZ~+N#2Q5Nf{^#X7NZKJDQSqiQHNlp4UZsBqG zke!PlmJS-1>wCvo#e@!a{~vYdG+{6ReY*MWW=uU*5iEW{9{>+Y;Obf5RXa1+lKt!Q ze_g}M=LM87SWFxZ6hZrpv&R`fzgVZ^Wzs69&-76$(58F}q4Kae zU=d(Zk-rMtrRxQi{(0m$2nIrkS`h@L|J$en8z$afo|?|&4jR1{_@5^|z;&YlO%-UR zKyywpDIfsYRDgW|EZe>1h${WUhwGw5fBQmS0Q1*>Zyxh6k06>13g~*!LlXn^0e0mn zYJ;Tl=5Xy@{wM=!SOo0*?Rsc8JHiC4Y_?I}YNEJRM=<8#$a(em?M7^L9UI+%t#oOr z=xcd*FeZauV~Ui@*V3|#*bfTRuM<@IafjL$ZFDMK6xVB5ySXDhx&hBYr|F?yW7|1G8e(@^C`?dm&N?E^e>B`V|9$R18I3G z)WBW?_8hES&f}y1dkKr5=26eLq!)qK3l!IS{-4f>CuM3TD$V!IO3NnOuMqfv&jd() z3ljz06m5`DCeV@o467RwTG^EkR8_x`g9VJR8YigROsiyL7oOpntk1^0_}T89+Y79==rBvR#ge4 zEyrO6_|aoFct*cAXa0)95$fwXdoGEWzB4Thfk-@zAd^U>Gr5dcbWYghRMDT7jZoTb zznfC$Q}hJ<8Xkgx6;D*4olr%9Fq|g)auD`nh*=3F-IP$>NN8h^SJkTu?YZog(CjtP z6^jh2rrTI#5AdIC833$(Ll)z4W8K1vR4lCk_|4y+$Lx7lv;%UWH!EGCwte!S7Da76 zH69bM+j?28kqT=~G)lhD?{Ju<(1Df>ha{>8%{QN6;P24dhOujon5>BegyKI8*}p@P zpxm!-{n5MxF$~ru5J5v zN&J8>{{6bN+r9Y9Gr|lUJrWlt-GgEzUB9-dKy#ie05(0qroqf-4QPT*1w~08u9jNZ zST3Nv-Go;Mf+0tGkokET-&zqDE!Rfdw$TYNfu*)!yzjo~vE&q_(4&mvy%cCB4trhz zUMqk`iPhP%*ciFCE1-3It0WANK+}>J_qwW1O&dZMPojyCFs58LfL^nMR=$Q>zK(LC zCCm=CL@;qo5KjP4+B3m#w`nTAOa{o!8ul>aUQWMzr4neaU^hcSb1j2dW5AQt^~ZT^ zJ9HyZFJTH~(Vj2E7LKlm&81SWS~#o#?{}{|eBRIC2>1Y4H{n6X$j{0~sStfEh9l2r zaO&j=Oq@s}JnF!W@vzqn9M63A;5Nz~EPT3y_y0ZBUh|R-;{nbMf-0l*L}jo=6ZF(n zM1*_9x!0&dbK}u$rvgI%7?kZoHfiOAik@xNLv^!0Izs&+HSO378H}GGb(}Ob-zWI~pQ2AWBmlO^EYjf>enfP~H3NWaXci&r%@X{X z!ZyX0D3U=+_nUuk+yG#p+w#z=cCqmBHs1R`Z{Y6Lq6q47$uRRyfb2DULOIh!k2zfZ zDu)2zp>_4-3-v4d%H0%uDfSu`fc$E}@6hfobA|#ZR05uVC5vzVtK-N_MX~ZlSr|Mg zU(bkoG%LU&g7q>1Fl~^0VMG5M_!4`7`v6#b#`L`L*Uf{IgI~r?ecB>eI`#_m^?d3G z^|`v;6))dLy(x*%^mt5qfVY;blBAeA5tqRB?)4&UJ0R+=TnY=9cI4cgWt%|{SpFi9 z+aKl(0PbS)TuP{>&;R0-2<;kouB@&>>&p7%Wd3vr;3{f0Q1j$XU2&m$D%SXU;FiWOrA_C z1=`SYW&H9D@qvH;ua-m@@#Gt$0)VME!@`Ph)iW481K0$^`65^Zz+^}ms~&;z0_7zx zlwGB3Nn)>61ImRab~Y=LIHJ8{A`_B$Hku-Pu_yX74N{~n2c3W`>)3DU8vtOk4gGiV zZ7LNIGttGqUY>(oa{^LxHBp&%9ZiU}dR=LEXzjGotua`(wTISgq0{Z4*X~IiKow?( zx$tUJv~+3|wxd0o$NASmb*F*yb_=B(tP-r&o>Le7pV4OiVj0 zK<5{D{DO?e_sTBPcz{4Xkqyi5EBQu`0RLbq(#KjNhfh8nfiHgqhN+grtP(B*R({l* zFpSapxQJPuese;^v1ksiX)z6g%Uf;f{r$;bFGWpWtAEKEYO>{i(F(A)hsk2K(9Oj-y+O<8kvN zK(Gx6)~eNCPOnDI zLI_3zB61XP2dca*4r_en_fGnU9iy2RY^M%4NXlDNl|b416kt!1dVTU9Qzon1>-OiN zD5sl*2z!9PFBRZAT18fN`7%|td>W79hbbb&s*b4}-m`FMLTpDlu z&b$EJ&D#~B%%1)FsN9z?-rbNsVG5hE&r1QYQ4HEmZ=v*8wZH=~@XtzCB5nJr3qG3y_IP9ZiVq#)G zCPDPd)q?EsbYkGzS^j(gfE%?grq88t;`LFS|Ah(Z0baXN5y3kK_GDi0dYxtu!Js2a zHJ-mrMpd@iGGQZolsX*1+U+U=UI5c`2_!NudJg?w_&<7|a$Op)ZbSC`^6!japxQeZ z28sCHso$sZ3Cy`G=c?IL<-Ak?tUD(Y`4H=>{p6Z}W1&z7;93sy%UxW1r-~attm4*>D*}jl4H0xY z8WI5f#%~_S)TtC&1cn{$r{!5d4VlG@dA#@U?qKI`Rn*AYqCxGHkt6J-)`E%On&9_C z^P{pz(zQt2_5m=#t}i^tQ;g%zUU#6^u~6P=VQsM_XHzU55}I`+X-m&L+jF=#iXwCX zXxS8Ebu%M?>T8S5d{+o3U{(fOfTmQm%$Zr75gKc`2{e_Ry*|#6~DJ zp-R`=w{}oouc2A$N*e?Lc8m0ET6A_jgj^erun#;0m^kQIa-DXwjas>h(sl#2QcH9< zs3Py50fWzIRIwHH?n=T8ib)U1XYKNmdMsO8e5` zW&azEKtD6&CxvvmsB*gI3WHG_kr4;eXHz)$){JDQ+1pEhUv7}3IF?phSok=PkN>|V zQDf$V2RpON1i%dZxiLQb%^A5)WW*Lr2$#n6I?U$NDU)Updt}wD(?hk^mEJEKUC9j6uv~ht1pw(dXp73D0kD6@@|liQ1|3A* zko@W!I7qKjKz(GH1ZSpnW1)|9B0zKHC&4j>E^pM_>R{21k>IGKMWdYFd!u zG&Z7%AQI`Q_;M!3TqH&!NM+-Qrqp&I7`5OK2#07@U@Qw*C8l6b&_RH6N&1MT%MzBY zAehz{F#eBzAm&$+o;`@KHAtG4qvJJ1rV2o>O7ywh%dK6#( zLj!<4+AVY?yH0A`kN(YVEMLeEiFWNK*7ad-f8FdlqYtOo14dwgd-s6RL5ao$gXZ5& z3{6V&*jyZEzcq>YXc(o(*q{e^SQO`g)xUcIF!y-> zzWeZIZ};JsHx>NgkTa1zz+9v30ag`gb3XLJ{-fVlhg`qF000{TCfPf!9$FPve;dee zRAl{5ol47d*Kd}j5}PI<4%ujzn&>o0U$mrWJCSt+sBYe=2t{=AR8lHME1%_s0)0g& z&|S<303N}!-=07$6T|Cg2-_`+Zr`5!CwcX;p!TE5JkbJ{{jZ`^2N~&XYXDq~HRqDH;`M(|fDN zjzboZwuQ~xWnBC(cX9V}9<6dq#6n;FjboU4CZlYMXIm{ z0LvBRdGw$4S#f?iGnjwFx&1*H$332toPdQ4Au+AG|5xA0SF!-+^= zlv809Ze_t};XEzF!4cbZ1N}2zeipfgcXEw_-{sK|3h z#uHMt45ussr0kc~5K6`IT9$>5Whl@BfCm##nTI-5jF&j9Em{k;djP?yu>ovWn`qS= zawdo4F#(FLW?lOJvr}pLZn@jrD6EuG-E0czrA1VemGMeT)W%&&GC-)%(hk>z6qf3x zrg(u@icK^dDx9aWu}-7`bJL#}W~Q0S$le6=9?iMESb4D4hn{FsGA6O(b2JAjoWm6M zlk7c*ulYF`0j1zc<|h=8zM+XzDa^k(if6w$DHP96z>^+_@=8l8K>~np6y&>6Iz2lb z7m*eE=CX=Jx^QMDg87%yNKHl2fh#=}7Au}TX2x_mQFuonxG0lS-Odvg!mB^ZVewKP zn>UMMtJ0~f-`TEAnAt+Vya9elCFCBTU`H##(++0Or||4sGnhP+mY!g4!02|25R6_^ zlAade*a7M7xO=^ZN`cvW4~Y>qKaZt?s_-Y+d9dAR#pWU3Qd;=}G%W|^PNH@YsZb1w zU|4}LtHCy_(>?L+<2bYGfA@9)@BQ5!eEQxJu3cP1Zk>n8;bVUz;LjCvAo; zgj7Vwb)+&B4A~M8GjYORGB-x0SO<|r5Ye>uE5$P*#IsSv(_uu@ArbL#Ld?b*1xM!f zdu;)&p4AdNjDXXD%_;zU=9$Hpb)=LirAu)xGI+3Y`=biJ_b1D^^I-+OhNIqr1i*6q zQ`MRkU|VdRzUBkqt_k=J0RG{h-4t&{4WKn>^Vj6z0lB}K^W@Lkvp<>mIUIA48jHdW zIcPOJ0l*Wd69`3Y)N?ISus`=pGZ-Ts*B6B{Ehvwqmh9uhYVWNkfb1Uo5PcCWzv|aF zgWkv0p6n@mdw?Aya^q9-pR@;fmq?w^&Vg#7h4q^iq0FX6gNUVE>7OHT-CU~3**AWY z!bw1Gp(K@|)OcJf^OnV`Q5%KLmh2JPxu{SeS3fV}4gv5x+5PR17FcK0UU3a~kcGCFi65(<9Ue*D8V&9)f34LjI|<#KLOgsCG8r6HI;)QZA)W3rxo&6*gX;Gx|MVSBNItM8U^ z^T$Qp`6!R#YC}F7lPBq!uvUP-JCCW;DXDV$6<~s2%MD=TRs|RTc2!#Bs)ZURPA2g6 z-#;M*6=GT+xck*zeq&FVNF4v5jH~T2ep1pluWQ@3tc${06}4gm-8R2#0MSec;TU7C zpu{wMe{rWYQ;gG&0(~vp5fIEDraVLn!M|ZLKNb82xtG!PfWG&o7V71O+@EMXj9#aU z(l*8BdWfd9r#To0oQMr86hx=pLw%=#>P8*qwHhj$byV^-p*nXv`fY<`jJc2sb*I@y zVXJ}iW)qe5hWJraL0V!!%^K}d9e)~YWcQikvk->fNq&1+0e<8zcld;#=MnH#ZW%C0 z^(q^ZzKxgv*(_$xrQxQzV0);nG~}TE=szxE^?Fe@S7xXuj;BQwYW92rZq&xkT3rC* z$yYN-Psh-KEx=9zFtc*H1NlC|T=7(OE^XE%gZRZeo49+eBt0bzG=w(uG}iyVZrYGd zl4NRmaHvnP73yMaK87>jn8w@-BSQJ1TB7C9ZfK}CgI>s#&9Ahvy;#HTPf93mHek8z zoepE}g$zch1Q=6Fo6v0h2*HmT9`sp_mW>^-5Q2?_6GkQyN17lw6hYW=h4$?A*cV0s z+>?IPrQ3PD{kJ#plXn+!<-%QTt(W&T8i!AMyb(}-#h}lIIv-95;|Ttu?P5Te>g8H&|WuyuJl@Uap&VLy!&T2uykps zFDlfh4?f_;R3j*bLHrFHdcL6XR`XR>m36mnHGDlPQdWTAwRoMfM72WvMr zguXdGokE;_!cj7rSnX2a_cST$oFBs~(7u=v&+`G3^JyOLItL_OH|zsE1b_wp7)9)M zy^ZR2UEC%v{=>S&J*Qq9l{J+<5*FWW*U~eUU`})ve3ammR(H+!-PK(^&iz&fT`4{w z^Ya7uYvq);xTmyd>Vtegy9?VP0B(wV00FUrV1H}}i3e2^)_c$PtFGrD;JL7RE_N2% zxb~wWZhnv#-G}08P2QL1QD!!>3jnhMEG=nb+ZF(Yr}L`~-2U+n7Czm^%H^D}6TbO} zCo%UzR*Ec|XYkXew7p~kO#yHq;HvEmC%jE#DuBZ;G0sV;XkmWaxFZ#3#= zEFwa=j;3u`VGHeEKtL{c2_F|J#K_X zTuT)5I>6RK1y_H#E&=w|?V9+XwcDBzGZFnyX`J`^1RF@hs;~uwlCB7T9XXf6GjENF zvS&CGge_DvrI=GhiKlFW~a0hXD9#PA&;td{iL* z(yA;@&>}4a!2sMK>08VuTd+c;NV7uh3afx1IhGC~kqL|aRwC;PSY_LR8wmixp7a6w zSt1piW`Jumy)K16wk~}Cf4z-6pXBAhk7a_GJRO&>y>`8XW~C#C`tjGY_}U-L831gd z+X@%}oWr|+eoZRCDzCz?q%8>#Q$T;3<9c{)omQM*q_%RdP>uiGKbnv~-?@|*E1u{7 z=`1EsCWb`*zC-}rw;xiwynB6sRdM%eKE6Bvyqnq42OSoql9OMfhjs@J{Z~U8bE4D@T#6g?gopH3Hy|wsGa% z4Owe5&!%uf0PuwLZqo{d0+iKaOU1UP!%}(MxK$R#*|FIK!bt~Rv_aL@?K^c?j)RG3 z(xPTu-)f3VZ>8Lngqn&3xl+wi6}%^rTio9r6|g70mIKPO&mMW|_D7lyd^7+yV36B1 z?WDX;3){<8-29+`o#nbvxRT=`9DP2Gkz+AL(yH|DC#scLtrn95c*jbfR$!$KrGJJS z;3=&tIw;&n`y`^Fj;;aT-Ce2MTN(BneR~3UI|$gy5VFV;ve@6N>>$00_SKS+#~*^< zt`|a}=fHu5!b$_z-!I_Shuc{AI4AZ-d<6>{6gp))g;s!*h5~J}^&C5!mS1h;t~apw z@ixBr!7@To8(;gqc^rFr1i_?Il>23H7Do74Op=6Pm0s2^C>%xInI4MU4QwvurDZIc zjUb+;(4?v=Q+Gu`b-y|?_`N?yyk^I;&?N<$!U=@frl*=N4NPp&XSZ2wp|a5wN_Q|# z7Gn?HMoSz=nsrb7a}#4BaW}DpE?n0JTV+`YVV^Op>9n3ItWVR{lR}&kPImw0)Xic_vRR0{M94K&c;!r8eYc}C21=t zntQTI4Fg~S1zrHnGQHFqSpK|#FTTHuwW}pGiyfhcu~IC#!k?;&?C|*XWgGe~aRf7V z5E4|J`Nk-YzL>?9vX;jH03ZNKL_t*l&)$2#$(fzkfv3L8v2&x*0gW&iOwNg6NPA^j zRi;_s0oWw~4Fu)*n&XsfA=bZO`Rn-`z0j3AT zVHF440hVj5Y5!eL3Vd8lB#$3Og^*JLV37oX{q37q@dF@1IB_~tij0!=5M zpTJkY&0OONbh}i3Kru+y-`>YR|Ch_g0QUi~GmtrAfOF*6=V$m0d;m;IeQJg#gcErA z*A`Vkx%kGun%f@x+A&O@U_{O#+Rd#icWC{%hjB3m$Ik)2wFLSo8AjV#ZV`h-iSMUo zfIlhrc zA-7c%qZm)nl{tiP+C!z#z}AIN0$^i+k70T-p?*Xjln)3-f&rv+p2dFjfVxu zW8I6}xbbGa+mWP=WNqG}+k6}SnfZ&K~6sG1h7Wj4&=zExE z5Ac+G0l=;xZ?ZIjM>738m#SjtS3k(9Sg`Q;IF6r7W9E^BT%lRSlu2c~qdCIDqaT~d z>q8KwoME+j`JN6=daTwc+usF%eGuI@*YaC6{o;hra^8HQ`~rQ?irkFG@o136jAMdd z{<{Ofj;dC1R0UEGT^|6m4aVyszfr@-Z)DYz&NZL1WBwZF*Vudn6X5|S|%hgcL)|3Za$u&^Pw`AhQ&muK}gPS)K{UZSU0Js0>S4Sgo z=Mfmh0NFOce=sN5LoDNA`MC+a`diC5er{ZS4lD0v@x%Xe1#2JVbbw;-;_ORLTQ&h9=4&# zpr;RjAJ%moib)#I3D(KW`f`}@$exhQLL5uaPT=W(wSf6Y$(l#xAb9oNZLGe3fXxp} z$gS7VV8yRx?uo2oM$-{YFDG&Gg-Mxeop@pb>FF5S-L5v(I~`FqLfo|FTIlsnu%cer zoS^#$L>KJN15e1q_DTuw|J?>I{Fo+Kdm|I9Bb;7?>vx!Gv3t$+N;)}~eGIA#C~LLI zq!4A(Vax93p_TV04*<%7O_KQwi6y4N77J3zsj!p;ndvy<1j!Lk?wsHMKd#8-G?w;M zaC!09mvw;q$)B%b<3d4FGxoH9{okL$iDxEt-?r*@_~v2g$N%qDtpAkvz4Zj2n>L7;?yEnqp=)lyRcnCvR=zp2HfOs!;KQ);7}Yv>-EJ`sZ#2_m0muWtvTURzn= zsp+Wht-aNfB%@Qu(z;gzQBOc?^CJ5#_YX0^0>Iyxl@g0!p_FZ4>nc@Oz_Bx9y02T6 zmWr#T98Hjdm|99|%_wcvQLnVo4nxxD3C5aqddO~a?`g}ep6U{U2{OdiVstbJ_=^vK z2f6H2%5Z!;G^?z&QQvD|_1zra{_h*uU8$%ac<#{*9)EpWXPyMX5P)i>DM@<0$!5<0 zV(}+@C-!cX`nhGLyEQZrBPvf<3 zoyNjrV*+jjp?#NX_S3d{@@!!b^^gAKn(moLUYb#!^6{tBI@i#AobKf2oMk<@R0*&` zU&+?6^YH=7dv$c0LBtbLOf4`?fmzI!wm~N;u4Crr%yAl+xaq48024v%z8#oYoNF)w ziRaL;D>~GBs1_SI*e^-)91BGei-r+nZ*H@T;y#&RAexLIk`5!B2_i((N*0&dYSLr+ z0zCnm=(GvcyILQL*`hvob*GEm^(wZ{@9TLB&rE5q)N&2EL}yn^sO&e;s&(~#UCsk% zBxdW+&>DT;EAwaaiz5d3Ga1Iwi+q7cz;Cu6R2p4_t}2HMk7w}mZ!F{Fvr~vqMAiHI zkN^3y7^Pk-fMh0$V`owVz|Z~iB4$pf)ThzzT9CQ=ZrC$B41l$0bKMT;;Qi)zRs?{n z2b6=*{m;2QyHR_%IifxQ_IIR#)KpN#<;TgjH|9w?`pU1LP_>wjf&1%aT>R$^0f*db zU2fW{_WFiJE*L5`VN5y!@T0HJVCHlhp_KK0`UOt=1cQT0{}VZ>G+{|75LBFj48~lA z+20KHz5>7j?5|XCfjPi$?BT}wgHa695#FJ`^vs~G|8P#C4ge1yKl?D*ZG;Aqjpgb; zkESCblfEX>A?ryZ046&;&BJXJV>5A?Ah8dW<|P04e_fGNE!7+}*?IA|mUZI$$#>Rt z*ePafn0qvhZ~pNaDH$kFql;xZYs!x||Ku7rsQl=g=eRhDBOJTYOW%0}d;lDy>-ao- z^rrBY-(J!|bM=F=dQoT2BxJUy{Ar%Z`i*8s34r-7zEu7wucEUek{OqMpMeXst<}T# z-zPuG;X9Ad7n7#m%%FOE^Sc!lEy?P|$%Gw?>yVn?Y{>kIW_9s&5b3F~a+i13%mH>{ zDv0D*2%&gLxv1M$^ZLEHT4)aHSi6+dLHYQj zlQOen=r95F){T;`>--}bnNrfFx|DAsm#vD)I(8z7Xf%vkzJn?aeo8e1^79$38|D~1 z7@59lnEp;W-TS_Pw*$bRj{~&-`EBi#+0#&it!dK?EJ_&c+;`g^y$?EQ7n`{8)&YL_ z|Eyr;r%b&FsL1f>SEexkXj;*B{9S@Px)RswO+6SlYGqRUk_uD+2UkZ$>zV<-A~MVK4ajDu4k(! z+JmIWUe5sVh6BK4fZxfQ1e#qo1i&*9r3Ae8ty4PR^g4{(8^l4;i@?rxT`2_L_|7VF zn^jCNrLg$aIL>@^3X=;7wRrKP@H>;}Xf!(Zr`{DaTHG$FxZ?#w$V?@$aK>80lzbat z%#&TWKJ0aUVEo>`bF#+F3!n`Tb>7ExcV?^~ql}te-OuGBL3R(}0Hc#aNM@`pfLXkq zZUC`V9P#l8;*%js-bFam$V+W|9rRiabee56>p;EQK)GC!S!_EOL}{&to%8$3W1l*m zHlsWm$?nu~aIGX3Sm0MV%FgghbJHKsqbW#z${TqEfIsDcjh_B9I0F8{IVc<2%}0S43i!HxHG`0;;T!P@&dZ8};Iw2E4YMvmJ)cEkul8_; z_vhhVhw}D@0q~)(J~X{QA#&^I$_xQu*K(#qlUQPAA2LFT%y0macu;*u#~&NRQ@=Pb z6OkYO=c}5B^N&p8)XP(N?3b7q+rx#w+{KNzv)EZHNM89b{?l1i?Azc$p@T}cCHMEY z{@V=)fCnJ{a7pIp;bMNVzN6joRO?Wp7{!@ar|{ahP9QZE$La?qsdkQ?Njd;*Q6-1T zK3|%8f8WbYuzU$LBaocwPd^9!bLat9mMNJeI}#s`LAr|xmaj6BAT#K)L)$v!q8XAb za%Vj+#*PPhwjo3!o>UPVmrKN;%J1S+NdIyNrlbdipqn?hzPs?#`u@%m+R@LznC zv1>83+hOITZr?aigxaxFX{5*FKsO`+yth%%K07&+Qu;tBAp>65r%TTO+pqbZAIwB- zAb++lS+}ye7@@&`-{0K3*WWTF89$5PY+`%3p94%l#U)n4R?cVkeAhat9@JGBeDlAp zVdFgexfy{I!r1XBQnL{xro-CHYuOeWr8b((e(g~9Oh9QygOt9rMT#i^G&3ZN$)aT> z7L;_IQus)QF_JVzjA+f4@nM`lXA%GbbI^fd2b5J4Xa8zP3XhHq4>`W3Die+EiWhda z>mM|R8?h}dfSqV$Qw4x2fv!3UG#Oym1I&bpqyb=_17G_c0^l*rMOMUxPK#Dc2(Zh44b5W<5mi@~#NY*jXm`43G@GdB8)$6T$vgW0UEik7W&joR8r{|eq~iP%kynWKRSo(As+mJRdFq)&bKuw{Wde18C_= z2cA`U*{?ahki>~6$CTH&vtGc#dKJ0Vrkp|tu^eu{aA=5&wzjFB^#sp8lELD$6FB|q zw49~miLf>iGYRA}Z6MkJu!Gau^L&p@SGDi&gT{o&3sZoJ((@`VeSa6%-rC37`P>Kq ze+Ku_ZC_#t01uus#N_w?bx>G2^jiIb|4mGc1I9kXB`KOai*U-4O*rxF1itczr}Wo9 z`Y+c}*s5dU(J7pIc@pP-aZ1(t3xByM7uuaw9{``z{cHfZZ2*`(U55a$|DhjVY3e91 z+0V*r`$aGH=q(rke)U_+%AH>MpeTle3Z3*c8DL|O`t!tn$-~0@Pxs9~34rZz>L7;W zrH;0EsWnl+WdMMc_32`t?i7P${lhMGQ}>Uh6tK6pmL+4_LbY61ZuiWoG#ES8sSFh%!U158CEsuBG667qjVI*=K<#Wf*TnYKs(LMFm#6@V0+ASMirvNjR#~QZ%!8-T0D(<7Nu`!uH?LzY4z`>)gQrh7E&9*4{!ribc#xs% z%bNNm^L@Vl-G9w*rMk5Xv@ahP0CsU+oj?!uY8$1!hSoirer{eUDYb(B3ZZlWnPU;m zoJk{=2%}MKtM`?R9+`j2+<867j%tT??5@x1`UT5KG%TPSNqYi$luQ#Cvw%tIbVL$r z8Y5b}3nTT^3d6V``8jnJyXA$$0^6a8OP}yd4Gx&{9M#`B`bhz9uMq$y6HR5Y^#IcW z`s!OW!P--wIp=aT5khJ@EalK^zk3P`PmCMM(NC=K0Wc8sy2x+UaQ&?U_ExHB)LM#A zqM~79F{wF7pxCapP%pMn-EX0gZQ&r>LL?E!@}p@?FGLZ|u%Jtp*!iG3hLmq=HGd8Q z|3#U8)W11Gzl%cMvTOh-+kgWfi`}WvZk4v_4<*glT zUoN1u$LunKKVbS~5|6$%BMC2Ep((*6D5MJrb0YO>otD`fJDE(U+eUt;jo4GBdQDvZ%fF zvMTq@3Z*yxPBC;C^ed;1>*njSw=6zi zJgFki8~=4x1(~Vkgh`-(bwL&Ux4yF`MMr+Ora3%dfO}#>D%qwOsyF{+#Ta1s+55Qs zNWRO_UX3r)t8)!7lN#o9PUF?zIVpMO$_E9xiyk|ZF#sH-DGo26TaWwK@#eXC@1tYP zs{tJL06Z+6z5jQ(^Jno(M(iUL6U}3>)TIPIPHl4smt!jp`X!`}^QH)?uXp{* z0XnT7rsu{qp5ZiJ*ssA?+4EC8Z_5gS5K()}u{!UG8CNs-Pq{kx&F<*ASj@64< zeVN6_CiHsLLJ2uA~$JrNgxZ`OJ!W}DbwD``KUKQ*D(>xw$JC@YiF`a9kI z7clw&*zHUz(e_D0r!>2R$>Y7x#M?dd&Hz}gC2s#z+Yk#NUR!2jmA$sy^WXZ@6>MBA zs`Voj_Yj+gQXiiG7t5GAkw&xKQDOz74%zGN|9`7Nlcg?t4eKRuG+JoLRoK8X9f!d` zWKwCOr9X`SA$aEZvAvqCF##wG?7V(th{=rd-x--lRYGclMv3zTHE!Yz2%u`)qjw(lt60*LjrJr(J2GQDDY#0Fm*i_4`I0;~w(_S~Y0A z5RIOIdSSmRS7=2Dvh^rIHa`SJ!s<|DwtcOx%}baFZ_S$n<2%-y)2Z91`Wv#~;aH{@fTQj>om=(G*0|G-2Vc7712O4IG=qvar*{{*5ZOF66L( zqk`gILko#wBWmrwTjIkQ1TC?S!SfdZnyJd5D8iVUD8`RR6_Y@@GOME5jfxg{MjcUl zdRK!HZ5%`1x`BYXL!U`2dg1IVQ|hhec(Ny0n~pXb*GGECJkO!xfn>AXR6S(Zs<`-1 zyOKaNw0;DDAI9uD`uALVY8+qrgJmf--u#nw>|8G+F&)ypdhwSQb?|!oFV?a4)12n& z;uGWe7yt1QEI&UbVHqPJ*aJ)n^qW2dY&yGsT*JdEP96Q|{cOC$Cjsy&2Y}gDLIyaa z{#2UruxLi(8)Ik*5RLV_Ulv%*tD`I|1DMiMAC}qyb)ZxE?8npjkRO&n4*_7!(|&K@ zC*R*eF#CbmH4~o-P|nt|x1HBoIe&UeAfp@Tppvg+??y!|ANR!ML>Qqs-D`WOW;ZJLUjO7p3pX zd{|L_WY)7y>|UN+#mxi2{qZ^ zFd1TI#MAqMv3LYK7#+{u*)D#mZ~lIZ!6Jt2I&(Y%;6h&leG>qV2Nl7` zn7r5iz-NFdf%Zjce(M$eO*#UhOb}qkd^z7xpK?4!hBkm&(G(Pg?Xpa?=vOc{m%`-o zxZ;-BB+Rxql>p=&V=Wd+1#zl2wbXI7VU$w`Xm?nIpo?=?M%bNNS3S4Qb`LE^FU7+M zCZm#*^Es_*3$+}hC<92%@P3NPxXcSO7r85iqF#?K(XD`@$ka33?jjls%XfougyBR; zJ=Ajl_JHDM4L9D(V&_60`PHH%;gicLr8AWGt0-(#aPV{9jaN-7(KpxBe3}77{2m*27urC zZ|m5+Tm-1tSWe>HE3;yhF8ydvxtBa$pL}jY4DgBPrgU(vSGy=5G$qlb1bXuVWtawl z{l{IW_m^*2zfj-k&H&gkz=~~QBnsCWiv!^?S-9^3AgW2AZT%7ezEuzKk&c!@;6pvY zw*bJyZ1nKQ@ta2cb{$Hd_pg;C&rFOnZ=38C3${TqPUUP1Ti42Zx#N$})i$CmQ2yS| z^{PZpV{-|_$0%Q=9F%yfrx>EWjfxm}Iy*DgjCTh=@UtG z2^z{R6nAQ36l2K<7<&~-nGqf=mP!xubsfD7boTO!84C3+RVk7Yhj1R zRK8lvDYgjo2%co5B->-(Fp9rmKO<=7^%b+)V*C~arYU2m@_=Rv5r!2jRx zo)b&YLW-X!9q6&WSIP>q=Z!{BCS>$6Az{MkNA^#r#v}0JVbp^`RBAnx_L>^cZ~~H? zM^Z5{xRR8IJ$Ml-_%PF(XVLP0Ng2Jo2ZGU%IYP4^nR4?m5GF(IQF+4g^AHL$N4bit zKiUxhE^pQm4hJxMHmyGJ!gdAOl`;-KE~yt--%%v-gf{)`I^|9f&ifn%rBasy1x#^kccs0bPjFtd); z?80^jtMBFU!S~j%aWSu~w03*g!SM4PTVDpvjocwlMbAu~NMPZy49>ndEl~Q=|JuX) zM@6xzJX~mR?@I#j^qGAC?6WaJ*VEEfAz}8B6c(Qy$Jy6rFzfoz*bBtn)IVU{?ttg) zKb(Pt^<~q1BF9SakN0uy%>%5wYjFpo$Cqye7M~cytG~0Xd-$#Itn0AN9ycCzkDpF! zo^4$zDaL^tIuCZ={NHJUMFyCM1i)V|Gu=NMtT7)ei zMiZ@W56xCj%-_L{lEkpHCsRmGg+U^eprl#sO1@djw*&}gPbLMDxd;~z8d$$nH1n%R zC&bFJphOo~vV3*MCFPr-9R}Gt0VjAe!Qws1UQ+|W?I8x(0C1-l&>mRLF*=2} z4~Z!n1O;_(vq-ghv82IUI5&pmOcX5-+J`FJRk6clH`(*6_#=W~0`P-6wytKif6Xk6 z%S0;}XT-}8cmDwQcb@^~@VnL>e-rfqv9&rKp-BD?46xyE1Hc{~hS{H5?qL0V0dN21 zI@T}b(XMpF&=Nc?JvE8f|NS{Ezc7hlylvy;fTn@zq4J=ATp%cvlFY!iIXmZi{MBH1c1N#?bBF%dP3WPzLI&C>dVugq|g1p)$80$dUbbdS(7sq*pSJ~oYdcMZLLMfU z<2n}?wyMalS7eY?%h7bp5g2_Z?N7J%eGbna0pQPJkVkLv1s;Kc1lSgKJ1m(bg*{gO zP23mpN@m-WNdx7&TI?zI2%1AJfpL7CS&9iPGFblXnB={bl5s`lM$9TG^Ge_P^Htn< z_W+fHmKOep^BBZL`Fk|SBr_9}5kzJtf}UqlF}qi)D6+~(=@WZ#?(p62|n>ObArhPMC%{Ya>j&O5 zu3+@|@{Iu9I$!?n6FLad%w^-Fq7Hm?jgBW-Xfc@@%{Z73$^*_f|I?$2LE;_9oYVYv zO$YS%{%jrF9~B1DS^t3d00-nR--v(y-{@WdaEc6Y$a-AaA1c|W9A3!W-ai0Quc2Fi zXmEI_2e{At9Tm9I0_%*chFqX;Vu0_&F!H05@uNI7zgN|KM>C)U^w^v^(Q@yqw?(Y2rVQMVgV7B6#pSzwqyHzAj2#>6O3w%AnWXQ$2BG7qUq%2(+)9ngNU z`B6bG?3d&MeHZ{wIR==X81+g+5l78(Py0f8E{tf}0B|*D3^Wh#G-8a=iz4cb51HkC zP{+<{UVHKaW0WZA?(|IBdC*i$Q=`$Al4)u&rCv>oxVejq_FblXp8fp_rX%o2v-`~kmf+XPvV#H5lfot$;9cx~R6u>ViC(*lP$nqH z>o!P}CXpPbe zYrxp-_#R8#7}Evc=3B{?Y$;O)kZyou*7j z9?oM30K0A>jsSbO*z?R@uR^vW09-w2>!4#}U}I$))TaZ$Zq>K7-)&+vDIpWQ^z=B+ zzG_TxggwELpenJx79R!!~y(KY1eU>m($8s9bmeC@40F~XzAmv02-34nj|gy!Vi zf4YXvkC%=Z<$x;G0>Cd$;&lgrc{Hq+TF7nHu<~{m@BjBr>|EmS+s5q|ghmqR zhdXZ$0pQoB@#?ouYJFPyAg==>y#xe+odmka1H0A($4osS0QM!WCV@7GRy%n6r|zQ% zzFdW4xP4K- zNalU0E_{SWScd_yzq|T!eYbaN5$htmTE*obWU+Orh+?j;o?L=Mnkp4G8<;tj!B@Wh z2u{8@foQU)m?K_C+kkHxk^VqAzXYi-e9^sIGu&L&-}=X_{_EHo!f#RV&tZPovP`F( z;T4(4j->1S80?N!hiSjeaO>f9+42E0(guJD;I6!p#kIEvF-Y7m3;=uDAHMQOXR!42 zgc(kexn{pI8Q*q5L`AjK(EUUsP)eW~AH;&n_yT=WBIad6px&2ID}@<7k8_!M%w&Lh zj+ub?2XSD&shB}m8($LGO4oqJNc}GY;3DdK zbzS86Ow1hLx9ccv)=}K7qETup)0o%orjDYAyO|t*_Yna8B3+HqXL%SSFw73v0^gUD zITI##+Of)`c1kB#_77G!^`MX)W=}9(4QU-ev6N6w+|tuym_EtFMG8CDO8C)#y)1CX z${8g;5AEUH4f+0*=5T9~DMgy7f%$HfB6TIdVYSv+b0-wl3VAO_g`sivi{e8DGJcQs z)N&HbFHU0V*-6YlHG%YW9KDw11Y1SXFGjH9Z2*`B39B_*bu>r-yv>+`EUvvx88iWK z<)IDl=#7tV1O@;&fVaQv0I;iz40`fNgHf^3!}1GLc>O<~l?hhQ>&X}^w^_%^I|RTR z*tx_kQ+IM1F~CQ6;XcJH^PY~S!*YQ>BNylsNHPcb{i4it=FXUu*P~0S7AKc$?hbGd z22aVnT0zvnuWzj71D|1(^C`a6r+TVE0^bGt69CwmeEIX;R!PSkw}56PfLgwR;$BIh zaB^u}63JeOF(ov`3ZPbKp}1d$7X~Jm6G&zv2=+X**dxzO&>9cgKsXUZVus!qA;qZF zSwPyLX;xR!MKl5;TSoxPi=iIi3k9_pd{P2E(+9xp1LjCpa!u@AD@leqca}gkV!fh` zuGr&xv5iWuCG*L#rG!j{2%uV}Hi}zKNvRR(i8;O*3yC()Xw^3ZW`wTj=hDs7XBGV1&h=_iV|L}G5Hvyg#jMcmu0N-#q zz?`S1L<>3z^cgHYLjdea8cvsIw$LzRnh73sCMR2)NX6tE6CF3D0^O@w_+bH_KM(Xm z?sU>sTaMz$0zHJ(i!EKTa(3&vmR`SHs>w8q^8ILn{kRcjDl;lc%yYh}crV_IJY%wd zpYdg0)He}}NqXLF+UG3pI>tB18R#=AYyS>L1zE50Msu`xNFSMsltU(>%68k z)8cnKSgqi~KWt;`LLSxqnhHrLU!FxM7Q*(&d2C-Q2pm`T>$U>*36i@`IBQ)K5Xb-mlTK3#PS|s_4V;F3|a^QDpJG@n4_;%mJKUnnlOKJ@1EHRJ2y+_^1HgZ=CIIXohW+!| zJ=S+Vhj07y_ZGfCfdKIF7|y≶##(gfYMbz;uCrB!%=84Gfvv&UM>KF>M;$^>GIe z9hdQXI{@rjW$x)+?)ouq`vl+5T4@8+Cv~~f$r{TQWNiWW88P;@Yyav|0?Z!wmJZIe z-DPj?`0qYrBOf4m3Lgh1eT;7!r>|&4(0pOR-1$t^JsiYizFG{hqjeedm+Z)J4lO2|6Znvji z%iSAg^;FJ0GOqnXotcduTBV*qO0G~9Xqa70>ho~l5_6Yrp;m07QEjNeJ2sz`tkjv@ zn&j0+?$EWk+Z-|mc(_{j$$j$vum0VC(+Q2;4B+z}0Cr%W#RPuugSC>pM=t#Rp2qXs zH>Sj-Z+=w5?$r`J1S`+(T~ZV=<;_qw~+c3utE>ENOq`)8A308AOO0br9rXH^_$^qu7Z zvlWZJE+H&GKY>?%_aqh`A6K!T#6;Nv-$sQ!xNQ}J2vEnSS$K;gHW5OIUNGvLwbatC|-Hh>Xch#t}_LNQLWtdYv``UF)TGvOc@g zDlFJJi{FW_O$L}gHv6j;eE4@e*u0QOqtFllUVd>Jp?CAK}Z3KoF;=>w{60K5l$4YD@9l_LcN??U?HcL;Yk(>#m z$x!t!5TeAfFSWAlUw@Aj(-pP3Q++4`W?kV1K4$N=!G zQ+V}vmyi?y&I_2$K9X?~XfwR^W8Lfkc5e*r?Le@4fJwIqP|~2u{H1NZaqhZD41j$g zAqKcN$N@G9wEr+AjE?auTV@IJ)e$rXAa1%&l|g|;hSOITqr-1ThFe$?T4JFRtE81sJS(g_1|AD&^`a_Vt}Uv29cEo-w}8d%%f@H7jT+#U5+Ak~43&)JE-~ zh8E?`?T)Sui+hwJ^R?JB90~;`xn|#PwL~_Tz?d%8F+A(buM1ux;yA5PlD^ir$EabgwZr)$O$A|&`0$!BSNBRU)GEB8GNrk08Wtsjv4^|y%Un#5&*YaJ?VH)2;lpv6 z>FB>h=rHP}Xt}OVbNxDPF_1=^n^Ye%S{;2dx0Q}Mvp8N&@aDuJG zTK5IGb4_eq%8Bire`HL#zKVtC_RF-SDQy8dPs zD}4Y=Q&SJ&a1h7NX7I$nI)u7|iq_vLz9CUWL>9z`_8STSlY0=gzNmm~0{LZe=7As7xKGn)`t z_9C_hu{DfY#O#Zgi+ZK0_lrb>k~@!2$Hi0=?23u)+KSN;VL)>;7W8b)Zu`)Woat+b z0Jw|~{$>ZeA6H~ZM@ct7kK(cFkfAG!EmSoM0INnp<=zq901vjui~#V1jo;|EM;W!p)p7mpf&lQRG<$%33A4}sSxvhS zfS)A*KGO%l%pcubDeHiK{;#*NccnCBa^&vQFXra``49F(c*nj3ngDn%jz?ab!fU^` zti1450^nvBvvk>?WDl@QLFz9i1BUiam+(#?_z(l!Wnbm30Ps;3FCDyP9IlfbZ@rBzT2r91%|^~_c}DDBpCz-B86dwMf7Nx38|`lQnp zNS35{t1iZPb~%B>ctmU#-;=LHMt1vZUhg}9ZXBtJm@-~{2DrFS0PGmxAMExS;L|Ue z1X?jjuE|tx&xNKW&Qy`o?Kv?PQUAVAQZ*`V6t=5qHG2prqmt>ylR!8^07yX4laW@v zU~*>yjH#u#a*MmYpuk0!*{#_c4%Q0FH=R8_iR5I=-h*s05sk2oAJ=z>!@Jvm1~9@& zZ-=G9M|k!(0BFXPT?EasTxSk-{%RbuD|M{ApTmWJ*wWtl=+}>_$9LiJG)j97y#1%^ zxcbHcvKtjK@?ZHqN}wmjbjl>nwUpfM_CMT1I#6Tz&o|T1BU(HT-Mr>zHqd;SI|u=v z7myND8sl~ZYtlJ%qUe10h+hPJjBV~vV|ZNl&KZXp?O_e6?#&1 z)W6H~AX5zJrXGrh)U!(k6Io+2(`;#|7Z@)UL?jil+}{{`d)Zn{^D?UGsPv%GmYJ0C zj^%pRcA%Exc5C-BpnA)P-Rd?zLCCx2z3**c>*JEl^%Ch2rWRt#*{&5kI9RV??Lr=f z-MY-V)Iq2Ig`=7P4>Yev0QiB1Z}iKf5xCn3H~?&GrP~~|Lc4eX-zea2uk$7TxetJS z@s01o%`Ke=+hdQUaq5LBJn_vr%$!Wgyhv<^C}VRQRY8FZx+1FR0$s0zWWd6W zZuI!_jQ|1gOLT!o0Pp|ZM% zVt_TTMgaIBP8=TQJpr@KY!oM+AIEdQwxG=Q&GRMo_ANd=hRm_3V}FMZS}y`fPM4;SWK2=mO#*VE$+wkITS!c=XMWm8dqiO*xM*rEYKMPcw}z5 z1rfN`3r!rXlx41yW?uc6Gu#Oog-%Zj8fUQwveUA7qs*+u{Pk$=!*I|pP|eq|w_22< z>DXywm=$ZIA?hgyn9l6iC4t@*Q+51_F$e&Eg8(=oS6kCvnnaXlRa7-+*k73r3$#b)(dla-&-737}2PMg>$<1Z6R~4fPW5uJCj9Fh|#FnrTT2>mlNKsAe13zLHfe zOlCHT)I=PyOjH1;i?&k^*mw`RP(OJa2=2OhU|7Lqxu54lqGtgcD*^}vQi0wD^6NG2 zf$Qh<*t=emDd)4lwty4QP9QlM!NE!e?+^gLc_1asHD*g$+}Nt-PDZ+Iujc3sUG3>c-I7x}lQ>$;Nv?Jg z2nG=wi|V=YbV$-@F}|9IZYnweOeG@cYTJ3I5CAKW_%7F$bBpUNO|y2c6!FgY*0J?* zQS0*9ObmBbo^J_p&1Ze1GFM`mNCj+}jA4 z1lpC+Twb5=e#otst5ioO0YASFV|iTni7#KYbBBv3h+_Gf3B2?hOIUnr455S>8ujBp zG~f?n)i0 z@hG17g*i;0PKkvv#9{!|?*+bFOxvA4D-Vo4zX!N$0C+$;`Gq(CJwK~&ee>%Wz%d3G zW`ZSUr7?e&^BPc(EZvUx*UBdGjfarPgj7Tf$BhBC{zx*QbrpX2UyPBWnT?bZD%b`k zVPvl?dl4sQ({h{*#=ByxfUpj?y;c{sLIe5jvXo7eOKG{{_HBbHp(X&nSaLbQ!wm2w zo=^`k0kHK5^7=KZ9hCNX(C;ZSkN|+7n`S`%q2BX*eOJl?-V2Y6Ao_A|Aak!C`!NeGJujcFXnq|(J%!|046QCDo9;S00DSu^Yc9EBT^;Cf z^s&v8do*IZ-Uhe5`OZ%6&$RWB`2Rhm%*d2&#G-891COT zN(t}$>55~3s~De;d|-#dMGIlJBJd9x zV$XW}xn?@D#g;?s5f=k2M%?a^Aln@73V`kGsviA706SMpc;_!yv3;$KV3=9rF)Tfq zR18!l-@*2kGCqD|M{d!~8}Da1e=$$EBLI9fH|6M6M!S9X$ zumiwuBXuBH#uYK^XF2iI1fKu3c`Q7cK`0T>fymqoc^I?)J-&P+aQs{bFaE}o4(>ns^L6E0`ln962g#jJC5=Dv+$6sG?bC`wBC|x35yq|v z0RP<%_Q(LcVX}ObIAGk2nWp-PJIb

jwXyw+h_bem*ko7mqd3bafe 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≧?8j)0Jw~E+5EZ63jpr< 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

*_(Y@ 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 literal 0 HcmV?d00001 diff --git a/examples/indicator_matter/docs/page2.png b/examples/indicator_matter/docs/page2.png new file mode 100644 index 0000000000000000000000000000000000000000..e62aba3bd571e43591640a04e7fd517e679fd3d6 GIT binary patch literal 19333 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 literal 0 HcmV?d00001 diff --git a/examples/indicator_matter/docs/page3.png b/examples/indicator_matter/docs/page3.png new file mode 100644 index 0000000000000000000000000000000000000000..5e5f43b34984a23e421aedc6740ee618718761d2 GIT binary patch literal 76207 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 V1^GuTzlVi+sVHhH)W}(V{vSqot8M@Q literal 0 HcmV?d00001 diff --git a/examples/indicator_matter/main/CMakeLists.txt b/examples/indicator_matter/main/CMakeLists.txt new file mode 100644 index 0000000..91d19ac --- /dev/null +++ b/examples/indicator_matter/main/CMakeLists.txt @@ -0,0 +1,24 @@ +set(UI_DIR ./ui) +file(GLOB_RECURSE UI_SOURCES ${UI_DIR}/*.c) + +set(MODEL_DIR ./model) +file(GLOB_RECURSE MODEL_SOURCES ${MODEL_DIR}/*.c ${MODEL_DIR}/*.cpp) + +set(VIEW_DIR ./view) +file(GLOB_RECURSE VIEW_SOURCES ${VIEW_DIR}/*.c) + +set(CONTROLLER_DIR ./controller) + +file(GLOB_RECURSE CONTROLLER_SOURCES ${CONTROLLER_DIR}/*.c) + +set(UTIL_DIR ./util) +file(GLOB_RECURSE UTIL_SOURCES ${UTIL_DIR}/*.c) + +idf_component_register( + SRCS "main.cpp" "lv_port.c" ${UI_SOURCES} ${MODEL_SOURCES} ${VIEW_SOURCES} ${CONTROLLER_SOURCES} ${UTIL_SOURCES} + INCLUDE_DIRS "." ${UI_DIR} ${MODEL_DIR} ${VIEW_DIR} ${CONTROLLER_DIR} ${UTIL_DIR} + PRIV_INCLUDE_DIRS "." + EMBED_TXTFILES timeapi_cert.pem) + +set_property(TARGET ${COMPONENT_LIB} PROPERTY CXX_STANDARD 14) +target_compile_options(${COMPONENT_LIB} PRIVATE "-DCHIP_HAVE_CONFIG_H") \ No newline at end of file diff --git a/examples/indicator_matter/main/config.h b/examples/indicator_matter/main/config.h new file mode 100644 index 0000000..114b439 --- /dev/null +++ b/examples/indicator_matter/main/config.h @@ -0,0 +1,35 @@ + + +#ifndef CONFIG_H +#define CONFIG_H + + +#include +#include +#include "esp_system.h" +#include "esp_err.h" +#include "esp_log.h" +#include "esp_event_base.h" +#include "bsp_board.h" + +#include "freertos/FreeRTOS.h" +#include "freertos/task.h" + +#include "matter_config.h" + +#ifdef __cplusplus +extern "C" { +#endif + + +ESP_EVENT_DECLARE_BASE(VIEW_EVENT_BASE); + +extern esp_event_loop_handle_t view_event_handle; + + + +#ifdef __cplusplus +} +#endif + +#endif diff --git a/examples/indicator_matter/main/controller/indicator_controller.c b/examples/indicator_matter/main/controller/indicator_controller.c new file mode 100644 index 0000000..1291f87 --- /dev/null +++ b/examples/indicator_matter/main/controller/indicator_controller.c @@ -0,0 +1,307 @@ +#include "indicator_controller.h" +#include "lvgl.h" +#include "ui.h" + +#include "indicator_view.h" + +#include "ui_helpers.h" +#include +#include + +/********************** + * VARIABLES alias + **********************/ + + + +/********************** + * STATIC VARIABLES + **********************/ + +static const char *TAG = "controller"; + + +static lv_obj_t * calendar; +static lv_calendar_date_t _g_date_cfg; + + +/********************** time cfg **********************/ + +static void __btn_save_time_enable(void) +{ + lv_obj_add_flag(ui_time_save, LV_OBJ_FLAG_CLICKABLE); + lv_obj_set_style_bg_color(ui_time_save, lv_color_hex(0x529d53), LV_PART_MAIN | LV_STATE_DEFAULT ); +} + +static void calendar_event_cb(lv_event_t * e) +{ + lv_event_code_t code = lv_event_get_code(e); + lv_obj_t * ta = lv_event_get_user_data(e); + lv_obj_t * obj = lv_event_get_current_target(e); + if(code == LV_EVENT_VALUE_CHANGED) { + lv_calendar_date_t d; + lv_calendar_get_pressed_date(obj, &d); + + memcpy(&_g_date_cfg, &d, sizeof(lv_calendar_date_t)); + + char buf[32]; + lv_snprintf(buf, sizeof(buf), "%02d/%02d/%d", d.day, d.month, d.year); + lv_textarea_set_text(ta, buf); + + lv_obj_del(calendar); + calendar = NULL; + lv_obj_clear_flag(lv_layer_top(), LV_OBJ_FLAG_CLICKABLE); + lv_obj_set_style_bg_opa(lv_layer_top(), LV_OPA_TRANSP, 0); + + __btn_save_time_enable(); + } +} + +static void data_cfg_event_cb(lv_event_t * e) +{ + lv_event_code_t code = lv_event_get_code(e); + lv_obj_t * ta = lv_event_get_target(e); + + if(code == LV_EVENT_FOCUSED) { + if(lv_indev_get_type(lv_indev_get_act()) == LV_INDEV_TYPE_POINTER) { + if(calendar == NULL) { + lv_obj_add_flag(lv_layer_top(), LV_OBJ_FLAG_CLICKABLE); + calendar = lv_calendar_create(lv_layer_top()); + lv_obj_set_style_bg_opa(lv_layer_top(), LV_OPA_50, 0); + lv_obj_set_style_bg_color(lv_layer_top(), lv_palette_main(LV_PALETTE_GREY), 0); + lv_obj_set_size(calendar, 300, 330); + + int year = 2023; + int mon = 1; + int day = 1; + char *p_date = lv_textarea_get_text(ui_date_cfg); + if( p_date !=NULL) { + sscanf(p_date, "%02d/%02d/%d", &day, &mon, &year ); + ESP_LOGI(TAG, "calendar: %d/%d/%d", p_date, year,mon, day); + } + lv_calendar_set_today_date(calendar, year, mon, day); + lv_calendar_set_showed_date(calendar, year, mon); + lv_obj_align(calendar, LV_ALIGN_CENTER, 0, 30); + lv_obj_add_event_cb(calendar, calendar_event_cb, LV_EVENT_ALL, ta); + + lv_calendar_header_dropdown_create(calendar); + } + } + } +} + +static void __time_cfg_apply(bool set_time) +{ + struct view_data_time_cfg cfg; + char buf[32]; + + lv_dropdown_get_selected_str( ui_time_format_cfg, buf, sizeof(buf)); + if( strcmp(buf, "12H") == 0 ) { + cfg.time_format_24 = false; + } else { + cfg.time_format_24 = true; + } + + if( lv_obj_has_state( ui_auto_update_cfg, LV_STATE_CHECKED) ) { + cfg.auto_update = true; + } else { + cfg.auto_update = false; + } + + //time + struct tm tm; + memset(&tm, 0 , sizeof(struct tm)); + + tm.tm_year = _g_date_cfg.year > 1900 ? (_g_date_cfg.year- 1900): 0; + tm.tm_mon = _g_date_cfg.month - 1; //todo + tm.tm_mday = _g_date_cfg.day; + //ESP_LOGI(TAG, "date: %02d/%02d/%d", _g_date_cfg.month, _g_date_cfg.day, _g_date_cfg.year); + + + lv_roller_get_selected_str(ui_hour_cfg, buf, sizeof(buf)); + //ESP_LOGI( TAG,"hour: %s\n", buf); + tm.tm_hour = atoi(buf); + + lv_roller_get_selected_str(ui_min_cfg, buf, sizeof(buf)); + //ESP_LOGI( TAG,"min: %s\n", buf); + tm.tm_min = atoi(buf); + + lv_roller_get_selected_str(ui_sec_cfg, buf, sizeof(buf)); + //ESP_LOGI( TAG,"sec: %s\n", buf); + tm.tm_sec = atoi(buf); + + cfg.time = mktime(&tm); + cfg.set_time = set_time; + + // zone + int8_t zone; + if( lv_obj_has_state( ui_zone_auto_update_cfg, LV_STATE_CHECKED) ) { + cfg.auto_update_zone = true; + } else { + cfg.auto_update_zone = false; + } + + lv_dropdown_get_selected_str(ui_time_zone_sign_cfg_, buf, sizeof(buf)); + if( strcmp(buf, "-") == 0 ) { + lv_dropdown_get_selected_str(ui_time_zone_num_cfg, buf, sizeof(buf)); + zone = 0 - atoi(buf); + } else { + lv_dropdown_get_selected_str(ui_time_zone_num_cfg, buf, sizeof(buf)); + zone = atoi(buf); + } + cfg.zone = zone; + + if( lv_obj_has_state( ui_daylight_cfg, LV_STATE_CHECKED) ) { + cfg.daylight = true; + } else { + cfg.daylight = false; + } + esp_event_post_to(view_event_handle, VIEW_EVENT_BASE, VIEW_EVENT_TIME_CFG_APPLY, &cfg, sizeof(cfg), portMAX_DELAY); +} + +static void __time_cfg_apply_event_cb(lv_event_t * e) +{ + __time_cfg_apply(false); +} + +static void __time_save_event_cb(lv_event_t * e) +{ + lv_event_code_t code = lv_event_get_code(e); + lv_obj_t * ta = lv_event_get_target(e); + if(code == LV_EVENT_CLICKED) { + __time_cfg_apply(true); + lv_obj_clear_flag(ui_time_save, LV_OBJ_FLAG_CLICKABLE); + lv_obj_set_style_bg_color(ui_time_save, lv_color_hex(0x6F6F6F), LV_PART_MAIN | LV_STATE_DEFAULT ); + } +} +static void __hour_min_sec_cfg_event_cb(lv_event_t * e) +{ + lv_event_code_t code = lv_event_get_code(e); + lv_obj_t * ta = lv_event_get_target(e); + if(code == LV_EVENT_VALUE_CHANGED) { + __btn_save_time_enable(); + } +} + +void ui_event_zone_auto_update_cfg( lv_event_t * e) { +lv_event_code_t event_code = lv_event_get_code(e);lv_obj_t * target = lv_event_get_target(e); +if ( event_code == LV_EVENT_VALUE_CHANGED && lv_obj_has_state(target,LV_STATE_CHECKED) ) { + _ui_flag_modify( ui_time_zone, LV_OBJ_FLAG_HIDDEN, _UI_MODIFY_FLAG_ADD); +} +if ( event_code == LV_EVENT_VALUE_CHANGED && !lv_obj_has_state(target,LV_STATE_CHECKED) ) { + _ui_flag_modify( ui_time_zone, LV_OBJ_FLAG_HIDDEN, _UI_MODIFY_FLAG_REMOVE); +} +} + +void ui_event_min( lv_event_t * e) { + char buf[32]; + lv_roller_get_selected_str(ui_min_cfg, buf, sizeof(buf)); + int tm_min = atoi(buf); + ESP_LOGI( TAG, "min: %s (%d)\n", buf, tm_min); +} + +static void __time_cfg_event_init(void) +{ + _g_date_cfg.year=2023; + _g_date_cfg.month=1; + _g_date_cfg.day=1; + + lv_obj_add_event_cb(ui_zone_auto_update_cfg, ui_event_zone_auto_update_cfg, LV_EVENT_VALUE_CHANGED, NULL); + lv_obj_add_event_cb(ui_auto_update_cfg, ui_event_auto_update_cfg, LV_EVENT_VALUE_CHANGED, NULL); + + lv_obj_add_event_cb(ui_date_cfg, data_cfg_event_cb, LV_EVENT_ALL, NULL); + lv_obj_add_event_cb(ui_back2, __time_cfg_apply_event_cb, LV_EVENT_PRESSED, NULL); + lv_obj_add_event_cb(ui_time_save, __time_save_event_cb, LV_EVENT_CLICKED, NULL); + + lv_obj_add_event_cb(ui_hour_cfg, __hour_min_sec_cfg_event_cb, LV_EVENT_VALUE_CHANGED, NULL); + lv_obj_add_event_cb(ui_min_cfg, __hour_min_sec_cfg_event_cb, LV_EVENT_VALUE_CHANGED, NULL); + lv_obj_add_event_cb(ui_sec_cfg, __hour_min_sec_cfg_event_cb, LV_EVENT_VALUE_CHANGED, NULL); +} + + +/********************** display cfg **********************/ +static void __brighness_cfg_event_cb(lv_event_t * e) +{ + lv_obj_t * slider = lv_event_get_target(e); + int32_t value = lv_slider_get_value(slider); + esp_event_post_to(view_event_handle, VIEW_EVENT_BASE, VIEW_EVENT_BRIGHTNESS_UPDATE, &value, sizeof(value), portMAX_DELAY); +} + +static void __display_cfg_apply_event_cb(lv_event_t * e) +{ + struct view_data_display cfg; + cfg.brightness = lv_slider_get_value(ui_brighness_cfg); + if( ! lv_obj_has_state( ui_screen_always_on_cfg, LV_STATE_CHECKED) ) { + cfg.sleep_mode_en = true; + char *p_time = lv_textarea_get_text(ui_turn_off_after_time_cfg); + if( p_time) { + cfg.sleep_mode_time_min = atoi(p_time); + } else { + cfg.sleep_mode_time_min = 0; + } + } else { + cfg.sleep_mode_en = false; + } + esp_event_post_to(view_event_handle, VIEW_EVENT_BASE, VIEW_EVENT_DISPLAY_CFG_APPLY, &cfg, sizeof(cfg), portMAX_DELAY); +} + +static void __display_cfg_event_init(void) +{ + lv_obj_add_event_cb(ui_brighness_cfg, __brighness_cfg_event_cb, LV_EVENT_VALUE_CHANGED, NULL); + lv_obj_add_event_cb(ui_back1, __display_cfg_apply_event_cb, LV_EVENT_PRESSED, NULL); +} + + +/********************** sensor chart **********************/ + +static void ui_event_sensor_co2_chart( lv_event_t * e) { + lv_event_code_t event_code = lv_event_get_code(e);lv_obj_t * target = lv_event_get_target(e); + lv_obj_t * cur_screen = lv_scr_act(); +if ( event_code == LV_EVENT_CLICKED && cur_screen == ui_screen_sensor ) { + esp_event_post_to(view_event_handle, VIEW_EVENT_BASE, VIEW_EVENT_SENSOR_CO2_HISTORY, NULL, 0, portMAX_DELAY); + + _ui_screen_change( ui_screen_sensor_chart, LV_SCR_LOAD_ANIM_OVER_LEFT, 200, 0); +} +} + +static void ui_event_sensor_tvoc_chart( lv_event_t * e) { + lv_event_code_t event_code = lv_event_get_code(e);lv_obj_t * target = lv_event_get_target(e); + lv_obj_t * cur_screen = lv_scr_act(); +if ( event_code == LV_EVENT_CLICKED && cur_screen == ui_screen_sensor ) { + esp_event_post_to(view_event_handle, VIEW_EVENT_BASE, VIEW_EVENT_SENSOR_TVOC_HISTORY, NULL, 0, portMAX_DELAY); + _ui_screen_change( ui_screen_sensor_chart, LV_SCR_LOAD_ANIM_OVER_LEFT, 200, 0); +} +} +static void ui_event_sensor_temp_chart( lv_event_t * e) { + lv_event_code_t event_code = lv_event_get_code(e);lv_obj_t * target = lv_event_get_target(e); + lv_obj_t * cur_screen = lv_scr_act(); +if ( event_code == LV_EVENT_CLICKED && cur_screen == ui_screen_sensor ) { + esp_event_post_to(view_event_handle, VIEW_EVENT_BASE, VIEW_EVENT_SENSOR_TEMP_HISTORY, NULL, 0, portMAX_DELAY); + _ui_screen_change( ui_screen_sensor_chart, LV_SCR_LOAD_ANIM_OVER_LEFT, 200, 0); +} +} +static void ui_event_sensor_humidity_chart( lv_event_t * e) { + lv_event_code_t event_code = lv_event_get_code(e);lv_obj_t * target = lv_event_get_target(e); + lv_obj_t * cur_screen = lv_scr_act(); +if ( event_code == LV_EVENT_CLICKED && cur_screen == ui_screen_sensor ) { + esp_event_post_to(view_event_handle, VIEW_EVENT_BASE, VIEW_EVENT_SENSOR_HUMIDITY_HISTORY, NULL, 0, portMAX_DELAY); + _ui_screen_change( ui_screen_sensor_chart, LV_SCR_LOAD_ANIM_OVER_LEFT, 200, 0); +} +} + +static void __sensor_chart_event_init(void) +{ + lv_obj_add_event_cb(ui_co2, ui_event_sensor_co2_chart, LV_EVENT_ALL, NULL); + lv_obj_add_event_cb(ui_tvoc_2, ui_event_sensor_tvoc_chart, LV_EVENT_ALL, NULL); + lv_obj_add_event_cb(ui_temp2, ui_event_sensor_temp_chart, LV_EVENT_ALL, NULL); + lv_obj_add_event_cb(ui_humidity2, ui_event_sensor_humidity_chart, LV_EVENT_ALL, NULL); +} + +int indicator_controller_init(void) +{ + __time_cfg_event_init(); + __display_cfg_event_init(); + __sensor_chart_event_init(); + + return 0; +} \ No newline at end of file diff --git a/examples/indicator_matter/main/controller/indicator_controller.h b/examples/indicator_matter/main/controller/indicator_controller.h new file mode 100644 index 0000000..9f03ecf --- /dev/null +++ b/examples/indicator_matter/main/controller/indicator_controller.h @@ -0,0 +1,21 @@ +#ifndef INDICATOR_CONTROLLER_H +#define INDICATOR_CONTROLLER_H + +#include "config.h" +#include "view_data.h" + +#ifdef __cplusplus +extern "C" { +#endif + + + +int indicator_controller_init(void); + + + +#ifdef __cplusplus +} +#endif + +#endif diff --git a/examples/indicator_matter/main/controller/indicator_virtual_dashboard_controller.c b/examples/indicator_matter/main/controller/indicator_virtual_dashboard_controller.c new file mode 100644 index 0000000..357031b --- /dev/null +++ b/examples/indicator_matter/main/controller/indicator_virtual_dashboard_controller.c @@ -0,0 +1,141 @@ +#include "indicator_virtual_dashboard_controller.h" +#include "lvgl.h" +#include "ui.h" +#include "indicator_view.h" +#include "indicator_virtual_dashboard.h" + +#include "nvs.h" +#include "freertos/semphr.h" +#include "ui_helpers.h" +#include +#include + +static const char *TAG = "indicator_virtual_dashboard_controller"; + +static void __view_event_handler(void* handler_args, esp_event_base_t base, int32_t id, void* event_data) +{ + switch (id) + { + case VIEW_EVENT_MATTER_SET_DASHBOARD_DATA: { + struct view_data_matter_dashboard_data *p_data = (struct view_data_matter_dashboard_data *) event_data; + ESP_LOGI(TAG, "event: VIEW_EVENT_MATTER_SET_DASHBOARD_DATA %d", p_data->value); + + switch (p_data->dashboard_data_type) + { + case DASHBOARD_DATA_ARC: { + lv_arc_set_value( ui_arc, p_data->value ); + lv_event_send(ui_arc, LV_EVENT_VALUE_CHANGED, NULL); + break; + } + case DASHBOARD_DATA_SWITCH: { + if ((bool)p_data->value) { + lv_obj_add_state(ui_switch1, LV_STATE_CHECKED); + } else { + lv_obj_clear_state(ui_switch1, LV_STATE_CHECKED); + } + break; + } + case DASHBOARD_DATA_SLIDER: { + lv_slider_set_value( ui_slider1, p_data->value, LV_ANIM_OFF ); + break; + } + case DASHBOARD_DATA_BUTTON1: { + if ((bool)p_data->value) { + lv_obj_add_state(ui_toggle_button1, LV_STATE_CHECKED); + } else { + lv_obj_clear_state(ui_toggle_button1, LV_STATE_CHECKED); + } + break; + } + case DASHBOARD_DATA_BUTTON2: { + if ((bool)p_data->value) { + lv_obj_add_state(ui_toggle_button2, LV_STATE_CHECKED); + } else { + lv_obj_clear_state(ui_toggle_button2, LV_STATE_CHECKED); + } + break; + } + default: + break; + } + break; + } + default: + break; + } +} + +static void __dashboard_arc_update_cb(lv_event_t * e) +{ + lv_arc_t * arc = (lv_arc_t *)lv_event_get_target(e); + struct view_data_matter_dashboard_data data; + data.dashboard_data_type = DASHBOARD_DATA_ARC; + data.value = lv_arc_get_value(arc); + + esp_event_post_to(view_event_handle, VIEW_EVENT_BASE, VIEW_EVENT_MATTER_DASHBOARD_DATA, \ + &data, sizeof(struct view_data_matter_dashboard_data ), portMAX_DELAY); +} + +static void __dashboard_slider_update_cb(lv_event_t * e) +{ + lv_obj_t * slider = lv_event_get_target(e); + struct view_data_matter_dashboard_data data; + data.dashboard_data_type = DASHBOARD_DATA_SLIDER; + data.value = lv_slider_get_value(slider); + + esp_event_post_to(view_event_handle, VIEW_EVENT_BASE, VIEW_EVENT_MATTER_DASHBOARD_DATA, \ + &data, sizeof(struct view_data_matter_dashboard_data ), portMAX_DELAY); +} + +static void __dashboard_switch_update_cb(lv_event_t * e) +{ + lv_obj_t * switch1 = lv_event_get_target(e); + struct view_data_matter_dashboard_data data; + data.dashboard_data_type = DASHBOARD_DATA_SWITCH; + data.value = (int)lv_obj_has_state(switch1, LV_STATE_CHECKED); + + esp_event_post_to(view_event_handle, VIEW_EVENT_BASE, VIEW_EVENT_MATTER_DASHBOARD_DATA, \ + &data, sizeof(struct view_data_matter_dashboard_data ), portMAX_DELAY); +} + +static void __dashboard_button_1_update_cb(lv_event_t * e) +{ + lv_obj_t * button = lv_event_get_target(e); + struct view_data_matter_dashboard_data data; + data.dashboard_data_type = DASHBOARD_DATA_BUTTON1; + data.value = (int)lv_obj_has_state(button, LV_STATE_CHECKED); + + esp_event_post_to(view_event_handle, VIEW_EVENT_BASE, VIEW_EVENT_MATTER_DASHBOARD_DATA, \ + &data, sizeof(struct view_data_matter_dashboard_data ), portMAX_DELAY); +} + +static void __dashboard_button_2_update_cb(lv_event_t * e) +{ + lv_obj_t * button = lv_event_get_target(e); + struct view_data_matter_dashboard_data data; + data.dashboard_data_type = DASHBOARD_DATA_BUTTON2; + data.value = (int)lv_obj_has_state(button, LV_STATE_CHECKED); + + esp_event_post_to(view_event_handle, VIEW_EVENT_BASE, VIEW_EVENT_MATTER_DASHBOARD_DATA, \ + &data, sizeof(struct view_data_matter_dashboard_data ), portMAX_DELAY); +} + +static void __virtual_dashboard_event_init(void) +{ + lv_obj_add_event_cb(ui_arc, __dashboard_arc_update_cb, LV_EVENT_RELEASED, NULL); + lv_obj_add_event_cb(ui_toggle_button1, __dashboard_button_1_update_cb, LV_EVENT_VALUE_CHANGED, NULL); + lv_obj_add_event_cb(ui_toggle_button2, __dashboard_button_2_update_cb, LV_EVENT_VALUE_CHANGED, NULL); + lv_obj_add_event_cb(ui_slider1, __dashboard_slider_update_cb, LV_EVENT_RELEASED, NULL); + lv_obj_add_event_cb(ui_switch1, __dashboard_switch_update_cb, LV_EVENT_VALUE_CHANGED, NULL); +} + +int indicator_virtual_dashboard_controller_init(void) +{ + __virtual_dashboard_event_init(); + + ESP_ERROR_CHECK(esp_event_handler_instance_register_with(view_event_handle, + VIEW_EVENT_BASE, VIEW_EVENT_MATTER_SET_DASHBOARD_DATA, + __view_event_handler, NULL, NULL)); + + return 0; +} \ No newline at end of file diff --git a/examples/indicator_matter/main/controller/indicator_virtual_dashboard_controller.h b/examples/indicator_matter/main/controller/indicator_virtual_dashboard_controller.h new file mode 100644 index 0000000..8e11bce --- /dev/null +++ b/examples/indicator_matter/main/controller/indicator_virtual_dashboard_controller.h @@ -0,0 +1,17 @@ +#ifndef INDICATOR_VIRTUAL_DASHBOARD_CONTROLLER_H +#define INDICATOR_VIRTUAL_DASHBOARD_CONTROLLER_H + +#include "config.h" +#include "view_data.h" + +#ifdef __cplusplus +extern "C" { +#endif + +int indicator_virtual_dashboard_controller_init(void); + +#ifdef __cplusplus +} +#endif + +#endif diff --git a/examples/indicator_matter/main/lv_port.c b/examples/indicator_matter/main/lv_port.c new file mode 100644 index 0000000..da55768 --- /dev/null +++ b/examples/indicator_matter/main/lv_port.c @@ -0,0 +1,366 @@ +#include "esp_heap_caps.h" +#include "esp_err.h" +#include "esp_log.h" +#include "esp_timer.h" +#include "rom/cache.h" +#include "freertos/FreeRTOS.h" +#include "freertos/task.h" +#include "freertos/semphr.h" +#include "lvgl.h" +#include "lv_port.h" +#include "bsp_board.h" +#include "bsp_lcd.h" +#include "indev/indev.h" +#include "sdkconfig.h" + +#include "indicator_display.h" + +#define LV_PORT_BUFFER_HEIGHT (brd->LCD_HEIGHT) +#define LV_PORT_BUFFER_MALLOC (MALLOC_CAP_SPIRAM) +// #define LV_PORT_BUFFER_HEIGHT (100) +// #define LV_PORT_BUFFER_MALLOC (MALLOC_CAP_INTERNAL | MALLOC_CAP_8BIT) + +#define LV_PORT_TASK_DELAY_MS (5) + + +static char *TAG = "lvgl_port"; +static lv_disp_drv_t disp_drv; +static lv_indev_t *indev_touchpad = NULL; +static lv_indev_t *indev_button = NULL; +static SemaphoreHandle_t lvgl_mutex = NULL; +static TaskHandle_t lvgl_task_handle; + +#ifndef CONFIG_LCD_TASK_PRIORITY +#define CONFIG_LCD_TASK_PRIORITY 5 +#endif + +static void lv_port_disp_init(void); +static void lv_port_indev_init(void); +static bool lv_port_flush_ready(void); +static bool lv_port_flush_is_last(void); +static IRAM_ATTR void touchpad_read(lv_indev_drv_t *indev_drv, lv_indev_data_t *data); +static void disp_flush(lv_disp_drv_t *disp_drv, const lv_area_t *area, lv_color_t *color_p); +static esp_err_t lv_port_tick_init(void); +static void lvgl_task(void *args); +static void lv_port_direct_mode_copy(void); + +void lv_port_init(void) +{ + lv_init(); + lv_port_disp_init(); + lv_port_indev_init(); + lv_port_tick_init(); + + lvgl_mutex = xSemaphoreCreateMutex(); + xTaskCreate(lvgl_task, "lvgl_task", 4096 * 4, NULL, CONFIG_LCD_TASK_PRIORITY, &lvgl_task_handle); +} + +void lv_port_sem_take(void) +{ + TaskHandle_t task = xTaskGetCurrentTaskHandle(); + if (lvgl_task_handle != task) { + xSemaphoreTake(lvgl_mutex, portMAX_DELAY); + } +} + +void lv_port_sem_give(void) +{ + TaskHandle_t task = xTaskGetCurrentTaskHandle(); + if (lvgl_task_handle != task) { + xSemaphoreGive(lvgl_mutex); + } +} + +/** + * @brief Tell LVGL that LCD flush done. + * + * @return true Call `portYIELD_FROM_ISR()` after esp-lcd ISR return. + * @return false Do nothing after esp-lcd ISR return.v + */ +static bool lv_port_flush_ready(void) +{ + /* Inform the graphics library that you are ready with the flushing */ + lv_disp_flush_ready(&disp_drv); + + /* portYIELD_FROM_ISR (true) or not (false). */ + return false; +} + +static bool lv_port_flush_is_last(void) +{ + return lv_disp_flush_is_last(&disp_drv); +} + +/** + * @brief LCD flush function callback for LVGL. + * + * @param disp_drv + * @param area + * @param color_p + */ +static void disp_flush(lv_disp_drv_t *disp_drv, const lv_area_t *area, lv_color_t *color_p) +{ + (void)disp_drv; + + /*The most simple case (but also the slowest) to put all pixels to the screen one-by-one*/ + bsp_lcd_flush(area->x1, area->y1, area->x2 + 1, area->y2 + 1, (uint8_t *) color_p); +} + +static void button_read(lv_indev_drv_t *indev_drv, lv_indev_data_t *data) +{ + // static uint8_t prev_btn_id = 0; + static uint32_t last_key = 0; + + /* Read touch point(s) via touch IC */ + indev_data_t indev_data; + if (ESP_OK != indev_get_major_value(&indev_data)) { + ESP_LOGE(TAG, "Failed read input device value"); + return; + } + + /*Get the pressed button's ID*/ + if (indev_data.btn_val & 0x02) { + last_key = LV_KEY_ENTER; + data->state = LV_INDEV_STATE_PRESSED; + ESP_LOGD(TAG, "ok"); + } else if (indev_data.btn_val & 0x04) { + data->state = LV_INDEV_STATE_PRESSED; + last_key = LV_KEY_PREV; + ESP_LOGD(TAG, "prev"); + } else if (indev_data.btn_val & 0x01) { + data->state = LV_INDEV_STATE_PRESSED; + last_key = LV_KEY_NEXT; + ESP_LOGD(TAG, "next"); + } else { + data->state = LV_INDEV_STATE_RELEASED; + } + data->key = last_key; +} + +/** + * @brief Read touchpad data. + * + * @param indev_drv + * @param data + * @return IRAM_ATTR + */ +static IRAM_ATTR void touchpad_read(lv_indev_drv_t *indev_drv, lv_indev_data_t *data) +{ + uint8_t tp_num = 0; + static uint16_t x = 0, y = 0, btn_val = 0; + /* Read touch point(s) via touch IC */ + indev_data_t indev_data; + if (ESP_OK != indev_get_major_value(&indev_data)) { + return; + } + /* FT series touch IC might return 0xff before first touch. */ + if (indev_data.pressed) { + data->state = LV_INDEV_STATE_PR; + data->point.x = CONFIG_LCD_EVB_SCREEN_WIDTH - indev_data.x; + data->point.y = CONFIG_LCD_EVB_SCREEN_HEIGHT - indev_data.y; + x = data->point.x; + y = data->point.y; + + indicator_display_sleep_restart(); + } else { + data->state = LV_INDEV_STATE_REL; + data->point.x = x; + data->point.y = y; + } + //ESP_LOGI(TAG, "Touch (%u) : [%3u, %3u] - 0x%02X", indev_data.pressed, data->point.x, data->point.y, indev_data.btn_val); +} + +/** + * @brief Initialize display driver for LVGL. + * + */ +static void lv_port_disp_init(void) +{ + static lv_disp_draw_buf_t disp_buf; // contains internal graphic buffer(s) called draw buffer(s) + const board_res_desc_t *brd = bsp_board_get_description(); + + void *buf1 = NULL; + void *buf2 = NULL; + int buffer_size; +#if CONFIG_LCD_AVOID_TEAR + buffer_size = brd->LCD_WIDTH * brd->LCD_HEIGHT; + bsp_lcd_get_frame_buffer(&buf1, &buf2); +#else + buffer_size = brd->LCD_WIDTH * LV_PORT_BUFFER_HEIGHT; + buf1 = heap_caps_malloc(buffer_size * sizeof(lv_color_t), LV_PORT_BUFFER_MALLOC); + assert(buf1); +#endif + // initialize LVGL draw buffers + lv_disp_draw_buf_init(&disp_buf, buf1, buf2, buffer_size); + + lv_disp_drv_init(&disp_drv); + disp_drv.hor_res = brd->LCD_WIDTH; + disp_drv.ver_res = brd->LCD_HEIGHT; + disp_drv.flush_cb = disp_flush; + disp_drv.draw_buf = &disp_buf; +#if CONFIG_LCD_LVGL_FULL_REFRESH + disp_drv.full_refresh = 1; +#elif CONFIG_LCD_LVGL_DIRECT_MODE + disp_drv.direct_mode = 1; +#endif + + /* Use lcd_trans_done_cb to inform the graphics library that flush already done */ + bsp_lcd_set_cb(lv_port_flush_ready, NULL); + +#if CONFIG_LCD_LVGL_DIRECT_MODE + bsp_lcd_flush_is_last_register(lv_port_flush_is_last); + bsp_lcd_direct_mode_register(lv_port_direct_mode_copy); +#endif + + lv_disp_drv_register(&disp_drv); +} + +/** + * @brief Initialize input device for LVGL. + * + * @return esp_err_t + */ +static void lv_port_indev_init(void) +{ + /** + * Here you will find example implementation of input devices supported by LittelvGL: + * - Touchpad + * - Mouse (with cursor support) + * - Keypad (supports GUI usage only with key) + * - Encoder (supports GUI usage only with: left, right, push) + * - Button (external buttons to press points on the screen) + * + * The `..._read()` function are only examples. + * You should shape them according to your hardware + */ + static lv_indev_drv_t indev_drv_tp; + static lv_indev_drv_t indev_drv_btn; + + /* Initialize your touchpad if you have */ + const board_res_desc_t *brd = bsp_board_get_description(); + if (brd->BSP_INDEV_IS_TP) { + ESP_LOGI(TAG, "Add TP input device to LVGL"); + lv_indev_drv_init(&indev_drv_tp); + indev_drv_tp.type = LV_INDEV_TYPE_POINTER; + indev_drv_tp.read_cb = touchpad_read; + indev_touchpad = lv_indev_drv_register(&indev_drv_tp); + + } else { + ESP_LOGI(TAG, "Add KEYPAD input device to LVGL"); + lv_indev_drv_init(&indev_drv_btn); + indev_drv_btn.type = LV_INDEV_TYPE_KEYPAD; + indev_drv_btn.read_cb = button_read; + indev_button = lv_indev_drv_register(&indev_drv_btn); + } + +#if CONFIG_LV_PORT_SHOW_MOUSE_CURSOR + LV_IMG_DECLARE(mouse_cursor_icon) + lv_obj_t *cursor_obj = lv_img_create(lv_scr_act()); /*Create an image object for the cursor */ + lv_img_set_src(cursor_obj, &mouse_cursor_icon); /*Set the image source*/ + lv_indev_set_cursor(indev_touchpad, cursor_obj); /*Connect the image object to the driver*/ +#endif +} + +/** + * @brief Task to generate ticks for LVGL. + * + * @param pvParam Not used. + */ +static void lv_tick_inc_cb(void *data) +{ + uint32_t tick_inc_period_ms = *((uint32_t *) data); + + lv_tick_inc(tick_inc_period_ms); +} + +/** + * @brief Create tick task for LVGL. + * + * @return esp_err_t + */ +static esp_err_t lv_port_tick_init(void) +{ + static const uint32_t tick_inc_period_ms = 2; + const esp_timer_create_args_t periodic_timer_args = { + .callback = lv_tick_inc_cb, + .name = "", /* name is optional, but may help identify the timer when debugging */ + .arg = &tick_inc_period_ms, + .dispatch_method = ESP_TIMER_TASK, + .skip_unhandled_events = true, + }; + + esp_timer_handle_t periodic_timer; + ESP_ERROR_CHECK(esp_timer_create(&periodic_timer_args, &periodic_timer)); + + /* The timer has been created but is not running yet. Start the timer now */ + ESP_ERROR_CHECK(esp_timer_start_periodic(periodic_timer, tick_inc_period_ms * 1000)); + + return ESP_OK; +} + +#if CONFIG_LCD_LVGL_DIRECT_MODE +/** + * @brief Copy dirty area from last frame to current frame. + * @note It's useful only when enable lvgl direct-mode, and should be called behind the end of flushing in lvgl. + * + */ +static void lv_port_direct_mode_copy(void) +{ + lv_disp_t *disp_refr = _lv_refr_get_disp_refreshing(); + + uint8_t *buf_act = disp_refr->driver->draw_buf->buf_act; + uint8_t *buf1 = disp_refr->driver->draw_buf->buf1; + uint8_t *buf2 = disp_refr->driver->draw_buf->buf2; + int h_res = disp_refr->driver->hor_res; + int v_res = disp_refr->driver->ver_res; + + uint8_t *fb_from = buf_act; + uint8_t *fb_to = (fb_from == buf1) ? buf2 : buf1; + + int32_t i; + lv_coord_t x_start, x_end, y_start, y_end; + uint32_t copy_bytes_per_line; + uint32_t bytes_to_flush; + uint32_t bytes_per_line = h_res * 2; + uint8_t *from, *to; + uint8_t *flush_ptr; + // ESP_LOGI(TAG, "----- Area list ----"); + for(i = 0; i < disp_refr->inv_p; i++) { + /*Refresh the unjoined areas*/ + if(disp_refr->inv_area_joined[i] == 0) { + x_start = disp_refr->inv_areas[i].x1; + x_end = disp_refr->inv_areas[i].x2 + 1; + y_start = disp_refr->inv_areas[i].y1; + y_end = disp_refr->inv_areas[i].y2 + 1; + + copy_bytes_per_line= (x_end - x_start) * 2; + from = fb_from + (y_start * h_res + x_start) * 2; + to = fb_to + (y_start * h_res + x_start) * 2; + for (int y = y_start; y < y_end; y++) { + memcpy(to, from, copy_bytes_per_line); + from += bytes_per_line; + to += bytes_per_line; + } + bytes_to_flush = (y_end - y_start) * bytes_per_line; + flush_ptr = fb_to + y_start * bytes_per_line; + + Cache_WriteBack_Addr((uint32_t)(flush_ptr), bytes_to_flush); + } + } +} +#endif + +/** + * @brief Task to draw and flush for LVGL. + * + * @param args Not used. + */ +static void lvgl_task(void *args) +{ + for (;;) { + xSemaphoreTake(lvgl_mutex, portMAX_DELAY); + lv_task_handler(); + xSemaphoreGive(lvgl_mutex); + vTaskDelay(pdMS_TO_TICKS(LV_PORT_TASK_DELAY_MS)); + } +} diff --git a/examples/indicator_matter/main/lv_port.h b/examples/indicator_matter/main/lv_port.h new file mode 100644 index 0000000..c6e5bff --- /dev/null +++ b/examples/indicator_matter/main/lv_port.h @@ -0,0 +1,35 @@ +#ifndef LV_PORT_H +#define LV_PORT_H + +#include "lvgl.h" + +#ifdef __cplusplus +extern "C" { +#endif + + +/** + * @brief Initialize related work for lvgl. + * + */ +void lv_port_init(void); + +/** + * @brief Take the semaphore. + * @note It should be called before manipulate lvgl gui. + * + */ +void lv_port_sem_take(void); + +/** + * @brief Give the semaphore. + * @note It should be called after manipulate lvgl gui. + * + */ +void lv_port_sem_give(void); + +#ifdef __cplusplus +} +#endif + +#endif diff --git a/examples/indicator_matter/main/main.cpp b/examples/indicator_matter/main/main.cpp new file mode 100644 index 0000000..4ffebb0 --- /dev/null +++ b/examples/indicator_matter/main/main.cpp @@ -0,0 +1,77 @@ +#include "freertos/FreeRTOS.h" +#include "freertos/task.h" +#include "esp_log.h" +#include "bsp_board.h" +#include "lv_port.h" +#include "esp_event.h" +#include "esp_event_base.h" + +#include "indicator_model.h" +#include "indicator_view.h" +#include "indicator_controller.h" +#include "indicator_virtual_dashboard_controller.h" +#include "indicator_matter.h" +#include "indicator_storage.h" + +static const char *TAG = "app_main"; + +#define VERSION "v1.0.0" + +#define SENSECAP "\n\ + _____ _________ ____ \n\ + / ___/___ ____ ________ / ____/ | / __ \\ \n\ + \\__ \\/ _ \\/ __ \\/ ___/ _ \\/ / / /| | / /_/ / \n\ + ___/ / __/ / / (__ ) __/ /___/ ___ |/ ____/ \n\ +/____/\\___/_/ /_/____/\\___/\\____/_/ |_/_/ \n\ +--------------------------------------------------------\n\ + Version: %s %s %s\n\ +--------------------------------------------------------\n\ +" + +ESP_EVENT_DEFINE_BASE(VIEW_EVENT_BASE); +esp_event_loop_handle_t view_event_handle; + + +extern "C" void app_main() +{ + ESP_LOGI("", SENSECAP, VERSION, __DATE__, __TIME__); + ESP_ERROR_CHECK(bsp_board_init()); + lv_port_init(); + + esp_event_loop_args_t view_event_task_args = { + .queue_size = 10, + .task_name = "view_event_task", + .task_priority = uxTaskPriorityGet(NULL), + .task_stack_size = 10240, + .task_core_id = tskNO_AFFINITY + }; + + ESP_ERROR_CHECK(esp_event_loop_create(&view_event_task_args, &view_event_handle)); + + indicator_storage_init(); + ESP_ERROR_CHECK(indicator_matter_setup()); + + lv_port_sem_take(); + indicator_view_init(); + lv_port_sem_give(); + + indicator_model_init(); + indicator_controller_init(); + indicator_virtual_dashboard_controller_init(); + + static char buffer[128]; /* Make sure buffer is enough for `sprintf` */ + while (1) { + // sprintf(buffer, " Biggest / Free / Total\n" + // "\t DRAM : [%8d / %8d / %8d]\n" + // "\t PSRAM : [%8d / %8d / %8d]", + // heap_caps_get_largest_free_block(MALLOC_CAP_INTERNAL), + // heap_caps_get_free_size(MALLOC_CAP_INTERNAL), + // heap_caps_get_total_size(MALLOC_CAP_INTERNAL), + // heap_caps_get_largest_free_block(MALLOC_CAP_SPIRAM), + // heap_caps_get_free_size(MALLOC_CAP_SPIRAM), + // heap_caps_get_total_size(MALLOC_CAP_SPIRAM)); + // ESP_LOGI("MEM", "%s", buffer); + + vTaskDelay(pdMS_TO_TICKS(10000)); + } +} diff --git a/examples/indicator_matter/main/matter_config.h b/examples/indicator_matter/main/matter_config.h new file mode 100644 index 0000000..69bf8d8 --- /dev/null +++ b/examples/indicator_matter/main/matter_config.h @@ -0,0 +1,42 @@ +#ifndef MATTER_CONFIG_H +#define MATTER_CONFIG_H + +#if CHIP_DEVICE_CONFIG_ENABLE_THREAD +#include "esp_openthread_types.h" +#endif + +#ifdef __cplusplus +extern "C" { +#endif + +#define MATTER_UPDATE_INTERVAL_IN_SECONDS 10 +#define CHIP_DEVICE_CONFIG_PRODUCT_NAME "SenseCAP Indicator" +#define CHIP_DEVICE_CONFIG_DEVICE_VENDOR_NAME "Seeed Studio" +#define CHIP_DEVICE_CONFIG_DEVICE_HARDWARE_VERSION_STRING "v1.0" +#define CHIP_DEVICE_CONFIG_USE_TEST_SETUP_PIN_CODE 20202021 +#define CHIP_DEVICE_CONFIG_USE_TEST_SETUP_DISCRIMINATOR 0xF00 +#define CHIP_DEVICE_CONFIG_DEVICE_PRODUCT_NAME "SenseCAP Indicator" +#define CHIP_DEVICE_CONFIG_DEFAULT_DEVICE_HARDWARE_VERSION_STRING "v1.0" + +#if CHIP_DEVICE_CONFIG_ENABLE_THREAD +#define ESP_OPENTHREAD_DEFAULT_RADIO_CONFIG() \ + { \ + .radio_mode = RADIO_MODE_NATIVE, \ + } + +#define ESP_OPENTHREAD_DEFAULT_HOST_CONFIG() \ + { \ + .host_connection_mode = HOST_CONNECTION_MODE_NONE, \ + } + +#define ESP_OPENTHREAD_DEFAULT_PORT_CONFIG() \ + { \ + .storage_partition_name = "ot_storage", .netif_queue_size = 10, .task_queue_size = 10, \ + } +#endif + +#ifdef __cplusplus +} +#endif + +#endif diff --git a/examples/indicator_matter/main/model/indicator_btn.c b/examples/indicator_matter/main/model/indicator_btn.c new file mode 100644 index 0000000..fb8b207 --- /dev/null +++ b/examples/indicator_matter/main/model/indicator_btn.c @@ -0,0 +1,115 @@ +#include "indicator_btn.h" +#include "indicator_display.h" +#include "bsp_btn.h" + +static uint32_t hold_cnt=0; +static bool sleep_flag=false; +static bool sleep_start_flag=false; + +static esp_timer_handle_t factory_reset_timer_handle; + +static void __factory_reset_callback(void* arg) +{ + ESP_ERROR_CHECK(nvs_flash_erase()); + fflush(stdout); + esp_restart(); +} + +static void __btn_click_callback(void* arg) +{ + bool st=0; + if( sleep_flag ) { + ESP_LOGI("btn", "click, cur st: sleep mode, restart!"); + fflush(stdout); + esp_restart(); + return; + } + if( indicator_display_st_get()) { + ESP_LOGI("btn", "click, off"); + indicator_display_off(); + + st = 0; + esp_event_post_to(view_event_handle, VIEW_EVENT_BASE, VIEW_EVENT_SCREEN_CTRL, &st, sizeof(st), portMAX_DELAY); + } else { + ESP_LOGI("btn", "click, on"); + + st = 1; + esp_event_post_to(view_event_handle, VIEW_EVENT_BASE, VIEW_EVENT_SCREEN_CTRL, &st, sizeof(st), portMAX_DELAY); + + indicator_display_on(); + } +} + +static void __btn_double_click_callback(void* arg) +{ + ESP_LOGI("btn", "double click"); +} + +static void __btn_press_start_callback(void* arg) +{ + ESP_LOGI("btn", "press start"); + hold_cnt = 1500; + sleep_start_flag = false; +} + +static void __btn_long_press_hold_callback(void* arg) +{ + static bool factory_reset_flag = false; + //ESP_LOGI("btn", "long press hold"); + // default CONFIG_BUTTON_PERIOD_TIME_MS=5ms + hold_cnt += CONFIG_BUTTON_PERIOD_TIME_MS; + + if( hold_cnt >= 3000 && hold_cnt < 10000) { + if( sleep_flag ) { + ESP_LOGI("btn", "wake, restart"); + fflush(stdout); + esp_restart(); + } else if( !sleep_start_flag) { + sleep_start_flag = true; + ESP_LOGI("btn", "entry sleep mode"); + indicator_display_off(); + bool st = 0; + esp_event_post_to(view_event_handle, VIEW_EVENT_BASE, VIEW_EVENT_SCREEN_CTRL, &st, sizeof(st), portMAX_DELAY); + } + + } else if( hold_cnt >= 10000 && !factory_reset_flag) { + ESP_LOGI("btn", "factory reset"); + factory_reset_flag = true; + esp_event_post_to(view_event_handle, VIEW_EVENT_BASE, VIEW_EVENT_FACTORY_RESET, NULL, 0, portMAX_DELAY); + + bool st = 1; + esp_event_post_to(view_event_handle, VIEW_EVENT_BASE, VIEW_EVENT_SCREEN_CTRL, &st, sizeof(st), portMAX_DELAY); + indicator_display_on(); + + const esp_timer_create_args_t timer_args = { + .callback = &__factory_reset_callback, + /* argument specified here will be passed to timer callback function */ + .arg = (void*) factory_reset_timer_handle, + .name = "factory_reset" + }; + ESP_ERROR_CHECK( esp_timer_create(&timer_args, &factory_reset_timer_handle)); + ESP_ERROR_CHECK(esp_timer_start_once(factory_reset_timer_handle, 1000000*3)); //3s + + } +} + +static void __btn_press_up_callback(void* arg) +{ + if( hold_cnt >= 3000 && hold_cnt < 15000) { + //sleep + ESP_LOGI("btn", "entry sleep mode"); + sleep_flag = true; + esp_event_post_to(view_event_handle, VIEW_EVENT_BASE, VIEW_EVENT_SHUTDOWN, NULL, 0, portMAX_DELAY); + //to sleep , close sensor and wifi + } +} + + +int indicator_btn_init(void) +{ + bsp_btn_register_callback( BOARD_BTN_ID_USER, BUTTON_SINGLE_CLICK, __btn_click_callback, NULL); + bsp_btn_register_callback( BOARD_BTN_ID_USER, BUTTON_DOUBLE_CLICK, __btn_double_click_callback, NULL); + bsp_btn_register_callback( BOARD_BTN_ID_USER, BUTTON_LONG_PRESS_START, __btn_press_start_callback, NULL); + bsp_btn_register_callback( BOARD_BTN_ID_USER, BUTTON_LONG_PRESS_HOLD, __btn_long_press_hold_callback, NULL); + bsp_btn_register_callback( BOARD_BTN_ID_USER, BUTTON_PRESS_UP, __btn_press_up_callback, NULL); +} diff --git a/examples/indicator_matter/main/model/indicator_btn.h b/examples/indicator_matter/main/model/indicator_btn.h new file mode 100644 index 0000000..0ad312b --- /dev/null +++ b/examples/indicator_matter/main/model/indicator_btn.h @@ -0,0 +1,19 @@ +#ifndef INDICATOR_BTN_H +#define INDICATOR_BTN_H + +#include "config.h" +#include "view_data.h" +#include "indicator_display.h" + +#ifdef __cplusplus +extern "C" { +#endif + + +int indicator_btn_init(void); + +#ifdef __cplusplus +} +#endif + +#endif diff --git a/examples/indicator_matter/main/model/indicator_city.c b/examples/indicator_matter/main/model/indicator_city.c new file mode 100644 index 0000000..bc766e6 --- /dev/null +++ b/examples/indicator_matter/main/model/indicator_city.c @@ -0,0 +1,809 @@ +#include "indicator_city.h" +#include "freertos/semphr.h" +#include "esp_tls.h" +#include "esp_http_client.h" +#include "cJSON.h" +#include "indicator_time.h" + +#include "lwip/err.h" +#include "lwip/sockets.h" +#include "lwip/sys.h" +#include "lwip/netdb.h" +#include "lwip/dns.h" + +#include "mbedtls/platform.h" +#include "mbedtls/net_sockets.h" +#include "mbedtls/esp_debug.h" +#include "mbedtls/ssl.h" +#include "mbedtls/entropy.h" +#include "mbedtls/ctr_drbg.h" +#include "mbedtls/error.h" +#include "esp_crt_bundle.h" + +#define MAX_HTTP_OUTPUT_BUFFER 4096 + +#define DISPLAY_CFG_STORAGE "city" + + +struct indicator_city +{ + // info + char ip[32]; + char city[32]; + char timezone[64]; + int local_utc_offset; + // char country[32]; + +}; + +static const char *TAG = "city"; + +static struct indicator_city __g_city_model; + +static SemaphoreHandle_t __g_http_com_sem; + +static bool net_flag = false; + +static char local_response_buffer[MAX_HTTP_OUTPUT_BUFFER] = {0}; + +static int __city_data_prase(const char *p_str) +{ + //prase + int ret = 0; + + cJSON *root = NULL; + cJSON* cjson_item = NULL; + + root = cJSON_Parse(p_str); + if( root == NULL ) { + return -1; + } + + cjson_item = cJSON_GetObjectItem(root, "status"); + if( cjson_item != NULL && cjson_item->valuestring != NULL) { + if( strcmp(cjson_item->valuestring, "success") != 0 ) { + ret = -2; + goto prase_end; + } + } + cjson_item = cJSON_GetObjectItem(root, "city"); + if( cjson_item != NULL && cjson_item->valuestring != NULL) { + strncpy(__g_city_model.city, cjson_item->valuestring, sizeof(__g_city_model.city)-1); + } + + cjson_item = cJSON_GetObjectItem(root, "query"); + if( cjson_item != NULL && cjson_item->valuestring != NULL) { + strncpy(__g_city_model.ip, cjson_item->valuestring, sizeof(__g_city_model.ip)-1); + } + + cjson_item = cJSON_GetObjectItem(root, "timezone"); + if( cjson_item != NULL && cjson_item->valuestring != NULL) { + strncpy(__g_city_model.timezone, cjson_item->valuestring, sizeof(__g_city_model.timezone)-1); + } +prase_end: + + cJSON_Delete(root); + + return ret; +} + +#if 0 +esp_err_t _http_event_handler(esp_http_client_event_t *evt) +{ + static char *output_buffer; // Buffer to store response of http request from event handler + static int output_len; // Stores number of bytes read + switch(evt->event_id) { + case HTTP_EVENT_ERROR: + ESP_LOGD(TAG, "HTTP_EVENT_ERROR"); + break; + case HTTP_EVENT_ON_CONNECTED: + ESP_LOGD(TAG, "HTTP_EVENT_ON_CONNECTED"); + break; + case HTTP_EVENT_HEADER_SENT: + ESP_LOGD(TAG, "HTTP_EVENT_HEADER_SENT"); + break; + case HTTP_EVENT_ON_HEADER: + ESP_LOGD(TAG, "HTTP_EVENT_ON_HEADER, key=%s, value=%s", evt->header_key, evt->header_value); + break; + case HTTP_EVENT_ON_DATA: + ESP_LOGD(TAG, "HTTP_EVENT_ON_DATA, len=%d", evt->data_len); + /* + * Check for chunked encoding is added as the URL for chunked encoding used in this example returns binary data. + * However, event handler can also be used in case chunked encoding is used. + */ + if (!esp_http_client_is_chunked_response(evt->client)) { + // If user_data buffer is configured, copy the response into the buffer + if (evt->user_data) { + memcpy(evt->user_data + output_len, evt->data, evt->data_len); + } else { + if (output_buffer == NULL) { + output_buffer = (char *) malloc(esp_http_client_get_content_length(evt->client)); + output_len = 0; + if (output_buffer == NULL) { + ESP_LOGE(TAG, "Failed to allocate memory for output buffer"); + return ESP_FAIL; + } + } + memcpy(output_buffer + output_len, evt->data, evt->data_len); + } + output_len += evt->data_len; + } + + break; + case HTTP_EVENT_ON_FINISH: + ESP_LOGD(TAG, "HTTP_EVENT_ON_FINISH"); + if (output_buffer != NULL) { + // Response is accumulated in output_buffer. Uncomment the below line to print the accumulated response + // ESP_LOG_BUFFER_HEX(TAG, output_buffer, output_len); + free(output_buffer); + output_buffer = NULL; + } + output_len = 0; + break; + case HTTP_EVENT_DISCONNECTED: + ESP_LOGI(TAG, "HTTP_EVENT_DISCONNECTED"); + int mbedtls_err = 0; + esp_err_t err = esp_tls_get_and_clear_last_error((esp_tls_error_handle_t)evt->data, &mbedtls_err, NULL); + if (err != 0) { + ESP_LOGI(TAG, "Last esp error code: 0x%x", err); + ESP_LOGI(TAG, "Last mbedtls failure: 0x%x", mbedtls_err); + } + if (output_buffer != NULL) { + free(output_buffer); + output_buffer = NULL; + } + output_len = 0; + break; + } + return ESP_OK; +} + + + +static int __city_get(void) +{ + memset(local_response_buffer, 0, sizeof(local_response_buffer)); + + esp_http_client_config_t config = { + .host = "ip-api.com", + .path = "/json", + // .query = "format=json", + .event_handler = _http_event_handler, + .user_data = local_response_buffer, // Pass address of local buffer to get response + .disable_auto_redirect = true, + }; + esp_http_client_handle_t client = esp_http_client_init(&config); + + esp_err_t err = esp_http_client_perform(client); + if (err == ESP_OK) { + ESP_LOGI(TAG, "HTTP GET Status = %d, content_length = %lld", + esp_http_client_get_status_code(client), + esp_http_client_get_content_length(client)); + } else { + ESP_LOGE(TAG, "HTTP GET request failed: %s", esp_err_to_name(err)); + return -1; + } + ESP_LOGI(TAG, "CITY RESPONSE: %s", local_response_buffer); + esp_http_client_cleanup(client); + + return __city_data_prase(local_response_buffer); +} +#else +#define WEB_SERVER "ip-api.com" +#define WEB_PORT "80" +#define WEB_PATH "/json" + +static const char *REQUEST = "GET " WEB_PATH " HTTP/1.0\r\n" + "Host: "WEB_SERVER":"WEB_PORT"\r\n" + "User-Agent: esp-idf/1.0 esp32\r\n" + "\r\n"; + +static int __city_get(void) +{ + const struct addrinfo hints = { + .ai_family = AF_INET, + .ai_socktype = SOCK_STREAM, + }; + struct addrinfo *res; + struct in_addr *addr; + int s, r; + int retry=0; + while(net_flag) { + if( retry > 5) { + return -1; + } + retry++; + int err = getaddrinfo(WEB_SERVER, WEB_PORT, &hints, &res); + + if(err != 0 || res == NULL) { + ESP_LOGE(TAG, "DNS lookup failed err=%d res=%p", err, res); + vTaskDelay(1000 / portTICK_PERIOD_MS); + continue; + } + + /* Code to print the resolved IP. + + Note: inet_ntoa is non-reentrant, look at ipaddr_ntoa_r for "real" code */ + addr = &((struct sockaddr_in *)res->ai_addr)->sin_addr; + ESP_LOGI(TAG, "DNS lookup succeeded. IP=%s", inet_ntoa(*addr)); + + s = socket(res->ai_family, res->ai_socktype, 0); + if(s < 0) { + ESP_LOGE(TAG, "... Failed to allocate socket."); + freeaddrinfo(res); + vTaskDelay(1000 / portTICK_PERIOD_MS); + continue; + } + ESP_LOGI(TAG, "... allocated socket"); + + if(connect(s, res->ai_addr, res->ai_addrlen) != 0) { + ESP_LOGE(TAG, "... socket connect failed errno=%d", errno); + close(s); + freeaddrinfo(res); + vTaskDelay(4000 / portTICK_PERIOD_MS); + continue; + } + + ESP_LOGI(TAG, "... connected"); + freeaddrinfo(res); + + if (write(s, REQUEST, strlen(REQUEST)) < 0) { + ESP_LOGE(TAG, "... socket send failed"); + close(s); + vTaskDelay(4000 / portTICK_PERIOD_MS); + continue; + } + ESP_LOGI(TAG, "... socket send success"); + + struct timeval receiving_timeout; + receiving_timeout.tv_sec = 5; + receiving_timeout.tv_usec = 0; + if (setsockopt(s, SOL_SOCKET, SO_RCVTIMEO, &receiving_timeout, + sizeof(receiving_timeout)) < 0) { + ESP_LOGE(TAG, "... failed to set socket receiving timeout"); + close(s); + vTaskDelay(4000 / portTICK_PERIOD_MS); + continue; + } + ESP_LOGI(TAG, "... set socket receiving timeout success"); + + /* Read HTTP response */ + int recv_len = 0; + bzero(local_response_buffer, sizeof(local_response_buffer)); + + do { + r = read(s, local_response_buffer + recv_len, sizeof(local_response_buffer)-1-recv_len); + recv_len += r; + for(int i = 0; i < r; i++) { + putchar(local_response_buffer[i+recv_len]); + } + } while(r > 0); + + ESP_LOGI(TAG, "... done reading from socket. Last read return=%d errno=%d.", r, errno); + close(s); + + if( recv_len > 0) { + char *p_json = strstr(local_response_buffer, "\r\n\r\n"); + if( p_json ) { + p_json = p_json + 4; + return __city_data_prase(p_json); + } else { + return -1; + } + } + + } +} + +#endif + +/* ---------------------------------------------------------- */ +// time zone +/* ---------------------------------------------------------- */ + +static int __time_zone_data_prase(const char *p_str) +{ + //prase + int ret = 0; + + cJSON *root = NULL; + cJSON* cjson_item = NULL; + cJSON* cjson_item_child = NULL; + + root = cJSON_Parse(p_str); + if( root == NULL ) { + ESP_LOGI(TAG, "cJSON_Parse err"); + return -1; + } + + cjson_item = cJSON_GetObjectItem(root, "currentUtcOffset"); + if( cjson_item != NULL ) { + cjson_item_child = cJSON_GetObjectItem(cjson_item, "seconds"); + if( cjson_item_child != NULL) { + __g_city_model.local_utc_offset = cjson_item_child->valueint; + ESP_LOGI(TAG, "local_utc_offset:%ds", cjson_item_child->valueint ); + } + } + + //todo +prase_end: + cJSON_Delete(root); + + return ret; +} + +#if 1 +extern const char timeapi_root_cert_pem_start[] asm("_binary_timeapi_cert_pem_start"); +extern const char timeapi_root_cert_pem_end[] asm("_binary_timeapi_cert_pem_end"); + +static int https_get_request(esp_tls_cfg_t cfg, const char *WEB_SERVER_URL, const char *REQUEST) +{ + int ret, len; + int recv_len = 0; + esp_tls_t *tls = esp_tls_init(); + if (!tls) { + ESP_LOGE(TAG, "Failed to allocate esp_tls handle!"); + goto exit; + } + + if (esp_tls_conn_http_new_sync(WEB_SERVER_URL, &cfg, tls) == 1) { + ESP_LOGI(TAG, "Connection established..."); + } else { + ESP_LOGE(TAG, "Connection failed..."); + goto cleanup; + } + + size_t written_bytes = 0; + do { + ret = esp_tls_conn_write(tls, + REQUEST + written_bytes, + strlen(REQUEST) - written_bytes); + if (ret >= 0) { + ESP_LOGI(TAG, "%d bytes written", ret); + written_bytes += ret; + } else if (ret != ESP_TLS_ERR_SSL_WANT_READ && ret != ESP_TLS_ERR_SSL_WANT_WRITE) { + ESP_LOGE(TAG, "esp_tls_conn_write returned: [0x%02X](%s)", ret, esp_err_to_name(ret)); + goto cleanup; + } + } while (written_bytes < strlen(REQUEST)); + + ESP_LOGI(TAG, "Reading HTTP response..."); + memset(local_response_buffer, 0x00, sizeof(local_response_buffer)); + recv_len = 0; + do { + len = sizeof(local_response_buffer) - recv_len - 1; + + ret = esp_tls_conn_read(tls, (char *)local_response_buffer + recv_len, len); + + if (ret == ESP_TLS_ERR_SSL_WANT_WRITE || ret == ESP_TLS_ERR_SSL_WANT_READ) { + continue; + } else if (ret < 0) { + recv_len = 0; + ESP_LOGE(TAG, "esp_tls_conn_read returned [-0x%02X](%s)", -ret, esp_err_to_name(ret)); + break; + } else if (ret == 0) { + ESP_LOGI(TAG, "connection closed"); + break; + } + recv_len += ret; + + break; //todo Let's say I can receive it all at once + } while (1); + + if( recv_len > 0 ) { + printf( "%s", local_response_buffer); + } + +cleanup: + esp_tls_conn_destroy(tls); +exit: + return recv_len; +} + +static int __ip_get(char *ip, int buf_len) +{ + esp_tls_cfg_t cfg = { + .cacert_buf = (const unsigned char *) timeapi_root_cert_pem_start, + .cacert_bytes = timeapi_root_cert_pem_end - timeapi_root_cert_pem_start, + }; + char ip_url[128] = {0}; + char ip_request[200] = {0}; + int len; + snprintf(ip_url, sizeof(ip_url),"https://api.ipify.org"); + snprintf(ip_request, sizeof(ip_request),"GET %s HTTP/1.1\r\nHost: api.ipify.org\r\nUser-Agent: sensecap\r\n\r\n", ip_url); + + len = https_get_request(cfg, ip_url, ip_request); + if(len > 0) { + char *p_ip = strstr(local_response_buffer, "\r\n\r\n"); + if( p_ip ) { + strncpy(ip, p_ip+4, buf_len); + return 0; + } else { + return -1; + } + } + return -1; +} + +static int __time_zone_get(char *ip) +{ + esp_tls_cfg_t cfg = { + .cacert_buf = (const unsigned char *) timeapi_root_cert_pem_start, + .cacert_bytes = timeapi_root_cert_pem_end - timeapi_root_cert_pem_start, + }; + + char time_zone_url[128] = {0}; + char time_zone_request[200] = {0}; + int len = 0; + snprintf(time_zone_url, sizeof(time_zone_url),"https://www.timeapi.io/api/TimeZone/ip?ipAddress=%s",ip); + snprintf(time_zone_request, sizeof(time_zone_request),"GET %s HTTP/1.1\r\nHost: www.timeapi.io\r\nUser-Agent: sensecap\r\n\r\n", time_zone_url); + + len = https_get_request(cfg, time_zone_url, time_zone_request); + if( len > 0) { + // TIME ZONE RESPONSE: HTTP/1.1 200 OK + // Server: nginx/1.18.0 (Ubuntu) + // Date: Thu, 02 Feb 2023 09:40:26 GMT + // Content-Type: application/json; charset=utf-8 + // Transfer-Encoding: chunked + // Connection: keep-alive + + // 128 + // {"timeZone":"UTC","currentLocalTime":"2023-02-02T09:40:26.1233729","currentUtcOffset":{"seconds":0,"milliseconds":0,"ticks":0,"nanoseconds":0},"standardUtcOffset":{"seconds":0,"milliseconds":0,"ticks":0,"nanoseconds":0},"hasDayLightSaving":false,"isDayLightSavingActive":false,"dstInterval":null} + // 0 + char *p_json = strstr(local_response_buffer, "\r\n\r\n"); + if( p_json ) { + p_json = p_json + 4 + 3; //todo + return __time_zone_data_prase(p_json); + } else { + return -1; + } + + } + return -1; +} + +#else + +int https_mbedtls_request(const char *p_url, const char * port, const char *p_request, uint32_t request_len) +{ + int ret, flags, len; + + mbedtls_entropy_context entropy; + mbedtls_ctr_drbg_context ctr_drbg; + mbedtls_ssl_context ssl; + mbedtls_x509_crt cacert; + mbedtls_ssl_config conf; + mbedtls_net_context server_fd; + + mbedtls_ssl_init(&ssl); + mbedtls_x509_crt_init(&cacert); + mbedtls_ctr_drbg_init(&ctr_drbg); + ESP_LOGI(TAG, "Seeding the random number generator"); + + mbedtls_ssl_config_init(&conf); + + mbedtls_entropy_init(&entropy); + if((ret = mbedtls_ctr_drbg_seed(&ctr_drbg, mbedtls_entropy_func, &entropy, + NULL, 0)) != 0) + { + ESP_LOGE(TAG, "mbedtls_ctr_drbg_seed returned %d", ret); + abort(); + } + ESP_LOGI(TAG, "Attaching the certificate bundle..."); + ret = esp_crt_bundle_attach(&conf); + + if(ret < 0) + { + ESP_LOGE(TAG, "esp_crt_bundle_attach returned -0x%x\n\n", -ret); + abort(); + } + + ESP_LOGI(TAG, "Setting hostname for TLS session..."); + + /* Hostname set here should match CN in server certificate */ + if((ret = mbedtls_ssl_set_hostname(&ssl, p_url)) != 0) + { + ESP_LOGE(TAG, "mbedtls_ssl_set_hostname returned -0x%x", -ret); + abort(); + } + + ESP_LOGI(TAG, "Setting up the SSL/TLS structure..."); + + if((ret = mbedtls_ssl_config_defaults(&conf, + MBEDTLS_SSL_IS_CLIENT, + MBEDTLS_SSL_TRANSPORT_STREAM, + MBEDTLS_SSL_PRESET_DEFAULT)) != 0) + { + ESP_LOGE(TAG, "mbedtls_ssl_config_defaults returned %d", ret); + goto exit; + } + + /* MBEDTLS_SSL_VERIFY_OPTIONAL is bad for security, in this example it will print + a warning if CA verification fails but it will continue to connect. + + You should consider using MBEDTLS_SSL_VERIFY_REQUIRED in your own code. + */ + mbedtls_ssl_conf_authmode(&conf, MBEDTLS_SSL_VERIFY_OPTIONAL); + mbedtls_ssl_conf_ca_chain(&conf, &cacert, NULL); + mbedtls_ssl_conf_rng(&conf, mbedtls_ctr_drbg_random, &ctr_drbg); + //mbedtls_esp_enable_debug_log(&conf, 1); + +#ifdef CONFIG_MBEDTLS_SSL_PROTO_TLS1_3 + mbedtls_ssl_conf_min_version(&conf, MBEDTLS_SSL_MAJOR_VERSION_3, MBEDTLS_SSL_MINOR_VERSION_4); + mbedtls_ssl_conf_max_version(&conf, MBEDTLS_SSL_MAJOR_VERSION_3, MBEDTLS_SSL_MINOR_VERSION_4); +#endif + + if ((ret = mbedtls_ssl_setup(&ssl, &conf)) != 0) + { + ESP_LOGE(TAG, "mbedtls_ssl_setup returned -0x%x\n\n", -ret); + goto exit; + } + + while(1) { + mbedtls_net_init(&server_fd); + + ESP_LOGI(TAG, "Connecting to %s:%s...", p_url, port); + + if ((ret = mbedtls_net_connect(&server_fd, p_url, + port, MBEDTLS_NET_PROTO_TCP)) != 0) + { + ESP_LOGE(TAG, "mbedtls_net_connect returned -%x", -ret); + goto exit; + } + + ESP_LOGI(TAG, "Connected."); + + mbedtls_ssl_set_bio(&ssl, &server_fd, mbedtls_net_send, mbedtls_net_recv, NULL); + + ESP_LOGI(TAG, "Performing the SSL/TLS handshake..."); + + + while ((ret = mbedtls_ssl_handshake(&ssl)) != 0) + { + if (ret != MBEDTLS_ERR_SSL_WANT_READ && ret != MBEDTLS_ERR_SSL_WANT_WRITE) + { + ESP_LOGE(TAG, "mbedtls_ssl_handshake returned -0x%x", -ret); + goto exit; + } + } + + ESP_LOGI(TAG, "Verifying peer X.509 certificate..."); + + if ((flags = mbedtls_ssl_get_verify_result(&ssl)) != 0) + { + /* In real life, we probably want to close connection if ret != 0 */ + ESP_LOGW(TAG, "Failed to verify peer certificate!"); + bzero(local_response_buffer, sizeof(local_response_buffer)); + mbedtls_x509_crt_verify_info(local_response_buffer, sizeof(local_response_buffer), " ! ", flags); + ESP_LOGW(TAG, "verification info: %s", local_response_buffer); + } + else { + ESP_LOGI(TAG, "Certificate verified."); + } + + ESP_LOGI(TAG, "Cipher suite is %s", mbedtls_ssl_get_ciphersuite(&ssl)); + + ESP_LOGI(TAG, "Writing HTTP request..."); + size_t written_bytes = 0; + do { + ret = mbedtls_ssl_write(&ssl, + (const unsigned char *)p_request + written_bytes, + request_len- written_bytes); + if (ret >= 0) { + ESP_LOGI(TAG, "%d bytes written", ret); + written_bytes += ret; + } else if (ret != MBEDTLS_ERR_SSL_WANT_WRITE && ret != MBEDTLS_ERR_SSL_WANT_READ) { + ESP_LOGE(TAG, "mbedtls_ssl_write returned -0x%x", -ret); + goto exit; + } + } while(written_bytes < request_len); + + ESP_LOGI(TAG, "Reading HTTP response..."); + int recv_len = 0; + len = sizeof(local_response_buffer) - 1; + bzero(local_response_buffer, sizeof(local_response_buffer)); + do + { + len -= recv_len; + ret = mbedtls_ssl_read(&ssl, (unsigned char *)local_response_buffer+recv_len, len); + + if(ret == MBEDTLS_ERR_SSL_WANT_READ || ret == MBEDTLS_ERR_SSL_WANT_WRITE) + continue; + + if(ret == MBEDTLS_ERR_SSL_PEER_CLOSE_NOTIFY) { + ret = 0; + break; + } + + if(ret < 0) + { + ESP_LOGE(TAG, "mbedtls_ssl_read returned -0x%x", -ret); + break; + } + + if(ret == 0) + { + ESP_LOGI(TAG, "connection closed"); + break; + } + + ESP_LOGD(TAG, "%d bytes read", ret); + /* Print response directly to stdout as it is read */ + for(int i = 0; i < ret; i++) { + putchar(local_response_buffer[i+recv_len]); + } + recv_len += ret; + + } while(1); + + mbedtls_ssl_close_notify(&ssl); + + exit: + mbedtls_ssl_session_reset(&ssl); + mbedtls_net_free(&server_fd); + + if(ret != 0) + { + mbedtls_strerror(ret, local_response_buffer, 100); + ESP_LOGE(TAG, "Last error was: -0x%x - %s", -ret, local_response_buffer); + return -1; + } + + putchar('\n'); // JSON output doesn't have a newline at end + + return recv_len; + } +} + +static int __ip_get(char *ip, int buf_len) +{ + char ip_url[128] = {0}; + char ip_request[200] = {0}; + int len; + snprintf(ip_url, sizeof(ip_url),"https://api.ipify.org"); + len = snprintf(ip_request, sizeof(ip_request),"GET %s HTTP/1.0\r\nHost: api.ipify.org\r\nUser-Agent: esp-idf/1.0 esp32\r\n\r\n", ip_url); + + len = https_mbedtls_request("api.ipify.org", "443", ip_request, len); + if(len > 0) { + char *p_ip = strstr(local_response_buffer, "\r\n\r\n"); + if( p_ip ) { + strncpy(ip, p_ip+4, buf_len); + return 0; + } else { + return -1; + } + } + return -1; +} + +static int __time_zone_get(char *ip) +{ + + char time_zone_url[128] = {0}; + char time_zone_request[200] = {0}; + int len = 0; + snprintf(time_zone_url, sizeof(time_zone_url),"https://www.timeapi.io/api/TimeZone/ip?ipAddress=%s",ip); + len = snprintf(time_zone_request, sizeof(time_zone_request),"GET %s HTTP/1.1\r\nHost: www.timeapi.io\r\nUser-Agent: sensecap\r\n\r\n", time_zone_url); + + len = https_mbedtls_request("www.timeapi.io", "443", time_zone_request, len); + + if( len > 0) { + // TIME ZONE RESPONSE: HTTP/1.1 200 OK + // Server: nginx/1.18.0 (Ubuntu) + // Date: Thu, 02 Feb 2023 09:40:26 GMT + // Content-Type: application/json; charset=utf-8 + // Transfer-Encoding: chunked + // Connection: keep-alive + + // 128 + // {"timeZone":"UTC","currentLocalTime":"2023-02-02T09:40:26.1233729","currentUtcOffset":{"seconds":0,"milliseconds":0,"ticks":0,"nanoseconds":0},"standardUtcOffset":{"seconds":0,"milliseconds":0,"ticks":0,"nanoseconds":0},"hasDayLightSaving":false,"isDayLightSavingActive":false,"dstInterval":null} + // 0 + char *p_json = strstr(local_response_buffer, "\r\n\r\n"); + if( p_json ) { + p_json = p_json + 4 + 3; //todo + return __time_zone_data_prase(p_json); + } else { + return -1; + } + + } + return -1; +} +#endif + +static void __indicator_http_task(void *p_arg) +{ + int err = -1; + + bool city_flag = false; + bool ip_flag = false; + bool time_zone_flag = false; + + xSemaphoreTake(__g_http_com_sem, portMAX_DELAY); + + ESP_LOGI(TAG, "start Get city and time zone"); + + while(1) { + + if( net_flag && !city_flag) { + + err = __city_get(); + if( err == 0) { + ESP_LOGI(TAG, "Get succesfully"); + ESP_LOGI(TAG, "ip : %s", __g_city_model.ip); + ESP_LOGI(TAG, "city : %s", __g_city_model.city); + ESP_LOGI(TAG, "timezone : %s", __g_city_model.timezone); + city_flag = true; + ip_flag= true; + esp_event_post_to(view_event_handle, VIEW_EVENT_BASE, VIEW_EVENT_CITY, &__g_city_model.city, sizeof(__g_city_model.city), portMAX_DELAY); + } + } + + if( net_flag && !ip_flag ) { + ESP_LOGI(TAG, "Get ip..."); + err = __ip_get(__g_city_model.ip, sizeof(__g_city_model.ip)); + if( err ==0 ) { + ESP_LOGI(TAG, "ip: %s", __g_city_model.ip); + ip_flag= true; + } + } + if( net_flag && ip_flag && !time_zone_flag) { + ESP_LOGI(TAG, "Get time zone..."); + err = __time_zone_get(__g_city_model.ip); + if( err == 0) { + char zone_str[32]; + float zone = __g_city_model.local_utc_offset / 3600.0; + + if( zone >= 0) { + snprintf(zone_str, sizeof(zone_str) - 1, "UTC-%.1f", zone); + } else { + snprintf(zone_str, sizeof(zone_str) - 1, "UTC+%.1f", 0 - zone); + } + indicator_time_net_zone_set( zone_str ); + + time_zone_flag = true; + } + } + + if( city_flag && time_zone_flag) { + break; + } + + vTaskDelay(pdMS_TO_TICKS(1000)); + + } + vTaskDelete(NULL); +} + +static void __view_event_handler(void* handler_args, esp_event_base_t base, int32_t id, void* event_data) +{ + switch (id) + { + case VIEW_EVENT_WIFI_ST: { + ESP_LOGI(TAG, "event: VIEW_EVENT_WIFI_ST"); + struct view_data_wifi_st *p_st = ( struct view_data_wifi_st *)event_data; + if( p_st->is_connected) { + net_flag = true; + xSemaphoreGive(__g_http_com_sem); //right away get city and time zone + } else { + net_flag = false; + } + break; + } + default: + break; + } +} + +int indicator_city_init(void) +{ + __g_http_com_sem = xSemaphoreCreateBinary(); + + xTaskCreate(&__indicator_http_task, "__indicator_http_task", 1024 * 5, NULL, 10, NULL); + + ESP_ERROR_CHECK(esp_event_handler_instance_register_with(view_event_handle, + VIEW_EVENT_BASE, VIEW_EVENT_WIFI_ST, + __view_event_handler, NULL, NULL)); +} + + diff --git a/examples/indicator_matter/main/model/indicator_city.h b/examples/indicator_matter/main/model/indicator_city.h new file mode 100644 index 0000000..1d6e6a0 --- /dev/null +++ b/examples/indicator_matter/main/model/indicator_city.h @@ -0,0 +1,17 @@ +#ifndef INDICATOR_CITY_H +#define INDICATOR_CITY_H + +#include "config.h" +#include "view_data.h" + +#ifdef __cplusplus +extern "C" { +#endif + +int indicator_city_init(void); + +#ifdef __cplusplus +} +#endif + +#endif diff --git a/examples/indicator_matter/main/model/indicator_display.c b/examples/indicator_matter/main/model/indicator_display.c new file mode 100644 index 0000000..1576d4f --- /dev/null +++ b/examples/indicator_matter/main/model/indicator_display.c @@ -0,0 +1,321 @@ +#include "indicator_display.h" +#include "freertos/semphr.h" + +#include "driver/ledc.h" +#include "esp_timer.h" +#include "nvs.h" + +#define DISPLAY_CFG_STORAGE "display" + +#define LEDC_TIMER LEDC_TIMER_0 +#define LEDC_MODE LEDC_LOW_SPEED_MODE +#define LEDC_OUTPUT_IO (45) // Define the output GPIO +#define LEDC_CHANNEL LEDC_CHANNEL_0 +#define LEDC_DUTY_RES LEDC_TIMER_13_BIT // Set duty resolution to 13 bits +#define LEDC_FREQUENCY (5000) // Frequency in Hertz. Set frequency at 5 kHz + + + +struct indicator_display +{ + struct view_data_display cfg; + bool timer_st; // true, running , false: stop + bool display_st; +}; + +static const char *TAG = "display"; + +static struct indicator_display __g_display_model; +static SemaphoreHandle_t __g_data_mutex; + +static esp_timer_handle_t sleep_timer_handle; +static SemaphoreHandle_t __g_timer_mutex; + +static bool init_done_flag = false; +static void __display_cfg_set(struct view_data_display *p_data ) +{ + xSemaphoreTake(__g_data_mutex, portMAX_DELAY); + memcpy( &__g_display_model.cfg, p_data, sizeof(struct view_data_display)); + xSemaphoreGive(__g_data_mutex); +} + +static void __display_cfg_get(struct view_data_display *p_data ) +{ + xSemaphoreTake(__g_data_mutex, portMAX_DELAY); + memcpy(p_data, &__g_display_model.cfg, sizeof(struct view_data_display)); + xSemaphoreGive(__g_data_mutex); +} + +static void __timer_st_set( bool st ) +{ + xSemaphoreTake(__g_data_mutex, portMAX_DELAY); + __g_display_model.timer_st = st; + xSemaphoreGive(__g_data_mutex); +} + +static bool __timer_st_get(void) +{ + xSemaphoreTake(__g_data_mutex, portMAX_DELAY); + bool flag = __g_display_model.timer_st; + xSemaphoreGive(__g_data_mutex); + return flag; +} + +static void __display_st_set( bool st ) +{ + xSemaphoreTake(__g_data_mutex, portMAX_DELAY); + __g_display_model.display_st = st; + xSemaphoreGive(__g_data_mutex); +} + +static bool __display_st_get(void) +{ + xSemaphoreTake(__g_data_mutex, portMAX_DELAY); + bool st = __g_display_model.display_st; + xSemaphoreGive(__g_data_mutex); + return st; +} + + +static void __display_cfg_print(struct view_data_display *p_data ) +{ + ESP_LOGI(TAG, "brightnes:%d, sleep_mode:%d, time:%d min",p_data->brightness, p_data->sleep_mode_en, p_data->sleep_mode_time_min ); + +} + + + +static void __lcd_bl_init(uint8_t brightness) +{ + if(brightness > 99) { + brightness=99; + } else if( brightness < 1) { + brightness=1; + } + + ledc_timer_config_t ledc_timer = { + .speed_mode = LEDC_MODE, + .timer_num = LEDC_TIMER, + .duty_resolution = LEDC_DUTY_RES, + .freq_hz = LEDC_FREQUENCY, // Set output frequency at 5 kHz + .clk_cfg = LEDC_AUTO_CLK + }; + ESP_ERROR_CHECK(ledc_timer_config(&ledc_timer)); + + ledc_channel_config_t ledc_channel = { + .speed_mode = LEDC_MODE, + .channel = LEDC_CHANNEL, + .timer_sel = LEDC_TIMER, + .intr_type = LEDC_INTR_DISABLE, + .gpio_num = LEDC_OUTPUT_IO, + .duty = (8192 - 1) * brightness/ 100, // Set duty to 0% + .hpoint = 0 + }; + ESP_ERROR_CHECK(ledc_channel_config(&ledc_channel)); +} + +static void __lcd_bl_set(int brightness ) +{ + if(brightness > 99) { + brightness=99; + } else if( brightness < 1) { + brightness=1; + } + + uint32_t duty =(uint32_t) (8192 - 1) * brightness / 100.0; + + ESP_ERROR_CHECK(ledc_set_duty(LEDC_MODE, LEDC_CHANNEL, duty)); + ESP_ERROR_CHECK(ledc_update_duty(LEDC_MODE, LEDC_CHANNEL)); +} + +static void __lcd_bl_on(void) +{ + struct view_data_display cfg; + __display_cfg_get(&cfg); + __lcd_bl_set(cfg.brightness); + __display_st_set(true); +} + +static void __lcd_bl_off(void) +{ + ledc_stop( LEDC_MODE, LEDC_CHANNEL, 0); + __display_st_set(false); +} + +static void __sleep_mode_timer_callback(void* arg) +{ + ESP_LOGI(TAG, "sleep mode, lcd bl off"); + __lcd_bl_off(); + __timer_st_set(false); + + bool st=0; + st = 0; + esp_event_post_to(view_event_handle, VIEW_EVENT_BASE, VIEW_EVENT_SCREEN_CTRL, &st, sizeof(st), portMAX_DELAY); +} + +static void __timer_stop(void) +{ + if( __timer_st_get()) { + xSemaphoreTake(__g_timer_mutex, portMAX_DELAY); + ESP_ERROR_CHECK(esp_timer_stop(sleep_timer_handle)); + xSemaphoreGive(__g_timer_mutex); + __timer_st_set(false); + } +} + +static void __sleep_mode_restart(bool en, int min) +{ + __timer_stop(); + if( ! en || min ==0) { + return; + } + __timer_st_set(true); + xSemaphoreTake(__g_timer_mutex, portMAX_DELAY); + ESP_ERROR_CHECK(esp_timer_start_once(sleep_timer_handle, (uint64_t) min *60 * 1000000 )); + xSemaphoreGive(__g_timer_mutex); +} + +static void __sleep_mode_init( bool sleep_mode_en, int sleep_mode_time_min) +{ + const esp_timer_create_args_t timer_args = { + .callback = &__sleep_mode_timer_callback, + /* argument specified here will be passed to timer callback function */ + .arg = (void*) sleep_timer_handle, + .name = "sleep mode" + }; + ESP_ERROR_CHECK( esp_timer_create(&timer_args, &sleep_timer_handle)); + + __timer_st_set(false); + __sleep_mode_restart(sleep_mode_en, sleep_mode_time_min); +} + + +static void __display_cfg_save(struct view_data_display *p_data ) +{ + esp_err_t ret = 0; + ret = indicator_storage_write(DISPLAY_CFG_STORAGE, (void *)p_data, sizeof(struct view_data_display)); + if( ret != ESP_OK ) { + ESP_LOGI(TAG, "cfg write err:%d", ret); + } else { + ESP_LOGI(TAG, "cfg write successful"); + } +} + + +static void __display_cfg_restore(void) +{ + esp_err_t ret = 0; + struct view_data_display cfg; + + size_t len = sizeof(cfg); + + ret = indicator_storage_read(DISPLAY_CFG_STORAGE, (void *)&cfg, &len); + if( ret == ESP_OK && len== (sizeof(cfg)) ) { + ESP_LOGI(TAG, "cfg read successful"); + __display_cfg_set(&cfg); + } else { + // err or not find + if( ret == ESP_ERR_NVS_NOT_FOUND) { + ESP_LOGI(TAG, "cfg not found"); + }else { + ESP_LOGI(TAG, "cfg read err:%d", ret); + } + + cfg.brightness = 80; + cfg.sleep_mode_en = false; + cfg.sleep_mode_time_min = 0; + __display_cfg_set(&cfg); + } +} + +static void __view_event_handler(void* handler_args, esp_event_base_t base, int32_t id, void* event_data) +{ + switch (id) + { + case VIEW_EVENT_BRIGHTNESS_UPDATE: { + int *p_brightness= (int *)event_data; + struct view_data_display cfg; + + ESP_LOGI(TAG, "event: VIEW_EVENT_BRIGHTNESS_UPDATE, brightnes:%d", *p_brightness); + + __lcd_bl_set(*p_brightness); + + __display_cfg_get(&cfg); + cfg.brightness=*p_brightness; + __display_cfg_set(&cfg); + break; + } + case VIEW_EVENT_DISPLAY_CFG_APPLY: { + + struct view_data_display * p_cfg = (struct view_data_display *)event_data; + ESP_LOGI(TAG, "event: VIEW_EVENT_DISPLAY_CFG_APPLY"); + __display_cfg_print(p_cfg); + + __display_cfg_set(p_cfg); + __display_cfg_save(p_cfg); + __sleep_mode_restart(p_cfg->sleep_mode_en, p_cfg->sleep_mode_time_min); + break; + } + + default: + break; + } + + +} +int indicator_display_init(void) +{ + struct view_data_display cfg; + __g_data_mutex = xSemaphoreCreateMutex(); + __g_timer_mutex = xSemaphoreCreateMutex(); + + __display_cfg_restore(); + + __display_cfg_get(&cfg); + + __lcd_bl_init(cfg.brightness); + __display_st_set(true); + + __sleep_mode_init(cfg.sleep_mode_en, cfg.sleep_mode_time_min); + + esp_event_post_to(view_event_handle, VIEW_EVENT_BASE, VIEW_EVENT_DISPLAY_CFG, &cfg, sizeof(cfg), portMAX_DELAY); + + ESP_ERROR_CHECK(esp_event_handler_instance_register_with(view_event_handle, + VIEW_EVENT_BASE, VIEW_EVENT_BRIGHTNESS_UPDATE, + __view_event_handler, NULL, NULL)); + + ESP_ERROR_CHECK(esp_event_handler_instance_register_with(view_event_handle, + VIEW_EVENT_BASE, VIEW_EVENT_DISPLAY_CFG_APPLY, + __view_event_handler, NULL, NULL)); + init_done_flag = true; + return 0; +} + +int indicator_display_sleep_restart(void) +{ + if( !init_done_flag ) { + return 0; + } + struct view_data_display cfg; + __display_cfg_get(&cfg); + __sleep_mode_restart(cfg.sleep_mode_en, cfg.sleep_mode_time_min); + return 0; +} + +bool indicator_display_st_get(void) +{ + return __display_st_get(); +} + +int indicator_display_on(void) +{ + __lcd_bl_on(); + indicator_display_sleep_restart(); + return 0; +} + +int indicator_display_off(void) +{ + __lcd_bl_off(); + __timer_stop(); +} diff --git a/examples/indicator_matter/main/model/indicator_display.h b/examples/indicator_matter/main/model/indicator_display.h new file mode 100644 index 0000000..9dd917e --- /dev/null +++ b/examples/indicator_matter/main/model/indicator_display.h @@ -0,0 +1,26 @@ +#ifndef INDICATOR_DISPLAY_H +#define INDICATOR_DISPLAY_H + +#include "config.h" +#include "view_data.h" + +#ifdef __cplusplus +extern "C" { +#endif + + +int indicator_display_init(void); + +bool indicator_display_st_get(void); + +int indicator_display_on(void); + +int indicator_display_off(void); + +int indicator_display_sleep_restart(void); + +#ifdef __cplusplus +} +#endif + +#endif diff --git a/examples/indicator_matter/main/model/indicator_matter.cpp b/examples/indicator_matter/main/model/indicator_matter.cpp new file mode 100644 index 0000000..8f24a2f --- /dev/null +++ b/examples/indicator_matter/main/model/indicator_matter.cpp @@ -0,0 +1,565 @@ +#include "indicator_matter.h" +#include "indicator_storage.h" +#include "matter_config.h" + +#include +#include +#include +#include +#include +#include +#include +#include + +#if CHIP_DEVICE_CONFIG_ENABLE_THREAD +#include +#endif + +static const char *TAG = "matter"; +uint16_t temperature_endpoint_id = 0; +uint16_t humidity_endpoint_id = 0; +uint16_t dimmable_plugin_unit_endpoint_id = 0; +uint16_t door_lock_endpoint_id = 0; +uint16_t dimmable_plugin_unit_endpoint2_id = 0; + +static bool __g_matter_connected_flag = false; +static bool __g_ip_connected_flag = false; + +static int __g_humidity = 0; +static int __g_temperature = 0; +static struct view_data_wifi_st __g_wifi_st; +static SemaphoreHandle_t __g_matter_mutex; +static esp_timer_handle_t matter_humidity_timer_handle; +static esp_timer_handle_t matter_temperature_timer_handle; + +using namespace esp_matter; +using namespace esp_matter::attribute; +using namespace esp_matter::endpoint; +using namespace chip::app::Clusters; +using namespace esp_matter::cluster::basic_information::attribute; + +constexpr auto k_timeout_seconds = 300; + +static void __wifi_st_set( struct view_data_wifi_st *p_st ) +{ + xSemaphoreTake(__g_matter_mutex, portMAX_DELAY); + memcpy( &__g_wifi_st, p_st, sizeof(struct view_data_wifi_st)); + xSemaphoreGive(__g_matter_mutex); +} + +static void __wifi_st_get(struct view_data_wifi_st *p_st ) +{ + xSemaphoreTake(__g_matter_mutex, portMAX_DELAY); + memcpy(p_st, &__g_wifi_st, sizeof(struct view_data_wifi_st)); + xSemaphoreGive(__g_matter_mutex); +} + +static void __humidity_value_set( int h ) +{ + xSemaphoreTake(__g_matter_mutex, portMAX_DELAY); + __g_humidity = h; + xSemaphoreGive(__g_matter_mutex); +} + +static int __humidity_value_get(void) +{ + xSemaphoreTake(__g_matter_mutex, portMAX_DELAY); + int h = __g_humidity; + xSemaphoreGive(__g_matter_mutex); + return h; +} + +static void __temperature_value_set( int t ) +{ + xSemaphoreTake(__g_matter_mutex, portMAX_DELAY); + int value = t; + __g_temperature = value; + xSemaphoreGive(__g_matter_mutex); +} + +static int __temperature_value_get(void) +{ + xSemaphoreTake(__g_matter_mutex, portMAX_DELAY); + int t = __g_temperature; + xSemaphoreGive(__g_matter_mutex); + return t; +} + +static void app_event_cb(const ChipDeviceEvent *event, intptr_t arg) +{ + switch (event->Type) { + case chip::DeviceLayer::DeviceEventType::kServerReady: + ESP_LOGI(TAG, "Server Ready"); + __g_matter_connected_flag = true; + if (__g_matter_connected_flag) { + struct view_data_wifi_st st; + __wifi_st_get(&st); + st.rssi = -50; + st.is_connected = true; + + __wifi_st_set(&st); + esp_event_post_to(view_event_handle, VIEW_EVENT_BASE, VIEW_EVENT_WIFI_ST, &st, sizeof(struct view_data_wifi_st ), portMAX_DELAY); + + uint8_t screen = SCREEN_DASHBOARD; + ESP_ERROR_CHECK(esp_event_post_to(view_event_handle, VIEW_EVENT_BASE, VIEW_EVENT_SCREEN_START, &screen, sizeof(screen), portMAX_DELAY)); + } + break; + case chip::DeviceLayer::DeviceEventType::kInterfaceIpAddressChanged: + ESP_LOGI(TAG, "IP Interface Address Changed"); + if (event->InterfaceIpAddressChanged.Type == chip::DeviceLayer::InterfaceIpChangeType::kIpV6_Assigned || + event->InterfaceIpAddressChanged.Type == chip::DeviceLayer::InterfaceIpChangeType::kIpV4_Assigned) { + __g_ip_connected_flag = true; + } + break; + case chip::DeviceLayer::DeviceEventType::kCommissioningComplete: { + ESP_LOGI(TAG, "Connected"); + __g_matter_connected_flag = true; + break; + } + case chip::DeviceLayer::DeviceEventType::kFailSafeTimerExpired: + ESP_LOGI(TAG, "Commissioning failed, fail safe timer expired"); + break; + + case chip::DeviceLayer::DeviceEventType::kCommissioningSessionStarted: + ESP_LOGI(TAG, "Commissioning session started"); + break; + + case chip::DeviceLayer::DeviceEventType::kCommissioningSessionStopped: + ESP_LOGI(TAG, "Commissioning session stopped"); + break; + + case chip::DeviceLayer::DeviceEventType::kCommissioningWindowOpened: + ESP_LOGI(TAG, "Commissioning window opened"); + break; + + case chip::DeviceLayer::DeviceEventType::kCommissioningWindowClosed: + { + ESP_LOGI(TAG, "Commissioning window closed"); + break; + } + case chip::DeviceLayer::DeviceEventType::kFabricRemoved: + { + ESP_LOGI(TAG, "Fabric removed successfully"); + if (chip::Server::GetInstance().GetFabricTable().FabricCount() == 0) + { + chip::CommissioningWindowManager & commissionMgr = chip::Server::GetInstance().GetCommissioningWindowManager(); + constexpr auto kTimeoutSeconds = chip::System::Clock::Seconds16(k_timeout_seconds); + if (!commissionMgr.IsCommissioningWindowOpen()) + { + CHIP_ERROR err = commissionMgr.OpenBasicCommissioningWindow(kTimeoutSeconds, + chip::CommissioningWindowAdvertisement::kDnssdOnly); + if (err != CHIP_NO_ERROR) + { + ESP_LOGE(TAG, "Failed to open commissioning window, err:%" CHIP_ERROR_FORMAT, err.Format()); + } + } + } + break; + } + case chip::DeviceLayer::DeviceEventType::kFabricWillBeRemoved: + ESP_LOGI(TAG, "Fabric will be removed"); + break; + + case chip::DeviceLayer::DeviceEventType::kFabricUpdated: + ESP_LOGI(TAG, "Fabric is updated"); + break; + + case chip::DeviceLayer::DeviceEventType::kFabricCommitted: + ESP_LOGI(TAG, "Fabric is committed"); + break; + default: + break; + } +} + +static esp_err_t app_identification_cb(identification::callback_type_t type, uint16_t endpoint_id, uint8_t effect_id, + uint8_t effect_variant, void *priv_data) +{ + ESP_LOGI(TAG, "Identification callback: type: %u, effect: %u, variant: %u", type, effect_id, effect_variant); + return ESP_OK; +} + +static esp_err_t app_attribute_update_cb(attribute::callback_type_t type, uint16_t endpoint_id, uint32_t cluster_id, + uint32_t attribute_id, esp_matter_attr_val_t *val, void *priv_data) +{ + esp_err_t err = ESP_OK; + if (type == PRE_UPDATE) { + esp_err_t err = ESP_OK; + if (endpoint_id == dimmable_plugin_unit_endpoint_id) { + if (cluster_id == OnOff::Id) { + if (attribute_id == OnOff::Attributes::OnOff::Id) { + struct view_data_matter_dashboard_data data; + data.dashboard_data_type = DASHBOARD_DATA_BUTTON1; + data.value = (int)val->val.b; + esp_event_post_to(view_event_handle, VIEW_EVENT_BASE, VIEW_EVENT_MATTER_SET_DASHBOARD_DATA, \ + &data, sizeof(struct view_data_matter_dashboard_data ), portMAX_DELAY); + } + } else if (cluster_id == LevelControl::Id) { + if (attribute_id == LevelControl::Attributes::CurrentLevel::Id) { + struct view_data_matter_dashboard_data data; + data.dashboard_data_type = DASHBOARD_DATA_ARC; + data.value = val->val.i; + esp_event_post_to(view_event_handle, VIEW_EVENT_BASE, VIEW_EVENT_MATTER_SET_DASHBOARD_DATA, \ + &data, sizeof(struct view_data_matter_dashboard_data ), portMAX_DELAY); + } + } + } else if (endpoint_id == dimmable_plugin_unit_endpoint2_id) { + if (cluster_id == OnOff::Id) { + if (attribute_id == OnOff::Attributes::OnOff::Id) { + struct view_data_matter_dashboard_data data; + data.dashboard_data_type = DASHBOARD_DATA_BUTTON2; + data.value = (int)val->val.b; + esp_event_post_to(view_event_handle, VIEW_EVENT_BASE, VIEW_EVENT_MATTER_SET_DASHBOARD_DATA, \ + &data, sizeof(struct view_data_matter_dashboard_data ), portMAX_DELAY); + + } + } else if (cluster_id == LevelControl::Id) { + if (attribute_id == LevelControl::Attributes::CurrentLevel::Id) { + struct view_data_matter_dashboard_data data; + data.dashboard_data_type = DASHBOARD_DATA_SLIDER; + data.value = val->val.i; + esp_event_post_to(view_event_handle, VIEW_EVENT_BASE, VIEW_EVENT_MATTER_SET_DASHBOARD_DATA, \ + &data, sizeof(struct view_data_matter_dashboard_data ), portMAX_DELAY); + } + } + } else if (endpoint_id == door_lock_endpoint_id) { + if (cluster_id == DoorLock::Id) { + if (attribute_id == DoorLock::Attributes::LockState::Id) { + struct view_data_matter_dashboard_data data; + data.dashboard_data_type = DASHBOARD_DATA_SWITCH; + data.value = (int)val->val.b; + esp_event_post_to(view_event_handle, VIEW_EVENT_BASE, VIEW_EVENT_MATTER_SET_DASHBOARD_DATA, \ + &data, sizeof(struct view_data_matter_dashboard_data ), portMAX_DELAY); + } + } + } + return err; + } + + return err; +} + +static void __matter_temperature_reporter(void* arg) { + if (__g_matter_connected_flag && __g_ip_connected_flag) { + uint16_t endpoint_id = temperature_endpoint_id; + uint32_t cluster_id = TemperatureMeasurement::Id; + uint32_t attribute_id = TemperatureMeasurement::Attributes::MeasuredValue::Id; + node_t *node = node::get(); + endpoint_t *endpoint = endpoint::get(node, endpoint_id); + cluster_t *cluster = cluster::get(endpoint, cluster_id); + attribute_t *attribute = attribute::get(cluster, attribute_id); + esp_matter_attr_val_t val = esp_matter_invalid(NULL); + attribute::get_val(attribute, &val); + val.val.i16 = (int16_t) __temperature_value_get(); + + ESP_LOGI(TAG, "Temperature: esp_matter_attr_val_t value is %d", val.val.i16); + + + attribute::update(endpoint_id, cluster_id, attribute_id, &val); + + } else { + int value = (int)(__temperature_value_get() / 1000.0); + ESP_LOGI(TAG, "Matter temperature not logging: esp_matter_attr_val_t value is %d", value); + } +} + +static void __matter_humidity_reporter(void* arg) { + if (__g_matter_connected_flag && __g_ip_connected_flag) { + uint16_t endpoint_id = humidity_endpoint_id; + uint32_t cluster_id = RelativeHumidityMeasurement::Id; + uint32_t attribute_id = RelativeHumidityMeasurement::Attributes::MeasuredValue::Id; + node_t *node = node::get(); + endpoint_t *endpoint = endpoint::get(node, endpoint_id); + cluster_t *cluster = cluster::get(endpoint, RelativeHumidityMeasurement::Id); + attribute_t *attribute = attribute::get(cluster, RelativeHumidityMeasurement::Attributes::MeasuredValue::Id); + esp_matter_attr_val_t val = esp_matter_invalid(NULL); + attribute::get_val(attribute, &val); + val.val.i16 = (int16_t) __humidity_value_get(); + + ESP_LOGI(TAG, "Humidity: esp_matter_attr_val_t value is %d", val.val.i); + + attribute::update(endpoint_id, cluster_id, attribute_id, &val); + + } else { + int value = (int)(__humidity_value_get() / 1000.0); + ESP_LOGI(TAG, "Matter humidity not logging: esp_matter_attr_val_t value is %d", value); + } +} + +static void __view_event_handler(void* handler_args, esp_event_base_t base, int32_t id, void* event_data) +{ + switch (id) + { + case VIEW_EVENT_SHUTDOWN: { + ESP_LOGI(TAG, "event: VIEW_EVENT_SHUTDOWN"); + break; + } + case VIEW_EVENT_MATTER_DASHBOARD_DATA: { + ESP_LOGI(TAG, "event: VIEW_EVENT_MATTER_DASHBOARD_DATA"); + + if (!__g_matter_connected_flag) { + return; + } + struct view_data_matter_dashboard_data *p_data = (struct view_data_matter_dashboard_data *) event_data; + + switch (p_data->dashboard_data_type) + { + case DASHBOARD_DATA_ARC: { + uint16_t endpoint_id = dimmable_plugin_unit_endpoint_id; + uint32_t cluster_id = LevelControl::Id; + uint32_t attribute_id = LevelControl::Attributes::CurrentLevel::Id; + + node_t *node = node::get(); + endpoint_t *endpoint = endpoint::get(node, endpoint_id); + cluster_t *cluster = cluster::get(endpoint, cluster_id); + attribute_t *attribute = attribute::get(cluster, attribute_id); + + esp_matter_attr_val_t val = esp_matter_invalid(NULL); + attribute::get_val(attribute, &val); + val.val.i = p_data->value; + ESP_LOGI(TAG, "Dimmer switch: esp_matter_attr_val_t value is %d", val.val.i); + attribute::update(endpoint_id, cluster_id, attribute_id, &val); + break; + } + case DASHBOARD_DATA_SWITCH: { + uint16_t endpoint_id = door_lock_endpoint_id; + uint32_t cluster_id = DoorLock::Id; + uint32_t attribute_id = DoorLock::Attributes::LockState::Id; + node_t *node = node::get(); + endpoint_t *endpoint = endpoint::get(node, endpoint_id); + cluster_t *cluster = cluster::get(endpoint, cluster_id); + attribute_t *attribute = attribute::get(cluster, attribute_id); + + esp_matter_attr_val_t val = esp_matter_invalid(NULL); + attribute::get_val(attribute, &val); + val.val.b = (bool)p_data->value; + ESP_LOGI(TAG, "Door lock: esp_matter_attr_val_t value is %d", (int)val.val.b); + + attribute::update(endpoint_id, cluster_id, attribute_id, &val); + + break; + } + case DASHBOARD_DATA_SLIDER: { + uint16_t endpoint_id = dimmable_plugin_unit_endpoint2_id; + uint32_t cluster_id = LevelControl::Id; + uint32_t attribute_id = LevelControl::Attributes::CurrentLevel::Id; + + node_t *node = node::get(); + endpoint_t *endpoint = endpoint::get(node, endpoint_id); + cluster_t *cluster = cluster::get(endpoint, cluster_id); + attribute_t *attribute = attribute::get(cluster, attribute_id); + + esp_matter_attr_val_t val = esp_matter_invalid(NULL); + attribute::get_val(attribute, &val); + val.val.i = p_data->value; + + ESP_LOGI(TAG, "Dimmer switch: esp_matter_attr_val_t value is %d", val.val.i); + + attribute::update(endpoint_id, cluster_id, attribute_id, &val); + + break; + } + case DASHBOARD_DATA_BUTTON1: { + uint16_t endpoint_id = dimmable_plugin_unit_endpoint_id; + uint32_t cluster_id = OnOff::Id; + uint32_t attribute_id = OnOff::Attributes::OnOff::Id; + + node_t *node = node::get(); + endpoint_t *endpoint = endpoint::get(node, endpoint_id); + cluster_t *cluster = cluster::get(endpoint, cluster_id); + attribute_t *attribute = attribute::get(cluster, attribute_id); + + esp_matter_attr_val_t val = esp_matter_invalid(NULL); + attribute::get_val(attribute, &val); + val.val.b = (bool)p_data->value; + + ESP_LOGI(TAG, "Dimmer switch: esp_matter_attr_val_t value is %d", (int)val.val.b); + + attribute::update(endpoint_id, cluster_id, attribute_id, &val); + + break; + } + case DASHBOARD_DATA_BUTTON2: { + uint16_t endpoint_id = dimmable_plugin_unit_endpoint2_id; + uint32_t cluster_id = OnOff::Id; + uint32_t attribute_id = OnOff::Attributes::OnOff::Id; + + node_t *node = node::get(); + endpoint_t *endpoint = endpoint::get(node, endpoint_id); + cluster_t *cluster = cluster::get(endpoint, cluster_id); + attribute_t *attribute = attribute::get(cluster, attribute_id); + + esp_matter_attr_val_t val = esp_matter_invalid(NULL); + attribute::get_val(attribute, &val); + val.val.b = (bool)p_data->value; + + ESP_LOGI(TAG, "Dimmer on/off: esp_matter_attr_val_t value is %d", (int)val.val.b); + + attribute::update(endpoint_id, cluster_id, attribute_id, &val); + + break; + } + default: + break; + } + break; + } + case VIEW_EVENT_SENSOR_DATA: { + ESP_LOGI(TAG, "event: VIEW_EVENT_SENSOR_DATA"); + + struct view_data_sensor_data *p_data = (struct view_data_sensor_data *) event_data; + + switch (p_data->sensor_type) + { + case SENSOR_DATA_CO2: { + break; + } + case SENSOR_DATA_TVOC: { + break; + } + case SENSOR_DATA_TEMP: { + int temperature = (int)(p_data->value*100); + __temperature_value_set(temperature); + break; + } + case SENSOR_DATA_HUMIDITY: { + int humidity = (int)(p_data->value*100); + __humidity_value_set(humidity); + break; + } + default: + break; + } + break; + } + default: + break; + } +} + +int indicator_matter_setup(void) { + esp_err_t err = ESP_OK; + __g_matter_connected_flag = chip::DeviceLayer::Internal::ESP32Utils::IsStationProvisioned(); + memset(&__g_wifi_st, 0, sizeof(__g_wifi_st)); + __g_matter_mutex = xSemaphoreCreateMutex(); + node::config_t node_config; + node_t *node = node::create(&node_config, app_attribute_update_cb, app_identification_cb); + + // Create the temperature endpoint + temperature_sensor::config_t temperature_config; + endpoint_t *temperature_endpoint = temperature_sensor::create(node, &temperature_config, ENDPOINT_FLAG_NONE, NULL); + char temperature_name[] = "SenseCAP Indicator Temperature"; + cluster_t *temperature_cluster = cluster::get(temperature_endpoint, BasicInformation::Id); + create_product_name(temperature_cluster, temperature_name, strlen(temperature_name)); + + // Create the humidity endpoint + humidity_sensor::config_t humidity_config; + endpoint_t *humidity_endpoint = humidity_sensor::create(node, &humidity_config, ENDPOINT_FLAG_NONE, NULL); + char humidity_name[] = "SenseCAP Indicator Humidity"; + cluster_t *humidity_cluster = cluster::get(temperature_endpoint, BasicInformation::Id); + create_product_name(humidity_cluster, humidity_name, strlen(humidity_name)); + + // Create the dimmable light endpoint + dimmable_plugin_unit::config_t dimmable_plugin_unit_config; + dimmable_plugin_unit_config.level_control.lighting.min_level = 0; + dimmable_plugin_unit_config.level_control.lighting.max_level = 100; + endpoint_t *dimmable_plugin_unit_endpoint = dimmable_plugin_unit::create(node, &dimmable_plugin_unit_config, ENDPOINT_FLAG_NONE, NULL); + char dimmable_plugin_1_name[] = "Dimmable Light"; + cluster_t *dimmable_plugin_1_cluster = cluster::get(dimmable_plugin_unit_endpoint, BasicInformation::Id); + create_product_name(dimmable_plugin_1_cluster, dimmable_plugin_1_name, strlen(dimmable_plugin_1_name)); + + // Create the contact sensor endpoint + door_lock::config_t door_lock_config; + endpoint_t *door_lock_endpoint = door_lock::create(node, &door_lock_config, ENDPOINT_FLAG_NONE, NULL); + char door_lock_name[] = "Virtual Lockbox"; + cluster_t *door_lock_cluster = cluster::get(door_lock_endpoint, BasicInformation::Id); + create_product_name(door_lock_cluster, door_lock_name, strlen(door_lock_name)); + + dimmable_plugin_unit::config_t dimmable_plugin_unit_config2; + char dimmable_plugin_2_name[] = "Dimmable Light 2"; + cluster_t *dimmable_plugin_2_cluster = cluster::get(door_lock_endpoint, BasicInformation::Id); + create_product_name(dimmable_plugin_2_cluster, dimmable_plugin_2_name, strlen(dimmable_plugin_2_name)); + dimmable_plugin_unit_config2.level_control.lighting.min_level = 0; + dimmable_plugin_unit_config2.level_control.lighting.max_level = 100; + endpoint_t *dimmable_plugin_unit_endpoint2 = dimmable_plugin_unit::create(node, &dimmable_plugin_unit_config2, ENDPOINT_FLAG_NONE, NULL); + + if (!node || + !temperature_endpoint || + !humidity_endpoint || + !dimmable_plugin_unit_endpoint || + !door_lock_endpoint || + !dimmable_plugin_unit_endpoint2 + ) { + ESP_LOGE(TAG, "Matter node creation failed"); + } + + temperature_endpoint_id = endpoint::get_id(temperature_endpoint); + ESP_LOGI(TAG, "Temperature sensor created with endpoint_id %d", temperature_endpoint_id); + + humidity_endpoint_id = endpoint::get_id(humidity_endpoint); + ESP_LOGI(TAG, "Humidity sensor created with endpoint_id %d", humidity_endpoint_id); + + dimmable_plugin_unit_endpoint_id = endpoint::get_id(dimmable_plugin_unit_endpoint); + ESP_LOGI(TAG, "Dimmable light created with endpoint_id %d", dimmable_plugin_unit_endpoint_id); + + door_lock_endpoint_id = endpoint::get_id(door_lock_endpoint); + ESP_LOGI(TAG, "Door lock created with endpoint_id %d", door_lock_endpoint_id); + + dimmable_plugin_unit_endpoint2_id = endpoint::get_id(dimmable_plugin_unit_endpoint2); + ESP_LOGI(TAG, "Dimmable plugin 2 unit created with endpoint_id %d", dimmable_plugin_unit_endpoint2_id); + +#if CHIP_DEVICE_CONFIG_ENABLE_THREAD + /* Set OpenThread platform config */ + esp_openthread_platform_config_t config = { + .radio_config = ESP_OPENTHREAD_DEFAULT_RADIO_CONFIG(), + .host_config = ESP_OPENTHREAD_DEFAULT_HOST_CONFIG(), + .port_config = ESP_OPENTHREAD_DEFAULT_PORT_CONFIG(), + }; + set_openthread_platform_config(&config); +#endif + + /* Matter start */ + err = esp_matter::start(app_event_cb); + if (err != ESP_OK) { + ESP_LOGI(TAG, "Matter start failed: %d", err); + } + + return err; +} + +int indicator_matter_init(void) { + __g_matter_connected_flag = chip::DeviceLayer::Internal::ESP32Utils::IsStationProvisioned(); + if (!__g_matter_connected_flag) { + ESP_LOGI(TAG, "Beginning Matter Provisioning"); + uint8_t screen = SCREEN_MATTER_CONFIG; + ESP_ERROR_CHECK(esp_event_post_to(view_event_handle, VIEW_EVENT_BASE, VIEW_EVENT_SCREEN_START, &screen, sizeof(screen), portMAX_DELAY)); + } + const esp_timer_create_args_t temperature_timer_args = { + .callback = &__matter_temperature_reporter, + /* argument specified here will be passed to timer callback function */ + .arg = (void*) matter_temperature_timer_handle, + .name = "matter temperature update" + }; + ESP_ERROR_CHECK(esp_timer_create(&temperature_timer_args, &matter_temperature_timer_handle)); + ESP_ERROR_CHECK(esp_timer_start_periodic(matter_temperature_timer_handle, 1000000 * MATTER_UPDATE_INTERVAL_IN_SECONDS)); //30 seconds + + const esp_timer_create_args_t humidity_timer_args = { + .callback = &__matter_humidity_reporter, + /* argument specified here will be passed to timer callback function */ + .arg = (void*) matter_humidity_timer_handle, + .name = "matter humidity update" + }; + ESP_ERROR_CHECK(esp_timer_create(&humidity_timer_args, &matter_humidity_timer_handle)); + ESP_ERROR_CHECK(esp_timer_start_periodic(matter_humidity_timer_handle, 1000000 * MATTER_UPDATE_INTERVAL_IN_SECONDS)); //30 seconds + ESP_ERROR_CHECK(esp_event_handler_instance_register_with(view_event_handle, + VIEW_EVENT_BASE, VIEW_EVENT_SENSOR_DATA, + __view_event_handler, NULL, NULL)); + ESP_ERROR_CHECK(esp_event_handler_instance_register_with(view_event_handle, + VIEW_EVENT_BASE, VIEW_EVENT_MATTER_DASHBOARD_DATA, + __view_event_handler, NULL, NULL)); + ESP_ERROR_CHECK(esp_event_handler_instance_register_with(view_event_handle, + VIEW_EVENT_BASE, VIEW_EVENT_SHUTDOWN, + __view_event_handler, NULL, NULL)); + return 0; +} + diff --git a/examples/indicator_matter/main/model/indicator_matter.h b/examples/indicator_matter/main/model/indicator_matter.h new file mode 100644 index 0000000..798ef13 --- /dev/null +++ b/examples/indicator_matter/main/model/indicator_matter.h @@ -0,0 +1,19 @@ +#ifndef INDICATOR_MATTER_H +#define INDICATOR_MATTER_H + +#include "config.h" +#include "view_data.h" + +#ifdef __cplusplus +extern "C" { +#endif + + +int indicator_matter_setup(void); +int indicator_matter_init(void); + +#ifdef __cplusplus +} +#endif + +#endif diff --git a/examples/indicator_matter/main/model/indicator_model.cpp b/examples/indicator_matter/main/model/indicator_model.cpp new file mode 100644 index 0000000..dff94dd --- /dev/null +++ b/examples/indicator_matter/main/model/indicator_model.cpp @@ -0,0 +1,18 @@ +#include "indicator_model.h" +#include "indicator_sensor.h" +#include "indicator_display.h" +#include "indicator_time.h" +#include "indicator_btn.h" +#include "indicator_city.h" +#include "indicator_matter.h" + +int indicator_model_init(void) +{ + indicator_sensor_init(); + indicator_time_init(); + indicator_city_init(); + indicator_display_init(); // lcd bl on + indicator_btn_init(); + indicator_matter_init(); + return 0; +} \ No newline at end of file diff --git a/examples/indicator_matter/main/model/indicator_model.h b/examples/indicator_matter/main/model/indicator_model.h new file mode 100644 index 0000000..b0d151c --- /dev/null +++ b/examples/indicator_matter/main/model/indicator_model.h @@ -0,0 +1,16 @@ +#ifndef INDICATOR_MODEL_H +#define INDICATOR_MODEL_H + +#include "config.h" + +#ifdef __cplusplus +extern "C" { +#endif + +int indicator_model_init(void); + +#ifdef __cplusplus +} +#endif + +#endif diff --git a/examples/indicator_matter/main/model/indicator_sensor.c b/examples/indicator_matter/main/model/indicator_sensor.c new file mode 100644 index 0000000..0fb3b83 --- /dev/null +++ b/examples/indicator_matter/main/model/indicator_sensor.c @@ -0,0 +1,1062 @@ +#include "indicator_sensor.h" +#include "driver/uart.h" +#include "cobs.h" +#include "esp_timer.h" +#include "nvs.h" +#include +#include "time.h" + +#define SENSOR_HISTORY_DATA_DEBUG 0 +#define SENSOR_COMM_DEBUG 0 + + +#define ESP32_RP2040_TXD (19) +#define ESP32_RP2040_RXD (20) +#define ESP32_RP2040_RTS (UART_PIN_NO_CHANGE) +#define ESP32_RP2040_CTS (UART_PIN_NO_CHANGE) + +#define ESP32_COMM_PORT_NUM (2) +#define ESP32_COMM_BAUD_RATE (115200) +#define ESP32_RP2040_COMM_TASK_STACK_SIZE (1024*4) +#define BUF_SIZE (512) + +uint8_t buf[BUF_SIZE]; //recv +uint8_t data[BUF_SIZE]; //decode + +enum pkt_type { + + PKT_TYPE_CMD_COLLECT_INTERVAL = 0xA0, //uin32_t + PKT_TYPE_CMD_BEEP_ON = 0xA1, //uin32_t ms: on time + PKT_TYPE_CMD_BEEP_OFF = 0xA2, + PKT_TYPE_CMD_SHUTDOWN = 0xA3, //uin32_t + PKT_TYPE_CMD_POWER_ON = 0xA4, + + PKT_TYPE_SENSOR_SCD41_TEMP = 0xB0, // float + PKT_TYPE_SENSOR_SCD41_HUMIDITY = 0xB1, // float + PKT_TYPE_SENSOR_SCD41_CO2 = 0xB2, // float + + PKT_TYPE_SENSOR_SHT41_TEMP = 0xB3, // float + PKT_TYPE_SENSOR_SHT41_HUMIDITY = 0xB4, // float + + PKT_TYPE_SENSOR_TVOC_INDEX = 0xB5, // float + + //todo +}; + + +struct sensor_present_data +{ + float average; + float sum; + int per_hour_cnt; + //time_t hour_timestamp; + + float day_min; + float day_max; + //time_t day_timestamp; + int per_day_cnt; +}; +struct sensor_history_data +{ + struct sensor_data_average data_day[24]; + struct sensor_data_minmax data_week[7]; +}; + +struct indicator_sensor_present_data +{ + struct sensor_present_data temp; + struct sensor_present_data humidity; + struct sensor_present_data co2; + struct sensor_present_data tvoc; +}; + + +struct indicator_sensor_history_data +{ + struct sensor_history_data temp; + struct sensor_history_data humidity; + struct sensor_history_data co2; + struct sensor_history_data tvoc; +}; + +struct updata_queue_msg +{ + uint8_t flag; //1 day data, 2 week data + time_t time; +}; + +#define SENSOR_HISTORY_DATA_STORAGE "sensor-data" + +static const char *TAG = "sensor-model"; + +static SemaphoreHandle_t __g_data_mutex; + +static struct indicator_sensor_history_data __g_sensor_history_data; +static struct indicator_sensor_present_data __g_sensor_present_data; + +static esp_timer_handle_t sensor_history_data_timer_handle; + +static QueueHandle_t updata_queue_handle = NULL; + +static void __sensor_history_data_get( struct sensor_history_data *p_history, struct view_data_sensor_history_data *p_data) +{ + xSemaphoreTake(__g_data_mutex, portMAX_DELAY); + + struct sensor_data_average *p_data_day = &p_history->data_day[0]; + struct sensor_data_minmax *p_data_week = &p_history->data_week[0]; + + memcpy(p_data->data_day, (uint8_t *)p_data_day, sizeof( struct sensor_data_average) * 24); + memcpy(p_data->data_week, (uint8_t *)p_data_week, sizeof( struct sensor_data_minmax) * 7); + + + //calculate max and min + float min=10000; + float max=-10000; + + for(int i =0; i < 24; i++ ) { + struct sensor_data_average *p_item = p_data_day + i; + if( p_item->valid ) { + if( min > p_item->data ){ + min = p_item->data; + } + if( max < p_item->data ){ + max = p_item->data; + } + } + } + p_data->day_max = max; + p_data->day_min = min; + + min=10000; + max=-10000; + + for(int i =0; i < 7; i++ ) { + struct sensor_data_minmax *p_item = p_data_week + i; + if( p_item->valid ) { + if( min > p_item->min ){ + min = p_item->min; + } + if( max < p_item->max ){ + max = p_item->max; + } + } + } + + if ( max < min) { + max=4; + min=0; + } + + p_data->week_max = max; + p_data->week_min = min; + + xSemaphoreGive(__g_data_mutex); +} + +static void __sensor_history_data_save(void) +{ + xSemaphoreTake(__g_data_mutex, portMAX_DELAY); + esp_err_t ret = 0; + ret = indicator_storage_write(SENSOR_HISTORY_DATA_STORAGE, (void *)&__g_sensor_history_data, sizeof(struct indicator_sensor_history_data)); + xSemaphoreGive(__g_data_mutex); + + if( ret != ESP_OK ) { + ESP_LOGI(TAG, "sensor history data save err:%d", ret); + } else { + ESP_LOGI(TAG, "sensor history data save successful"); + } +} + +static void __sensor_history_data_day_check(struct sensor_data_average p_data_day[], const char *p_sensor_name, time_t now) +{ + //check history data day + int history_hour =0; + int cur_hour = 0; + + history_hour =p_data_day[23].timestamp/3600; + cur_hour = now/3600; + + for( int i =0; i < 24; i++) { + if( p_data_day[i].valid) { + ESP_LOGI(TAG, "%s index:%d, data:%.0f, time:%d", p_sensor_name, i, p_data_day[i].data, p_data_day[i].timestamp); + } + } + + if( history_hour > cur_hour) { + ESP_LOGI(TAG, "%s History day data pull ahead, clear data", p_sensor_name); + memset(p_data_day, 0, sizeof(struct sensor_data_average)*24); + return; + } + + for(int i =0; i < 23; i++ ) { + int hour1 =p_data_day[i].timestamp/3600; + int hour2 =p_data_day[i+1].timestamp/3600; + if( (hour2-hour1) != 1) { + ESP_LOGI(TAG, "%s History day data error, clear data", p_sensor_name); + memset(p_data_day, 0, sizeof(struct sensor_data_average)*24); + return; + } + } + + if( history_hour == cur_hour) { + ESP_LOGI(TAG, "%s History day data valid", p_sensor_name); + return; + } + + if( history_hour < ( cur_hour -23) ) { + ESP_LOGI(TAG, "%s History day data expired, clear data!", p_sensor_name); + memset(p_data_day, 0, sizeof(struct sensor_data_average)*24); + } else { + + int overlap_cnt = history_hour - ( cur_hour -23)+1; + + ESP_LOGI(TAG, "%s History day data %d overlap !", p_sensor_name, overlap_cnt); + + for(int i =0; i < 24; i++ ) { + if( i < overlap_cnt) { + p_data_day[i].data = p_data_day[24-overlap_cnt+i].data; + p_data_day[i].valid = p_data_day[24-overlap_cnt+i].valid; + p_data_day[i].timestamp = p_data_day[24-overlap_cnt+i].timestamp; + } else { + p_data_day[i].data = 0; + p_data_day[i].valid = false; + p_data_day[i].timestamp = now - (23 -i) * 3600;; + } + } + } +} +static void __sensor_history_data_week_check(struct sensor_data_minmax p_data_week[], const char *p_sensor_name, time_t now) +{ + //check history data week + int history_day =0; + int cur_day = 0; + + history_day =p_data_week[6].timestamp/ (3600 * 24); + cur_day = now/ (3600 * 24); + + for( int i =0; i < 7; i++) { + if( p_data_week[i].valid) { + ESP_LOGI(TAG, "%s, index:%d, min:%.0f, max:%.0f, time:%d", p_sensor_name, i, p_data_week[i].min, p_data_week[i].max , p_data_week[i].timestamp); + } + } + + if( history_day > cur_day){ + ESP_LOGI(TAG, "%s History week data pull ahead, clear data", p_sensor_name); + memset(p_data_week, 0, sizeof(struct sensor_data_minmax)*7); + return; + } + + + for(int i =0; i < 6; i++ ) { + int day1 =p_data_week[i].timestamp/ (3600 * 24); + int day2 =p_data_week[i+1].timestamp/ (3600 * 24); + if( (day2-day1) != 1) { + ESP_LOGI(TAG, "%s History week data error, clear data", p_sensor_name); + memset(p_data_week, 0, sizeof(struct sensor_data_minmax)*7); + return; + } + } + + if( history_day == cur_day){ + ESP_LOGI(TAG, "%s History week data valid", p_sensor_name); + return; + } + + if( history_day < ( cur_day -6) ) { + ESP_LOGI(TAG, "%s History week data expired, clear data!", p_sensor_name); + memset(p_data_week, 0, sizeof(struct sensor_data_minmax)*7); + + } else { + + int overlap_cnt = history_day - ( cur_day -6)+1; + + ESP_LOGI(TAG, "%s History week data , %d overlap!", p_sensor_name, overlap_cnt); + + for(int i =0; i < 7; i++ ) { + if( i < overlap_cnt) { + p_data_week[i].max = p_data_week[7-overlap_cnt+i].max; + p_data_week[i].min = p_data_week[7-overlap_cnt+i].min; + p_data_week[i].timestamp = p_data_week[7-overlap_cnt+i].timestamp; + p_data_week[i].valid = p_data_week[7-overlap_cnt+i].valid; + } else { + + p_data_week[i].max = 0; + p_data_week[i].min = 0; + p_data_week[i].timestamp = now - (6 -i) * 3600 * 24; + p_data_week[i].valid = false; + } + } + } +} + + + +static void __sensor_history_data_day_insert(struct sensor_data_average p_data_day[], struct sensor_present_data *p_cur, time_t now) +{ + int history_hour =0; + int cur_hour = 0; + struct tm timeinfo; + + localtime_r( &now, &timeinfo); + cur_hour = timeinfo.tm_hour; + + localtime_r( &(p_data_day[23].timestamp), &timeinfo); + history_hour = timeinfo.tm_hour; + + if( cur_hour == history_hour) { + return; + } + + for( int i =0; i < 23; i++) { + p_data_day[i].data = p_data_day[i+1].data; + p_data_day[i].valid = p_data_day[i+1].valid; + p_data_day[i].timestamp = p_data_day[i+1].timestamp; + + if( !p_data_day[i].valid) { + p_data_day[i].timestamp = now - (23 -i) * 3600; + } + } + if( p_cur->per_hour_cnt >=1) { + p_data_day[23].valid = true; + p_data_day[23].data = p_cur->average; + + //clear present data + p_cur->per_hour_cnt = 0; + p_cur->sum = 0.0; + + } else { + p_data_day[23].valid = false; + } + p_data_day[23].timestamp = now; + +#if SENSOR_HISTORY_DATA_DEBUG + for( int i =0; i < 24; i++) { + if( p_data_day[i].valid) { + ESP_LOGI(TAG, "index:%d, data:%.0f, time:%d", i, p_data_day[i].data, p_data_day[i].timestamp); + } + } +#endif + +} + +static void __sensor_history_data_week_insert(struct sensor_data_minmax p_data_week[], struct sensor_present_data *p_cur, time_t now) +{ + int history_mday =0; + int cur_mday = 0; + struct tm timeinfo; + + localtime_r( &now, &timeinfo); + cur_mday = timeinfo.tm_mday; + + localtime_r( &(p_data_week[6].timestamp), &timeinfo); + history_mday= timeinfo.tm_mday; + + if( history_mday == cur_mday) { + return; + } + + for( int i =0; i < 6; i++) { + p_data_week[i].max = p_data_week[i+1].max; + p_data_week[i].min = p_data_week[i+1].min; + p_data_week[i].timestamp = p_data_week[i+1].timestamp; + p_data_week[i].valid = p_data_week[i+1].valid; + + if( !p_data_week[i].valid) { + p_data_week[i].timestamp = now - (6 -i) * 3600 * 24; + } + } + if( p_cur->per_day_cnt >=1) { + p_data_week[6].valid = true; + p_data_week[6].max = p_cur->day_max; + p_data_week[6].min = p_cur->day_min; + + //clear present data + p_cur->day_max = 0.0; + p_cur->day_min = 0.0; + p_cur->per_day_cnt = 0; + + } else { + p_data_week[6].valid = false; + } + p_data_week[6].timestamp = now; + +#if SENSOR_HISTORY_DATA_DEBUG + for( int i =0; i < 7; i++) { + if( p_data_week[i].valid) { + ESP_LOGI(TAG, "index:%d, min:%.0f, max:%.0f, time:%d", i, p_data_week[i].min, p_data_week[i].max , p_data_week[i].timestamp); + } + } +#endif +} + + +static void __sensor_history_data_check(time_t now) +{ + static bool check_flag = false; + if(check_flag) { + return; + } + check_flag = true; + + xSemaphoreTake(__g_data_mutex, portMAX_DELAY); + __sensor_history_data_day_check(__g_sensor_history_data.temp.data_day, "Temp", now - 3600); + __sensor_history_data_week_check(__g_sensor_history_data.temp.data_week, "Temp", now - 3600 * 24); + + __sensor_history_data_day_check(__g_sensor_history_data.humidity.data_day, "Humidity", now - 3600); + __sensor_history_data_week_check(__g_sensor_history_data.humidity.data_week, "Humidity", now - 3600 * 24); + + __sensor_history_data_day_check(__g_sensor_history_data.co2.data_day, "CO2", now - 3600); + __sensor_history_data_week_check(__g_sensor_history_data.co2.data_week, "CO2", now - 3600 * 24); + + + __sensor_history_data_day_check(__g_sensor_history_data.tvoc.data_day, "TVOC", now - 3600); + __sensor_history_data_week_check(__g_sensor_history_data.tvoc.data_week, "TVOC", now - 3600 * 24); + + xSemaphoreGive(__g_data_mutex); +} + +static void __sensor_history_data_day_update(time_t now) +{ + xSemaphoreTake(__g_data_mutex, portMAX_DELAY); + + __sensor_history_data_day_insert( __g_sensor_history_data.temp.data_day, &__g_sensor_present_data.temp, now); + + __sensor_history_data_day_insert( __g_sensor_history_data.humidity.data_day, &__g_sensor_present_data.humidity, now); + + __sensor_history_data_day_insert( __g_sensor_history_data.co2.data_day, &__g_sensor_present_data.co2, now); + + __sensor_history_data_day_insert( __g_sensor_history_data.tvoc.data_day, &__g_sensor_present_data.tvoc, now); + + xSemaphoreGive(__g_data_mutex); + + __sensor_history_data_save(); +} + +static void __sensor_history_data_week_update(time_t now) +{ + xSemaphoreTake(__g_data_mutex, portMAX_DELAY); + + __sensor_history_data_week_insert(__g_sensor_history_data.temp.data_week, &__g_sensor_present_data.temp, now); + + __sensor_history_data_week_insert(__g_sensor_history_data.humidity.data_week, &__g_sensor_present_data.humidity, now); + + __sensor_history_data_week_insert(__g_sensor_history_data.co2.data_week, &__g_sensor_present_data.co2, now); + + __sensor_history_data_week_insert(__g_sensor_history_data.tvoc.data_week, &__g_sensor_present_data.tvoc, now); + + xSemaphoreGive(__g_data_mutex); + + __sensor_history_data_save(); + +} + + +static void __sensor_history_data_update_callback(void* arg) +{ + static int last_hour = 25; + static int last_day = 32; + static time_t last_timestamp1 = 0; + static time_t last_timestamp2 = 0; + time_t now = 0; + + now = time(NULL); + + // todo test + // static int time_cnt = 1; + // now += time_cnt * 3600; + // time_cnt++; + + struct tm timeinfo = { 0 }; + localtime_r( &now, &timeinfo); + + char strftime_buf[64]; + strftime(strftime_buf, sizeof(strftime_buf), "%c", &timeinfo); + + int cur_hour = timeinfo.tm_hour; + int cur_day = timeinfo.tm_mday; + + ESP_LOGI(TAG, "__sensor_history_data_update_callback: %s", strftime_buf); + + //if greater than 2020 year mean time is right + if( timeinfo.tm_year < 120) { + ESP_LOGI(TAG, "The time is not right!!!"); + return; + } + + __sensor_history_data_check( now); + + // Hour change and the duration is greater than 1 hour (to prevent hour change during time zone synchronization) + // 小时变化并且 时长大于1h (防止在时区同步时, 小时变化的情况) + if( cur_hour != last_hour && ((now - last_timestamp1) > 3600) ) { + last_hour = cur_hour; + + if( last_timestamp1 == 0) { + last_timestamp1 = ((now - 3600)/3600) * 3600; + } + + struct updata_queue_msg msg = { + .flag = 1, + .time = last_timestamp1, + }; + + xQueueSendFromISR(updata_queue_handle, &msg, NULL); + //__sensor_history_data_day_update(last_timestamp1); + + last_timestamp1 = ((now)/3600) * 3600; // Sample at the hour + } + + if( cur_day != last_day && ((now - last_timestamp2) > (3600*24))) { + last_day = cur_day; + if( last_timestamp2 == 0) { + last_timestamp2 = ((now - 3600 * 24) / (3600 * 24)) * (3600 * 24); + } + + struct updata_queue_msg msg = { + .flag = 2, + .time = last_timestamp2, + }; + + xQueueSendFromISR(updata_queue_handle, &msg, NULL); + + //__sensor_history_data_week_update(last_timestamp2); + + last_timestamp2 = ((now) / (3600 * 24)) * (3600 * 24); //Sample at the day + } +} + +static __sensor_history_data_update_init(void) +{ + const esp_timer_create_args_t timer_args = { + .callback = &__sensor_history_data_update_callback, + /* argument specified here will be passed to timer callback function */ + .arg = (void*) sensor_history_data_timer_handle, + .name = "sensor data update" + }; + ESP_ERROR_CHECK( esp_timer_create(&timer_args, &sensor_history_data_timer_handle)); + ESP_ERROR_CHECK(esp_timer_start_periodic(sensor_history_data_timer_handle, 1000000 * 10)); //10s + +} + +static void sensor_history_data_updata_task(void *arg) +{ + struct updata_queue_msg msg = {}; + while(1) { + if(xQueueReceive(updata_queue_handle, &msg, portMAX_DELAY)) { + if( msg.flag == 1) { + ESP_LOGI(TAG, "update day history data"); + __sensor_history_data_day_update(msg.time); + } else if( msg.flag == 2) { + ESP_LOGI(TAG, "update week history data"); + __sensor_history_data_week_update(msg.time); + } + } + + } +} + +static void __sensor_history_data_restore(void) +{ + esp_err_t ret = 0; + + size_t len = sizeof(__g_sensor_history_data); + + ret = indicator_storage_read(SENSOR_HISTORY_DATA_STORAGE, (void *)&__g_sensor_history_data, &len); + if( ret == ESP_OK && len== (sizeof(__g_sensor_history_data)) ) { + ESP_LOGI(TAG, "sensor history data read successful"); + } else { + // err or not find + if( ret == ESP_ERR_NVS_NOT_FOUND) { + ESP_LOGI(TAG, "sensor history data not found"); + } else { + ESP_LOGI(TAG, "sensor history data read err:%d", ret); + } + memset(&__g_sensor_history_data, 0 ,sizeof(__g_sensor_history_data)); + } +} + + +static void __sensor_present_data_update(struct sensor_present_data *p_data, float value) +{ + xSemaphoreTake(__g_data_mutex, portMAX_DELAY); + p_data->per_hour_cnt++; + p_data->sum += value; + p_data->average = p_data->sum / p_data->per_hour_cnt; + + + p_data->per_day_cnt++; + if( p_data->per_day_cnt != 1) { + if( p_data->day_min > value) { + p_data->day_min = value; + } + if( p_data->day_max < value) { + p_data->day_max = value; + } + } else { + p_data->day_min = value; + p_data->day_max = value; + } + xSemaphoreGive(__g_data_mutex); +} + +static int __data_parse_handle(uint8_t *p_data, ssize_t len) +{ + uint8_t pkt_type = p_data[0]; + switch ( pkt_type) + { + case PKT_TYPE_SENSOR_SCD41_CO2: { + struct view_data_sensor_data data; + if( len < (sizeof(data.value) +1)) { + break; + } + + data.sensor_type = SENSOR_DATA_CO2; + memcpy(&data.value, &p_data[1], sizeof(data.value)); + __sensor_present_data_update(&__g_sensor_present_data.co2, data.value); + + esp_event_post_to(view_event_handle, VIEW_EVENT_BASE, VIEW_EVENT_SENSOR_DATA, \ + &data, sizeof(struct view_data_sensor_data ), portMAX_DELAY); + break; + } + + case PKT_TYPE_SENSOR_SHT41_TEMP: { + struct view_data_sensor_data data; + if( len < (sizeof(data.value) +1)) { + break; + } + + data.sensor_type = SENSOR_DATA_TEMP; + memcpy(&data.value, &p_data[1], sizeof(data.value)); + __sensor_present_data_update(&__g_sensor_present_data.temp, data.value); + + esp_event_post_to(view_event_handle, VIEW_EVENT_BASE, VIEW_EVENT_SENSOR_DATA, \ + &data, sizeof(struct view_data_sensor_data ), portMAX_DELAY); + break; + } + + case PKT_TYPE_SENSOR_SHT41_HUMIDITY: { + struct view_data_sensor_data data; + if( len < (sizeof(data.value) +1)) { + break; + } + + data.sensor_type = SENSOR_DATA_HUMIDITY; + memcpy(&data.value, &p_data[1], sizeof(data.value)); + __sensor_present_data_update(&__g_sensor_present_data.humidity, data.value); + + esp_event_post_to(view_event_handle, VIEW_EVENT_BASE, VIEW_EVENT_SENSOR_DATA, \ + &data, sizeof(struct view_data_sensor_data ), portMAX_DELAY); + break; + } + + case PKT_TYPE_SENSOR_TVOC_INDEX: { + struct view_data_sensor_data data; + if( len < (sizeof(data.value) +1)) { + break; + } + + data.sensor_type = SENSOR_DATA_TVOC; + memcpy(&data.value, &p_data[1], sizeof(data.value)); + __sensor_present_data_update(&__g_sensor_present_data.tvoc, data.value); + + esp_event_post_to(view_event_handle, VIEW_EVENT_BASE, VIEW_EVENT_SENSOR_DATA, \ + &data, sizeof(struct view_data_sensor_data ), portMAX_DELAY); + break; + } + + default: + break; + } + +} + +static int __cmd_send(uint8_t cmd, void *p_data, uint8_t len) +{ + uint8_t buf[32] = {0}; + uint8_t data[32] = {0}; + + if( len > 31) { + return -1; + } + + uint8_t index =1; + + data[0] = cmd; + + if( len > 0 && p_data != NULL) { + memcpy(&data[1], p_data, len); + index += len; + } + cobs_encode_result ret = cobs_encode(buf, sizeof(buf), data, index); +#if 1//SENSOR_COMM_DEBUG + ESP_LOGI(TAG, "encode status:%d, len:%d", ret.status, ret.out_len); + for(int i=0; i < ret.out_len; i++ ) { + printf( "0x%x ", buf[i] ); + } + printf("\r\n"); +#endif + + if( ret.status == COBS_ENCODE_OK ) { + return uart_write_bytes(ESP32_COMM_PORT_NUM, buf, ret.out_len+1); + } + return -1; +} + +static void esp32_rp2040_comm_task(void *arg) +{ + uart_config_t uart_config = { + .baud_rate = ESP32_COMM_BAUD_RATE, + .data_bits = UART_DATA_8_BITS, + .parity = UART_PARITY_DISABLE, + .stop_bits = UART_STOP_BITS_1, + .flow_ctrl = UART_HW_FLOWCTRL_DISABLE, + .source_clk = UART_SCLK_DEFAULT, + }; + int intr_alloc_flags = 0; + + ESP_ERROR_CHECK(uart_driver_install(ESP32_COMM_PORT_NUM, BUF_SIZE * 2, 0, 0, NULL, intr_alloc_flags)); + ESP_ERROR_CHECK(uart_param_config(ESP32_COMM_PORT_NUM, &uart_config)); + ESP_ERROR_CHECK(uart_set_pin(ESP32_COMM_PORT_NUM, ESP32_RP2040_TXD, ESP32_RP2040_RXD, ESP32_RP2040_RTS, ESP32_RP2040_CTS)); + + __cmd_send(PKT_TYPE_CMD_POWER_ON, NULL, 0); + cobs_decode_result ret; + + while (1) { + int len = uart_read_bytes(ESP32_COMM_PORT_NUM, buf, (BUF_SIZE - 1), 1 / portTICK_PERIOD_MS); +#if SENSOR_COMM_DEBUG + ESP_LOGI(TAG, "len:%d", len); +#endif + int index = 0; + uint8_t *p_buf_start = buf; + uint8_t *p_buf_end = buf; + if( len > 0 ) { + +#if SENSOR_COMM_DEBUG + printf("recv: "); + for(int i=0; i < len; i++ ) { + printf( "0x%x ", buf[i] ); + } + printf("\r\n"); +#endif + while ( p_buf_start < (buf + len)) { + uint8_t *p_buf_end = p_buf_start; + while( p_buf_end < (buf + len) ) { + if( *p_buf_end == 0x00) { + break; + } + p_buf_end++; + } + // decode buf + memset(data, 0, sizeof(data)); + ret = cobs_decode(data, sizeof(data), p_buf_start, p_buf_end - p_buf_start); + +#if SENSOR_COMM_DEBUG + ESP_LOGI(TAG, "decode status:%d, len:%d, type:0x%x ", ret.status, ret.out_len, data[0]); + printf("decode: "); + for(int i=0; i < ret.out_len; i++ ) { + printf( "0x%x ", data[i] ); + } + printf("\r\n"); +#endif + if( ret.out_len > 1 && ret.status == COBS_DECODE_OK ) { //todo ret.status + __data_parse_handle((uint8_t *)data, ret.out_len); + } + + p_buf_start = p_buf_end + 1; // next message + } + } + } +} + +static void __sensor_shutdown(void) +{ + int ret = 0; + ret = __cmd_send(PKT_TYPE_CMD_SHUTDOWN, NULL, 0); + if( ret <= 0) { + ESP_LOGI(TAG, "sensor shutdown fail!. %d", ret); + } +} + +static void __view_event_handler(void* handler_args, esp_event_base_t base, int32_t id, void* event_data) +{ + int i; + switch (id) + { + case VIEW_EVENT_SENSOR_TEMP_HISTORY: { + ESP_LOGI(TAG, "event: VIEW_EVENT_SENSOR_TEMP_HISTORY"); + struct view_data_sensor_history_data data; + __sensor_history_data_get( &__g_sensor_history_data.temp, &data); + data.sensor_type = SENSOR_DATA_TEMP; + data.resolution = 1; + esp_event_post_to(view_event_handle, VIEW_EVENT_BASE, VIEW_EVENT_SENSOR_DATA_HISTORY, &data, sizeof(struct view_data_sensor_history_data ), portMAX_DELAY); + break; + } + + case VIEW_EVENT_SENSOR_HUMIDITY_HISTORY: { + ESP_LOGI(TAG, "event: VIEW_EVENT_SENSOR_HUMIDITY_HISTORY"); + struct view_data_sensor_history_data data; + __sensor_history_data_get( &__g_sensor_history_data.humidity, &data); + data.sensor_type = SENSOR_DATA_HUMIDITY; + data.resolution = 0; + esp_event_post_to(view_event_handle, VIEW_EVENT_BASE, VIEW_EVENT_SENSOR_DATA_HISTORY, &data, sizeof(struct view_data_sensor_history_data ), portMAX_DELAY); + break; + } + case VIEW_EVENT_SENSOR_CO2_HISTORY: { + ESP_LOGI(TAG, "event: VIEW_EVENT_SENSOR_CO2_HISTORY"); + struct view_data_sensor_history_data data; + __sensor_history_data_get( &__g_sensor_history_data.co2, &data); + data.sensor_type = SENSOR_DATA_CO2; + data.resolution = 0; + esp_event_post_to(view_event_handle, VIEW_EVENT_BASE, VIEW_EVENT_SENSOR_DATA_HISTORY, &data, sizeof(struct view_data_sensor_history_data ), portMAX_DELAY); + break; + } + case VIEW_EVENT_SENSOR_TVOC_HISTORY: { + ESP_LOGI(TAG, "event: VIEW_EVENT_SENSOR_TVOC_HISTORY"); + struct view_data_sensor_history_data data; + __sensor_history_data_get( &__g_sensor_history_data.tvoc, &data); + data.sensor_type = SENSOR_DATA_TVOC; + data.resolution = 0; + esp_event_post_to(view_event_handle, VIEW_EVENT_BASE, VIEW_EVENT_SENSOR_DATA_HISTORY, &data, sizeof(struct view_data_sensor_history_data ), portMAX_DELAY); + break; + } + + case VIEW_EVENT_SHUTDOWN: { + ESP_LOGI(TAG, "event: VIEW_EVENT_SHUTDOWN"); + __sensor_shutdown(); + break; + } +//debug ui +#if 0 + case VIEW_EVENT_SENSOR_TEMP_HISTORY: { + ESP_LOGI(TAG, "event: VIEW_EVENT_SENSOR_TEMP_HISTORY"); + struct view_data_sensor_history_data data; + data.sensor_type = SENSOR_DATA_TEMP; + data.resolution = 1; + + //test + float min=100; + float max=0; + + time_t now = 0; + time(&now); + time_t time1 = (time_t)(now / 3600) * 3600; + time_t time2 = (time_t)(now / 3600 / 24) * 3600 * 24; + + for(i = 0; i < 24; i++) { + data.data_day[i].data = (float)lv_rand(10, 40); + data.data_day[i].timestamp = time1 + i *3600; + data.data_day[i].valid = true; + + if( min > data.data_day[i].data) { + min = data.data_day[i].data; + } + if( max < data.data_day[i].data) { + max = data.data_day[i].data; + } + } + data.day_max = max; + data.day_min = min; + + min=100; + max=0; + + for(i = 0; i < 7; i++) { + data.data_week[i].min = (float)lv_rand(10, 20); + data.data_week[i].max = (float)lv_rand(20, 40); + data.data_week[i].timestamp = time2 + i * 3600 * 24;; + data.data_week[i].valid = true; + + if( min > data.data_week[i].min) { + min = data.data_week[i].min; + } + if( max < data.data_week[i].max) { + max = data.data_week[i].max; + } + } + data.week_max = max; + data.week_min = min; + + esp_event_post_to(view_event_handle, VIEW_EVENT_BASE, VIEW_EVENT_SENSOR_DATA_HISTORY, &data, sizeof(struct view_data_sensor_history_data ), portMAX_DELAY); + break; + } + case VIEW_EVENT_SENSOR_HUMIDITY_HISTORY: { + ESP_LOGI(TAG, "event: VIEW_EVENT_SENSOR_HUMIDITY_HISTORY"); + struct view_data_sensor_history_data data; + data.sensor_type = SENSOR_DATA_HUMIDITY; + data.resolution = 0; + + //test + float min=100; + float max=0; + + time_t now = 0; + time(&now); + time_t time1 = (time_t)(now / 3600) * 3600; + time_t time2 = (time_t)(now / 3600 / 24) * 3600 * 24; + + for(i = 0; i < 24; i++) { + data.data_day[i].data = (float)lv_rand(30, 50); + data.data_day[i].timestamp = time1 + i *3600; + data.data_day[i].valid = true; + if( min > data.data_day[i].data) { + min = data.data_day[i].data; + } + if( max < data.data_day[i].data) { + max = data.data_day[i].data; + } + } + data.day_max = max; + data.day_min = min; + + min=100; + max=0; + for(i = 0; i < 7; i++) { + data.data_week[i].max = (float)lv_rand(40, 50); + data.data_week[i].min = (float)lv_rand(30, 40); + data.data_week[i].timestamp = time2 + i * 3600 * 24;; + data.data_week[i].valid = true; + if( min > data.data_week[i].min) { + min = data.data_week[i].min; + } + if( max < data.data_week[i].max) { + max = data.data_week[i].max; + } + } + data.week_max = max; + data.week_min = min; + esp_event_post_to(view_event_handle, VIEW_EVENT_BASE, VIEW_EVENT_SENSOR_DATA_HISTORY, &data, sizeof(struct view_data_sensor_history_data ), portMAX_DELAY); + break; + } + case VIEW_EVENT_SENSOR_TVOC_HISTORY: { + ESP_LOGI(TAG, "event: VIEW_EVENT_SENSOR_TVOC_HISTORY"); + struct view_data_sensor_history_data data; + data.sensor_type = SENSOR_DATA_TVOC; + data.resolution = 0; + + //test + float min=120; + float max=0; + + time_t now = 0; + time(&now); + time_t time1 = (time_t)(now / 3600) * 3600; + time_t time2 = (time_t)(now / 3600 / 24) * 3600 * 24; + + for(i = 0; i < 24; i++) { + data.data_day[i].data = (float)lv_rand(100, 120); + data.data_day[i].timestamp = time1 + i *3600; + data.data_day[i].valid = true; + if( min > data.data_day[i].data) { + min = data.data_day[i].data; + } + if( max < data.data_day[i].data) { + max = data.data_day[i].data; + } + } + data.day_max = max; + data.day_min = min; + + min=120; + max=0; + for(i = 0; i < 7; i++) { + data.data_week[i].max = (float)lv_rand(100, 120); + data.data_week[i].min = (float)lv_rand(0, 100); + data.data_week[i].timestamp = time2 + i * 3600 * 24;; + data.data_week[i].valid = true; + if( min > data.data_week[i].min) { + min = data.data_week[i].min; + } + if( max < data.data_week[i].max) { + max = data.data_week[i].max; + } + } + data.week_max = max; + data.week_min = min; + esp_event_post_to(view_event_handle, VIEW_EVENT_BASE, VIEW_EVENT_SENSOR_DATA_HISTORY, &data, sizeof(struct view_data_sensor_history_data ), portMAX_DELAY); + break; + } + case VIEW_EVENT_SENSOR_CO2_HISTORY: { + ESP_LOGI(TAG, "event: VIEW_EVENT_SENSOR_CO2_HISTORY"); + struct view_data_sensor_history_data data; + data.sensor_type = SENSOR_DATA_CO2; + data.resolution = 0; + + //test + float min=700; + float max=0; + + time_t now = 0; + time(&now); + time_t time1 = (time_t)(now / 3600) * 3600; + time_t time2 = (time_t)(now / 3600 / 24) * 3600 * 24; + + for(i = 0; i < 24; i++) { + data.data_day[i].data = (float)lv_rand(500, 600); + data.data_day[i].timestamp = time1 + i *3600; + data.data_day[i].valid = true; + if( min > data.data_day[i].data) { + min = data.data_day[i].data; + } + if( max < data.data_day[i].data) { + max = data.data_day[i].data; + } + } + data.day_max = max; + data.day_min = min; + + min=700; + max=0; + for(i = 0; i < 7; i++) { + data.data_week[i].min = (float)lv_rand(500, 600); + data.data_week[i].max = (float)lv_rand(600, 700); + data.data_week[i].timestamp = time2 + i * 3600 * 24;; + data.data_week[i].valid = true; + if( min > data.data_week[i].min) { + min = data.data_week[i].min; + } + if( max < data.data_week[i].max) { + max = data.data_week[i].max; + } + } + data.week_max = max; + data.week_min = min; + esp_event_post_to(view_event_handle, VIEW_EVENT_BASE, VIEW_EVENT_SENSOR_DATA_HISTORY, &data, sizeof(struct view_data_sensor_history_data ), portMAX_DELAY); + break; + } +#endif + + default: + break; + } +} + +int indicator_sensor_init(void) +{ + __g_data_mutex = xSemaphoreCreateMutex(); + + updata_queue_handle = xQueueCreate(4, sizeof( struct updata_queue_msg)); + + __sensor_history_data_restore(); + + __sensor_history_data_update_init(); + + xTaskCreate(esp32_rp2040_comm_task, "esp32_rp2040_comm_task", ESP32_RP2040_COMM_TASK_STACK_SIZE, NULL, 2, NULL); + + xTaskCreate(sensor_history_data_updata_task, "sensor_history_data_updata_task", 1024*4, NULL, 6, NULL); + + ESP_ERROR_CHECK(esp_event_handler_instance_register_with(view_event_handle, + VIEW_EVENT_BASE, VIEW_EVENT_SENSOR_TEMP_HISTORY, + __view_event_handler, NULL, NULL)); + ESP_ERROR_CHECK(esp_event_handler_instance_register_with(view_event_handle, + VIEW_EVENT_BASE, VIEW_EVENT_SENSOR_HUMIDITY_HISTORY, + __view_event_handler, NULL, NULL)); + ESP_ERROR_CHECK(esp_event_handler_instance_register_with(view_event_handle, + VIEW_EVENT_BASE, VIEW_EVENT_SENSOR_TVOC_HISTORY, + __view_event_handler, NULL, NULL)); + ESP_ERROR_CHECK(esp_event_handler_instance_register_with(view_event_handle, + VIEW_EVENT_BASE, VIEW_EVENT_SENSOR_CO2_HISTORY, + __view_event_handler, NULL, NULL)); + ESP_ERROR_CHECK(esp_event_handler_instance_register_with(view_event_handle, + VIEW_EVENT_BASE, VIEW_EVENT_SHUTDOWN, + __view_event_handler, NULL, NULL)); +} + diff --git a/examples/indicator_matter/main/model/indicator_sensor.h b/examples/indicator_matter/main/model/indicator_sensor.h new file mode 100644 index 0000000..6f41daf --- /dev/null +++ b/examples/indicator_matter/main/model/indicator_sensor.h @@ -0,0 +1,19 @@ +#ifndef INDICATOR_SENSOR_H +#define INDICATOR_SENSOR_H + +#include "config.h" +#include "view_data.h" +#include "driver/uart.h" + + +#ifdef __cplusplus +extern "C" { +#endif + +int indicator_sensor_init(void); + +#ifdef __cplusplus +} +#endif + +#endif diff --git a/examples/indicator_matter/main/model/indicator_storage.c b/examples/indicator_matter/main/model/indicator_storage.c new file mode 100644 index 0000000..e6e6942 --- /dev/null +++ b/examples/indicator_matter/main/model/indicator_storage.c @@ -0,0 +1,53 @@ +#include "indicator_storage.h" +#include "nvs_flash.h" + +#define STORAGE_NAMESPACE "indicator" + +int indicator_storage_init(void) +{ + //ESP_ERROR_CHECK(nvs_flash_erase()); + esp_err_t ret = nvs_flash_init(); + if (ret == ESP_ERR_NVS_NO_FREE_PAGES || ret == ESP_ERR_NVS_NEW_VERSION_FOUND) { + ESP_ERROR_CHECK(nvs_flash_erase()); + ret = nvs_flash_init(); + } +} + +esp_err_t indicator_storage_write(char *p_key, void *p_data, size_t len) +{ + nvs_handle_t my_handle; + esp_err_t err; + err = nvs_open(STORAGE_NAMESPACE, NVS_READWRITE, &my_handle); + if (err != ESP_OK) return err; + + err = nvs_set_blob(my_handle, p_key, p_data, len); + if (err != ESP_OK) { + nvs_close(my_handle); + return err; + } + err = nvs_commit(my_handle); + if (err != ESP_OK) { + nvs_close(my_handle); + return err; + } + nvs_close(my_handle); + return ESP_OK; +} + +esp_err_t indicator_storage_read(char *p_key, void *p_data, size_t *p_len) +{ + nvs_handle_t my_handle; + esp_err_t err; + + err = nvs_open(STORAGE_NAMESPACE, NVS_READWRITE, &my_handle); + if (err != ESP_OK) return err; + + err = nvs_get_blob(my_handle, p_key, p_data, p_len); + if (err != ESP_OK) { + nvs_close(my_handle); + return err; + } + nvs_close(my_handle); + return ESP_OK; +} + diff --git a/examples/indicator_matter/main/model/indicator_storage.h b/examples/indicator_matter/main/model/indicator_storage.h new file mode 100644 index 0000000..771f457 --- /dev/null +++ b/examples/indicator_matter/main/model/indicator_storage.h @@ -0,0 +1,24 @@ +#ifndef INDICATOR_STORAGE_H +#define INDICATOR_STORAGE_H + +#include "config.h" +#include "view_data.h" + +#ifdef __cplusplus +extern "C" { +#endif + + +int indicator_storage_init(void); + +esp_err_t indicator_storage_write(char *p_key, void *p_data, size_t len); + + +//p_len : inout +esp_err_t indicator_storage_read(char *p_key, void *p_data, size_t *p_len); + +#ifdef __cplusplus +} +#endif + +#endif diff --git a/examples/indicator_matter/main/model/indicator_time.c b/examples/indicator_matter/main/model/indicator_time.c new file mode 100644 index 0000000..89fa9ea --- /dev/null +++ b/examples/indicator_matter/main/model/indicator_time.c @@ -0,0 +1,271 @@ +#include "indicator_time.h" +#include "esp_sntp.h" +#include "freertos/semphr.h" +#include +#include "nvs.h" + + +#define TIME_CFG_STORAGE "time-cfg" + +struct indicator_time +{ + struct view_data_time_cfg cfg; + char net_zone[64]; +}; + +static const char *TAG = "time"; + +static struct indicator_time __g_time_model; +static SemaphoreHandle_t __g_data_mutex; + +static esp_timer_handle_t view_update_timer_handle; + +static void __time_cfg_set(struct view_data_time_cfg *p_cfg ) +{ + xSemaphoreTake(__g_data_mutex, portMAX_DELAY); + memcpy( &__g_time_model.cfg, p_cfg, sizeof(struct view_data_time_cfg)); + xSemaphoreGive(__g_data_mutex); +} + +static void __time_cfg_get(struct view_data_time_cfg *p_cfg ) +{ + xSemaphoreTake(__g_data_mutex, portMAX_DELAY); + memcpy(p_cfg, &__g_time_model.cfg, sizeof(struct view_data_time_cfg)); + xSemaphoreGive(__g_data_mutex); +} + + +static void __time_cfg_save(struct view_data_time_cfg *p_cfg ) +{ + esp_err_t ret = 0; + ret = indicator_storage_write(TIME_CFG_STORAGE, (void *)p_cfg, sizeof(struct view_data_time_cfg)); + if( ret != ESP_OK ) { + ESP_LOGI(TAG, "cfg write err:%d", ret); + } else { + ESP_LOGI(TAG, "cfg write successful"); + } +} + +static void __time_cfg_print(struct view_data_time_cfg *p_cfg ) +{ + printf( "time_format_24:%d, auto_update:%d, time:%d, auto_update_zone:%d, zone:%d, daylight:%d\n", \ + (bool) p_cfg->time_format_24, (bool)p_cfg->auto_update, (long)p_cfg->time, (bool)p_cfg->auto_update_zone, (int8_t)p_cfg->zone, (bool)p_cfg->daylight); +} + + +static void __time_sync_notification_cb(struct timeval *tv) +{ + ESP_LOGI("ntp", "Notification of a time synchronization event"); + struct view_data_time_cfg cfg; + __time_cfg_get(&cfg); + bool time_format_24 = cfg.time_format_24; + esp_event_post_to(view_event_handle, VIEW_EVENT_BASE, VIEW_EVENT_TIME, &time_format_24, sizeof(time_format_24), portMAX_DELAY); +} + +static void __time_set(time_t time) +{ + struct tm tm = {4, 14, 3, 19, 0, 138, 0, 0, 0}; + struct timeval timestamp = { time, 0 }; + settimeofday(×tamp, NULL); +} + +static void __time_sync_enable(void) +{ + sntp_init(); +} + +static void __time_sync_stop(void) +{ + sntp_stop(); +} + +static void __time_zone_set(struct view_data_time_cfg *p_cfg) +{ + if ( !p_cfg->auto_update_zone) { + + int8_t zone = p_cfg->zone; + char zone_str[32]; + + if( p_cfg->daylight) { + zone -=1; //todo + } + if( zone >= 0) { + snprintf(zone_str, sizeof(zone_str) - 1, "UTC-%d", zone); + } else { + snprintf(zone_str, sizeof(zone_str) - 1, "UTC+%d", 0 - zone); + } + setenv("TZ", zone_str, 1); + } else { + + char net_zone[64] = {0}; + xSemaphoreTake(__g_data_mutex, portMAX_DELAY); + memcpy(net_zone, &__g_time_model.net_zone, sizeof(net_zone)); + xSemaphoreGive(__g_data_mutex); + + if( strlen(net_zone) > 0 ) { + setenv("TZ", net_zone, 1); + } + } +} + +static void __time_cfg(struct view_data_time_cfg *p_cfg, bool set_time) +{ + if( p_cfg->auto_update ) { + __time_sync_enable(); + __time_zone_set(p_cfg); + } else { + __time_sync_stop(); + struct timeval timestamp = { p_cfg->time, 0 }; + if( set_time ) { + settimeofday(×tamp, NULL); + } + } +} + +static void __time_view_update_callback(void* arg) +{ + static int last_min = 60; + time_t now = 0; + struct tm timeinfo = { 0 }; + time(&now); + localtime_r(&now, &timeinfo); + if( timeinfo.tm_min != last_min) { + last_min = timeinfo.tm_min; + + struct view_data_time_cfg cfg; + __time_cfg_get(&cfg); + bool time_format_24 = cfg.time_format_24; + esp_event_post_to(view_event_handle, VIEW_EVENT_BASE, VIEW_EVENT_TIME, &time_format_24, sizeof(time_format_24), portMAX_DELAY); + ESP_LOGI(TAG, "need update time view"); + char strftime_buf[64]; + strftime(strftime_buf, sizeof(strftime_buf), "%c", &timeinfo); + ESP_LOGI(TAG, "%s", strftime_buf); + } +} + +static __time_view_update_init(void) +{ + const esp_timer_create_args_t timer_args = { + .callback = &__time_view_update_callback, + /* argument specified here will be passed to timer callback function */ + .arg = (void*) view_update_timer_handle, + .name = "time update" + }; + ESP_ERROR_CHECK( esp_timer_create(&timer_args, &view_update_timer_handle)); + ESP_ERROR_CHECK(esp_timer_start_periodic(view_update_timer_handle, 1000000)); //1s +} + + +static void __view_event_handler(void* handler_args, esp_event_base_t base, int32_t id, void* event_data) +{ + switch (id) + { + case VIEW_EVENT_TIME_CFG_APPLY: { + struct view_data_time_cfg * p_cfg = (struct view_data_time_cfg *)event_data; + ESP_LOGI(TAG, "event: VIEW_EVENT_TIME_CFG_APPLY"); + __time_cfg_print(p_cfg); + __time_cfg_set(p_cfg); + __time_cfg_save(p_cfg); + __time_cfg(p_cfg, p_cfg->set_time); //config; + + bool time_format_24 = p_cfg->time_format_24; + esp_event_post_to(view_event_handle, VIEW_EVENT_BASE, VIEW_EVENT_TIME, &time_format_24, sizeof(time_format_24), portMAX_DELAY); + break; + } + case VIEW_EVENT_WIFI_ST: { + static bool fist = true; + ESP_LOGI(TAG, "event: VIEW_EVENT_WIFI_ST"); + struct view_data_wifi_st *p_st = ( struct view_data_wifi_st *)event_data; + if( p_st->is_connected) { + + if( !fist) { + break; + } + fist = false; + struct view_data_time_cfg cfg; + __time_cfg_get(&cfg); + if( cfg.auto_update ) { + __time_sync_stop(); + __time_sync_enable(); + } + } + } + default: + break; + } +} + + +static void __time_cfg_restore(void) +{ + + esp_err_t ret = 0; + struct view_data_time_cfg cfg; + + size_t len = sizeof(cfg); + + ret = indicator_storage_read(TIME_CFG_STORAGE, (void *)&cfg, &len); + if( ret == ESP_OK && len== (sizeof(cfg)) ) { + ESP_LOGI(TAG, "cfg read successful"); + __time_cfg_set(&cfg); + } else { + // err or not find + if( ret == ESP_ERR_NVS_NOT_FOUND) { + ESP_LOGI(TAG, "cfg not found"); + }else { + ESP_LOGI(TAG, "cfg read err:%d", ret); + } + + cfg.auto_update = true; + cfg.auto_update_zone = true; + cfg.daylight = true; + cfg.time_format_24 = true; + cfg.zone = 0; + cfg.time = 0; + __time_cfg_set(&cfg); + } +} + +int indicator_time_init(void) +{ + __g_data_mutex = xSemaphoreCreateMutex(); + + memset(__g_time_model.net_zone, 0 , sizeof(__g_time_model.net_zone)); + + __time_cfg_restore(); + + sntp_setoperatingmode(SNTP_OPMODE_POLL); + sntp_setservername(0, "pool.ntp.org"); + sntp_setservername(1, "cn.ntp.org.cn"); + sntp_set_time_sync_notification_cb(__time_sync_notification_cb); + + struct view_data_time_cfg cfg; + __time_cfg_get(&cfg); + __time_cfg(&cfg, true); + esp_event_post_to(view_event_handle, VIEW_EVENT_BASE, VIEW_EVENT_TIME_CFG_UPDATE, &cfg, sizeof(cfg), portMAX_DELAY); + + __time_view_update_init(); + + ESP_ERROR_CHECK(esp_event_handler_instance_register_with(view_event_handle, + VIEW_EVENT_BASE, VIEW_EVENT_TIME_CFG_APPLY, + __view_event_handler, NULL, NULL)); + ESP_ERROR_CHECK(esp_event_handler_instance_register_with(view_event_handle, + VIEW_EVENT_BASE, VIEW_EVENT_WIFI_ST, + __view_event_handler, NULL, NULL)); +} + +int indicator_time_net_zone_set( char *p) +{ + xSemaphoreTake(__g_data_mutex, portMAX_DELAY); + strcpy(__g_time_model.net_zone, p); + xSemaphoreGive(__g_data_mutex); + + struct view_data_time_cfg cfg; + __time_cfg_get(&cfg); + + if( cfg.auto_update ) { + __time_zone_set(&cfg); + } + bool time_format_24 = cfg.time_format_24; + esp_event_post_to(view_event_handle, VIEW_EVENT_BASE, VIEW_EVENT_TIME, &time_format_24, sizeof(time_format_24), portMAX_DELAY); +} diff --git a/examples/indicator_matter/main/model/indicator_time.h b/examples/indicator_matter/main/model/indicator_time.h new file mode 100644 index 0000000..d844b2b --- /dev/null +++ b/examples/indicator_matter/main/model/indicator_time.h @@ -0,0 +1,22 @@ +#ifndef INDICATOR_TIME_H +#define INDICATOR_TIME_H + +#include "config.h" +#include "view_data.h" + +#ifdef __cplusplus +extern "C" { +#endif + + +//ntp sync +int indicator_time_init(void); + +// set TZ +int indicator_time_net_zone_set( char *p); + +#ifdef __cplusplus +} +#endif + +#endif diff --git a/examples/indicator_matter/main/model/indicator_virtual_dashboard.c b/examples/indicator_matter/main/model/indicator_virtual_dashboard.c new file mode 100644 index 0000000..4fb4f46 --- /dev/null +++ b/examples/indicator_matter/main/model/indicator_virtual_dashboard.c @@ -0,0 +1,134 @@ +#include "indicator_virtual_dashboard.h" +#include "nvs_flash.h" +#include "nvs.h" +#include "freertos/semphr.h" + +#define MATTER_DASHBOARD_STORAGE "md" + +static const char *TAG = "virtual_dashboard"; + +static SemaphoreHandle_t __g_matter_virtual_dashboard_mutex; +static struct virtual_dashboard __g_virtual_dashboard; + +static void __dashboard_data_set(struct virtual_dashboard *dashboard_data ) +{ + xSemaphoreTake(__g_matter_virtual_dashboard_mutex, portMAX_DELAY); + memcpy( &__g_virtual_dashboard, dashboard_data, sizeof(struct virtual_dashboard)); + xSemaphoreGive(__g_matter_virtual_dashboard_mutex); +} + +void dashboard_data_get(struct virtual_dashboard *dashboard_data ) +{ + xSemaphoreTake(__g_matter_virtual_dashboard_mutex, portMAX_DELAY); + memcpy(dashboard_data, &__g_virtual_dashboard, sizeof(struct virtual_dashboard)); + xSemaphoreGive(__g_matter_virtual_dashboard_mutex); +} + +static void __dashboard_data_save(struct virtual_dashboard *dashboard_data ) +{ + esp_err_t ret = 0; + ret = indicator_storage_write(MATTER_DASHBOARD_STORAGE, (void *)dashboard_data, sizeof(struct virtual_dashboard)); + if( ret != ESP_OK ) { + ESP_LOGI(TAG, "matter dashboard storage write err:%d", ret); + } else { + ESP_LOGI(TAG, "matter dashboard storage write successful"); + } +} + +static void __view_event_handler(void* handler_args, esp_event_base_t base, int32_t id, void* event_data) +{ + switch (id) + { + case VIEW_EVENT_MATTER_SET_DASHBOARD_DATA: + case VIEW_EVENT_MATTER_DASHBOARD_DATA: { + ESP_LOGI(TAG, "event: VIEW_EVENT_MATTER_DASHBOARD_DATA"); + + struct view_data_matter_dashboard_data *p_data = (struct view_data_matter_dashboard_data *) event_data; + + switch (p_data->dashboard_data_type) + { + case DASHBOARD_DATA_ARC: { + xSemaphoreTake(__g_matter_virtual_dashboard_mutex, portMAX_DELAY); + __g_virtual_dashboard.arc_value = p_data->value; + xSemaphoreGive(__g_matter_virtual_dashboard_mutex); + break; + } + case DASHBOARD_DATA_SWITCH: { + xSemaphoreTake(__g_matter_virtual_dashboard_mutex, portMAX_DELAY); + __g_virtual_dashboard.switch_state = (bool)p_data->value; + xSemaphoreGive(__g_matter_virtual_dashboard_mutex); + break; + } + case DASHBOARD_DATA_SLIDER: { + xSemaphoreTake(__g_matter_virtual_dashboard_mutex, portMAX_DELAY); + __g_virtual_dashboard.slider_value = p_data->value; + xSemaphoreGive(__g_matter_virtual_dashboard_mutex); + break; + } + case DASHBOARD_DATA_BUTTON1: { + xSemaphoreTake(__g_matter_virtual_dashboard_mutex, portMAX_DELAY); + __g_virtual_dashboard.button1 = (bool)p_data->value; + xSemaphoreGive(__g_matter_virtual_dashboard_mutex); + break; + } + case DASHBOARD_DATA_BUTTON2: { + xSemaphoreTake(__g_matter_virtual_dashboard_mutex, portMAX_DELAY); + __g_virtual_dashboard.button2 = (bool)p_data->value; + xSemaphoreGive(__g_matter_virtual_dashboard_mutex); + break; + } + default: + break; + } + + xSemaphoreTake(__g_matter_virtual_dashboard_mutex, portMAX_DELAY); + __dashboard_data_save(&__g_virtual_dashboard); + xSemaphoreGive(__g_matter_virtual_dashboard_mutex); + + break; + } + default: + break; + } +} + +static void __dashboard_data_restore() +{ + esp_err_t ret = 0; + struct virtual_dashboard dashboard_data; + + size_t len = sizeof(dashboard_data); + + ret = indicator_storage_read(MATTER_DASHBOARD_STORAGE, (void *)&dashboard_data, &len); + if( ret == ESP_OK && len== (sizeof(dashboard_data)) ) { + ESP_LOGI(TAG, "matter dashboard storage read successful"); + __dashboard_data_set(&dashboard_data); + } else { + // err or not find + if( ret == ESP_ERR_NVS_NOT_FOUND) { + ESP_LOGI(TAG, "matter dashboard storage not found"); + }else { + ESP_LOGI(TAG, "matter dashboard storage read err:%d", ret); + } + + dashboard_data.arc_value = 0; + dashboard_data.switch_state = false; + dashboard_data.button1 = false; + dashboard_data.button2 = false; + dashboard_data.slider_value = 0; + __dashboard_data_set(&dashboard_data); + } +} + +int indicator_virtual_dashboard_init(void) +{ + __g_matter_virtual_dashboard_mutex = xSemaphoreCreateMutex(); + memset(&__g_virtual_dashboard, 0, sizeof(__g_virtual_dashboard)); + __dashboard_data_restore(); + + ESP_LOGI(TAG, "Dimmer switch: esp_matter_attr_val_t value is %d", (int)__g_virtual_dashboard.button1); + ESP_ERROR_CHECK(esp_event_handler_instance_register_with(view_event_handle, + VIEW_EVENT_BASE, VIEW_EVENT_MATTER_DASHBOARD_DATA, + __view_event_handler, NULL, NULL)); +} + diff --git a/examples/indicator_matter/main/model/indicator_virtual_dashboard.h b/examples/indicator_matter/main/model/indicator_virtual_dashboard.h new file mode 100644 index 0000000..10cd36e --- /dev/null +++ b/examples/indicator_matter/main/model/indicator_virtual_dashboard.h @@ -0,0 +1,28 @@ +#ifndef INDICATOR_VIRTUAL_DASHBOARD_H +#define INDICATOR_VIRTUAL_DASHBOARD_H + +#include "config.h" +#include "view_data.h" + + +#ifdef __cplusplus +extern "C" { +#endif + +struct virtual_dashboard +{ + int arc_value; + bool switch_state; + int slider_value; + bool button1; + bool button2; +}; + +int indicator_virtual_dashboard_init(void); +void dashboard_data_get(struct virtual_dashboard *dashboard_data ); + +#ifdef __cplusplus +} +#endif + +#endif diff --git a/examples/indicator_matter/main/timeapi_cert.pem b/examples/indicator_matter/main/timeapi_cert.pem new file mode 100644 index 0000000..4635b94 --- /dev/null +++ b/examples/indicator_matter/main/timeapi_cert.pem @@ -0,0 +1,59 @@ +-----BEGIN CERTIFICATE----- +MIIF3jCCA8agAwIBAgIQAf1tMPyjylGoG7xkDjUDLTANBgkqhkiG9w0BAQwFADCB +iDELMAkGA1UEBhMCVVMxEzARBgNVBAgTCk5ldyBKZXJzZXkxFDASBgNVBAcTC0pl +cnNleSBDaXR5MR4wHAYDVQQKExVUaGUgVVNFUlRSVVNUIE5ldHdvcmsxLjAsBgNV +BAMTJVVTRVJUcnVzdCBSU0EgQ2VydGlmaWNhdGlvbiBBdXRob3JpdHkwHhcNMTAw +MjAxMDAwMDAwWhcNMzgwMTE4MjM1OTU5WjCBiDELMAkGA1UEBhMCVVMxEzARBgNV +BAgTCk5ldyBKZXJzZXkxFDASBgNVBAcTC0plcnNleSBDaXR5MR4wHAYDVQQKExVU +aGUgVVNFUlRSVVNUIE5ldHdvcmsxLjAsBgNVBAMTJVVTRVJUcnVzdCBSU0EgQ2Vy +dGlmaWNhdGlvbiBBdXRob3JpdHkwggIiMA0GCSqGSIb3DQEBAQUAA4ICDwAwggIK +AoICAQCAEmUXNg7D2wiz0KxXDXbtzSfTTK1Qg2HiqiBNCS1kCdzOiZ/MPans9s/B +3PHTsdZ7NygRK0faOca8Ohm0X6a9fZ2jY0K2dvKpOyuR+OJv0OwWIJAJPuLodMkY +tJHUYmTbf6MG8YgYapAiPLz+E/CHFHv25B+O1ORRxhFnRghRy4YUVD+8M/5+bJz/ +Fp0YvVGONaanZshyZ9shZrHUm3gDwFA66Mzw3LyeTP6vBZY1H1dat//O+T23LLb2 +VN3I5xI6Ta5MirdcmrS3ID3KfyI0rn47aGYBROcBTkZTmzNg95S+UzeQc0PzMsNT +79uq/nROacdrjGCT3sTHDN/hMq7MkztReJVni+49Vv4M0GkPGw/zJSZrM233bkf6 +c0Plfg6lZrEpfDKEY1WJxA3Bk1QwGROs0303p+tdOmw1XNtB1xLaqUkL39iAigmT +Yo61Zs8liM2EuLE/pDkP2QKe6xJMlXzzawWpXhaDzLhn4ugTncxbgtNMs+1b/97l +c6wjOy0AvzVVdAlJ2ElYGn+SNuZRkg7zJn0cTRe8yexDJtC/QV9AqURE9JnnV4ee +UB9XVKg+/XRjL7FQZQnmWEIuQxpMtPAlR1n6BB6T1CZGSlCBst6+eLf8ZxXhyVeE +Hg9j1uliutZfVS7qXMYoCAQlObgOK6nyTJccBz8NUvXt7y+CDwIDAQABo0IwQDAd +BgNVHQ4EFgQUU3m/WqorSs9UgOHYm8Cd8rIDZsswDgYDVR0PAQH/BAQDAgEGMA8G +A1UdEwEB/wQFMAMBAf8wDQYJKoZIhvcNAQEMBQADggIBAFzUfA3P9wF9QZllDHPF +Up/L+M+ZBn8b2kMVn54CVVeWFPFSPCeHlCjtHzoBN6J2/FNQwISbxmtOuowhT6KO +VWKR82kV2LyI48SqC/3vqOlLVSoGIG1VeCkZ7l8wXEskEVX/JJpuXior7gtNn3/3 +ATiUFJVDBwn7YKnuHKsSjKCaXqeYalltiz8I+8jRRa8YFWSQEg9zKC7F4iRO/Fjs +8PRF/iKz6y+O0tlFYQXBl2+odnKPi4w2r78NBc5xjeambx9spnFixdjQg3IM8WcR +iQycE0xyNN+81XHfqnHd4blsjDwSXWXavVcStkNr/+XeTWYRUc+ZruwXtuhxkYze +Sf7dNXGiFSeUHM9h4ya7b6NnJSFd5t0dCy5oGzuCr+yDZ4XUmFF0sbmZgIn/f3gZ +XHlKYC6SQK5MNyosycdiyA5d9zZbyuAlJQG03RoHnHcAP9Dc1ew91Pq7P8yF1m9/ +qS3fuQL39ZeatTXaw2ewh0qpKJ4jjv9cJ2vhsE/zB+4ALtRZh8tSQZXq9EfX7mRB +VXyNWQKV3WKdwrnuWih0hKWbt5DHDAff9Yk2dDLWKMGwsAvgnEzDHNb842m1R0aB +L6KCq9NjRHDEjf8tM7qtj3u1cIiuPhnPQCjY/MiQu12ZIvVS5ljFH4gxQ+6IHdfG +jjxDah2nGN59PRbxYvnKkKj9 +-----END CERTIFICATE----- +-----BEGIN CERTIFICATE----- +MIIEMjCCAxqgAwIBAgIBATANBgkqhkiG9w0BAQUFADB7MQswCQYDVQQGEwJHQjEb +MBkGA1UECAwSR3JlYXRlciBNYW5jaGVzdGVyMRAwDgYDVQQHDAdTYWxmb3JkMRow +GAYDVQQKDBFDb21vZG8gQ0EgTGltaXRlZDEhMB8GA1UEAwwYQUFBIENlcnRpZmlj +YXRlIFNlcnZpY2VzMB4XDTA0MDEwMTAwMDAwMFoXDTI4MTIzMTIzNTk1OVowezEL +MAkGA1UEBhMCR0IxGzAZBgNVBAgMEkdyZWF0ZXIgTWFuY2hlc3RlcjEQMA4GA1UE +BwwHU2FsZm9yZDEaMBgGA1UECgwRQ29tb2RvIENBIExpbWl0ZWQxITAfBgNVBAMM +GEFBQSBDZXJ0aWZpY2F0ZSBTZXJ2aWNlczCCASIwDQYJKoZIhvcNAQEBBQADggEP +ADCCAQoCggEBAL5AnfRu4ep2hxxNRUSOvkbIgwadwSr+GB+O5AL686tdUIoWMQua +BtDFcCLNSS1UY8y2bmhGC1Pqy0wkwLxyTurxFa70VJoSCsN6sjNg4tqJVfMiWPPe +3M/vg4aijJRPn2jymJBGhCfHdr/jzDUsi14HZGWCwEiwqJH5YZ92IFCokcdmtet4 +YgNW8IoaE+oxox6gmf049vYnMlhvB/VruPsUK6+3qszWY19zjNoFmag4qMsXeDZR +rOme9Hg6jc8P2ULimAyrL58OAd7vn5lJ8S3frHRNG5i1R8XlKdH5kBjHYpy+g8cm +ez6KJcfA3Z3mNWgQIJ2P2N7Sw4ScDV7oL8kCAwEAAaOBwDCBvTAdBgNVHQ4EFgQU +oBEKIz6W8Qfs4q8p74Klf9AwpLQwDgYDVR0PAQH/BAQDAgEGMA8GA1UdEwEB/wQF +MAMBAf8wewYDVR0fBHQwcjA4oDagNIYyaHR0cDovL2NybC5jb21vZG9jYS5jb20v +QUFBQ2VydGlmaWNhdGVTZXJ2aWNlcy5jcmwwNqA0oDKGMGh0dHA6Ly9jcmwuY29t +b2RvLm5ldC9BQUFDZXJ0aWZpY2F0ZVNlcnZpY2VzLmNybDANBgkqhkiG9w0BAQUF +AAOCAQEACFb8AvCb6P+k+tZ7xkSAzk/ExfYAWMymtrwUSWgEdujm7l3sAg9g1o1Q +GE8mTgHj5rCl7r+8dFRBv/38ErjHT1r0iWAFf2C3BUrz9vHCv8S5dIa2LX1rzNLz +Rt0vxuBqw8M0Ayx9lt1awg6nCpnBBYurDC/zXDrPbDdVCYfeU0BsWO/8tqtlbgT2 +G9w84FoVxp7Z8VlIMCFlA2zs6SFz7JsDoeA3raAVGI/6ugLOpyypEBMs1OUIJqsi +l2D4kF501KKaU73yqWjgom7C12yxow+ev+to51byrvLjKzg6CYG1a4XXvi3tPxq3 +smPi9WIsgtRqAEFQ8TmDn5XpNpaYbg== +-----END CERTIFICATE----- \ No newline at end of file diff --git a/examples/indicator_matter/main/ui/ui.c b/examples/indicator_matter/main/ui/ui.c new file mode 100644 index 0000000..2fb4297 --- /dev/null +++ b/examples/indicator_matter/main/ui/ui.c @@ -0,0 +1,1764 @@ +// SquareLine LVGL GENERATED FILE +// EDITOR VERSION: SquareLine Studio 1.1.1 +// LVGL VERSION: 8.3.3 +// PROJECT: sensecap + +#include "ui.h" +#include "indicator_virtual_dashboard.h" +#include "ui_helpers.h" + +///////////////////// VARIABLES //////////////////// +void up_Animation( lv_obj_t *TargetObject, int delay); +void ui_event_screen_time( lv_event_t * e); +lv_obj_t *ui_screen_time; +lv_obj_t *ui_background; +lv_obj_t *ui_qrcode_background; +lv_obj_t *ui_hour; +lv_obj_t *ui_hour_dis; +lv_obj_t *ui_min; +lv_obj_t *ui_min_dis; +lv_obj_t *ui_colon; +lv_obj_t *ui_adorn; +lv_obj_t *ui_wifi_st_1; +lv_obj_t *ui_date_panel; +lv_obj_t *ui_date; +lv_obj_t *ui_location; +lv_obj_t *ui_location_Icon; +lv_obj_t *ui_city; +void ui_event_screen_sensor( lv_event_t * e); +lv_obj_t *ui_screen_sensor; +lv_obj_t *ui_wifi__st_button_2; +lv_obj_t *ui_wifi_st_2; +lv_obj_t *ui_time2; +lv_obj_t *ui_co2; +lv_obj_t *ui_co2_icon; +lv_obj_t *ui_co2_title; +lv_obj_t *ui_co2_data; +lv_obj_t *ui_co2_unit; +lv_obj_t *ui_tvoc_2; +lv_obj_t *ui_tvoc_icon_2; +lv_obj_t *ui_tvoc_title_2; +lv_obj_t *ui_tvoc_data; +lv_obj_t *ui_tvoc_unit_2; +lv_obj_t *ui_temp2; +lv_obj_t *ui_temp_icon_2; +lv_obj_t *ui_temp_title_2; +lv_obj_t *ui_temp_data_2; +lv_obj_t *ui_temp_unit_2; +lv_obj_t *ui_humidity2; +lv_obj_t *ui_humidity_icon_2; +lv_obj_t *ui_humidity_title_2; +lv_obj_t *ui_humidity_data_2; +lv_obj_t *ui_humidity_unit_2; +lv_obj_t *ui_scrolldots2; +lv_obj_t *ui_scrolldots21; +lv_obj_t *ui_scrolldots22; +lv_obj_t *ui_scrolldots23; +void ui_event_screen_setting( lv_event_t * e); +lv_obj_t *ui_screen_setting; +lv_obj_t *ui_wifi__st_button_3; +lv_obj_t *ui_wifi_st_3; +lv_obj_t *ui_time3; +lv_obj_t *ui_setting_icon; +lv_obj_t *ui_setting_title; +void ui_event_setting_display( lv_event_t * e); +void ui_event_screen_matter( lv_event_t * e); +void ui_event_slider_value_update( lv_event_t * e); +lv_obj_t *ui_setting_display; +lv_obj_t *ui_setting_display_icon; +lv_obj_t *ui_setting_display_title; +void ui_event_setting_time( lv_event_t * e); +lv_obj_t *ui_setting_time; +lv_obj_t *ui_setting_time_icon; +lv_obj_t *ui_setting_time_title; +lv_obj_t *ui_scrolldots3; +lv_obj_t *ui_scrolldots31; +lv_obj_t *ui_scrolldots32; +lv_obj_t *ui_scrolldots33; +lv_obj_t *ui_screen_display; +lv_obj_t *ui_wifi_st_4; +void ui_event_back1( lv_event_t * e); +lv_obj_t *ui_back1; +lv_obj_t *ui_display_title; +lv_obj_t *ui_brighness; +lv_obj_t *ui_brighness_cfg; +lv_obj_t *ui_brighness_title; +lv_obj_t *ui_brighness_icon_1; +lv_obj_t *ui_brighness_icon_2; +lv_obj_t *ui_screen_always_on; +lv_obj_t *ui_screen_always_on_title; +void ui_event_screen_always_on_cfg( lv_event_t * e); +lv_obj_t *ui_screen_always_on_cfg; +lv_obj_t *ui_turn_off_after_time; +lv_obj_t *ui_after; +void ui_event_sleep_mode_time_cfg( lv_event_t * e); +lv_obj_t *ui_turn_off_after_time_cfg; +lv_obj_t *ui_min; +void ui_event_display_keyboard( lv_event_t * e); +lv_obj_t *ui_display_keyboard; +lv_obj_t *ui_screen_date_time; +lv_obj_t *ui_wifi_st_5; +void ui_event_back2( lv_event_t * e); +lv_obj_t *ui_back2; +lv_obj_t *ui_date_time_title; +lv_obj_t *ui_time_format; +lv_obj_t *ui_time_format_title; +lv_obj_t *ui_time_format_cfg; +lv_obj_t *ui_auto_update; +lv_obj_t *ui_auto_update_title; +void ui_event_auto_update_cfg( lv_event_t * e); +lv_obj_t *ui_auto_update_cfg; +lv_obj_t *ui_date_time; +lv_obj_t * ui_time_zone; +lv_obj_t * ui_zone_auto_update_cfg; +lv_obj_t *ui_time_zone_title; +lv_obj_t *ui_time_zone_num_cfg; +lv_obj_t *ui_utc_tile; +lv_obj_t *ui_time_zone_sign_cfg_; +lv_obj_t *ui_daylight_title; +lv_obj_t *ui_daylight_cfg; +lv_obj_t *ui_manual_setting_title; +lv_obj_t *ui_date_cfg; +lv_obj_t *ui_hour_cfg; +lv_obj_t *ui_min_cfg; +lv_obj_t *ui_sec_cfg; +lv_obj_t *ui_time_label1; +lv_obj_t *ui_time_label2; +lv_obj_t *ui_wifi_st_6; +lv_obj_t *ui_matter_title; +lv_obj_t * ui_time_save; +void ui_event_back3( lv_event_t * e); +lv_obj_t *ui_back3; + +lv_obj_t *ui_screen_factory; +lv_obj_t *ui_factory_resetting_title; + +lv_obj_t *ui_screen_sensor_chart; +lv_obj_t *ui_wifi_st_7; +lv_obj_t *ui_back4; +lv_obj_t *ui_sensor_data_title; +lv_obj_t * ui_sensor_chart_day; +lv_chart_series_t * ui_sensor_chart_day_series; + +lv_obj_t * ui_sensor_chart_week; +lv_chart_series_t * ui_sensor_chart_week_series_hight; +lv_chart_series_t * ui_sensor_chart_week_series_low; + +lv_obj_t *ui_screen_matter; +lv_obj_t *ui_screen_matter_setup; +lv_obj_t *ui_button_panel1; +lv_obj_t *ui_toggle_button1; +lv_obj_t *ui_button_panel_label1; +lv_obj_t *ui_slider_with_value_panel; +lv_obj_t *ui_arc; +lv_obj_t *ui_slider_value_label; +lv_obj_t *ui_slider_with_value_panel_label; +lv_obj_t *ui_button_panel2; +lv_obj_t *ui_toggle_button2; +lv_obj_t *ui_button_panel_label2; +lv_obj_t *ui_switch_panel; +lv_obj_t *ui_switch1; +lv_obj_t *ui_switch_panel_label; +lv_obj_t *ui_slider_panel; +lv_obj_t *ui_slider1; +lv_obj_t *ui_slider_panel_label; +lv_obj_t *ui_header; +lv_obj_t *ui_qrcode_img; +lv_obj_t *ui_qrcode_panel; + +static lv_obj_t *ui_screen_last; +///////////////////// TEST LVGL SETTINGS //////////////////// +#if LV_COLOR_DEPTH != 16 + #error "LV_COLOR_DEPTH should be 16bit to match SquareLine Studio's settings" +#endif +#if LV_COLOR_16_SWAP !=0 + #error "LV_COLOR_16_SWAP should be 0 to match SquareLine Studio's settings" +#endif + +///////////////////// ANIMATIONS //////////////////// +void up_Animation( lv_obj_t *TargetObject, int delay) +{ +lv_anim_t PropertyAnimation_0; +lv_anim_init(&PropertyAnimation_0); +lv_anim_set_time(&PropertyAnimation_0, 200); +lv_anim_set_user_data(&PropertyAnimation_0,TargetObject); +lv_anim_set_custom_exec_cb(&PropertyAnimation_0, _ui_anim_callback_set_y ); +lv_anim_set_values(&PropertyAnimation_0, -50, 0 ); +lv_anim_set_path_cb( &PropertyAnimation_0, lv_anim_path_ease_out); +lv_anim_set_delay( &PropertyAnimation_0, delay + 0 ); +lv_anim_set_playback_time(&PropertyAnimation_0, 0); +lv_anim_set_playback_delay(&PropertyAnimation_0, 0); +lv_anim_set_repeat_count(&PropertyAnimation_0, 0); +lv_anim_set_repeat_delay(&PropertyAnimation_0, 0); +lv_anim_set_early_apply( &PropertyAnimation_0, false ); +lv_anim_set_get_value_cb(&PropertyAnimation_0, &_ui_anim_callback_get_y ); +lv_anim_start(&PropertyAnimation_0); +lv_anim_t PropertyAnimation_1; +lv_anim_init(&PropertyAnimation_1); +lv_anim_set_time(&PropertyAnimation_1, 100); +lv_anim_set_user_data(&PropertyAnimation_1,TargetObject); +lv_anim_set_custom_exec_cb(&PropertyAnimation_1, _ui_anim_callback_set_opacity ); +lv_anim_set_values(&PropertyAnimation_1, 0, 255 ); +lv_anim_set_path_cb( &PropertyAnimation_1, lv_anim_path_linear); +lv_anim_set_delay( &PropertyAnimation_1, delay + 0 ); +lv_anim_set_playback_time(&PropertyAnimation_1, 0); +lv_anim_set_playback_delay(&PropertyAnimation_1, 0); +lv_anim_set_repeat_count(&PropertyAnimation_1, 0); +lv_anim_set_repeat_delay(&PropertyAnimation_1, 0); +lv_anim_set_early_apply( &PropertyAnimation_1, true ); +lv_anim_set_get_value_cb(&PropertyAnimation_1, &_ui_anim_callback_get_opacity ); +lv_anim_start(&PropertyAnimation_1); + +} + +///////////////////// FUNCTIONS //////////////////// + +void ui_event_screen_time( lv_event_t * e) { + lv_event_code_t event_code = lv_event_get_code(e); + lv_obj_t * target = lv_event_get_target(e); +if ( event_code == LV_EVENT_GESTURE && lv_indev_get_gesture_dir(lv_indev_get_act()) == LV_DIR_LEFT ) { + _ui_screen_change( ui_screen_sensor, LV_SCR_LOAD_ANIM_MOVE_LEFT, 200, 0); +} +if ( event_code == LV_EVENT_GESTURE && lv_indev_get_gesture_dir(lv_indev_get_act()) == LV_DIR_RIGHT ) { + _ui_screen_change( ui_screen_setting, LV_SCR_LOAD_ANIM_MOVE_RIGHT, 200, 0); +} +if ( event_code == LV_EVENT_GESTURE && lv_indev_get_gesture_dir(lv_indev_get_act()) == LV_DIR_BOTTOM ) { + ui_screen_last = ui_screen_time; + _ui_screen_change( ui_screen_matter, LV_SCR_LOAD_ANIM_MOVE_BOTTOM, 200, 0); +} +} +void ui_event_screen_sensor( lv_event_t * e) { + lv_event_code_t event_code = lv_event_get_code(e); + lv_obj_t * target = lv_event_get_target(e); +if ( event_code == LV_EVENT_GESTURE && lv_indev_get_gesture_dir(lv_indev_get_act()) == LV_DIR_RIGHT ) { + _ui_screen_change( ui_screen_time, LV_SCR_LOAD_ANIM_MOVE_RIGHT, 200, 0); +} +if ( event_code == LV_EVENT_GESTURE && lv_indev_get_gesture_dir(lv_indev_get_act()) == LV_DIR_LEFT ) { + _ui_screen_change( ui_screen_setting, LV_SCR_LOAD_ANIM_MOVE_LEFT, 200, 0); +} +if ( event_code == LV_EVENT_GESTURE && lv_indev_get_gesture_dir(lv_indev_get_act()) == LV_DIR_TOP ) { + _ui_screen_change( ui_screen_time, LV_SCR_LOAD_ANIM_MOVE_TOP, 200, 0); +} +} +void ui_event_screen_setting( lv_event_t * e) { + lv_event_code_t event_code = lv_event_get_code(e); + lv_obj_t * target = lv_event_get_target(e); +if ( event_code == LV_EVENT_GESTURE && lv_indev_get_gesture_dir(lv_indev_get_act()) == LV_DIR_LEFT ) { + _ui_screen_change( ui_screen_time, LV_SCR_LOAD_ANIM_MOVE_LEFT, 200, 0); +} +if ( event_code == LV_EVENT_GESTURE && lv_indev_get_gesture_dir(lv_indev_get_act()) == LV_DIR_RIGHT ) { + _ui_screen_change( ui_screen_sensor, LV_SCR_LOAD_ANIM_MOVE_RIGHT, 200, 0); +} +if ( event_code == LV_EVENT_GESTURE && lv_indev_get_gesture_dir(lv_indev_get_act()) == LV_DIR_TOP ) { + _ui_screen_change( ui_screen_time, LV_SCR_LOAD_ANIM_MOVE_TOP, 200, 0); +} +} +void ui_event_slider_value_update(lv_event_t * e) +{ + lv_obj_t * arc = lv_event_get_target(e); + lv_obj_t * label = lv_event_get_user_data(e); + lv_label_set_text_fmt(label, "%d%%", lv_arc_get_value(arc)); +} +void ui_event_screen_matter( lv_event_t * e) { + lv_event_code_t event_code = lv_event_get_code(e); + lv_obj_t * target = lv_event_get_target(e); + lv_obj_t * cur_screen = lv_scr_act(); + if ( event_code == LV_EVENT_GESTURE && lv_indev_get_gesture_dir(lv_indev_get_act()) == LV_DIR_TOP ) { + _ui_screen_change( ui_screen_time, LV_SCR_LOAD_ANIM_MOVE_TOP, 200, 0); + } +} +void ui_event_setting_display( lv_event_t * e) { + lv_event_code_t event_code = lv_event_get_code(e); + lv_obj_t * target = lv_event_get_target(e); + lv_obj_t * cur_screen = lv_scr_act(); + if ( event_code == LV_EVENT_CLICKED && cur_screen == ui_screen_setting ) { + _ui_screen_change( ui_screen_display, LV_SCR_LOAD_ANIM_OVER_BOTTOM, 200, 0); + } +} +void ui_event_setting_time( lv_event_t * e) { + lv_event_code_t event_code = lv_event_get_code(e); + lv_obj_t * target = lv_event_get_target(e); + lv_obj_t * cur_screen = lv_scr_act(); + if ( event_code == LV_EVENT_CLICKED && cur_screen == ui_screen_setting ) { + _ui_screen_change( ui_screen_date_time, LV_SCR_LOAD_ANIM_OVER_BOTTOM, 200, 0); + } +} +void ui_event_back1( lv_event_t * e) { + lv_event_code_t event_code = lv_event_get_code(e); + lv_obj_t * target = lv_event_get_target(e); + if ( event_code == LV_EVENT_CLICKED) { + _ui_screen_change( ui_screen_setting, LV_SCR_LOAD_ANIM_OVER_TOP, 200, 0); + } +} +void ui_event_screen_always_on_cfg( lv_event_t * e) { + lv_event_code_t event_code = lv_event_get_code(e); + lv_obj_t * target = lv_event_get_target(e); + if ( event_code == LV_EVENT_VALUE_CHANGED && lv_obj_has_state(target,LV_STATE_CHECKED) ) { + _ui_flag_modify( ui_display_keyboard, LV_OBJ_FLAG_HIDDEN, _UI_MODIFY_FLAG_ADD); + _ui_flag_modify( ui_turn_off_after_time, LV_OBJ_FLAG_HIDDEN, _UI_MODIFY_FLAG_ADD); + } + if ( event_code == LV_EVENT_VALUE_CHANGED && !lv_obj_has_state(target,LV_STATE_CHECKED) ) { + _ui_flag_modify( ui_turn_off_after_time, LV_OBJ_FLAG_HIDDEN, _UI_MODIFY_FLAG_REMOVE); + } +} +void ui_event_sleep_mode_time_cfg( lv_event_t * e) { + lv_event_code_t event_code = lv_event_get_code(e); + lv_obj_t * target = lv_event_get_target(e); + if ( event_code == LV_EVENT_CLICKED) { + _ui_flag_modify( ui_display_keyboard, LV_OBJ_FLAG_HIDDEN, _UI_MODIFY_FLAG_REMOVE); + } +} +void ui_event_display_keyboard( lv_event_t * e) { + lv_event_code_t event_code = lv_event_get_code(e); + lv_obj_t * target = lv_event_get_target(e); + if ( event_code == LV_EVENT_READY) { + _ui_flag_modify( ui_display_keyboard, LV_OBJ_FLAG_HIDDEN, _UI_MODIFY_FLAG_ADD); + } + if ( event_code == LV_EVENT_CANCEL) { + _ui_flag_modify( ui_display_keyboard, LV_OBJ_FLAG_HIDDEN, _UI_MODIFY_FLAG_ADD); + } + if ( event_code == LV_EVENT_DEFOCUSED) { + _ui_flag_modify( ui_display_keyboard, LV_OBJ_FLAG_HIDDEN, _UI_MODIFY_FLAG_ADD); + } +} +void ui_event_back2( lv_event_t * e) { + lv_event_code_t event_code = lv_event_get_code(e); + lv_obj_t * target = lv_event_get_target(e); + if ( event_code == LV_EVENT_CLICKED) { + _ui_screen_change( ui_screen_setting, LV_SCR_LOAD_ANIM_OVER_TOP, 200, 0); + } +} +void ui_event_auto_update_cfg( lv_event_t * e) { + lv_event_code_t event_code = lv_event_get_code(e); + lv_obj_t * target = lv_event_get_target(e); + if ( event_code == LV_EVENT_VALUE_CHANGED && lv_obj_has_state(target,LV_STATE_CHECKED) ) { + _ui_flag_modify( ui_date_time, LV_OBJ_FLAG_HIDDEN, _UI_MODIFY_FLAG_ADD); + } + if ( event_code == LV_EVENT_VALUE_CHANGED && !lv_obj_has_state(target,LV_STATE_CHECKED) ) { + _ui_flag_modify( ui_date_time, LV_OBJ_FLAG_HIDDEN, _UI_MODIFY_FLAG_REMOVE); + } +} + +void ui_event_back4( lv_event_t * e) { + lv_event_code_t event_code = lv_event_get_code(e); + lv_obj_t * target = lv_event_get_target(e); + if ( event_code == LV_EVENT_CLICKED) { + lv_disp_t *dispp = lv_disp_get_default(); + lv_theme_t *theme = lv_theme_default_init(dispp, lv_color_hex(0x529d53), lv_palette_main(LV_PALETTE_RED), true, LV_FONT_DEFAULT); + lv_disp_set_theme(dispp, theme); + _ui_screen_change( ui_screen_sensor, LV_SCR_LOAD_ANIM_OVER_RIGHT, 200, 0); + } +} + + +///////////////////// SCREENS //////////////////// +void ui_screen_time_screen_init(void) +{ +ui_screen_time = lv_obj_create(NULL); +lv_obj_clear_flag( ui_screen_time, LV_OBJ_FLAG_SCROLLABLE ); /// Flags + +ui_background = lv_img_create(ui_screen_time); +lv_img_set_src(ui_background, &ui_img_background_png); +lv_obj_set_width( ui_background, lv_pct(100)); +lv_obj_set_height( ui_background, lv_pct(100)); +lv_obj_set_align( ui_background, LV_ALIGN_CENTER ); +lv_obj_add_flag( ui_background, LV_OBJ_FLAG_ADV_HITTEST ); /// Flags +lv_obj_clear_flag( ui_background, LV_OBJ_FLAG_SCROLLABLE ); /// Flags + +ui_wifi_st_1 = lv_img_create(ui_background); +lv_img_set_src(ui_wifi_st_1, &ui_img_wifi_disconet_png); +lv_obj_set_width( ui_wifi_st_1, LV_SIZE_CONTENT); /// 1 +lv_obj_set_height( ui_wifi_st_1, LV_SIZE_CONTENT); /// 1 +lv_obj_set_x( ui_wifi_st_1, -20 ); +lv_obj_set_y( ui_wifi_st_1, 20 ); +lv_obj_set_align( ui_wifi_st_1, LV_ALIGN_TOP_RIGHT ); +lv_obj_add_flag( ui_wifi_st_1, LV_OBJ_FLAG_ADV_HITTEST ); /// Flags +lv_obj_clear_flag( ui_wifi_st_1, LV_OBJ_FLAG_SCROLLABLE ); /// Flags +lv_obj_add_flag( ui_wifi_st_1, LV_OBJ_FLAG_CLICKABLE ); /// Flags + +ui_hour = lv_obj_create(ui_background); +lv_obj_set_width( ui_hour, 200); +lv_obj_set_height( ui_hour, 170); +lv_obj_set_x( ui_hour, -110 ); +lv_obj_set_y( ui_hour, 0 ); +lv_obj_set_align( ui_hour, LV_ALIGN_CENTER ); +lv_obj_clear_flag( ui_hour, LV_OBJ_FLAG_SCROLLABLE ); /// Flags +lv_obj_set_style_bg_color(ui_hour, lv_color_hex(0x2E2E2E), LV_PART_MAIN | LV_STATE_DEFAULT ); +lv_obj_set_style_bg_opa(ui_hour, 255, LV_PART_MAIN| LV_STATE_DEFAULT); + +ui_hour_dis = lv_label_create(ui_hour); +lv_obj_set_width( ui_hour_dis, LV_SIZE_CONTENT); /// 1 +lv_obj_set_height( ui_hour_dis, LV_SIZE_CONTENT); /// 1 +lv_obj_set_align( ui_hour_dis, LV_ALIGN_CENTER ); +lv_label_set_text(ui_hour_dis,"00"); +lv_obj_set_style_text_font(ui_hour_dis, &ui_font_font4, LV_PART_MAIN| LV_STATE_DEFAULT); + +ui_min = lv_obj_create(ui_background); +lv_obj_set_width( ui_min, 200); +lv_obj_set_height( ui_min, 170); +lv_obj_set_x( ui_min, 110 ); +lv_obj_set_y( ui_min, 0 ); +lv_obj_set_align( ui_min, LV_ALIGN_CENTER ); +lv_obj_clear_flag( ui_min, LV_OBJ_FLAG_SCROLLABLE ); /// Flags +lv_obj_set_style_bg_color(ui_min, lv_color_hex(0x2E2E2E), LV_PART_MAIN | LV_STATE_DEFAULT ); +lv_obj_set_style_bg_opa(ui_min, 255, LV_PART_MAIN| LV_STATE_DEFAULT); + +ui_min_dis = lv_label_create(ui_min); +lv_obj_set_width( ui_min_dis, LV_SIZE_CONTENT); /// 1 +lv_obj_set_height( ui_min_dis, LV_SIZE_CONTENT); /// 1 +lv_obj_set_align( ui_min_dis, LV_ALIGN_CENTER ); +lv_label_set_text(ui_min_dis,"00"); +lv_obj_set_style_text_font(ui_min_dis, &ui_font_font4, LV_PART_MAIN| LV_STATE_DEFAULT); + +ui_location = lv_obj_create(ui_background); +lv_obj_set_width( ui_location, 399); +lv_obj_set_height( ui_location, 30); +lv_obj_set_x( ui_location, 6 ); +lv_obj_set_y( ui_location, 103 ); +lv_obj_set_align( ui_location, LV_ALIGN_CENTER ); +lv_obj_clear_flag( ui_location, LV_OBJ_FLAG_SCROLLABLE ); /// Flags +lv_obj_set_style_bg_color(ui_location, lv_color_hex(0x000000), LV_PART_MAIN | LV_STATE_DEFAULT ); +lv_obj_set_style_bg_opa(ui_location, 255, LV_PART_MAIN| LV_STATE_DEFAULT); +lv_obj_set_style_bg_grad_color(ui_location, lv_color_hex(0x000000), LV_PART_MAIN | LV_STATE_DEFAULT ); +lv_obj_set_style_border_color(ui_location, lv_color_hex(0x000000), LV_PART_MAIN | LV_STATE_DEFAULT ); +lv_obj_set_style_border_opa(ui_location, 255, LV_PART_MAIN| LV_STATE_DEFAULT); + +ui_city = lv_label_create(ui_location); +lv_obj_set_width( ui_city, LV_SIZE_CONTENT); /// 1 +lv_obj_set_height( ui_city, LV_SIZE_CONTENT); /// 1 +lv_obj_set_align( ui_city, LV_ALIGN_RIGHT_MID ); +lv_label_set_text(ui_city," -- "); +lv_obj_set_style_text_font(ui_city, &lv_font_montserrat_16, LV_PART_MAIN| LV_STATE_DEFAULT); + +ui_location_Icon = lv_img_create(ui_background); +lv_img_set_src(ui_location_Icon, &ui_img_location2_png); +lv_obj_set_width( ui_location_Icon, LV_SIZE_CONTENT); /// 1 +lv_obj_set_height( ui_location_Icon, LV_SIZE_CONTENT); /// 1 +lv_obj_set_x( ui_location_Icon, 199 ); +lv_obj_set_y( ui_location_Icon, 103 ); +lv_obj_set_align( ui_location_Icon, LV_ALIGN_CENTER ); +lv_obj_add_flag( ui_location_Icon, LV_OBJ_FLAG_ADV_HITTEST ); /// Flags +lv_obj_clear_flag( ui_location_Icon, LV_OBJ_FLAG_SCROLLABLE ); /// Flags + +ui_date_panel = lv_obj_create(ui_background); +lv_obj_set_width( ui_date_panel, 235); +lv_obj_set_height( ui_date_panel, 30); +lv_obj_set_x( ui_date_panel, -103 ); +lv_obj_set_y( ui_date_panel, -108 ); +lv_obj_set_align( ui_date_panel, LV_ALIGN_CENTER ); +lv_obj_clear_flag( ui_date_panel, LV_OBJ_FLAG_SCROLLABLE ); /// Flags +lv_obj_set_style_bg_color(ui_date_panel, lv_color_hex(0x000000), LV_PART_MAIN | LV_STATE_DEFAULT ); +lv_obj_set_style_bg_opa(ui_date_panel, 255, LV_PART_MAIN| LV_STATE_DEFAULT); +lv_obj_set_style_bg_grad_color(ui_date_panel, lv_color_hex(0x000000), LV_PART_MAIN | LV_STATE_DEFAULT ); +lv_obj_set_style_border_color(ui_date_panel, lv_color_hex(0x000000), LV_PART_MAIN | LV_STATE_DEFAULT ); +lv_obj_set_style_border_opa(ui_date_panel, 255, LV_PART_MAIN| LV_STATE_DEFAULT); + +ui_date = lv_label_create(ui_date_panel); +lv_obj_set_width( ui_date, LV_SIZE_CONTENT); /// 1 +lv_obj_set_height( ui_date, LV_SIZE_CONTENT); /// 1 +lv_obj_set_align( ui_date, LV_ALIGN_LEFT_MID ); +lv_label_set_text(ui_date,"Monday, 01 / 01 / 1970"); +lv_label_set_recolor(ui_date,"true"); +lv_obj_set_style_text_font(ui_date, &lv_font_montserrat_16, LV_PART_MAIN| LV_STATE_DEFAULT); + +ui_colon = lv_label_create(ui_background); +lv_obj_set_width( ui_colon, LV_SIZE_CONTENT); /// 1 +lv_obj_set_height( ui_colon, LV_SIZE_CONTENT); /// 1 +lv_obj_set_align( ui_colon, LV_ALIGN_CENTER ); +lv_label_set_text(ui_colon,":"); +lv_obj_set_style_text_font(ui_colon, &ui_font_font3, LV_PART_MAIN| LV_STATE_DEFAULT); + +ui_adorn = lv_obj_create(ui_background); +lv_obj_set_width( ui_adorn, 480); +lv_obj_set_height( ui_adorn, 6); +lv_obj_set_align( ui_adorn, LV_ALIGN_CENTER ); +lv_obj_clear_flag( ui_adorn, LV_OBJ_FLAG_SCROLLABLE ); /// Flags +lv_obj_set_style_bg_color(ui_adorn, lv_color_hex(0x000000), LV_PART_MAIN | LV_STATE_DEFAULT ); +lv_obj_set_style_bg_opa(ui_adorn, 255, LV_PART_MAIN| LV_STATE_DEFAULT); +lv_obj_set_style_bg_grad_color(ui_adorn, lv_color_hex(0x000000), LV_PART_MAIN | LV_STATE_DEFAULT ); +lv_obj_set_style_border_color(ui_adorn, lv_color_hex(0x000000), LV_PART_MAIN | LV_STATE_DEFAULT ); +lv_obj_set_style_border_opa(ui_adorn, 255, LV_PART_MAIN| LV_STATE_DEFAULT); + +lv_obj_add_event_cb(ui_screen_time, ui_event_screen_time, LV_EVENT_ALL, NULL); +} +void ui_screen_sensor_screen_init(void) +{ +ui_screen_sensor = lv_obj_create(NULL); +lv_obj_clear_flag( ui_screen_sensor, LV_OBJ_FLAG_SCROLLABLE ); /// Flags + +ui_wifi__st_button_2 = lv_btn_create(ui_screen_sensor); +lv_obj_set_width( ui_wifi__st_button_2, 60); +lv_obj_set_height( ui_wifi__st_button_2, 60); +lv_obj_set_x( ui_wifi__st_button_2, -10 ); +lv_obj_set_y( ui_wifi__st_button_2, 10 ); +lv_obj_set_align( ui_wifi__st_button_2, LV_ALIGN_TOP_RIGHT ); +lv_obj_add_flag( ui_wifi__st_button_2, LV_OBJ_FLAG_SCROLL_ON_FOCUS ); /// Flags +lv_obj_clear_flag( ui_wifi__st_button_2, LV_OBJ_FLAG_SCROLLABLE ); /// Flags +lv_obj_set_style_bg_color(ui_wifi__st_button_2, lv_color_hex(0x101418), LV_PART_MAIN | LV_STATE_DEFAULT ); +lv_obj_set_style_bg_opa(ui_wifi__st_button_2, 255, LV_PART_MAIN| LV_STATE_DEFAULT); +lv_obj_set_style_bg_grad_color(ui_wifi__st_button_2, lv_color_hex(0x101418), LV_PART_MAIN | LV_STATE_DEFAULT ); + +ui_wifi_st_2 = lv_img_create(ui_wifi__st_button_2); +lv_img_set_src(ui_wifi_st_2, &ui_img_wifi_disconet_png); +lv_obj_set_width( ui_wifi_st_2, LV_SIZE_CONTENT); /// 1 +lv_obj_set_height( ui_wifi_st_2, LV_SIZE_CONTENT); /// 1 +lv_obj_set_align( ui_wifi_st_2, LV_ALIGN_TOP_RIGHT ); +lv_obj_add_flag( ui_wifi_st_2, LV_OBJ_FLAG_ADV_HITTEST ); /// Flags +lv_obj_clear_flag( ui_wifi_st_2, LV_OBJ_FLAG_SCROLLABLE ); /// Flags + +ui_time2 = lv_label_create(ui_screen_sensor); +lv_obj_set_width( ui_time2, LV_SIZE_CONTENT); /// 1 +lv_obj_set_height( ui_time2, LV_SIZE_CONTENT); /// 1 +lv_obj_set_x( ui_time2, 30 ); +lv_obj_set_y( ui_time2, 20 ); +lv_label_set_text(ui_time2,"21:20"); +lv_obj_set_style_text_font(ui_time2, &ui_font_font1, LV_PART_MAIN| LV_STATE_DEFAULT); + +ui_co2 = lv_btn_create(ui_screen_sensor); +lv_obj_set_width( ui_co2, 436); +lv_obj_set_height( ui_co2, 140); +lv_obj_set_x( ui_co2, 0 ); +lv_obj_set_y( ui_co2, -100 ); +lv_obj_set_align( ui_co2, LV_ALIGN_CENTER ); +lv_obj_add_flag( ui_co2, LV_OBJ_FLAG_SCROLL_ON_FOCUS ); /// Flags +lv_obj_clear_flag( ui_co2, LV_OBJ_FLAG_SCROLLABLE ); /// Flags +lv_obj_set_style_bg_color(ui_co2, lv_color_hex(0x529D53), LV_PART_MAIN | LV_STATE_DEFAULT ); +lv_obj_set_style_bg_opa(ui_co2, 255, LV_PART_MAIN| LV_STATE_DEFAULT); + +ui_co2_icon = lv_img_create(ui_co2); +lv_img_set_src(ui_co2_icon, &ui_img_co2_png); +lv_obj_set_width( ui_co2_icon, LV_SIZE_CONTENT); /// 44 +lv_obj_set_height( ui_co2_icon, LV_SIZE_CONTENT); /// 53 +lv_obj_set_x( ui_co2_icon, -184 ); +lv_obj_set_y( ui_co2_icon, -40 ); +lv_obj_set_align( ui_co2_icon, LV_ALIGN_CENTER ); +lv_obj_add_flag( ui_co2_icon, LV_OBJ_FLAG_ADV_HITTEST ); /// Flags +lv_obj_clear_flag( ui_co2_icon, LV_OBJ_FLAG_SCROLLABLE ); /// Flags + +ui_co2_title = lv_label_create(ui_co2); +lv_obj_set_width( ui_co2_title, LV_SIZE_CONTENT); /// 1 +lv_obj_set_height( ui_co2_title, LV_SIZE_CONTENT); /// 1 +lv_obj_set_x( ui_co2_title, -134 ); +lv_obj_set_y( ui_co2_title, -40 ); +lv_obj_set_align( ui_co2_title, LV_ALIGN_CENTER ); +lv_label_set_text(ui_co2_title,"CO2"); +lv_obj_set_style_text_font(ui_co2_title, &ui_font_font0, LV_PART_MAIN| LV_STATE_DEFAULT); + +ui_co2_data = lv_label_create(ui_co2); +lv_obj_set_width( ui_co2_data, 200); +lv_obj_set_height( ui_co2_data, LV_SIZE_CONTENT); /// 1 +lv_obj_set_x( ui_co2_data, -90 ); +lv_obj_set_y( ui_co2_data, -1 ); +lv_obj_set_align( ui_co2_data, LV_ALIGN_CENTER ); +lv_label_set_text(ui_co2_data,"N/A "); +lv_obj_set_style_text_align(ui_co2_data, LV_TEXT_ALIGN_RIGHT, LV_PART_MAIN| LV_STATE_DEFAULT); +lv_obj_set_style_text_font(ui_co2_data, &ui_font_font3, LV_PART_MAIN| LV_STATE_DEFAULT); + +ui_co2_unit = lv_label_create(ui_co2); +lv_obj_set_width( ui_co2_unit, LV_SIZE_CONTENT); /// 1 +lv_obj_set_height( ui_co2_unit, LV_SIZE_CONTENT); /// 1 +lv_obj_set_x( ui_co2_unit, 35 ); +lv_obj_set_y( ui_co2_unit, 0 ); +lv_obj_set_align( ui_co2_unit, LV_ALIGN_CENTER ); +lv_label_set_text(ui_co2_unit,"ppm"); +lv_obj_set_style_text_font(ui_co2_unit, &ui_font_font0, LV_PART_MAIN| LV_STATE_DEFAULT); + +ui_tvoc_2 = lv_btn_create(ui_screen_sensor); +lv_obj_set_width( ui_tvoc_2, 140); +lv_obj_set_height( ui_tvoc_2, 200); +lv_obj_set_x( ui_tvoc_2, -148 ); +lv_obj_set_y( ui_tvoc_2, 80 ); +lv_obj_set_align( ui_tvoc_2, LV_ALIGN_CENTER ); +lv_obj_add_flag( ui_tvoc_2, LV_OBJ_FLAG_SCROLL_ON_FOCUS ); /// Flags +lv_obj_clear_flag( ui_tvoc_2, LV_OBJ_FLAG_SCROLLABLE ); /// Flags +lv_obj_set_style_bg_color(ui_tvoc_2, lv_color_hex(0xE06D3D), LV_PART_MAIN | LV_STATE_DEFAULT ); +lv_obj_set_style_bg_opa(ui_tvoc_2, 255, LV_PART_MAIN| LV_STATE_DEFAULT); + +ui_tvoc_icon_2 = lv_img_create(ui_tvoc_2); +lv_img_set_src(ui_tvoc_icon_2, &ui_img_tvoc_png); +lv_obj_set_width( ui_tvoc_icon_2, LV_SIZE_CONTENT); /// 44 +lv_obj_set_height( ui_tvoc_icon_2, LV_SIZE_CONTENT); /// 53 +lv_obj_set_x( ui_tvoc_icon_2, -40 ); +lv_obj_set_y( ui_tvoc_icon_2, -70 ); +lv_obj_set_align( ui_tvoc_icon_2, LV_ALIGN_CENTER ); +lv_obj_add_flag( ui_tvoc_icon_2, LV_OBJ_FLAG_ADV_HITTEST ); /// Flags +lv_obj_clear_flag( ui_tvoc_icon_2, LV_OBJ_FLAG_SCROLLABLE ); /// Flags + +ui_tvoc_title_2 = lv_label_create(ui_tvoc_2); +lv_obj_set_width( ui_tvoc_title_2, LV_SIZE_CONTENT); /// 1 +lv_obj_set_height( ui_tvoc_title_2, LV_SIZE_CONTENT); /// 1 +lv_obj_set_x( ui_tvoc_title_2, 15 ); +lv_obj_set_y( ui_tvoc_title_2, -70 ); +lv_obj_set_align( ui_tvoc_title_2, LV_ALIGN_CENTER ); +lv_label_set_text(ui_tvoc_title_2,"tVOC"); +lv_obj_set_style_text_font(ui_tvoc_title_2, &ui_font_font0, LV_PART_MAIN| LV_STATE_DEFAULT); + +ui_tvoc_data = lv_label_create(ui_tvoc_2); +lv_obj_set_width( ui_tvoc_data, 100); +lv_obj_set_height( ui_tvoc_data, LV_SIZE_CONTENT); /// 1 +lv_obj_set_x( ui_tvoc_data, -21 ); +lv_obj_set_y( ui_tvoc_data, 0 ); +lv_obj_set_align( ui_tvoc_data, LV_ALIGN_CENTER ); +lv_label_set_text(ui_tvoc_data,"N/A"); +lv_obj_set_style_text_align(ui_tvoc_data, LV_TEXT_ALIGN_RIGHT, LV_PART_MAIN| LV_STATE_DEFAULT); +lv_obj_set_style_text_font(ui_tvoc_data, &ui_font_font2, LV_PART_MAIN| LV_STATE_DEFAULT); + +ui_tvoc_unit_2 = lv_label_create(ui_tvoc_2); +lv_obj_set_width( ui_tvoc_unit_2, LV_SIZE_CONTENT); /// 1 +lv_obj_set_height( ui_tvoc_unit_2, LV_SIZE_CONTENT); /// 1 +lv_obj_set_x( ui_tvoc_unit_2, 44 ); +lv_obj_set_y( ui_tvoc_unit_2, 4 ); +lv_obj_set_align( ui_tvoc_unit_2, LV_ALIGN_CENTER ); +lv_label_set_text(ui_tvoc_unit_2,""); +lv_obj_set_style_text_font(ui_tvoc_unit_2, &lv_font_montserrat_16, LV_PART_MAIN| LV_STATE_DEFAULT); + +ui_temp2 = lv_btn_create(ui_screen_sensor); +lv_obj_set_width( ui_temp2, 140); +lv_obj_set_height( ui_temp2, 200); +lv_obj_set_x( ui_temp2, 0 ); +lv_obj_set_y( ui_temp2, 80 ); +lv_obj_set_align( ui_temp2, LV_ALIGN_CENTER ); +lv_obj_add_flag( ui_temp2, LV_OBJ_FLAG_SCROLL_ON_FOCUS ); /// Flags +lv_obj_clear_flag( ui_temp2, LV_OBJ_FLAG_SCROLLABLE ); /// Flags +lv_obj_set_style_bg_color(ui_temp2, lv_color_hex(0xEEBF41), LV_PART_MAIN | LV_STATE_DEFAULT ); +lv_obj_set_style_bg_opa(ui_temp2, 255, LV_PART_MAIN| LV_STATE_DEFAULT); + +ui_temp_icon_2 = lv_img_create(ui_temp2); +lv_img_set_src(ui_temp_icon_2, &ui_img_temp_2_png); +lv_obj_set_width( ui_temp_icon_2, LV_SIZE_CONTENT); /// 44 +lv_obj_set_height( ui_temp_icon_2, LV_SIZE_CONTENT); /// 53 +lv_obj_set_x( ui_temp_icon_2, -40 ); +lv_obj_set_y( ui_temp_icon_2, -70 ); +lv_obj_set_align( ui_temp_icon_2, LV_ALIGN_CENTER ); +lv_obj_add_flag( ui_temp_icon_2, LV_OBJ_FLAG_ADV_HITTEST ); /// Flags +lv_obj_clear_flag( ui_temp_icon_2, LV_OBJ_FLAG_SCROLLABLE ); /// Flags + +ui_temp_title_2 = lv_label_create(ui_temp2); +lv_obj_set_width( ui_temp_title_2, LV_SIZE_CONTENT); /// 1 +lv_obj_set_height( ui_temp_title_2, LV_SIZE_CONTENT); /// 1 +lv_obj_set_x( ui_temp_title_2, 15 ); +lv_obj_set_y( ui_temp_title_2, -70 ); +lv_obj_set_align( ui_temp_title_2, LV_ALIGN_CENTER ); +lv_label_set_text(ui_temp_title_2,"Temp"); +lv_obj_set_style_text_font(ui_temp_title_2, &ui_font_font0, LV_PART_MAIN| LV_STATE_DEFAULT); + +ui_temp_data_2 = lv_label_create(ui_temp2); +lv_obj_set_width( ui_temp_data_2, 80); +lv_obj_set_height( ui_temp_data_2, LV_SIZE_CONTENT); /// 1 +lv_obj_set_x( ui_temp_data_2, -20 ); +lv_obj_set_y( ui_temp_data_2, 0 ); +lv_obj_set_align( ui_temp_data_2, LV_ALIGN_CENTER ); +lv_label_set_text(ui_temp_data_2,"N/A"); +lv_obj_set_style_text_align(ui_temp_data_2, LV_TEXT_ALIGN_RIGHT, LV_PART_MAIN| LV_STATE_DEFAULT); +lv_obj_set_style_text_font(ui_temp_data_2, &ui_font_font2, LV_PART_MAIN| LV_STATE_DEFAULT); + +ui_temp_unit_2 = lv_label_create(ui_temp2); +lv_obj_set_width( ui_temp_unit_2, LV_SIZE_CONTENT); /// 1 +lv_obj_set_height( ui_temp_unit_2, LV_SIZE_CONTENT); /// 1 +lv_obj_set_x( ui_temp_unit_2, 35 ); +lv_obj_set_y( ui_temp_unit_2, 0 ); +lv_obj_set_align( ui_temp_unit_2, LV_ALIGN_CENTER ); +lv_label_set_text(ui_temp_unit_2,"°C"); +lv_obj_set_style_text_font(ui_temp_unit_2, &lv_font_montserrat_20, LV_PART_MAIN| LV_STATE_DEFAULT); +//lv_obj_set_style_text_font(ui_temp_unit_2, &ui_font_font0, LV_PART_MAIN| LV_STATE_DEFAULT); + +ui_humidity2 = lv_btn_create(ui_screen_sensor); +lv_obj_set_width( ui_humidity2, 140); +lv_obj_set_height( ui_humidity2, 200); +lv_obj_set_x( ui_humidity2, 148 ); +lv_obj_set_y( ui_humidity2, 80 ); +lv_obj_set_align( ui_humidity2, LV_ALIGN_CENTER ); +lv_obj_add_flag( ui_humidity2, LV_OBJ_FLAG_SCROLL_ON_FOCUS ); /// Flags +lv_obj_clear_flag( ui_humidity2, LV_OBJ_FLAG_SCROLLABLE ); /// Flags +lv_obj_set_style_bg_color(ui_humidity2, lv_color_hex(0x4EACE4), LV_PART_MAIN | LV_STATE_DEFAULT ); +lv_obj_set_style_bg_opa(ui_humidity2, 255, LV_PART_MAIN| LV_STATE_DEFAULT); + +ui_humidity_icon_2 = lv_img_create(ui_humidity2); +lv_img_set_src(ui_humidity_icon_2, &ui_img_humidity_2_png); +lv_obj_set_width( ui_humidity_icon_2, LV_SIZE_CONTENT); /// 44 +lv_obj_set_height( ui_humidity_icon_2, LV_SIZE_CONTENT); /// 53 +lv_obj_set_x( ui_humidity_icon_2, -45 ); +lv_obj_set_y( ui_humidity_icon_2, -70 ); +lv_obj_set_align( ui_humidity_icon_2, LV_ALIGN_CENTER ); +lv_obj_add_flag( ui_humidity_icon_2, LV_OBJ_FLAG_ADV_HITTEST ); /// Flags +lv_obj_clear_flag( ui_humidity_icon_2, LV_OBJ_FLAG_SCROLLABLE ); /// Flags + +ui_humidity_title_2 = lv_label_create(ui_humidity2); +lv_obj_set_width( ui_humidity_title_2, LV_SIZE_CONTENT); /// 1 +lv_obj_set_height( ui_humidity_title_2, LV_SIZE_CONTENT); /// 1 +lv_obj_set_x( ui_humidity_title_2, 15 ); +lv_obj_set_y( ui_humidity_title_2, -70 ); +lv_obj_set_align( ui_humidity_title_2, LV_ALIGN_CENTER ); +lv_label_set_text(ui_humidity_title_2,"Humidity"); +lv_obj_set_style_text_font(ui_humidity_title_2, &ui_font_font0, LV_PART_MAIN| LV_STATE_DEFAULT); + +ui_humidity_data_2 = lv_label_create(ui_humidity2); +lv_obj_set_width( ui_humidity_data_2, 80); +lv_obj_set_height( ui_humidity_data_2, LV_SIZE_CONTENT); /// 1 +lv_obj_set_x( ui_humidity_data_2, -30 ); +lv_obj_set_y( ui_humidity_data_2, 0 ); +lv_obj_set_align( ui_humidity_data_2, LV_ALIGN_CENTER ); +lv_label_set_text(ui_humidity_data_2,"N/A"); +lv_obj_set_style_text_align(ui_humidity_data_2, LV_TEXT_ALIGN_RIGHT, LV_PART_MAIN| LV_STATE_DEFAULT); +lv_obj_set_style_text_font(ui_humidity_data_2, &ui_font_font2, LV_PART_MAIN| LV_STATE_DEFAULT); + +ui_humidity_unit_2 = lv_label_create(ui_humidity2); +lv_obj_set_width( ui_humidity_unit_2, LV_SIZE_CONTENT); /// 1 +lv_obj_set_height( ui_humidity_unit_2, LV_SIZE_CONTENT); /// 1 +lv_obj_set_x( ui_humidity_unit_2, 25 ); +lv_obj_set_y( ui_humidity_unit_2, 0 ); +lv_obj_set_align( ui_humidity_unit_2, LV_ALIGN_CENTER ); +lv_label_set_text(ui_humidity_unit_2,"%"); +lv_obj_set_style_text_font(ui_humidity_unit_2, &ui_font_font0, LV_PART_MAIN| LV_STATE_DEFAULT); + +ui_scrolldots2 = lv_obj_create(ui_screen_sensor); +lv_obj_set_width( ui_scrolldots2, 100); +lv_obj_set_height( ui_scrolldots2, 20); +lv_obj_set_x( ui_scrolldots2, 0 ); +lv_obj_set_y( ui_scrolldots2, -20 ); +lv_obj_set_align( ui_scrolldots2, LV_ALIGN_BOTTOM_MID ); +lv_obj_clear_flag( ui_scrolldots2, LV_OBJ_FLAG_SCROLLABLE ); /// Flags +lv_obj_set_style_bg_color(ui_scrolldots2, lv_color_hex(0x101418), LV_PART_MAIN | LV_STATE_DEFAULT ); +lv_obj_set_style_bg_opa(ui_scrolldots2, 255, LV_PART_MAIN| LV_STATE_DEFAULT); +lv_obj_set_style_border_color(ui_scrolldots2, lv_color_hex(0x101418), LV_PART_MAIN | LV_STATE_DEFAULT ); +lv_obj_set_style_border_opa(ui_scrolldots2, 255, LV_PART_MAIN| LV_STATE_DEFAULT); + +ui_scrolldots21 = lv_obj_create(ui_scrolldots2); +lv_obj_set_width( ui_scrolldots21, 7); +lv_obj_set_height( ui_scrolldots21, 7); +lv_obj_set_align( ui_scrolldots21, LV_ALIGN_LEFT_MID ); +lv_obj_clear_flag( ui_scrolldots21, LV_OBJ_FLAG_SCROLLABLE ); /// Flags + +ui_scrolldots22 = lv_obj_create(ui_scrolldots2); +lv_obj_set_width( ui_scrolldots22, 7); +lv_obj_set_height( ui_scrolldots22, 7); +lv_obj_set_align( ui_scrolldots22, LV_ALIGN_RIGHT_MID ); +lv_obj_clear_flag( ui_scrolldots22, LV_OBJ_FLAG_SCROLLABLE ); /// Flags + +ui_scrolldots23 = lv_obj_create(ui_scrolldots2); +lv_obj_set_width( ui_scrolldots23, 7); +lv_obj_set_height( ui_scrolldots23, 7); +lv_obj_set_align( ui_scrolldots23, LV_ALIGN_CENTER ); +lv_obj_clear_flag( ui_scrolldots23, LV_OBJ_FLAG_SCROLLABLE ); /// Flags +lv_obj_set_style_bg_color(ui_scrolldots23, lv_color_hex(0xFFFFFF), LV_PART_MAIN | LV_STATE_DEFAULT ); +lv_obj_set_style_bg_opa(ui_scrolldots23, 255, LV_PART_MAIN| LV_STATE_DEFAULT); +lv_obj_set_style_border_color(ui_scrolldots23, lv_color_hex(0xFFFFFF), LV_PART_MAIN | LV_STATE_DEFAULT ); +lv_obj_set_style_border_opa(ui_scrolldots23, 255, LV_PART_MAIN| LV_STATE_DEFAULT); + +lv_obj_add_event_cb(ui_screen_sensor, ui_event_screen_sensor, LV_EVENT_ALL, NULL); + +} +void ui_screen_setting_screen_init(void) +{ +ui_screen_setting = lv_obj_create(NULL); +lv_obj_clear_flag( ui_screen_setting, LV_OBJ_FLAG_SCROLLABLE ); /// Flags + +ui_wifi__st_button_3 = lv_btn_create(ui_screen_setting); +lv_obj_set_width( ui_wifi__st_button_3, 60); +lv_obj_set_height( ui_wifi__st_button_3, 60); +lv_obj_set_x( ui_wifi__st_button_3, -10 ); +lv_obj_set_y( ui_wifi__st_button_3, 10 ); +lv_obj_set_align( ui_wifi__st_button_3, LV_ALIGN_TOP_RIGHT ); +lv_obj_add_flag( ui_wifi__st_button_3, LV_OBJ_FLAG_SCROLL_ON_FOCUS ); /// Flags +lv_obj_clear_flag( ui_wifi__st_button_3, LV_OBJ_FLAG_SCROLLABLE ); /// Flags +lv_obj_set_style_bg_color(ui_wifi__st_button_3, lv_color_hex(0x101418), LV_PART_MAIN | LV_STATE_DEFAULT ); +lv_obj_set_style_bg_opa(ui_wifi__st_button_3, 255, LV_PART_MAIN| LV_STATE_DEFAULT); +lv_obj_set_style_bg_grad_color(ui_wifi__st_button_3, lv_color_hex(0x101418), LV_PART_MAIN | LV_STATE_DEFAULT ); + +ui_wifi_st_3 = lv_img_create(ui_wifi__st_button_3); +lv_img_set_src(ui_wifi_st_3, &ui_img_wifi_disconet_png); +lv_obj_set_width( ui_wifi_st_3, LV_SIZE_CONTENT); /// 1 +lv_obj_set_height( ui_wifi_st_3, LV_SIZE_CONTENT); /// 1 +lv_obj_set_align( ui_wifi_st_3, LV_ALIGN_TOP_RIGHT ); +lv_obj_add_flag( ui_wifi_st_3, LV_OBJ_FLAG_ADV_HITTEST ); /// Flags +lv_obj_clear_flag( ui_wifi_st_3, LV_OBJ_FLAG_SCROLLABLE ); /// Flags + +ui_time3 = lv_label_create(ui_screen_setting); +lv_obj_set_width( ui_time3, LV_SIZE_CONTENT); /// 1 +lv_obj_set_height( ui_time3, LV_SIZE_CONTENT); /// 1 +lv_obj_set_x( ui_time3, 30 ); +lv_obj_set_y( ui_time3, 20 ); +lv_label_set_text(ui_time3,"21:20"); +lv_obj_set_style_text_font(ui_time3, &ui_font_font1, LV_PART_MAIN| LV_STATE_DEFAULT); + +ui_setting_icon = lv_img_create(ui_screen_setting); +lv_img_set_src(ui_setting_icon, &ui_img_setting_png); +lv_obj_set_width( ui_setting_icon, LV_SIZE_CONTENT); /// 21 +lv_obj_set_height( ui_setting_icon, LV_SIZE_CONTENT); /// 21 +lv_obj_set_x( ui_setting_icon, 28 ); +lv_obj_set_y( ui_setting_icon, 86 ); +lv_obj_add_flag( ui_setting_icon, LV_OBJ_FLAG_ADV_HITTEST ); /// Flags +lv_obj_clear_flag( ui_setting_icon, LV_OBJ_FLAG_SCROLLABLE ); /// Flags + +ui_setting_title = lv_label_create(ui_screen_setting); +lv_obj_set_width( ui_setting_title, LV_SIZE_CONTENT); /// 1 +lv_obj_set_height( ui_setting_title, LV_SIZE_CONTENT); /// 1 +lv_obj_set_x( ui_setting_title, 58 ); +lv_obj_set_y( ui_setting_title, 86 ); +lv_label_set_text(ui_setting_title,"Setting"); +lv_obj_set_style_text_font(ui_setting_title, &ui_font_font1, LV_PART_MAIN| LV_STATE_DEFAULT); + +ui_setting_display = lv_btn_create(ui_screen_setting); +lv_obj_set_width( ui_setting_display, 220); +lv_obj_set_height( ui_setting_display, 200); +lv_obj_set_x( ui_setting_display, -116 ); +lv_obj_set_y( ui_setting_display, 10 ); +lv_obj_set_align( ui_setting_display, LV_ALIGN_CENTER ); +lv_obj_add_flag( ui_setting_display, LV_OBJ_FLAG_SCROLL_ON_FOCUS ); /// Flags +lv_obj_clear_flag( ui_setting_display, LV_OBJ_FLAG_SCROLLABLE ); /// Flags +lv_obj_set_style_bg_color(ui_setting_display, lv_color_hex(0xEEBF41), LV_PART_MAIN | LV_STATE_DEFAULT ); +lv_obj_set_style_bg_opa(ui_setting_display, 255, LV_PART_MAIN| LV_STATE_DEFAULT); + +ui_setting_display_icon = lv_img_create(ui_setting_display); +lv_img_set_src(ui_setting_display_icon, &ui_img_display_png); +lv_obj_set_width( ui_setting_display_icon, LV_SIZE_CONTENT); /// 44 +lv_obj_set_height( ui_setting_display_icon, LV_SIZE_CONTENT); /// 53 +lv_obj_set_x( ui_setting_display_icon, 0 ); +lv_obj_set_y( ui_setting_display_icon, -20 ); +lv_obj_set_align( ui_setting_display_icon, LV_ALIGN_CENTER ); +lv_obj_add_flag( ui_setting_display_icon, LV_OBJ_FLAG_ADV_HITTEST ); /// Flags +lv_obj_clear_flag( ui_setting_display_icon, LV_OBJ_FLAG_SCROLLABLE ); /// Flags + +ui_setting_display_title = lv_label_create(ui_setting_display); +lv_obj_set_width( ui_setting_display_title, LV_SIZE_CONTENT); /// 1 +lv_obj_set_height( ui_setting_display_title, LV_SIZE_CONTENT); /// 1 +lv_obj_set_x( ui_setting_display_title, 0 ); +lv_obj_set_y( ui_setting_display_title, 25 ); +lv_obj_set_align( ui_setting_display_title, LV_ALIGN_CENTER ); +lv_label_set_text(ui_setting_display_title,"Display"); +lv_obj_set_style_text_font(ui_setting_display_title, &ui_font_font1, LV_PART_MAIN| LV_STATE_DEFAULT); + +ui_setting_time = lv_btn_create(ui_screen_setting); +lv_obj_set_width( ui_setting_time, 220); +lv_obj_set_height( ui_setting_time, 200); +lv_obj_set_x( ui_setting_time, 116 ); +lv_obj_set_y( ui_setting_time, 10 ); +lv_obj_set_align( ui_setting_time, LV_ALIGN_CENTER ); +lv_obj_add_flag( ui_setting_time, LV_OBJ_FLAG_SCROLL_ON_FOCUS ); /// Flags +lv_obj_clear_flag( ui_setting_time, LV_OBJ_FLAG_SCROLLABLE ); /// Flags +lv_obj_set_style_bg_color(ui_setting_time, lv_color_hex(0x529D53), LV_PART_MAIN | LV_STATE_DEFAULT ); +lv_obj_set_style_bg_opa(ui_setting_time, 255, LV_PART_MAIN| LV_STATE_DEFAULT); + +ui_setting_time_icon = lv_img_create(ui_setting_time); +lv_img_set_src(ui_setting_time_icon, &ui_img_time_png); +lv_obj_set_width( ui_setting_time_icon, LV_SIZE_CONTENT); /// 56 +lv_obj_set_height( ui_setting_time_icon, LV_SIZE_CONTENT); /// 56 +lv_obj_set_x( ui_setting_time_icon, 0 ); +lv_obj_set_y( ui_setting_time_icon, -20 ); +lv_obj_set_align( ui_setting_time_icon, LV_ALIGN_CENTER ); +lv_obj_add_flag( ui_setting_time_icon, LV_OBJ_FLAG_ADV_HITTEST ); /// Flags +lv_obj_clear_flag( ui_setting_time_icon, LV_OBJ_FLAG_SCROLLABLE ); /// Flags + +ui_setting_time_title = lv_label_create(ui_setting_time); +lv_obj_set_width( ui_setting_time_title, LV_SIZE_CONTENT); /// 1 +lv_obj_set_height( ui_setting_time_title, LV_SIZE_CONTENT); /// 1 +lv_obj_set_x( ui_setting_time_title, 0 ); +lv_obj_set_y( ui_setting_time_title, 25 ); +lv_obj_set_align( ui_setting_time_title, LV_ALIGN_CENTER ); +lv_label_set_text(ui_setting_time_title,"Date&Time"); +lv_obj_set_style_text_font(ui_setting_time_title, &ui_font_font1, LV_PART_MAIN| LV_STATE_DEFAULT); + +ui_scrolldots3 = lv_obj_create(ui_screen_setting); +lv_obj_set_width( ui_scrolldots3, 100); +lv_obj_set_height( ui_scrolldots3, 20); +lv_obj_set_x( ui_scrolldots3, 0 ); +lv_obj_set_y( ui_scrolldots3, -20 ); +lv_obj_set_align( ui_scrolldots3, LV_ALIGN_BOTTOM_MID ); +lv_obj_clear_flag( ui_scrolldots3, LV_OBJ_FLAG_SCROLLABLE ); /// Flags +lv_obj_set_style_bg_color(ui_scrolldots3, lv_color_hex(0x101418), LV_PART_MAIN | LV_STATE_DEFAULT ); +lv_obj_set_style_bg_opa(ui_scrolldots3, 255, LV_PART_MAIN| LV_STATE_DEFAULT); +lv_obj_set_style_border_color(ui_scrolldots3, lv_color_hex(0x101418), LV_PART_MAIN | LV_STATE_DEFAULT ); +lv_obj_set_style_border_opa(ui_scrolldots3, 255, LV_PART_MAIN| LV_STATE_DEFAULT); + +ui_scrolldots31 = lv_obj_create(ui_scrolldots3); +lv_obj_set_width( ui_scrolldots31, 7); +lv_obj_set_height( ui_scrolldots31, 7); +lv_obj_set_align( ui_scrolldots31, LV_ALIGN_LEFT_MID ); +lv_obj_clear_flag( ui_scrolldots31, LV_OBJ_FLAG_SCROLLABLE ); /// Flags + +ui_scrolldots32 = lv_obj_create(ui_scrolldots3); +lv_obj_set_width( ui_scrolldots32, 7); +lv_obj_set_height( ui_scrolldots32, 7); +lv_obj_set_align( ui_scrolldots32, LV_ALIGN_RIGHT_MID ); +lv_obj_clear_flag( ui_scrolldots32, LV_OBJ_FLAG_SCROLLABLE ); /// Flags +lv_obj_set_style_bg_color(ui_scrolldots32, lv_color_hex(0xFFFFFF), LV_PART_MAIN | LV_STATE_DEFAULT ); +lv_obj_set_style_bg_opa(ui_scrolldots32, 255, LV_PART_MAIN| LV_STATE_DEFAULT); +lv_obj_set_style_border_color(ui_scrolldots32, lv_color_hex(0xFFFFFF), LV_PART_MAIN | LV_STATE_DEFAULT ); +lv_obj_set_style_border_opa(ui_scrolldots32, 255, LV_PART_MAIN| LV_STATE_DEFAULT); + +ui_scrolldots33 = lv_obj_create(ui_scrolldots3); +lv_obj_set_width( ui_scrolldots33, 7); +lv_obj_set_height( ui_scrolldots33, 7); +lv_obj_set_align( ui_scrolldots33, LV_ALIGN_CENTER ); +lv_obj_clear_flag( ui_scrolldots33, LV_OBJ_FLAG_SCROLLABLE ); /// Flags + +lv_obj_add_event_cb(ui_setting_display, ui_event_setting_display, LV_EVENT_ALL, NULL); +lv_obj_add_event_cb(ui_setting_time, ui_event_setting_time, LV_EVENT_ALL, NULL); +lv_obj_add_event_cb(ui_screen_setting, ui_event_screen_setting, LV_EVENT_ALL, NULL); +} +void ui_screen_display_screen_init(void) +{ +ui_screen_display = lv_obj_create(NULL); +lv_obj_clear_flag( ui_screen_display, LV_OBJ_FLAG_SCROLLABLE ); /// Flags + +ui_wifi_st_4 = lv_img_create(ui_screen_display); +lv_img_set_src(ui_wifi_st_4, &ui_img_wifi_disconet_png); +lv_obj_set_width( ui_wifi_st_4, LV_SIZE_CONTENT); /// 1 +lv_obj_set_height( ui_wifi_st_4, LV_SIZE_CONTENT); /// 1 +lv_obj_set_x( ui_wifi_st_4, -20 ); +lv_obj_set_y( ui_wifi_st_4, 20 ); +lv_obj_set_align( ui_wifi_st_4, LV_ALIGN_TOP_RIGHT ); +lv_obj_add_flag( ui_wifi_st_4, LV_OBJ_FLAG_ADV_HITTEST ); /// Flags +lv_obj_clear_flag( ui_wifi_st_4, LV_OBJ_FLAG_SCROLLABLE ); /// Flags + +ui_back1 = lv_btn_create(ui_screen_display); +lv_obj_set_width( ui_back1, 100); +lv_obj_set_height( ui_back1, 50); +lv_obj_set_x( ui_back1, 10 ); +lv_obj_set_y( ui_back1, 30 ); +lv_obj_add_flag( ui_back1, LV_OBJ_FLAG_SCROLL_ON_FOCUS ); /// Flags +lv_obj_clear_flag( ui_back1, LV_OBJ_FLAG_SCROLLABLE ); /// Flags +lv_obj_set_style_bg_color(ui_back1, lv_color_hex(0x101418), LV_PART_MAIN | LV_STATE_DEFAULT ); +lv_obj_set_style_bg_opa(ui_back1, 255, LV_PART_MAIN| LV_STATE_DEFAULT); +lv_obj_set_style_bg_img_src( ui_back1, &ui_img_back_png, LV_PART_MAIN | LV_STATE_DEFAULT ); + +ui_display_title = lv_label_create(ui_screen_display); +lv_obj_set_width( ui_display_title, LV_SIZE_CONTENT); /// 1 +lv_obj_set_height( ui_display_title, LV_SIZE_CONTENT); /// 1 +lv_obj_set_x( ui_display_title, 1 ); +lv_obj_set_y( ui_display_title, 50 ); +lv_obj_set_align( ui_display_title, LV_ALIGN_TOP_MID ); +lv_label_set_text(ui_display_title,"Display"); +lv_obj_set_style_text_font(ui_display_title, &ui_font_font1, LV_PART_MAIN| LV_STATE_DEFAULT); + +ui_brighness = lv_obj_create(ui_screen_display); +lv_obj_set_width( ui_brighness, 400); +lv_obj_set_height( ui_brighness, 100); +lv_obj_set_x( ui_brighness, 0 ); +lv_obj_set_y( ui_brighness, -80 ); +lv_obj_set_align( ui_brighness, LV_ALIGN_CENTER ); +lv_obj_clear_flag( ui_brighness, LV_OBJ_FLAG_SCROLLABLE ); /// Flags + +ui_brighness_cfg = lv_slider_create(ui_brighness); +lv_obj_set_width( ui_brighness_cfg, 250); +lv_obj_set_height( ui_brighness_cfg, 15); +lv_obj_set_x( ui_brighness_cfg, 0 ); +lv_obj_set_y( ui_brighness_cfg, 10 ); +lv_obj_set_align( ui_brighness_cfg, LV_ALIGN_CENTER ); +lv_obj_set_style_bg_color(ui_brighness_cfg, lv_color_hex(0x363636), LV_PART_MAIN | LV_STATE_DEFAULT ); +lv_obj_set_style_bg_opa(ui_brighness_cfg, 255, LV_PART_MAIN| LV_STATE_DEFAULT); + +lv_obj_set_style_bg_color(ui_brighness_cfg, lv_color_hex(0x529D53), LV_PART_INDICATOR | LV_STATE_DEFAULT ); +lv_obj_set_style_bg_opa(ui_brighness_cfg, 255, LV_PART_INDICATOR| LV_STATE_DEFAULT); + +lv_obj_set_style_bg_color(ui_brighness_cfg, lv_color_hex(0xFFFFFF), LV_PART_KNOB | LV_STATE_DEFAULT ); +lv_obj_set_style_bg_opa(ui_brighness_cfg, 255, LV_PART_KNOB| LV_STATE_DEFAULT); + +ui_brighness_title = lv_label_create(ui_brighness); +lv_obj_set_width( ui_brighness_title, LV_SIZE_CONTENT); /// 1 +lv_obj_set_height( ui_brighness_title, LV_SIZE_CONTENT); /// 1 +lv_label_set_text(ui_brighness_title,"Brightness"); + +ui_brighness_icon_1 = lv_img_create(ui_brighness); +lv_img_set_src(ui_brighness_icon_1, &ui_img_high_light_png); +lv_obj_set_width( ui_brighness_icon_1, LV_SIZE_CONTENT); /// 22 +lv_obj_set_height( ui_brighness_icon_1, LV_SIZE_CONTENT); /// 22 +lv_obj_set_x( ui_brighness_icon_1, 0 ); +lv_obj_set_y( ui_brighness_icon_1, 10 ); +lv_obj_set_align( ui_brighness_icon_1, LV_ALIGN_RIGHT_MID ); +lv_obj_add_flag( ui_brighness_icon_1, LV_OBJ_FLAG_ADV_HITTEST ); /// Flags +lv_obj_clear_flag( ui_brighness_icon_1, LV_OBJ_FLAG_SCROLLABLE ); /// Flags + +ui_brighness_icon_2 = lv_img_create(ui_brighness); +lv_img_set_src(ui_brighness_icon_2, &ui_img_low_light_png); +lv_obj_set_width( ui_brighness_icon_2, LV_SIZE_CONTENT); /// 18 +lv_obj_set_height( ui_brighness_icon_2, LV_SIZE_CONTENT); /// 18 +lv_obj_set_x( ui_brighness_icon_2, 0 ); +lv_obj_set_y( ui_brighness_icon_2, 10 ); +lv_obj_set_align( ui_brighness_icon_2, LV_ALIGN_LEFT_MID ); +lv_obj_add_flag( ui_brighness_icon_2, LV_OBJ_FLAG_ADV_HITTEST ); /// Flags +lv_obj_clear_flag( ui_brighness_icon_2, LV_OBJ_FLAG_SCROLLABLE ); /// Flags + +ui_screen_always_on = lv_obj_create(ui_screen_display); +lv_obj_set_width( ui_screen_always_on, 400); +lv_obj_set_height( ui_screen_always_on, 50); +lv_obj_set_x( ui_screen_always_on, 0 ); +lv_obj_set_y( ui_screen_always_on, 5 ); +lv_obj_set_align( ui_screen_always_on, LV_ALIGN_CENTER ); +lv_obj_clear_flag( ui_screen_always_on, LV_OBJ_FLAG_SCROLLABLE ); /// Flags + +ui_screen_always_on_title = lv_label_create(ui_screen_always_on); +lv_obj_set_width( ui_screen_always_on_title, LV_SIZE_CONTENT); /// 1 +lv_obj_set_height( ui_screen_always_on_title, LV_SIZE_CONTENT); /// 1 +lv_obj_set_align( ui_screen_always_on_title, LV_ALIGN_LEFT_MID ); +lv_label_set_text(ui_screen_always_on_title,"Always-on"); + +ui_screen_always_on_cfg = lv_switch_create(ui_screen_always_on); +lv_obj_set_width( ui_screen_always_on_cfg, 50); +lv_obj_set_height( ui_screen_always_on_cfg, 25); +lv_obj_set_align( ui_screen_always_on_cfg, LV_ALIGN_RIGHT_MID ); +lv_obj_set_style_bg_color(ui_screen_always_on_cfg, lv_color_hex(0x363636), LV_PART_MAIN | LV_STATE_DEFAULT ); +lv_obj_set_style_bg_opa(ui_screen_always_on_cfg, 255, LV_PART_MAIN| LV_STATE_DEFAULT); +lv_obj_set_style_bg_color(ui_screen_always_on_cfg, lv_color_hex(0xFFFFFF), LV_PART_MAIN | LV_STATE_CHECKED|LV_STATE_PRESSED ); +lv_obj_set_style_bg_opa(ui_screen_always_on_cfg, 255, LV_PART_MAIN| LV_STATE_CHECKED|LV_STATE_PRESSED); + +lv_obj_set_style_bg_color(ui_screen_always_on_cfg, lv_color_hex(0x529D53), LV_PART_INDICATOR | LV_STATE_CHECKED ); +lv_obj_set_style_bg_opa(ui_screen_always_on_cfg, 255, LV_PART_INDICATOR| LV_STATE_CHECKED); + +ui_turn_off_after_time = lv_obj_create(ui_screen_display); +lv_obj_set_width( ui_turn_off_after_time, 400); +lv_obj_set_height( ui_turn_off_after_time, 50); +lv_obj_set_x( ui_turn_off_after_time, 0 ); +lv_obj_set_y( ui_turn_off_after_time, 65 ); +lv_obj_set_align( ui_turn_off_after_time, LV_ALIGN_CENTER ); +lv_obj_add_flag( ui_turn_off_after_time, LV_OBJ_FLAG_HIDDEN ); /// Flags +lv_obj_clear_flag( ui_turn_off_after_time, LV_OBJ_FLAG_SCROLLABLE ); /// Flags + +ui_after = lv_label_create(ui_turn_off_after_time); +lv_obj_set_width( ui_after, LV_SIZE_CONTENT); /// 1 +lv_obj_set_height( ui_after, LV_SIZE_CONTENT); /// 1 +lv_obj_set_align( ui_after, LV_ALIGN_LEFT_MID ); +lv_label_set_text(ui_after,"Turn Off Screen After"); + +ui_turn_off_after_time_cfg = lv_textarea_create(ui_turn_off_after_time); +lv_obj_set_width( ui_turn_off_after_time_cfg, 60); +lv_obj_set_height( ui_turn_off_after_time_cfg, 40); +lv_obj_set_x( ui_turn_off_after_time_cfg, -50 ); +lv_obj_set_y( ui_turn_off_after_time_cfg, 0 ); +lv_obj_set_align( ui_turn_off_after_time_cfg, LV_ALIGN_RIGHT_MID ); +lv_textarea_set_placeholder_text(ui_turn_off_after_time_cfg,"1"); +lv_obj_set_style_bg_color(ui_turn_off_after_time_cfg, lv_color_hex(0x6F6F6F), LV_PART_MAIN | LV_STATE_DEFAULT ); +lv_obj_set_style_bg_opa(ui_turn_off_after_time_cfg, 255, LV_PART_MAIN| LV_STATE_DEFAULT); + +ui_min = lv_label_create(ui_turn_off_after_time); +lv_obj_set_width( ui_min, LV_SIZE_CONTENT); /// 1 +lv_obj_set_height( ui_min, LV_SIZE_CONTENT); /// 1 +lv_obj_set_align( ui_min, LV_ALIGN_RIGHT_MID ); +lv_label_set_text(ui_min,"min"); + +ui_display_keyboard = lv_keyboard_create(ui_screen_display); +lv_keyboard_set_mode(ui_display_keyboard,LV_KEYBOARD_MODE_NUMBER); +lv_obj_set_width( ui_display_keyboard, 200); +lv_obj_set_height( ui_display_keyboard, 120); +lv_obj_set_x( ui_display_keyboard, 8 ); +lv_obj_set_y( ui_display_keyboard, 150 ); +lv_obj_set_align( ui_display_keyboard, LV_ALIGN_CENTER ); +lv_obj_add_flag( ui_display_keyboard, LV_OBJ_FLAG_HIDDEN ); /// Flags + +lv_obj_add_event_cb(ui_back1, ui_event_back1, LV_EVENT_ALL, NULL); +lv_obj_add_event_cb(ui_screen_always_on_cfg, ui_event_screen_always_on_cfg, LV_EVENT_ALL, NULL); +lv_obj_add_event_cb(ui_turn_off_after_time_cfg, ui_event_sleep_mode_time_cfg, LV_EVENT_ALL, NULL); +lv_keyboard_set_textarea(ui_display_keyboard,ui_turn_off_after_time_cfg); +lv_obj_add_event_cb(ui_display_keyboard, ui_event_display_keyboard, LV_EVENT_ALL, NULL); + +} +void ui_screen_date_time_screen_init(void) +{ +ui_screen_date_time = lv_obj_create(NULL); +lv_obj_clear_flag( ui_screen_date_time, LV_OBJ_FLAG_SCROLLABLE ); /// Flags + +ui_wifi_st_5 = lv_img_create(ui_screen_date_time); +lv_img_set_src(ui_wifi_st_5, &ui_img_wifi_disconet_png); +lv_obj_set_width( ui_wifi_st_5, LV_SIZE_CONTENT); /// 1 +lv_obj_set_height( ui_wifi_st_5, LV_SIZE_CONTENT); /// 1 +lv_obj_set_x( ui_wifi_st_5, -20 ); +lv_obj_set_y( ui_wifi_st_5, 20 ); +lv_obj_set_align( ui_wifi_st_5, LV_ALIGN_TOP_RIGHT ); +lv_obj_add_flag( ui_wifi_st_5, LV_OBJ_FLAG_ADV_HITTEST ); /// Flags +lv_obj_clear_flag( ui_wifi_st_5, LV_OBJ_FLAG_SCROLLABLE ); /// Flags + +ui_back2 = lv_btn_create(ui_screen_date_time); +lv_obj_set_width( ui_back2, 100); +lv_obj_set_height( ui_back2, 50); +lv_obj_set_x( ui_back2, 10 ); +lv_obj_set_y( ui_back2, 30 ); +lv_obj_add_flag( ui_back2, LV_OBJ_FLAG_SCROLL_ON_FOCUS ); /// Flags +lv_obj_clear_flag( ui_back2, LV_OBJ_FLAG_SCROLLABLE ); /// Flags +lv_obj_set_style_bg_color(ui_back2, lv_color_hex(0x101418), LV_PART_MAIN | LV_STATE_DEFAULT ); +lv_obj_set_style_bg_opa(ui_back2, 255, LV_PART_MAIN| LV_STATE_DEFAULT); +lv_obj_set_style_bg_img_src( ui_back2, &ui_img_back_png, LV_PART_MAIN | LV_STATE_DEFAULT ); + +ui_date_time_title = lv_label_create(ui_screen_date_time); +lv_obj_set_width( ui_date_time_title, LV_SIZE_CONTENT); /// 1 +lv_obj_set_height( ui_date_time_title, LV_SIZE_CONTENT); /// 1 +lv_obj_set_x( ui_date_time_title, 0 ); +lv_obj_set_y( ui_date_time_title, 50 ); +lv_obj_set_align( ui_date_time_title, LV_ALIGN_TOP_MID ); +lv_label_set_text(ui_date_time_title,"Date & Time"); +lv_obj_set_style_text_font(ui_date_time_title, &ui_font_font1, LV_PART_MAIN| LV_STATE_DEFAULT); + + +lv_obj_t * config_list = lv_list_create(ui_screen_date_time); +lv_obj_clear_flag( config_list, LV_OBJ_FLAG_SCROLLABLE ); + +lv_obj_set_style_pad_row(config_list, 8, 0); + +lv_obj_set_align( config_list, LV_ALIGN_CENTER ); +lv_obj_set_width( config_list, 420); +lv_obj_set_height( config_list, 350); +lv_obj_set_x( config_list, 0 ); +lv_obj_set_y( config_list, 30 ); + +lv_obj_set_style_bg_color(config_list, lv_color_hex(0x101418), LV_PART_MAIN | LV_STATE_DEFAULT ); +lv_obj_set_style_bg_grad_color(config_list, lv_color_hex(0x101418), LV_PART_MAIN | LV_STATE_DEFAULT ); +lv_obj_set_style_border_color(config_list, lv_color_hex(0x101418), LV_PART_MAIN | LV_STATE_DEFAULT ); + + +ui_time_format = lv_obj_create(config_list); +lv_obj_set_width( ui_time_format, 400); +lv_obj_set_height( ui_time_format, 50); +lv_obj_set_align( ui_time_format, LV_ALIGN_CENTER ); +lv_obj_clear_flag( ui_time_format, LV_OBJ_FLAG_SCROLLABLE ); /// Flags + +ui_time_format_title = lv_label_create(ui_time_format); +lv_obj_set_width( ui_time_format_title, LV_SIZE_CONTENT); /// 1 +lv_obj_set_height( ui_time_format_title, LV_SIZE_CONTENT); /// 1 +lv_obj_set_align( ui_time_format_title, LV_ALIGN_LEFT_MID ); +lv_label_set_text(ui_time_format_title,"Time Format"); + +ui_time_format_cfg = lv_dropdown_create(ui_time_format); +lv_dropdown_set_options( ui_time_format_cfg, "24H\n12H" ); +lv_obj_set_width( ui_time_format_cfg, 100); +lv_obj_set_height( ui_time_format_cfg, LV_SIZE_CONTENT); /// 1 +lv_obj_set_align( ui_time_format_cfg, LV_ALIGN_RIGHT_MID ); +lv_obj_add_flag( ui_time_format_cfg, LV_OBJ_FLAG_SCROLL_ON_FOCUS ); /// Flags +lv_obj_set_style_bg_color(ui_time_format_cfg, lv_color_hex(0x6F6F6F), LV_PART_MAIN | LV_STATE_DEFAULT ); +lv_obj_set_style_bg_opa(ui_time_format_cfg, 255, LV_PART_MAIN| LV_STATE_DEFAULT); + +//--------------------------- time ui_auto_update------------------- + +ui_auto_update = lv_obj_create(config_list); +lv_obj_set_width( ui_auto_update, 400); +lv_obj_set_height( ui_auto_update, 50); +//lv_obj_set_x( ui_auto_update, 0 ); +//lv_obj_set_y( ui_auto_update, -60 ); +lv_obj_set_align( ui_auto_update, LV_ALIGN_CENTER ); +lv_obj_clear_flag( ui_auto_update, LV_OBJ_FLAG_SCROLLABLE ); /// Flags + +ui_auto_update_title = lv_label_create(ui_auto_update); +lv_obj_set_width( ui_auto_update_title, LV_SIZE_CONTENT); /// 1 +lv_obj_set_height( ui_auto_update_title, LV_SIZE_CONTENT); /// 1 +lv_obj_set_align( ui_auto_update_title, LV_ALIGN_LEFT_MID ); +lv_label_set_text(ui_auto_update_title,"Time Auto Update"); + +ui_auto_update_cfg = lv_switch_create(ui_auto_update); +lv_obj_set_width( ui_auto_update_cfg, 50); +lv_obj_set_height( ui_auto_update_cfg, 25); +lv_obj_set_align( ui_auto_update_cfg, LV_ALIGN_RIGHT_MID ); +lv_obj_add_state( ui_auto_update_cfg, LV_STATE_CHECKED ); /// States +lv_obj_set_style_bg_color(ui_auto_update_cfg, lv_color_hex(0x363636), LV_PART_MAIN | LV_STATE_DEFAULT ); +lv_obj_set_style_bg_opa(ui_auto_update_cfg, 255, LV_PART_MAIN| LV_STATE_DEFAULT); +lv_obj_set_style_bg_color(ui_auto_update_cfg, lv_color_hex(0xFFFFFF), LV_PART_MAIN | LV_STATE_CHECKED|LV_STATE_PRESSED ); +lv_obj_set_style_bg_opa(ui_auto_update_cfg, 255, LV_PART_MAIN| LV_STATE_CHECKED|LV_STATE_PRESSED); + +lv_obj_set_style_bg_color(ui_auto_update_cfg, lv_color_hex(0x529D53), LV_PART_INDICATOR | LV_STATE_CHECKED ); +lv_obj_set_style_bg_opa(ui_auto_update_cfg, 255, LV_PART_INDICATOR| LV_STATE_CHECKED); + + + + +//--------------------------- time ------------------- +ui_date_time = lv_obj_create(config_list); +lv_obj_set_width( ui_date_time, 400); +lv_obj_set_height( ui_date_time, 100); +//lv_obj_set_x( ui_time_zone, 0 ); +//lv_obj_set_y( ui_time_zone, 88 ); +lv_obj_set_align( ui_date_time, LV_ALIGN_CENTER ); +lv_obj_add_flag( ui_date_time, LV_OBJ_FLAG_CHECKABLE | LV_OBJ_FLAG_SCROLL_ONE ); /// Flags +lv_obj_clear_flag( ui_date_time, LV_OBJ_FLAG_SCROLLABLE ); /// Flags + +ui_date_cfg = lv_textarea_create(ui_date_time); +lv_obj_set_width( ui_date_cfg, 120); +lv_obj_set_height( ui_date_cfg, LV_SIZE_CONTENT); /// 40 +lv_obj_set_x( ui_date_cfg, -5); +//lv_obj_set_y( ui_date_cfg, 60 ); +lv_obj_set_align( ui_date_cfg, LV_ALIGN_LEFT_MID ); +lv_textarea_set_max_length(ui_date_cfg,12); +lv_textarea_set_placeholder_text(ui_date_cfg,"01/01/2023"); +lv_textarea_set_one_line(ui_date_cfg,true); +lv_obj_set_scrollbar_mode(ui_date_cfg, LV_SCROLLBAR_MODE_OFF); +lv_obj_set_style_text_align(ui_date_cfg, LV_TEXT_ALIGN_CENTER, LV_PART_MAIN| LV_STATE_DEFAULT); +lv_obj_set_style_text_font(ui_date_cfg, &ui_font_font0, LV_PART_MAIN| LV_STATE_DEFAULT); +lv_obj_set_style_bg_color(ui_date_cfg, lv_color_hex(0x6F6F6F), LV_PART_MAIN | LV_STATE_DEFAULT ); +lv_obj_set_style_bg_opa(ui_date_cfg, 255, LV_PART_MAIN| LV_STATE_DEFAULT); + +int x_offset = 70; +ui_hour_cfg = lv_roller_create(ui_date_time); +lv_roller_set_options( ui_hour_cfg, "00\n01\n02\n03\n04\n05\n06\n07\n08\n09\n10\n11\n12\n13\n14\n15\n16\n17\n18\n19\n20\n21\n22\n23", LV_ROLLER_MODE_NORMAL ); +lv_obj_set_height( ui_hour_cfg, 100); +lv_obj_set_width( ui_hour_cfg, LV_SIZE_CONTENT); /// 1 +lv_obj_set_x( ui_hour_cfg, 40 - x_offset ); +//lv_obj_set_y( ui_hour_cfg, 60 ); +lv_obj_set_align( ui_hour_cfg, LV_ALIGN_CENTER ); + +// lv_obj_set_style_bg_color(ui_hour_cfg, lv_color_hex(0x4EACE4), LV_PART_SELECTED | LV_STATE_DEFAULT ); +// lv_obj_set_style_bg_opa(ui_hour_cfg, 255, LV_PART_SELECTED| LV_STATE_DEFAULT); + +ui_min_cfg = lv_roller_create(ui_date_time); +lv_roller_set_options( ui_min_cfg, "00\n01\n02\n03\n04\n05\n06\n07\n08\n09\n10\n11\n12\n13\n14\n15\n16\n17\n18\n19\n20\n21\n22\n23\n24\n25\n26\n27\n28\n29\n30\n31\n32\n33\n34\n35\n36\n37\n38\n39\n40\n41\n42\n43\n44\n45\n46\n47\n48\n49\n50\n51\n52\n53\n54\n55\n56\n57\n58\n59", LV_ROLLER_MODE_NORMAL ); +lv_obj_set_height( ui_min_cfg, 100); +lv_obj_set_width( ui_min_cfg, LV_SIZE_CONTENT); /// 1 +lv_obj_set_x( ui_min_cfg, 100 - x_offset); +//lv_obj_set_y( ui_min_cfg, 60 ); +lv_obj_set_align( ui_min_cfg, LV_ALIGN_CENTER ); + +// lv_obj_set_style_bg_color(ui_min_cfg, lv_color_hex(0x4EACE4), LV_PART_SELECTED | LV_STATE_DEFAULT ); +// lv_obj_set_style_bg_opa(ui_min_cfg, 255, LV_PART_SELECTED| LV_STATE_DEFAULT); + +ui_sec_cfg = lv_roller_create(ui_date_time); +lv_roller_set_options( ui_sec_cfg, "00\n01\n02\n03\n04\n05\n06\n07\n08\n09\n10\n11\n12\n13\n14\n15\n16\n17\n18\n19\n20\n21\n22\n23\n24\n25\n26\n27\n28\n29\n30\n31\n32\n33\n34\n35\n36\n37\n38\n39\n40\n41\n42\n43\n44\n45\n46\n47\n48\n49\n50\n51\n52\n53\n54\n55\n56\n57\n58\n59", LV_ROLLER_MODE_NORMAL ); +lv_obj_set_height( ui_sec_cfg, 100); +lv_obj_set_width( ui_sec_cfg, LV_SIZE_CONTENT); /// 1 +lv_obj_set_x( ui_sec_cfg, 160 - x_offset); +//lv_obj_set_y( ui_sec_cfg, 60 ); +lv_obj_set_align( ui_sec_cfg, LV_ALIGN_CENTER ); + +// lv_obj_set_style_bg_color(ui_sec_cfg, lv_color_hex(0x4EACE4), LV_PART_SELECTED | LV_STATE_DEFAULT ); +// lv_obj_set_style_bg_opa(ui_sec_cfg, 255, LV_PART_SELECTED| LV_STATE_DEFAULT); + +ui_time_label1 = lv_label_create(ui_date_time); +lv_obj_set_width( ui_time_label1, LV_SIZE_CONTENT); /// 1 +lv_obj_set_height( ui_time_label1, LV_SIZE_CONTENT); /// 1 +lv_obj_set_x( ui_time_label1, 70 - x_offset); +//lv_obj_set_y( ui_time_label1, 60 ); +lv_obj_set_align( ui_time_label1, LV_ALIGN_CENTER ); +lv_label_set_text(ui_time_label1,":"); + +ui_time_label2 = lv_label_create(ui_date_time); +lv_obj_set_width( ui_time_label2, LV_SIZE_CONTENT); /// 1 +lv_obj_set_height( ui_time_label2, LV_SIZE_CONTENT); /// 1 +lv_obj_set_x( ui_time_label2, 130 - x_offset); +//lv_obj_set_y( ui_time_label2, 60 ); +lv_obj_set_align( ui_time_label2, LV_ALIGN_CENTER ); +lv_label_set_text(ui_time_label2,":"); + +ui_time_save = lv_btn_create( ui_date_time); +lv_obj_set_x( ui_time_save, 230 - x_offset); +lv_obj_set_align(ui_time_save , LV_ALIGN_CENTER ); +lv_obj_set_width( ui_time_save, 50); +lv_obj_set_height( ui_time_save, 40); +lv_obj_clear_flag(ui_time_save, LV_OBJ_FLAG_CLICKABLE); +lv_obj_set_style_bg_color(ui_time_save, lv_color_hex(0x6F6F6F), LV_PART_MAIN | LV_STATE_DEFAULT ); + +lv_obj_t * ui_time_save_label = lv_label_create(ui_time_save); +lv_obj_set_align( ui_time_save_label, LV_ALIGN_CENTER ); +lv_label_set_text(ui_time_save_label,"Save"); + +//--------------------------- zone ui_auto_update------------------- + +lv_obj_t *ui_zone_auto_update = lv_obj_create(config_list); +lv_obj_set_width( ui_zone_auto_update, 400); +lv_obj_set_height( ui_zone_auto_update, 50); +//lv_obj_set_x( ui_auto_update, 0 ); +//lv_obj_set_y( ui_auto_update, -60 ); +lv_obj_set_align( ui_zone_auto_update, LV_ALIGN_CENTER ); +lv_obj_clear_flag( ui_zone_auto_update, LV_OBJ_FLAG_SCROLLABLE ); /// Flags +lv_obj_add_flag( ui_zone_auto_update, LV_OBJ_FLAG_HIDDEN ); + +lv_obj_t * ui_zone_auto_update_title = lv_label_create(ui_zone_auto_update); +lv_obj_set_width( ui_zone_auto_update_title, LV_SIZE_CONTENT); /// 1 +lv_obj_set_height( ui_zone_auto_update_title, LV_SIZE_CONTENT); /// 1 +lv_obj_set_align( ui_zone_auto_update_title, LV_ALIGN_LEFT_MID ); +lv_label_set_text(ui_zone_auto_update_title,"Zone Auto Update"); + +ui_zone_auto_update_cfg = lv_switch_create(ui_zone_auto_update); +lv_obj_set_width( ui_zone_auto_update_cfg, 50); +lv_obj_set_height( ui_zone_auto_update_cfg, 25); +lv_obj_set_align( ui_zone_auto_update_cfg, LV_ALIGN_RIGHT_MID ); +lv_obj_add_state( ui_zone_auto_update_cfg, LV_STATE_CHECKED ); /// States +lv_obj_set_style_bg_color(ui_zone_auto_update_cfg, lv_color_hex(0x363636), LV_PART_MAIN | LV_STATE_DEFAULT ); +lv_obj_set_style_bg_opa(ui_zone_auto_update_cfg, 255, LV_PART_MAIN| LV_STATE_DEFAULT); +lv_obj_set_style_bg_color(ui_zone_auto_update_cfg, lv_color_hex(0xFFFFFF), LV_PART_MAIN | LV_STATE_CHECKED|LV_STATE_PRESSED ); +lv_obj_set_style_bg_opa(ui_zone_auto_update_cfg, 255, LV_PART_MAIN| LV_STATE_CHECKED|LV_STATE_PRESSED); + +lv_obj_set_style_bg_color(ui_zone_auto_update_cfg, lv_color_hex(0x529D53), LV_PART_INDICATOR | LV_STATE_CHECKED ); +lv_obj_set_style_bg_opa(ui_zone_auto_update_cfg, 255, LV_PART_INDICATOR| LV_STATE_CHECKED); + +//--------------------------- zone ------------------- + +ui_time_zone = lv_obj_create(config_list); +lv_obj_set_width( ui_time_zone, 400); +lv_obj_set_height( ui_time_zone, 100); +//lv_obj_set_x( ui_time_zone, 0 ); +//lv_obj_set_y( ui_time_zone, 88 ); +lv_obj_set_align( ui_time_zone, LV_ALIGN_CENTER ); +lv_obj_add_flag( ui_time_zone, LV_OBJ_FLAG_CHECKABLE | LV_OBJ_FLAG_SCROLL_ONE ); /// Flags +lv_obj_clear_flag( ui_time_zone, LV_OBJ_FLAG_SCROLLABLE ); /// Flags + +ui_time_zone_title = lv_label_create(ui_time_zone); +lv_obj_set_width( ui_time_zone_title, LV_SIZE_CONTENT); /// 1 +lv_obj_set_height( ui_time_zone_title, LV_SIZE_CONTENT); /// 1 +lv_obj_set_x( ui_time_zone_title, 0 ); +lv_obj_set_y( ui_time_zone_title, -20 ); +lv_obj_set_align( ui_time_zone_title, LV_ALIGN_LEFT_MID ); +lv_label_set_text(ui_time_zone_title,"Time Zone"); + +ui_time_zone_num_cfg = lv_dropdown_create(ui_time_zone); +lv_dropdown_set_options( ui_time_zone_num_cfg, "0\n1\n2\n3\n4\n5\n6\n7\n8\n9\n10\n11\n12" ); +lv_obj_set_width( ui_time_zone_num_cfg, 69); +lv_obj_set_height( ui_time_zone_num_cfg, LV_SIZE_CONTENT); /// 1 +lv_obj_set_x( ui_time_zone_num_cfg, 150 ); +lv_obj_set_y( ui_time_zone_num_cfg, -20 ); +lv_obj_set_align( ui_time_zone_num_cfg, LV_ALIGN_CENTER ); +lv_obj_add_flag( ui_time_zone_num_cfg, LV_OBJ_FLAG_CHECKABLE | LV_OBJ_FLAG_SCROLL_ON_FOCUS ); /// Flags +lv_obj_set_style_bg_color(ui_time_zone_num_cfg, lv_color_hex(0x6F6F6F), LV_PART_MAIN | LV_STATE_DEFAULT ); +lv_obj_set_style_bg_opa(ui_time_zone_num_cfg, 255, LV_PART_MAIN| LV_STATE_DEFAULT); + +ui_utc_tile = lv_label_create(ui_time_zone); +lv_obj_set_width( ui_utc_tile, LV_SIZE_CONTENT); /// 1 +lv_obj_set_height( ui_utc_tile, LV_SIZE_CONTENT); /// 1 +lv_obj_set_x( ui_utc_tile, 30 ); +lv_obj_set_y( ui_utc_tile, -20 ); +lv_obj_set_align( ui_utc_tile, LV_ALIGN_CENTER ); +lv_label_set_text(ui_utc_tile,"UTC"); + +ui_time_zone_sign_cfg_ = lv_dropdown_create(ui_time_zone); +lv_dropdown_set_options( ui_time_zone_sign_cfg_, "+\n-" ); +lv_obj_set_width( ui_time_zone_sign_cfg_, 50); +lv_obj_set_height( ui_time_zone_sign_cfg_, LV_SIZE_CONTENT); /// 1 +lv_obj_set_x( ui_time_zone_sign_cfg_, 84 ); +lv_obj_set_y( ui_time_zone_sign_cfg_, -20 ); +lv_obj_set_align( ui_time_zone_sign_cfg_, LV_ALIGN_CENTER ); +lv_obj_add_flag( ui_time_zone_sign_cfg_, LV_OBJ_FLAG_CHECKABLE | LV_OBJ_FLAG_SCROLL_ON_FOCUS ); /// Flags +lv_obj_set_style_bg_color(ui_time_zone_sign_cfg_, lv_color_hex(0x6F6F6F), LV_PART_MAIN | LV_STATE_DEFAULT ); +lv_obj_set_style_bg_opa(ui_time_zone_sign_cfg_, 255, LV_PART_MAIN| LV_STATE_DEFAULT); + +ui_daylight_title = lv_label_create(ui_time_zone); +lv_obj_set_width( ui_daylight_title, LV_SIZE_CONTENT); /// 1 +lv_obj_set_height( ui_daylight_title, LV_SIZE_CONTENT); /// 1 +lv_obj_set_x( ui_daylight_title, 0 ); +lv_obj_set_y( ui_daylight_title, 20 ); +lv_obj_set_align( ui_daylight_title, LV_ALIGN_LEFT_MID ); +lv_label_set_text(ui_daylight_title,"Daylight Saving Time"); + +ui_daylight_cfg = lv_switch_create(ui_time_zone); +lv_obj_set_width( ui_daylight_cfg, 50); +lv_obj_set_height( ui_daylight_cfg, 25); +lv_obj_set_x( ui_daylight_cfg, 0 ); +lv_obj_set_y( ui_daylight_cfg, 20 ); +lv_obj_set_align( ui_daylight_cfg, LV_ALIGN_RIGHT_MID ); +lv_obj_add_state( ui_daylight_cfg, LV_STATE_CHECKED ); /// States +lv_obj_set_style_bg_color(ui_daylight_cfg, lv_color_hex(0x363636), LV_PART_MAIN | LV_STATE_DEFAULT ); +lv_obj_set_style_bg_opa(ui_daylight_cfg, 255, LV_PART_MAIN| LV_STATE_DEFAULT); +lv_obj_set_style_bg_color(ui_daylight_cfg, lv_color_hex(0xFFFFFF), LV_PART_MAIN | LV_STATE_CHECKED|LV_STATE_PRESSED ); +lv_obj_set_style_bg_opa(ui_daylight_cfg, 255, LV_PART_MAIN| LV_STATE_CHECKED|LV_STATE_PRESSED); + +lv_obj_set_style_bg_color(ui_daylight_cfg, lv_color_hex(0x529D53), LV_PART_INDICATOR | LV_STATE_CHECKED ); +lv_obj_set_style_bg_opa(ui_daylight_cfg, 255, LV_PART_INDICATOR| LV_STATE_CHECKED); + +lv_obj_add_event_cb(ui_back2, ui_event_back2, LV_EVENT_ALL, NULL); + +} +void ui_screen_matter_setup_screen_init() +{ + ui_screen_matter_setup = lv_obj_create(NULL); + lv_obj_clear_flag( ui_screen_matter_setup, LV_OBJ_FLAG_SCROLLABLE ); /// Flags + + lv_obj_set_style_bg_color(ui_screen_matter_setup, lv_color_hex(0x1C1C1C), LV_PART_MAIN | LV_STATE_DEFAULT ); + lv_obj_set_style_bg_opa(ui_screen_matter_setup, 255, LV_PART_MAIN| LV_STATE_DEFAULT); + + ui_qrcode_background = lv_img_create(ui_screen_matter_setup); + lv_img_set_src(ui_qrcode_background, &ui_img_background_png); + lv_obj_set_width( ui_qrcode_background, lv_pct(100)); + lv_obj_set_height( ui_qrcode_background, lv_pct(100)); + lv_obj_set_align( ui_qrcode_background, LV_ALIGN_CENTER ); + lv_obj_add_flag( ui_qrcode_background, LV_OBJ_FLAG_ADV_HITTEST ); /// Flags + lv_obj_clear_flag( ui_qrcode_background, LV_OBJ_FLAG_SCROLLABLE ); /// Flags + + ui_qrcode_panel = lv_obj_create(ui_qrcode_background); + lv_obj_set_width( ui_qrcode_panel, 260); + lv_obj_set_height( ui_qrcode_panel, 260); + lv_obj_set_x( ui_qrcode_panel, 0 ); + lv_obj_set_y( ui_qrcode_panel, 20 ); + lv_obj_set_align( ui_qrcode_panel, LV_ALIGN_CENTER ); + lv_obj_clear_flag( ui_qrcode_panel, LV_OBJ_FLAG_SCROLLABLE ); /// Flags + lv_obj_set_style_bg_color(ui_qrcode_panel, lv_color_hex(0xFFFFFF), LV_PART_MAIN | LV_STATE_DEFAULT ); + lv_obj_set_style_bg_opa(ui_qrcode_panel, 255, LV_PART_MAIN| LV_STATE_DEFAULT); + + ui_qrcode_img = lv_img_create(ui_qrcode_panel); + lv_img_set_src( ui_qrcode_img, &ui_img_matter_qrcode_png); + lv_obj_set_width( ui_qrcode_img, LV_SIZE_CONTENT); /// 1 + lv_obj_set_height( ui_qrcode_img, LV_SIZE_CONTENT); /// 1 + lv_obj_set_x( ui_qrcode_img, 0 ); + lv_obj_set_y( ui_qrcode_img, 0 ); + lv_obj_set_align( ui_qrcode_img, LV_ALIGN_CENTER ); + lv_obj_add_flag( ui_qrcode_img, LV_OBJ_FLAG_ADV_HITTEST ); /// Flags + lv_obj_clear_flag( ui_qrcode_img, LV_OBJ_FLAG_SCROLLABLE ); /// Flags + + return ui_screen_matter_setup; +} +void ui_screen_matter_screen_init() +{ + indicator_virtual_dashboard_init(); + struct virtual_dashboard dashboard_data; + dashboard_data_get(&dashboard_data); + + ui_screen_matter = lv_obj_create(NULL); + lv_obj_clear_flag( ui_screen_matter, LV_OBJ_FLAG_SCROLLABLE ); /// Flags + + lv_obj_set_style_bg_color(ui_screen_matter, lv_color_hex(0x1C1C1C), LV_PART_MAIN | LV_STATE_DEFAULT ); + lv_obj_set_style_bg_opa(ui_screen_matter, 255, LV_PART_MAIN| LV_STATE_DEFAULT); + + ui_button_panel1 = lv_obj_create(ui_screen_matter); + lv_obj_set_width( ui_button_panel1, 220); + lv_obj_set_height( ui_button_panel1, 160); + lv_obj_set_x( ui_button_panel1, -115 ); + lv_obj_set_y( ui_button_panel1, -70 ); + lv_obj_clear_flag( ui_button_panel1, LV_OBJ_FLAG_GESTURE_BUBBLE ); + lv_obj_set_align( ui_button_panel1, LV_ALIGN_CENTER ); + lv_obj_clear_flag( ui_button_panel1, LV_OBJ_FLAG_SCROLLABLE ); /// Flags + lv_obj_set_style_bg_color(ui_button_panel1, lv_color_hex(0x272727), LV_PART_MAIN | LV_STATE_DEFAULT ); + lv_obj_set_style_bg_opa(ui_button_panel1, 255, LV_PART_MAIN| LV_STATE_DEFAULT); + + ui_toggle_button1 = lv_btn_create(ui_button_panel1); + lv_obj_set_width( ui_toggle_button1, 50); + lv_obj_set_height( ui_toggle_button1, 50); + lv_obj_set_x( ui_toggle_button1, 0 ); + lv_obj_set_y( ui_toggle_button1, -10 ); + + lv_obj_add_flag(ui_toggle_button1, LV_OBJ_FLAG_CHECKABLE); + lv_obj_set_align( ui_toggle_button1, LV_ALIGN_CENTER ); + lv_obj_set_style_bg_img_src(ui_toggle_button1, LV_SYMBOL_POWER, 0); + lv_obj_set_style_radius(ui_toggle_button1, LV_RADIUS_CIRCLE, 0); + lv_obj_set_style_text_font(ui_toggle_button1, &lv_font_montserrat_30, 0); + + ui_button_panel_label1 = lv_label_create(ui_button_panel1); + lv_obj_set_width( ui_button_panel_label1, LV_SIZE_CONTENT); /// 1 + lv_obj_set_height( ui_button_panel_label1, LV_SIZE_CONTENT); /// 1 + lv_obj_set_x( ui_button_panel_label1, 0 ); + lv_obj_set_y( ui_button_panel_label1, 60 ); + lv_obj_set_align( ui_button_panel_label1, LV_ALIGN_CENTER ); + lv_label_set_text(ui_button_panel_label1,"Button"); + lv_obj_set_style_text_color(ui_button_panel_label1, lv_color_hex(0x909090), LV_PART_MAIN | LV_STATE_DEFAULT ); + lv_obj_set_style_text_opa(ui_button_panel_label1, 255, LV_PART_MAIN| LV_STATE_DEFAULT); + lv_obj_set_style_text_font(ui_button_panel_label1, &lv_font_montserrat_16, LV_PART_MAIN| LV_STATE_DEFAULT); + + ui_slider_with_value_panel = lv_obj_create(ui_screen_matter); + lv_obj_set_width( ui_slider_with_value_panel, 220); + lv_obj_set_height( ui_slider_with_value_panel, 160); + lv_obj_set_x( ui_slider_with_value_panel, 115 ); + lv_obj_set_y( ui_slider_with_value_panel, -70 ); + lv_obj_clear_flag( ui_slider_with_value_panel, LV_OBJ_FLAG_GESTURE_BUBBLE ); + lv_obj_set_align( ui_slider_with_value_panel, LV_ALIGN_CENTER ); + lv_obj_clear_flag( ui_slider_with_value_panel, LV_OBJ_FLAG_SCROLLABLE ); /// Flags + lv_obj_set_style_bg_color(ui_slider_with_value_panel, lv_color_hex(0x272727), LV_PART_MAIN | LV_STATE_DEFAULT ); + lv_obj_set_style_bg_opa(ui_slider_with_value_panel, 255, LV_PART_MAIN| LV_STATE_DEFAULT); + + ui_arc = lv_arc_create(ui_slider_with_value_panel); + lv_obj_set_width( ui_arc, 100); + lv_obj_set_height( ui_arc, 100); + lv_obj_set_y( ui_arc, 3 ); + lv_obj_set_x( ui_arc, lv_pct(1) ); + lv_arc_set_value( ui_arc, dashboard_data.arc_value ); + lv_obj_set_align( ui_arc, LV_ALIGN_CENTER ); + lv_obj_set_style_arc_color(ui_arc, lv_color_hex(0x529D53), LV_PART_INDICATOR | LV_STATE_DEFAULT ); + lv_obj_set_style_arc_opa(ui_arc, 255, LV_PART_INDICATOR| LV_STATE_DEFAULT); + lv_obj_set_style_bg_color(ui_arc, lv_color_hex(0xFFFFFF), LV_PART_KNOB | LV_STATE_DEFAULT ); + lv_obj_set_style_bg_opa(ui_arc, 255, LV_PART_KNOB| LV_STATE_DEFAULT); + + ui_slider_value_label = lv_label_create(ui_arc); + lv_obj_set_width( ui_slider_value_label, LV_SIZE_CONTENT); /// 1 + lv_obj_set_height( ui_slider_value_label, LV_SIZE_CONTENT); /// 1 + lv_obj_set_align( ui_slider_value_label, LV_ALIGN_CENTER ); + + char label_text[5]; + sprintf(label_text, "%.2f%%", dashboard_data.arc_value); + lv_label_set_text(ui_slider_value_label, label_text); + lv_obj_set_style_text_font(ui_slider_value_label, &lv_font_montserrat_20, LV_PART_MAIN| LV_STATE_DEFAULT); + + ui_slider_with_value_panel_label = lv_label_create(ui_slider_with_value_panel); + lv_obj_set_width( ui_slider_with_value_panel_label, LV_SIZE_CONTENT); /// 1 + lv_obj_set_height( ui_slider_with_value_panel_label, LV_SIZE_CONTENT); /// 1 + lv_obj_set_x( ui_slider_with_value_panel_label, 0 ); + lv_obj_set_y( ui_slider_with_value_panel_label, 60 ); + lv_obj_set_align( ui_slider_with_value_panel_label, LV_ALIGN_CENTER ); + lv_label_set_text(ui_slider_with_value_panel_label,"Slider with Value"); + lv_obj_set_style_text_color(ui_slider_with_value_panel_label, lv_color_hex(0x909090), LV_PART_MAIN | LV_STATE_DEFAULT ); + lv_obj_set_style_text_opa(ui_slider_with_value_panel_label, 255, LV_PART_MAIN| LV_STATE_DEFAULT); + lv_obj_set_style_text_font(ui_slider_with_value_panel_label, &lv_font_montserrat_16, LV_PART_MAIN| LV_STATE_DEFAULT); + + ui_button_panel2 = lv_obj_create(ui_screen_matter); + lv_obj_set_width( ui_button_panel2, 220); + lv_obj_set_height( ui_button_panel2, 80); + lv_obj_set_x( ui_button_panel2, -115 ); + lv_obj_set_y( ui_button_panel2, 60 ); + lv_obj_set_align( ui_button_panel2, LV_ALIGN_CENTER ); + lv_obj_clear_flag( ui_button_panel2, LV_OBJ_FLAG_SCROLLABLE ); /// Flags + lv_obj_set_style_bg_color(ui_button_panel2, lv_color_hex(0x272727), LV_PART_MAIN | LV_STATE_DEFAULT ); + lv_obj_set_style_bg_opa(ui_button_panel2, 255, LV_PART_MAIN| LV_STATE_DEFAULT); + + ui_toggle_button2 = lv_btn_create(ui_button_panel2); + lv_obj_set_width( ui_toggle_button2, 30); + lv_obj_set_height( ui_toggle_button2, 30); + lv_obj_set_x( ui_toggle_button2, 50 ); + lv_obj_set_y( ui_toggle_button2, 0 ); + lv_obj_add_flag(ui_toggle_button2, LV_OBJ_FLAG_CHECKABLE); + lv_obj_set_align( ui_toggle_button2, LV_ALIGN_CENTER ); + lv_obj_set_style_bg_img_src(ui_toggle_button2, LV_SYMBOL_POWER, 0); + lv_obj_set_style_radius(ui_toggle_button2, LV_RADIUS_CIRCLE, 0); + lv_obj_set_style_text_font(ui_toggle_button2, &lv_font_montserrat_20, 0); + + ui_button_panel_label2 = lv_label_create(ui_button_panel2); + lv_obj_set_width( ui_button_panel_label2, LV_SIZE_CONTENT); /// 1 + lv_obj_set_height( ui_button_panel_label2, LV_SIZE_CONTENT); /// 1 + lv_obj_set_x( ui_button_panel_label2, -30 ); + lv_obj_set_y( ui_button_panel_label2, 0 ); + lv_obj_set_align( ui_button_panel_label2, LV_ALIGN_CENTER ); + lv_label_set_text(ui_button_panel_label2,"Button"); + lv_obj_set_style_text_color(ui_button_panel_label2, lv_color_hex(0x909090), LV_PART_MAIN | LV_STATE_DEFAULT ); + lv_obj_set_style_text_opa(ui_button_panel_label2, 255, LV_PART_MAIN| LV_STATE_DEFAULT); + lv_obj_set_style_text_font(ui_button_panel_label2, &lv_font_montserrat_16, LV_PART_MAIN| LV_STATE_DEFAULT); + + ui_switch_panel = lv_obj_create(ui_screen_matter); + lv_obj_set_width( ui_switch_panel, 220); + lv_obj_set_height( ui_switch_panel, 80); + lv_obj_set_x( ui_switch_panel, 115 ); + lv_obj_set_y( ui_switch_panel, 60 ); + lv_obj_set_align( ui_switch_panel, LV_ALIGN_CENTER ); + lv_obj_clear_flag( ui_switch_panel, LV_OBJ_FLAG_SCROLLABLE ); /// Flags + lv_obj_set_style_bg_color(ui_switch_panel, lv_color_hex(0x272727), LV_PART_MAIN | LV_STATE_DEFAULT ); + lv_obj_set_style_bg_opa(ui_switch_panel, 255, LV_PART_MAIN| LV_STATE_DEFAULT); + + ui_switch1 = lv_switch_create(ui_switch_panel); + lv_obj_set_width( ui_switch1, 66); + lv_obj_set_height( ui_switch1, 25); + lv_obj_set_x( ui_switch1, 53 ); + lv_obj_set_y( ui_switch1, 0 ); + lv_obj_set_align( ui_switch1, LV_ALIGN_CENTER ); + lv_obj_set_style_bg_color(ui_switch1, lv_color_hex(0x363636), LV_PART_MAIN | LV_STATE_DEFAULT ); + lv_obj_set_style_bg_opa(ui_switch1, 255, LV_PART_MAIN| LV_STATE_DEFAULT); + lv_obj_set_style_bg_color(ui_switch1, lv_color_hex(0xFFFFFF), LV_PART_MAIN | LV_STATE_CHECKED|LV_STATE_PRESSED ); + lv_obj_set_style_bg_opa(ui_switch1, 255, LV_PART_MAIN| LV_STATE_CHECKED|LV_STATE_PRESSED); + lv_obj_set_style_bg_color(ui_switch1, lv_color_hex(0x529D53), LV_PART_INDICATOR | LV_STATE_CHECKED ); + lv_obj_set_style_bg_opa(ui_switch1, 255, LV_PART_INDICATOR| LV_STATE_CHECKED); + + ui_switch_panel_label = lv_label_create(ui_switch_panel); + lv_obj_set_width( ui_switch_panel_label, LV_SIZE_CONTENT); /// 1 + lv_obj_set_height( ui_switch_panel_label, LV_SIZE_CONTENT); /// 1 + lv_obj_set_x( ui_switch_panel_label, -40 ); + lv_obj_set_y( ui_switch_panel_label, 0 ); + lv_obj_set_align( ui_switch_panel_label, LV_ALIGN_CENTER ); + lv_label_set_text(ui_switch_panel_label,"Switch"); + lv_obj_set_style_text_color(ui_switch_panel_label, lv_color_hex(0x909090), LV_PART_MAIN | LV_STATE_DEFAULT ); + lv_obj_set_style_text_opa(ui_switch_panel_label, 255, LV_PART_MAIN| LV_STATE_DEFAULT); + lv_obj_set_style_text_font(ui_switch_panel_label, &lv_font_montserrat_16, LV_PART_MAIN| LV_STATE_DEFAULT); + + ui_slider_panel = lv_obj_create(ui_screen_matter); + lv_obj_set_width( ui_slider_panel, 450); + lv_obj_set_height( ui_slider_panel, 80); + lv_obj_set_x( ui_slider_panel, 0 ); + lv_obj_set_y( ui_slider_panel, 150 ); + lv_obj_set_align( ui_slider_panel, LV_ALIGN_CENTER ); + lv_obj_clear_flag( ui_slider_panel, LV_OBJ_FLAG_SCROLLABLE ); /// Flags + lv_obj_set_style_bg_color(ui_slider_panel, lv_color_hex(0x272727), LV_PART_MAIN | LV_STATE_DEFAULT ); + lv_obj_set_style_bg_opa(ui_slider_panel, 255, LV_PART_MAIN| LV_STATE_DEFAULT); + + ui_slider1 = lv_slider_create(ui_slider_panel); + lv_slider_set_range(ui_slider1, 0, 100); + if (lv_slider_get_mode(ui_slider1)==LV_SLIDER_MODE_RANGE ) lv_slider_set_left_value( ui_slider1, 0, LV_ANIM_OFF); + lv_obj_set_width( ui_slider1, 391); + lv_obj_set_height( ui_slider1, 10); + lv_obj_set_x( ui_slider1, 1 ); + lv_obj_set_y( ui_slider1, -5 ); + lv_obj_set_align( ui_slider1, LV_ALIGN_CENTER ); + lv_obj_set_style_bg_color(ui_slider1, lv_color_hex(0xFFFFFF), LV_PART_KNOB | LV_STATE_DEFAULT ); + lv_obj_set_style_bg_opa(ui_slider1, 255, LV_PART_KNOB| LV_STATE_DEFAULT); + lv_obj_set_style_bg_color(ui_slider1, lv_color_hex(0x363636), LV_PART_MAIN | LV_STATE_DEFAULT ); + lv_obj_set_style_bg_opa(ui_slider1, 255, LV_PART_MAIN| LV_STATE_DEFAULT); + lv_obj_set_style_bg_color(ui_slider1, lv_color_hex(0xFFFFFF), LV_PART_MAIN | LV_STATE_CHECKED|LV_STATE_PRESSED ); + lv_obj_set_style_bg_opa(ui_slider1, 255, LV_PART_MAIN| LV_STATE_CHECKED|LV_STATE_PRESSED); + lv_obj_set_style_bg_color(ui_slider1, lv_color_hex(0x529D53), LV_PART_INDICATOR | LV_STATE_CHECKED ); + lv_obj_set_style_bg_opa(ui_slider1, 255, LV_PART_INDICATOR| LV_STATE_CHECKED); + lv_slider_set_value( ui_slider1, dashboard_data.slider_value, LV_ANIM_OFF); + + ui_slider_panel_label = lv_label_create(ui_slider_panel); + lv_obj_set_width( ui_slider_panel_label, LV_SIZE_CONTENT); /// 1 + lv_obj_set_height( ui_slider_panel_label, LV_SIZE_CONTENT); /// 1 + lv_obj_set_x( ui_slider_panel_label, 1 ); + lv_obj_set_y( ui_slider_panel_label, 20 ); + lv_obj_set_align( ui_slider_panel_label, LV_ALIGN_CENTER ); + lv_label_set_text(ui_slider_panel_label,"Custom Slider"); + lv_obj_set_style_text_color(ui_slider_panel_label, lv_color_hex(0x909090), LV_PART_MAIN | LV_STATE_DEFAULT ); + lv_obj_set_style_text_opa(ui_slider_panel_label, 255, LV_PART_MAIN| LV_STATE_DEFAULT); + lv_obj_set_style_text_font(ui_slider_panel_label, &lv_font_montserrat_16, LV_PART_MAIN| LV_STATE_DEFAULT); + + ui_wifi_st_6 = lv_img_create(ui_screen_matter); + lv_img_set_src(ui_wifi_st_6, &ui_img_wifi_disconet_png); + lv_obj_set_width( ui_wifi_st_6, LV_SIZE_CONTENT); /// 1 + lv_obj_set_height( ui_wifi_st_6, LV_SIZE_CONTENT); /// 1 + lv_obj_set_x( ui_wifi_st_6, -20 ); + lv_obj_set_y( ui_wifi_st_6, 20 ); + lv_obj_set_align( ui_wifi_st_6, LV_ALIGN_TOP_RIGHT ); + lv_obj_add_flag( ui_wifi_st_6, LV_OBJ_FLAG_ADV_HITTEST ); /// Flags + lv_obj_clear_flag( ui_wifi_st_6, LV_OBJ_FLAG_SCROLLABLE ); /// Flags + + ui_header = lv_label_create(ui_screen_matter); + lv_obj_set_width( ui_header, LV_SIZE_CONTENT); /// 1 + lv_obj_set_height( ui_header, LV_SIZE_CONTENT); /// 1 + lv_obj_set_x( ui_header, 95 ); + lv_obj_set_y( ui_header, -177 ); + lv_obj_set_align( ui_header, LV_ALIGN_LEFT_MID ); + lv_label_set_text(ui_header,"Home Assistant Control"); + lv_obj_set_style_text_font(ui_header, &ui_font_font1, LV_PART_MAIN| LV_STATE_DEFAULT); + lv_obj_add_event_cb(ui_arc, ui_event_slider_value_update, LV_EVENT_VALUE_CHANGED, ui_slider_value_label); + lv_event_send(ui_arc, LV_EVENT_VALUE_CHANGED, NULL); + lv_obj_add_event_cb(ui_screen_matter, ui_event_screen_matter, LV_EVENT_ALL, NULL); + + if (dashboard_data.button1) { + lv_obj_add_state(ui_toggle_button1, LV_STATE_CHECKED); + } + if (dashboard_data.button2) { + lv_obj_add_state(ui_toggle_button2, LV_STATE_CHECKED); + } + + if (dashboard_data.switch_state) { + lv_obj_add_state(ui_switch1, LV_STATE_CHECKED); + } + + return ui_screen_matter; +} +void ui_screen_factory_screen_init() +{ +ui_screen_factory = lv_obj_create(NULL); +lv_obj_clear_flag( ui_screen_factory, LV_OBJ_FLAG_SCROLLABLE ); + +ui_factory_resetting_title = lv_label_create(ui_screen_factory); +lv_obj_set_width( ui_factory_resetting_title, LV_SIZE_CONTENT); /// 1 +lv_obj_set_height( ui_factory_resetting_title, LV_SIZE_CONTENT); /// 1 +lv_obj_set_align( ui_factory_resetting_title, LV_ALIGN_CENTER ); +lv_label_set_text(ui_factory_resetting_title,"Factory Resetting..."); +lv_obj_set_style_text_font(ui_factory_resetting_title, &ui_font_font2, LV_PART_MAIN| LV_STATE_DEFAULT); +lv_obj_set_style_text_color(ui_factory_resetting_title, lv_color_hex(0xCD3700), LV_PART_MAIN | LV_STATE_DEFAULT ); +} + + +void ui_screen_sensor_chart_screen_init() +{ + ui_screen_sensor_chart = lv_obj_create(NULL); + //lv_obj_clear_flag( ui_screen_sensor_chart, LV_OBJ_FLAG_SCROLLABLE ); + + ui_wifi_st_7 = lv_img_create(ui_screen_sensor_chart); + lv_img_set_src(ui_wifi_st_7, &ui_img_wifi_disconet_png); + lv_obj_set_width( ui_wifi_st_7, LV_SIZE_CONTENT); /// 1 + lv_obj_set_height( ui_wifi_st_7, LV_SIZE_CONTENT); /// 1 + lv_obj_set_x( ui_wifi_st_7, -20 ); + lv_obj_set_y( ui_wifi_st_7, 20 ); + lv_obj_set_align( ui_wifi_st_7, LV_ALIGN_TOP_RIGHT ); + lv_obj_add_flag( ui_wifi_st_7, LV_OBJ_FLAG_ADV_HITTEST ); /// Flags + lv_obj_clear_flag( ui_wifi_st_7, LV_OBJ_FLAG_SCROLLABLE ); /// Flags + + ui_back4 = lv_btn_create(ui_screen_sensor_chart); + lv_obj_set_width( ui_back4, 100); + lv_obj_set_height( ui_back4, 50); + lv_obj_set_x( ui_back4, 10 ); + lv_obj_set_y( ui_back4, 30 ); + lv_obj_add_flag( ui_back4, LV_OBJ_FLAG_SCROLL_ON_FOCUS ); /// Flags + lv_obj_clear_flag( ui_back4, LV_OBJ_FLAG_SCROLLABLE ); /// Flags + lv_obj_set_style_bg_color(ui_back4, lv_color_hex(0x101418), LV_PART_MAIN | LV_STATE_DEFAULT ); + lv_obj_set_style_bg_opa(ui_back4, 255, LV_PART_MAIN| LV_STATE_DEFAULT); + lv_obj_set_style_bg_img_src( ui_back4, &ui_img_back_png, LV_PART_MAIN | LV_STATE_DEFAULT ); + + lv_obj_add_event_cb(ui_back4, ui_event_back4, LV_EVENT_ALL, NULL); + + ui_sensor_data_title = lv_label_create(ui_screen_sensor_chart); + lv_obj_set_width( ui_sensor_data_title, LV_SIZE_CONTENT); /// 1 + lv_obj_set_height( ui_sensor_data_title, LV_SIZE_CONTENT); /// 1 + lv_obj_set_x( ui_sensor_data_title, 0 ); + lv_obj_set_y( ui_sensor_data_title, 50 ); + lv_obj_set_align( ui_sensor_data_title, LV_ALIGN_TOP_MID ); + lv_label_set_text(ui_sensor_data_title,"Temp"); //modify + lv_obj_set_style_text_font(ui_sensor_data_title, &ui_font_font1, LV_PART_MAIN| LV_STATE_DEFAULT); + + + lv_obj_t * sensor_chat_panel = lv_obj_create(ui_screen_sensor_chart); + lv_obj_set_align( sensor_chat_panel, LV_ALIGN_TOP_MID ); + lv_obj_set_width( sensor_chat_panel, 480); + lv_obj_set_height( sensor_chat_panel, 400); + lv_obj_set_x( sensor_chat_panel, 0 ); + lv_obj_set_y( sensor_chat_panel, 75 ); + + lv_obj_set_style_bg_color( sensor_chat_panel, lv_color_hex(0x101418), LV_PART_MAIN | LV_STATE_DEFAULT ); + lv_obj_set_style_bg_grad_color( sensor_chat_panel, lv_color_hex(0x101418), LV_PART_MAIN | LV_STATE_DEFAULT ); + lv_obj_set_style_border_color( sensor_chat_panel, lv_color_hex(0x101418), LV_PART_MAIN | LV_STATE_DEFAULT ); + + + lv_obj_t * tabview = lv_tabview_create( sensor_chat_panel, LV_DIR_TOP, 40); + lv_obj_t * ui_tab_day = lv_tabview_add_tab(tabview, "Day"); + lv_obj_t * ui_tab_week = lv_tabview_add_tab(tabview, "Week"); + + lv_obj_set_style_bg_color(tabview, lv_color_hex(0x101418), LV_PART_MAIN | LV_STATE_DEFAULT ); + lv_obj_set_style_bg_grad_color(tabview, lv_color_hex(0x101418), LV_PART_MAIN | LV_STATE_DEFAULT ); + lv_obj_set_style_border_color(tabview, lv_color_hex(0x101418), LV_PART_MAIN | LV_STATE_DEFAULT ); + + + lv_obj_set_style_bg_color(ui_tab_day, lv_color_hex(0x101418), LV_PART_MAIN | LV_STATE_DEFAULT ); + lv_obj_set_style_bg_grad_color(ui_tab_day, lv_color_hex(0x101418), LV_PART_MAIN | LV_STATE_DEFAULT ); + lv_obj_set_style_border_color(ui_tab_day, lv_color_hex(0x101418), LV_PART_MAIN | LV_STATE_DEFAULT ); + + lv_obj_set_style_bg_color(ui_tab_week, lv_color_hex(0x101418), LV_PART_MAIN | LV_STATE_DEFAULT ); + lv_obj_set_style_bg_grad_color(ui_tab_week, lv_color_hex(0x101418), LV_PART_MAIN | LV_STATE_DEFAULT ); + lv_obj_set_style_border_color(ui_tab_week, lv_color_hex(0x101418), LV_PART_MAIN | LV_STATE_DEFAULT ); + + + // day chart + ui_sensor_chart_day = lv_chart_create( ui_tab_day ); + + lv_obj_set_style_bg_color(ui_sensor_chart_day, lv_color_hex(0x101418), LV_PART_MAIN | LV_STATE_DEFAULT ); + lv_obj_set_style_bg_grad_color(ui_sensor_chart_day, lv_color_hex(0x101418), LV_PART_MAIN | LV_STATE_DEFAULT ); + lv_obj_set_style_border_color(ui_sensor_chart_day, lv_color_hex(0x101418), LV_PART_MAIN | LV_STATE_DEFAULT ); + + lv_obj_refresh_ext_draw_size(ui_sensor_chart_day); + lv_chart_set_zoom_x(ui_sensor_chart_day, 800); + + //lv_chart_set_axis_tick(ui_sensor_chart_day, LV_CHART_AXIS_PRIMARY_Y, 0, 0, 5, 1, true, 80); + lv_chart_set_axis_tick(ui_sensor_chart_day, LV_CHART_AXIS_PRIMARY_X, 0, 0, 24, 1, true, 50); + //lv_chart_set_range(ui_sensor_chart_day, LV_CHART_AXIS_PRIMARY_X, 0, 200); + lv_chart_set_range(ui_sensor_chart_day, LV_CHART_AXIS_PRIMARY_Y, -200, 600); //modify + + lv_chart_set_div_line_count(ui_sensor_chart_day, 0, 24); + lv_chart_set_point_count(ui_sensor_chart_day, 24); + + lv_obj_set_style_border_side(ui_sensor_chart_day, LV_BORDER_SIDE_RIGHT | LV_BORDER_SIDE_BOTTOM, 0); + + ui_sensor_chart_day_series = lv_chart_add_series(ui_sensor_chart_day, lv_palette_main(LV_PALETTE_YELLOW), LV_CHART_AXIS_PRIMARY_Y); + lv_chart_set_series_color(ui_sensor_chart_day, ui_sensor_chart_day_series, lv_palette_main(LV_PALETTE_GREEN)); //modify + + // week chart + ui_sensor_chart_week = lv_chart_create( ui_tab_week ); + + lv_obj_set_style_bg_color(ui_sensor_chart_week, lv_color_hex(0x101418), LV_PART_MAIN | LV_STATE_DEFAULT ); + lv_obj_set_style_bg_grad_color(ui_sensor_chart_week, lv_color_hex(0x101418), LV_PART_MAIN | LV_STATE_DEFAULT ); + lv_obj_set_style_border_color(ui_sensor_chart_week, lv_color_hex(0x101418), LV_PART_MAIN | LV_STATE_DEFAULT ); + + lv_obj_refresh_ext_draw_size(ui_sensor_chart_week); + lv_chart_set_zoom_x(ui_sensor_chart_week, 256); + + //lv_chart_set_axis_tick(ui_sensor_chart_week, LV_CHART_AXIS_PRIMARY_Y, 0, 0, 5, 1, true, 80); + lv_chart_set_axis_tick(ui_sensor_chart_week, LV_CHART_AXIS_PRIMARY_X, 0, 0, 7, 1, true, 50); + //lv_chart_set_range(ui_sensor_chart_week, LV_CHART_AXIS_PRIMARY_X, 0, 200); + lv_chart_set_range(ui_sensor_chart_week, LV_CHART_AXIS_PRIMARY_Y, -200, 600); + + lv_chart_set_div_line_count(ui_sensor_chart_week, 0, 7); + lv_chart_set_point_count(ui_sensor_chart_week, 7); + + ui_sensor_chart_week_series_hight = lv_chart_add_series(ui_sensor_chart_week, lv_palette_main(LV_PALETTE_YELLOW), LV_CHART_AXIS_PRIMARY_Y); + ui_sensor_chart_week_series_low = lv_chart_add_series(ui_sensor_chart_week, lv_palette_main(LV_PALETTE_YELLOW), LV_CHART_AXIS_PRIMARY_Y); + +} + +void ui_init( void ) +{ +lv_disp_t *dispp = lv_disp_get_default(); +lv_theme_t *theme = lv_theme_default_init(dispp, lv_color_hex(0x529d53), lv_palette_main(LV_PALETTE_RED), true, LV_FONT_DEFAULT); +lv_disp_set_theme(dispp, theme); +ui_screen_time_screen_init(); +ui_screen_sensor_screen_init(); +ui_screen_setting_screen_init(); +ui_screen_display_screen_init(); +ui_screen_date_time_screen_init(); +ui_screen_matter_setup_screen_init(); +ui_screen_matter_screen_init(); +ui_screen_factory_screen_init(); +ui_screen_sensor_chart_screen_init(); +lv_disp_load_scr( ui_screen_time); +} diff --git a/examples/indicator_matter/main/ui/ui.h b/examples/indicator_matter/main/ui/ui.h new file mode 100644 index 0000000..cd2e730 --- /dev/null +++ b/examples/indicator_matter/main/ui/ui.h @@ -0,0 +1,203 @@ +// SquareLine LVGL GENERATED FILE +// EDITOR VERSION: SquareLine Studio 1.1.1 +// LVGL VERSION: 8.3.3 +// PROJECT: sensecap + +#ifndef _SENSECAP_UI_H +#define _SENSECAP_UI_H + +#ifdef __cplusplus +extern "C" { +#endif + + #include "lvgl/lvgl.h" + +void up_Animation( lv_obj_t *TargetObject, int delay); +void ui_event_screen_time( lv_event_t * e); +extern lv_obj_t *ui_screen_time; +extern lv_obj_t *ui_background; +extern lv_obj_t *ui_qrcode_background; +extern lv_obj_t *ui_hour; +extern lv_obj_t *ui_hour_dis; +extern lv_obj_t *ui_min; +extern lv_obj_t *ui_min_dis; +extern lv_obj_t *ui_colon; +extern lv_obj_t *ui_adorn; +extern lv_obj_t *ui_wifi_st_1; +extern lv_obj_t *ui_date_panel; +extern lv_obj_t *ui_date; +extern lv_obj_t *ui_location; +extern lv_obj_t *ui_location_Icon; +extern lv_obj_t *ui_city; +void ui_event_screen_sensor( lv_event_t * e); +extern lv_obj_t *ui_screen_sensor; +extern lv_obj_t *ui_wifi__st_button_2; +extern lv_obj_t *ui_wifi_st_2; +extern lv_obj_t *ui_time2; +extern lv_obj_t *ui_co2; +extern lv_obj_t *ui_co2_icon; +extern lv_obj_t *ui_co2_title; +extern lv_obj_t *ui_co2_data; +extern lv_obj_t *ui_co2_unit; +extern lv_obj_t *ui_tvoc_2; +extern lv_obj_t *ui_tvoc_icon_2; +extern lv_obj_t *ui_tvoc_title_2; +extern lv_obj_t *ui_tvoc_data; +extern lv_obj_t *ui_tvoc_unit_2; +extern lv_obj_t *ui_temp2; +extern lv_obj_t *ui_temp_icon_2; +extern lv_obj_t *ui_temp_title_2; +extern lv_obj_t *ui_temp_data_2; +extern lv_obj_t *ui_temp_unit_2; +extern lv_obj_t *ui_humidity2; +extern lv_obj_t *ui_humidity_icon_2; +extern lv_obj_t *ui_humidity_title_2; +extern lv_obj_t *ui_humidity_data_2; +extern lv_obj_t *ui_humidity_unit_2; +extern lv_obj_t *ui_scrolldots2; +extern lv_obj_t *ui_scrolldots21; +extern lv_obj_t *ui_scrolldots22; +extern lv_obj_t *ui_scrolldots23; +void ui_event_screen_setting( lv_event_t * e); +extern lv_obj_t *ui_screen_setting; +extern lv_obj_t *ui_wifi__st_button_3; +extern lv_obj_t *ui_wifi_st_3; +extern lv_obj_t *ui_time3; +extern lv_obj_t *ui_setting_icon; +extern lv_obj_t *ui_setting_title; +extern lv_obj_t *ui_setting_display; +extern lv_obj_t *ui_setting_display_icon; +extern lv_obj_t *ui_setting_display_title; +void ui_event_setting_time( lv_event_t * e); +extern lv_obj_t *ui_setting_time; +extern lv_obj_t *ui_setting_time_icon; +extern lv_obj_t *ui_setting_time_title; +extern lv_obj_t *ui_scrolldots3; +extern lv_obj_t *ui_scrolldots31; +extern lv_obj_t *ui_scrolldots32; +extern lv_obj_t *ui_scrolldots33; +extern lv_obj_t *ui_screen_display; +extern lv_obj_t *ui_wifi_st_4; +void ui_event_back1( lv_event_t * e); +extern lv_obj_t *ui_back1; +extern lv_obj_t *ui_display_title; +extern lv_obj_t *ui_brighness; +extern lv_obj_t *ui_brighness_cfg; +extern lv_obj_t *ui_brighness_title; +extern lv_obj_t *ui_brighness_icon_1; +extern lv_obj_t *ui_brighness_icon_2; +extern lv_obj_t *ui_screen_always_on; +extern lv_obj_t *ui_screen_always_on_title; +void ui_event_screen_always_on_cfg( lv_event_t * e); +extern lv_obj_t *ui_screen_always_on_cfg; +extern lv_obj_t *ui_turn_off_after_time; +extern lv_obj_t *ui_after; +void ui_event_sleep_mode_time_cfg( lv_event_t * e); +extern lv_obj_t *ui_turn_off_after_time_cfg; +extern lv_obj_t *ui_min; +void ui_event_display_keyboard( lv_event_t * e); +void ui_event_screen_matter( lv_event_t * e); +void ui_event_slider_value_update( lv_event_t * e); +extern lv_obj_t *ui_display_keyboard; +extern lv_obj_t *ui_screen_date_time; +extern lv_obj_t *ui_wifi_st_5; +void ui_event_back2( lv_event_t * e); +extern lv_obj_t *ui_back2; +extern lv_obj_t *ui_date_time_title; +extern lv_obj_t *ui_screen_matter_settings_title; +extern lv_obj_t *ui_time_format; +extern lv_obj_t *ui_time_format_title; +extern lv_obj_t *ui_time_format_cfg; +extern lv_obj_t *ui_auto_update; +extern lv_obj_t *ui_auto_update_title; +void ui_event_auto_update_cfg( lv_event_t * e); +extern lv_obj_t *ui_auto_update_cfg; +extern lv_obj_t *ui_date_time; +extern lv_obj_t * ui_time_zone; +extern lv_obj_t * ui_zone_auto_update_cfg; +extern lv_obj_t *ui_time_zone_title; +extern lv_obj_t *ui_time_zone_num_cfg; +extern lv_obj_t *ui_utc_tile; +extern lv_obj_t *ui_time_zone_sign_cfg_; +extern lv_obj_t *ui_daylight_title; +extern lv_obj_t *ui_daylight_cfg; +extern lv_obj_t *ui_manual_setting_title; +extern lv_obj_t *ui_date_cfg; +extern lv_obj_t *ui_hour_cfg; +extern lv_obj_t *ui_min_cfg; +extern lv_obj_t *ui_sec_cfg; +extern lv_obj_t *ui_time_label1; +extern lv_obj_t *ui_time_label2; +extern lv_obj_t *ui_wifi_st_6; +extern lv_obj_t * ui_time_save; +extern lv_obj_t *ui_back3; + +extern lv_obj_t *ui_screen_factory; +extern lv_obj_t *ui_factory_resetting_title; + +extern lv_obj_t *ui_screen_sensor_chart; +extern lv_obj_t *ui_wifi_st_7; +extern lv_obj_t *ui_back4; +extern lv_obj_t *ui_sensor_data_title; +extern lv_obj_t * ui_sensor_chart_day; +extern lv_chart_series_t * ui_sensor_chart_day_series; + +extern lv_obj_t * ui_sensor_chart_week; +extern lv_chart_series_t * ui_sensor_chart_week_series_hight; +extern lv_chart_series_t * ui_sensor_chart_week_series_low; + +extern lv_obj_t *ui_screen_matter_setup; +extern lv_obj_t *ui_screen_matter_settings; +extern lv_obj_t *ui_screen_matter; +extern lv_obj_t *ui_button_panel1; +extern lv_obj_t *ui_toggle_button1; +extern lv_obj_t *ui_button_panel_label1; +extern lv_obj_t *ui_slider_with_value_panel; +extern lv_obj_t *ui_arc; +extern lv_obj_t *ui_slider_value_label; +extern lv_obj_t *ui_slider_with_value_panel_label; +extern lv_obj_t *ui_button_panel2; +extern lv_obj_t *ui_toggle_button2; +extern lv_obj_t *ui_toggle_button2_label; +extern lv_obj_t *ui_button_panel_label2; +extern lv_obj_t *ui_switch_panel; +extern lv_obj_t *ui_switch1; +extern lv_obj_t *ui_switch_panel_label; +extern lv_obj_t *ui_slider_panel; +extern lv_obj_t *ui_slider1; +extern lv_obj_t *ui_slider_panel_label; +extern lv_obj_t *ui_header; +extern lv_obj_t *ui_qrcode_img; +extern lv_obj_t *ui_qrcode_panel; + +LV_IMG_DECLARE( ui_img_wifi_disconet_png); // assets/wifi_disconet.png +LV_IMG_DECLARE( ui_img_location_png); // assets/location.png +LV_IMG_DECLARE( ui_img_temp_1_png); // assets/temp_1.png +LV_IMG_DECLARE( ui_img_humidity_1_png); // assets/humidity_1.png +LV_IMG_DECLARE( ui_img_co2_png); // assets/co2.png +LV_IMG_DECLARE( ui_img_tvoc_png); // assets/tvoc.png +LV_IMG_DECLARE( ui_img_temp_2_png); // assets/temp_2.png +LV_IMG_DECLARE( ui_img_humidity_2_png); // assets/humidity_2.png +LV_IMG_DECLARE( ui_img_setting_png); // assets/setting.png +LV_IMG_DECLARE( ui_img_display_png); // assets/display.png +LV_IMG_DECLARE( ui_img_time_png); // assets/time.png +LV_IMG_DECLARE( ui_img_back_png); // assets/back.png +LV_IMG_DECLARE( ui_img_high_light_png); // assets/high_light.png +LV_IMG_DECLARE( ui_img_low_light_png); // assets/low_light.png +LV_IMG_DECLARE( ui_img_background_png); +LV_IMG_DECLARE( ui_img_location2_png); +LV_IMG_DECLARE( ui_img_matter_qrcode_png ); + +LV_FONT_DECLARE( ui_font_font0); +LV_FONT_DECLARE( ui_font_font1); +LV_FONT_DECLARE( ui_font_font2); +LV_FONT_DECLARE( ui_font_font3); +LV_FONT_DECLARE( ui_font_font4); + +void ui_init(void); + +#ifdef __cplusplus +} /*extern "C"*/ +#endif + +#endif diff --git a/examples/indicator_matter/main/ui/ui_font_font0.c b/examples/indicator_matter/main/ui/ui_font_font0.c new file mode 100644 index 0000000..bb13ffd --- /dev/null +++ b/examples/indicator_matter/main/ui/ui_font_font0.c @@ -0,0 +1,2191 @@ +/******************************************************************************* + * Size: 20 px + * Bpp: 8 + * Opts: --bpp 8 --size 20 --font /Users/virgil/seeed/SenseCAP_Indicator_ESP32/code/squareline_studio/sensecap_d1/assets/fonts/LibraSans-Bold.ttf -o /Users/virgil/seeed/SenseCAP_Indicator_ESP32/code/squareline_studio/sensecap_d1/assets/fonts/ui_font_font0.c --format lvgl -r 0x20-0x7f --no-compress --no-prefilter + ******************************************************************************/ + +#include "ui.h" + +#ifndef UI_FONT_FONT0 +#define UI_FONT_FONT0 1 +#endif + +#if UI_FONT_FONT0 + +/*----------------- + * BITMAPS + *----------------*/ + +/*Store the image of the glyphs*/ +static LV_ATTRIBUTE_LARGE_CONST const uint8_t glyph_bitmap[] = { + /* U+0020 " " */ + + /* U+0021 "!" */ + 0x1c, 0xff, 0xff, 0xbf, 0x13, 0xff, 0xff, 0xb6, + 0xb, 0xff, 0xff, 0xae, 0x2, 0xff, 0xff, 0xa5, + 0x0, 0xfa, 0xff, 0x9d, 0x0, 0xf1, 0xff, 0x94, + 0x0, 0xe9, 0xff, 0x8c, 0x0, 0xe0, 0xff, 0x83, + 0x0, 0xd7, 0xff, 0x7a, 0x0, 0xa8, 0xd0, 0x5d, + 0x0, 0x0, 0x0, 0x0, 0x16, 0xb4, 0xb4, 0x7e, + 0x20, 0xff, 0xff, 0xb4, 0x20, 0xff, 0xff, 0xb4, + + /* U+0022 "\"" */ + 0xa9, 0xff, 0xf5, 0x0, 0x7e, 0xff, 0xff, 0x20, + 0x9c, 0xff, 0xe7, 0x0, 0x71, 0xff, 0xff, 0x12, + 0x8f, 0xff, 0xda, 0x0, 0x65, 0xff, 0xff, 0x4, + 0x82, 0xff, 0xcd, 0x0, 0x58, 0xff, 0xf6, 0x0, + 0x74, 0xff, 0xbf, 0x0, 0x4c, 0xff, 0xe8, 0x0, + 0xb, 0x1c, 0x14, 0x0, 0x7, 0x1c, 0x18, 0x0, + + /* U+0023 "#" */ + 0x0, 0x0, 0x0, 0x1f, 0xff, 0x61, 0x0, 0x0, + 0x9b, 0xe8, 0x0, 0x0, 0x0, 0x0, 0x56, 0xff, + 0x2c, 0x0, 0x0, 0xd1, 0xb3, 0x0, 0x0, 0x0, + 0x0, 0x8d, 0xf4, 0x3, 0x0, 0xa, 0xfc, 0x7d, + 0x0, 0x5, 0x24, 0x24, 0xc9, 0xce, 0x24, 0x24, + 0x54, 0xff, 0x64, 0x1c, 0x28, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xcc, 0xd, + 0x54, 0x78, 0xff, 0x87, 0x54, 0x54, 0xcb, 0xde, + 0x54, 0x42, 0x0, 0x0, 0x64, 0xff, 0x1e, 0x0, + 0x0, 0xe0, 0xa0, 0x0, 0x0, 0x0, 0x0, 0x9a, + 0xe6, 0x0, 0x0, 0x16, 0xff, 0x6a, 0x0, 0x0, + 0x54, 0x80, 0xe1, 0xde, 0x80, 0x80, 0x9f, 0xff, + 0xa0, 0x80, 0x26, 0xa8, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0x4c, 0x0, 0x3d, + 0xff, 0x43, 0x0, 0x0, 0xbd, 0xce, 0x0, 0x0, + 0x0, 0x0, 0x6f, 0xff, 0x11, 0x0, 0x0, 0xee, + 0x9a, 0x0, 0x0, 0x0, 0x0, 0xa1, 0xdf, 0x0, + 0x0, 0x21, 0xff, 0x66, 0x0, 0x0, 0x0, 0x0, + 0xd3, 0xad, 0x0, 0x0, 0x53, 0xff, 0x32, 0x0, + 0x0, 0x0, + + /* U+0024 "$" */ + 0x0, 0x0, 0x0, 0x0, 0x0, 0xec, 0x25, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x5, 0x76, 0xd1, 0xf6, + 0xff, 0xfa, 0xd4, 0x6e, 0x4, 0x0, 0x0, 0xa5, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x93, + 0x0, 0x21, 0xff, 0xff, 0xb6, 0x15, 0xec, 0x42, + 0xc6, 0xff, 0xff, 0x28, 0x46, 0xff, 0xff, 0x4f, + 0x0, 0xec, 0x24, 0x37, 0xe9, 0xc1, 0x44, 0x33, + 0xff, 0xff, 0x92, 0x0, 0xec, 0x24, 0x0, 0x0, + 0x0, 0x0, 0x2, 0xde, 0xff, 0xff, 0xd3, 0xf8, + 0x5d, 0x8, 0x0, 0x0, 0x0, 0x0, 0x35, 0xeb, + 0xff, 0xff, 0xff, 0xff, 0xf2, 0x8f, 0x14, 0x0, + 0x0, 0x0, 0x12, 0x7b, 0xca, 0xfe, 0xff, 0xff, + 0xff, 0xda, 0x14, 0x0, 0x0, 0x0, 0x0, 0x0, + 0xec, 0x6d, 0xbc, 0xff, 0xff, 0x87, 0x0, 0x1b, + 0x39, 0x0, 0x0, 0xec, 0x24, 0x3, 0xda, 0xff, + 0xc3, 0x98, 0xff, 0xf6, 0xd, 0x0, 0xec, 0x24, + 0x0, 0xc4, 0xff, 0xce, 0x4e, 0xff, 0xff, 0xb2, + 0x24, 0xec, 0x3c, 0x67, 0xfd, 0xff, 0x9a, 0x0, + 0xb2, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xec, 0x21, 0x0, 0x5, 0x68, 0xcb, 0xee, 0xff, + 0xfa, 0xe1, 0x9d, 0x20, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0xec, 0x24, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x9e, 0x18, 0x0, + 0x0, 0x0, 0x0, + + /* U+0025 "%" */ + 0x0, 0x2d, 0xbd, 0xf5, 0xf3, 0xb2, 0x1e, 0x0, + 0x0, 0x0, 0x0, 0x10, 0xe6, 0xf4, 0x20, 0x0, + 0x0, 0x0, 0x9, 0xe4, 0xff, 0x8d, 0x9a, 0xff, + 0xd0, 0x1, 0x0, 0x0, 0x0, 0x9b, 0xff, 0x70, + 0x0, 0x0, 0x0, 0x0, 0x4d, 0xff, 0xc5, 0x0, + 0x0, 0xe1, 0xff, 0x35, 0x0, 0x0, 0x40, 0xfe, + 0xc9, 0x2, 0x0, 0x0, 0x0, 0x0, 0x75, 0xff, + 0xa1, 0x0, 0x0, 0xbe, 0xff, 0x5f, 0x0, 0x8, + 0xda, 0xfa, 0x2d, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x78, 0xff, 0x9d, 0x0, 0x0, 0xb9, 0xff, 0x63, + 0x0, 0x88, 0xff, 0x83, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x5c, 0xff, 0xb2, 0x0, 0x0, 0xcf, + 0xff, 0x46, 0x30, 0xfb, 0xd7, 0x41, 0xc7, 0xf8, + 0xee, 0x9d, 0xc, 0x0, 0x1f, 0xfb, 0xf1, 0x2a, + 0x39, 0xfc, 0xf1, 0x14, 0xcc, 0xfe, 0x52, 0xf1, + 0xff, 0xa4, 0xcd, 0xff, 0xa1, 0x0, 0x0, 0x8c, + 0xff, 0xff, 0xff, 0xff, 0x72, 0x74, 0xff, 0x95, + 0x6b, 0xff, 0xb1, 0x0, 0x17, 0xfe, 0xf9, 0xc, + 0x0, 0x0, 0x47, 0x86, 0x82, 0x3c, 0x22, 0xf6, + 0xe2, 0xd, 0x98, 0xff, 0x81, 0x0, 0x0, 0xe6, + 0xff, 0x33, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0xbc, 0xff, 0x4c, 0x0, 0xa5, 0xff, 0x77, 0x0, + 0x0, 0xdb, 0xff, 0x40, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x61, 0xff, 0xa7, 0x0, 0x0, 0x98, 0xff, + 0x82, 0x0, 0x0, 0xe7, 0xff, 0x31, 0x0, 0x0, + 0x0, 0x0, 0x17, 0xee, 0xed, 0x16, 0x0, 0x0, + 0x68, 0xff, 0xb4, 0x0, 0x1c, 0xff, 0xf7, 0xa, + 0x0, 0x0, 0x0, 0x0, 0xaa, 0xff, 0x5e, 0x0, + 0x0, 0x0, 0x12, 0xed, 0xff, 0xab, 0xd4, 0xff, + 0x95, 0x0, 0x0, 0x0, 0x0, 0x4d, 0xff, 0xb9, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x34, 0xc5, 0xf8, + 0xeb, 0x93, 0x7, 0x0, + + /* U+0026 "&" */ + 0x0, 0x0, 0x0, 0x0, 0x32, 0xb6, 0xe9, 0xf2, + 0xc9, 0x51, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x1d, 0xf0, 0xff, 0xd8, 0xc8, 0xff, 0xfe, + 0x45, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x6d, + 0xff, 0xc6, 0x2, 0x0, 0xa3, 0xff, 0x9a, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xff, 0x9f, + 0x0, 0x0, 0xb2, 0xff, 0x95, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x55, 0xff, 0xda, 0x1b, 0x9f, + 0xff, 0xf1, 0x26, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x9, 0xf2, 0xff, 0xfc, 0xff, 0xd1, 0x2f, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x20, 0xb0, + 0xff, 0xff, 0xfa, 0x5e, 0x3, 0x0, 0x2b, 0x52, + 0x9, 0x0, 0x0, 0x28, 0xe7, 0xff, 0xf6, 0xf8, + 0xff, 0x61, 0x0, 0x0, 0x95, 0xff, 0xa5, 0x0, + 0x0, 0xbe, 0xff, 0xe5, 0x25, 0x7d, 0xff, 0xee, + 0x20, 0xd, 0xec, 0xff, 0x4b, 0x0, 0xa, 0xfe, + 0xff, 0x76, 0x0, 0x5, 0xd1, 0xff, 0xd1, 0x8f, + 0xff, 0xdb, 0x4, 0x0, 0x16, 0xff, 0xff, 0x71, + 0x0, 0x0, 0x23, 0xed, 0xff, 0xff, 0xff, 0x52, + 0x0, 0x0, 0x0, 0xdf, 0xff, 0xde, 0x22, 0x0, + 0x4, 0x9e, 0xff, 0xff, 0xfe, 0x77, 0x25, 0x28, + 0x0, 0x51, 0xfd, 0xff, 0xfc, 0xdf, 0xf6, 0xff, + 0xff, 0xed, 0xff, 0xff, 0xff, 0xd0, 0x0, 0x0, + 0x3b, 0xaf, 0xe9, 0xfb, 0xec, 0xb1, 0x45, 0xd, + 0x85, 0xdc, 0xf8, 0xb1, + + /* U+0027 "'" */ + 0xea, 0xff, 0xb1, 0xdd, 0xff, 0xa3, 0xd1, 0xff, + 0x96, 0xc4, 0xff, 0x89, 0xb8, 0xff, 0x7b, 0x13, + 0x1c, 0xc, + + /* U+0028 "(" */ + 0x0, 0x0, 0x64, 0xff, 0xff, 0x58, 0x0, 0x11, + 0xea, 0xff, 0xc1, 0x0, 0x0, 0x84, 0xff, 0xff, + 0x37, 0x0, 0x4, 0xe7, 0xff, 0xcf, 0x0, 0x0, + 0x4b, 0xff, 0xff, 0x6e, 0x0, 0x0, 0x89, 0xff, + 0xff, 0x2f, 0x0, 0x0, 0xc1, 0xff, 0xf3, 0x3, + 0x0, 0x0, 0xdf, 0xff, 0xd6, 0x0, 0x0, 0x0, + 0xf0, 0xff, 0xc4, 0x0, 0x0, 0x0, 0xfc, 0xff, + 0xb8, 0x0, 0x0, 0x0, 0xef, 0xff, 0xc4, 0x0, + 0x0, 0x0, 0xdf, 0xff, 0xd4, 0x0, 0x0, 0x0, + 0xc0, 0xff, 0xf2, 0x2, 0x0, 0x0, 0x89, 0xff, + 0xff, 0x2b, 0x0, 0x0, 0x4a, 0xff, 0xff, 0x69, + 0x0, 0x0, 0x4, 0xe5, 0xff, 0xcd, 0x0, 0x0, + 0x0, 0x81, 0xff, 0xff, 0x38, 0x0, 0x0, 0xf, + 0xe9, 0xff, 0xc2, 0x0, 0x0, 0x0, 0x63, 0xff, + 0xff, 0x59, + + /* U+0029 ")" */ + 0xb0, 0xff, 0xf3, 0x1a, 0x0, 0x0, 0x21, 0xf7, + 0xff, 0xa2, 0x0, 0x0, 0x0, 0x8f, 0xff, 0xfe, + 0x2c, 0x0, 0x0, 0x27, 0xff, 0xff, 0x94, 0x0, + 0x0, 0x0, 0xc3, 0xff, 0xf0, 0x4, 0x0, 0x0, + 0x86, 0xff, 0xff, 0x32, 0x0, 0x0, 0x4e, 0xff, + 0xff, 0x69, 0x0, 0x0, 0x2e, 0xff, 0xff, 0x87, + 0x0, 0x0, 0x1d, 0xff, 0xff, 0x97, 0x0, 0x0, + 0x10, 0xff, 0xff, 0xa3, 0x0, 0x0, 0x1d, 0xff, + 0xff, 0x97, 0x0, 0x0, 0x2e, 0xff, 0xff, 0x87, + 0x0, 0x0, 0x50, 0xff, 0xff, 0x68, 0x0, 0x0, + 0x88, 0xff, 0xff, 0x31, 0x0, 0x0, 0xc7, 0xff, + 0xef, 0x4, 0x0, 0x2a, 0xff, 0xff, 0x92, 0x0, + 0x0, 0x93, 0xff, 0xfe, 0x2b, 0x0, 0x24, 0xf9, + 0xff, 0xa2, 0x0, 0x0, 0xb2, 0xff, 0xf3, 0x1a, + 0x0, 0x0, + + /* U+002A "*" */ + 0x0, 0x0, 0x17, 0xff, 0xf3, 0x0, 0x0, 0x0, + 0x14, 0x8, 0x6, 0xff, 0xe1, 0x0, 0x12, 0xa, + 0x8d, 0xea, 0x83, 0xf9, 0xe0, 0x94, 0xf5, 0x5e, + 0xa8, 0xfa, 0xff, 0xff, 0xff, 0xff, 0xf4, 0x80, + 0x0, 0xe, 0xd4, 0xff, 0xff, 0xab, 0x5, 0x0, + 0x0, 0x95, 0xff, 0xb1, 0xd5, 0xff, 0x5c, 0x0, + 0x1d, 0xe5, 0xf7, 0x21, 0x49, 0xff, 0xc9, 0x4, + 0x0, 0x11, 0x50, 0x0, 0x0, 0x5c, 0x5, 0x0, + + /* U+002B "+" */ + 0x0, 0x0, 0x0, 0x0, 0x18, 0x5c, 0x56, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x44, + 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x44, 0xff, 0xf0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x44, 0xff, 0xf0, + 0x0, 0x0, 0x0, 0x0, 0x8, 0x38, 0x38, 0x38, + 0x6d, 0xff, 0xf3, 0x38, 0x38, 0x38, 0x30, 0x28, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xdc, 0x28, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xdc, 0x0, 0x0, 0x0, + 0x0, 0x44, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x44, 0xff, 0xf0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x44, + 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x44, 0xff, 0xf0, 0x0, 0x0, 0x0, + 0x0, + + /* U+002C "," */ + 0x7, 0xc, 0xc, 0x2, 0x98, 0xff, 0xff, 0x38, + 0x98, 0xff, 0xff, 0x38, 0x98, 0xff, 0xff, 0x34, + 0x0, 0x69, 0xff, 0x1e, 0x0, 0xbb, 0xe3, 0x0, + 0x53, 0xff, 0x73, 0x0, + + /* U+002D "-" */ + 0x17, 0x6c, 0x6c, 0x6c, 0x6c, 0x5c, 0x38, 0xff, + 0xff, 0xff, 0xff, 0xdc, 0x38, 0xff, 0xff, 0xff, + 0xff, 0xdc, + + /* U+002E "." */ + 0x7, 0xc, 0xc, 0x2, 0xa4, 0xff, 0xff, 0x30, + 0xa4, 0xff, 0xff, 0x30, 0xa4, 0xff, 0xff, 0x30, + + /* U+002F "/" */ + 0x0, 0x0, 0xd, 0xfe, 0xff, 0x44, 0x0, 0x0, + 0x3d, 0xff, 0xff, 0x14, 0x0, 0x0, 0x6e, 0xff, + 0xe4, 0x0, 0x0, 0x0, 0x9e, 0xff, 0xb4, 0x0, + 0x0, 0x0, 0xcf, 0xff, 0x85, 0x0, 0x0, 0x5, + 0xf9, 0xff, 0x55, 0x0, 0x0, 0x30, 0xff, 0xff, + 0x25, 0x0, 0x0, 0x60, 0xff, 0xf3, 0x1, 0x0, + 0x0, 0x91, 0xff, 0xc6, 0x0, 0x0, 0x0, 0xc1, + 0xff, 0x96, 0x0, 0x0, 0x1, 0xf0, 0xff, 0x66, + 0x0, 0x0, 0x22, 0xff, 0xff, 0x36, 0x0, 0x0, + 0x53, 0xff, 0xfd, 0xa, 0x0, 0x0, 0x83, 0xff, + 0xd7, 0x0, 0x0, 0x0, 0xb4, 0xff, 0xa7, 0x0, + 0x0, 0x0, + + /* U+0030 "0" */ + 0x0, 0x0, 0x13, 0x93, 0xe1, 0xf9, 0xe7, 0x9f, + 0x1a, 0x0, 0x0, 0x0, 0xd, 0xd6, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xe0, 0x13, 0x0, 0x0, 0x7a, + 0xff, 0xff, 0x93, 0x40, 0x81, 0xff, 0xff, 0x8a, + 0x0, 0x0, 0xd1, 0xff, 0xdf, 0x1, 0x0, 0x0, + 0xcc, 0xff, 0xe2, 0x0, 0x7, 0xfd, 0xff, 0xa9, + 0x0, 0x0, 0x0, 0x95, 0xff, 0xff, 0x19, 0x23, + 0xff, 0xff, 0x94, 0x0, 0x0, 0x0, 0x7f, 0xff, + 0xff, 0x39, 0x2f, 0xff, 0xff, 0x8e, 0x0, 0x0, + 0x0, 0x76, 0xff, 0xff, 0x46, 0x2f, 0xff, 0xff, + 0x8e, 0x0, 0x0, 0x0, 0x77, 0xff, 0xff, 0x46, + 0x22, 0xff, 0xff, 0x96, 0x0, 0x0, 0x0, 0x81, + 0xff, 0xff, 0x38, 0x5, 0xfb, 0xff, 0xac, 0x0, + 0x0, 0x0, 0x9b, 0xff, 0xff, 0x15, 0x0, 0xc6, + 0xff, 0xe2, 0x2, 0x0, 0x0, 0xd4, 0xff, 0xdb, + 0x0, 0x0, 0x69, 0xff, 0xff, 0x96, 0x43, 0x8e, + 0xff, 0xff, 0x7c, 0x0, 0x0, 0x5, 0xc6, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xd3, 0xc, 0x0, 0x0, + 0x0, 0xc, 0x8c, 0xe1, 0xf9, 0xe4, 0x94, 0x12, + 0x0, 0x0, + + /* U+0031 "1" */ + 0x0, 0x0, 0x29, 0xc7, 0xff, 0xff, 0x6c, 0x0, + 0x0, 0x0, 0x3, 0x78, 0xf8, 0xff, 0xff, 0xff, + 0x6c, 0x0, 0x0, 0x0, 0x94, 0xff, 0xf7, 0xba, + 0xff, 0xff, 0x6c, 0x0, 0x0, 0x0, 0xa4, 0xbd, + 0x24, 0x58, 0xff, 0xff, 0x6c, 0x0, 0x0, 0x0, + 0x2b, 0x0, 0x0, 0x58, 0xff, 0xff, 0x6c, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x58, 0xff, 0xff, + 0x6c, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x58, + 0xff, 0xff, 0x6c, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x58, 0xff, 0xff, 0x6c, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x58, 0xff, 0xff, 0x6c, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x58, 0xff, 0xff, + 0x6c, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x58, + 0xff, 0xff, 0x6c, 0x0, 0x0, 0x0, 0xe, 0x14, + 0x14, 0x65, 0xff, 0xff, 0x77, 0x14, 0x14, 0xb, + 0xbc, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0x90, 0xbc, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0x90, + + /* U+0032 "2" */ + 0x0, 0x0, 0x2d, 0xaa, 0xe9, 0xfb, 0xec, 0xb7, + 0x44, 0x0, 0x0, 0x0, 0x29, 0xf4, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xfe, 0x57, 0x0, 0x0, 0xbf, + 0xff, 0xff, 0x84, 0x45, 0x7e, 0xff, 0xff, 0xdf, + 0x0, 0xe, 0xfb, 0xff, 0xbd, 0x0, 0x0, 0x0, + 0xc6, 0xff, 0xff, 0xf, 0x2, 0xc, 0xc, 0x7, + 0x0, 0x0, 0x0, 0xca, 0xff, 0xfe, 0x7, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x4c, 0xff, 0xff, + 0xbc, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x42, + 0xf3, 0xff, 0xf6, 0x27, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x63, 0xfa, 0xff, 0xf6, 0x4b, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x83, 0xff, 0xff, 0xe6, 0x38, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x87, 0xff, 0xff, + 0xca, 0x18, 0x0, 0x0, 0x0, 0x0, 0x0, 0x5b, + 0xff, 0xff, 0xbe, 0xb, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x10, 0xed, 0xff, 0xff, 0x67, 0x50, 0x50, + 0x50, 0x50, 0x50, 0x19, 0x4b, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x50, 0x4c, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0x50, + + /* U+0033 "3" */ + 0x0, 0x0, 0x31, 0xab, 0xdf, 0xf7, 0xde, 0xae, + 0x37, 0x0, 0x0, 0x0, 0x58, 0xfd, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xfe, 0x57, 0x0, 0x8, 0xed, + 0xff, 0xf8, 0x74, 0x45, 0x8d, 0xff, 0xff, 0xde, + 0x0, 0x2c, 0xcf, 0xe2, 0x8a, 0x0, 0x0, 0x0, + 0xd3, 0xff, 0xff, 0x4, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x1, 0xda, 0xff, 0xe3, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x44, 0x54, 0xac, 0xff, 0xfe, + 0x63, 0x0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xff, + 0xff, 0xbb, 0x42, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0xff, 0xff, 0xff, 0xfe, 0xc9, 0x30, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0xf, 0x4c, 0xec, + 0xff, 0xe8, 0x11, 0x0, 0x6, 0x1b, 0xb, 0x0, + 0x0, 0x0, 0x7f, 0xff, 0xff, 0x51, 0x6f, 0xff, + 0xff, 0x7a, 0x0, 0x0, 0x0, 0x8d, 0xff, 0xff, + 0x5c, 0x27, 0xfd, 0xff, 0xf5, 0x79, 0x4c, 0x76, + 0xf5, 0xff, 0xfe, 0x24, 0x0, 0x80, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0x8e, 0x0, 0x0, + 0x0, 0x41, 0xb3, 0xe0, 0xfa, 0xef, 0xbf, 0x5b, + 0x0, 0x0, + + /* U+0034 "4" */ + 0x0, 0x0, 0x0, 0x0, 0x0, 0x36, 0xfc, 0xff, + 0xff, 0x30, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x6, 0xd3, 0xff, 0xff, 0xff, 0x30, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x80, 0xff, 0xeb, 0xff, + 0xff, 0x30, 0x0, 0x0, 0x0, 0x0, 0x0, 0x2b, + 0xf9, 0xf3, 0x86, 0xff, 0xff, 0x30, 0x0, 0x0, + 0x0, 0x0, 0x2, 0xc8, 0xff, 0x70, 0x70, 0xff, + 0xff, 0x30, 0x0, 0x0, 0x0, 0x0, 0x72, 0xff, + 0xc9, 0x2, 0x70, 0xff, 0xff, 0x30, 0x0, 0x0, + 0x0, 0x22, 0xf5, 0xfa, 0x2d, 0x0, 0x70, 0xff, + 0xff, 0x30, 0x0, 0x0, 0x0, 0xbd, 0xff, 0x82, + 0x0, 0x0, 0x70, 0xff, 0xff, 0x30, 0x0, 0x0, + 0x63, 0xff, 0xd6, 0x7, 0x0, 0x0, 0x70, 0xff, + 0xff, 0x30, 0x0, 0x0, 0xb4, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x4, + 0xb4, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0x4, 0x10, 0x18, 0x18, 0x18, + 0x18, 0x18, 0x7d, 0xff, 0xff, 0x43, 0x18, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x70, 0xff, + 0xff, 0x30, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x70, 0xff, 0xff, 0x30, 0x0, 0x0, + + /* U+0035 "5" */ + 0x0, 0x88, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xc4, 0x0, 0x0, 0x98, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xc4, 0x0, 0x0, 0xa8, + 0xff, 0xf5, 0x18, 0x18, 0x18, 0x18, 0x18, 0x12, + 0x0, 0x0, 0xb8, 0xff, 0xe5, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0xc8, 0xff, 0xd5, + 0x1, 0x23, 0x3c, 0x19, 0x0, 0x0, 0x0, 0x0, + 0xd7, 0xff, 0xe1, 0xcc, 0xff, 0xff, 0xff, 0xb4, + 0x16, 0x0, 0x0, 0xe7, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xca, 0x1, 0x0, 0xcf, 0xd8, + 0xcf, 0x4b, 0xc, 0x3c, 0xe5, 0xff, 0xff, 0x46, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x6b, + 0xff, 0xff, 0x7f, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x4e, 0xff, 0xff, 0x88, 0x2d, 0xb5, + 0xca, 0x73, 0x0, 0x0, 0x0, 0x88, 0xff, 0xff, + 0x67, 0xa, 0xf5, 0xff, 0xf6, 0x6e, 0x41, 0x7a, + 0xf8, 0xff, 0xf5, 0x18, 0x0, 0x5f, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xfc, 0x5e, 0x0, 0x0, + 0x0, 0x40, 0xb2, 0xe2, 0xfa, 0xe9, 0xad, 0x39, + 0x0, 0x0, + + /* U+0036 "6" */ + 0x0, 0x0, 0x2, 0x6c, 0xcf, 0xf6, 0xeb, 0xbb, + 0x3f, 0x0, 0x0, 0x0, 0x0, 0xa5, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xf9, 0x3e, 0x0, 0x0, 0x53, + 0xff, 0xff, 0xba, 0x42, 0x61, 0xf5, 0xff, 0xc1, + 0x0, 0x0, 0xbd, 0xff, 0xea, 0xb, 0x0, 0x0, + 0x4a, 0x56, 0x34, 0x0, 0x5, 0xfa, 0xff, 0x9d, + 0x0, 0x0, 0x9, 0x0, 0x0, 0x0, 0x0, 0x28, + 0xff, 0xff, 0x7e, 0x89, 0xee, 0xff, 0xeb, 0x89, + 0x6, 0x0, 0x3a, 0xff, 0xff, 0xe9, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xa0, 0x0, 0x40, 0xff, 0xff, + 0xfd, 0x5e, 0xb, 0x3a, 0xe8, 0xff, 0xfe, 0x20, + 0x34, 0xff, 0xff, 0xba, 0x0, 0x0, 0x0, 0x7e, + 0xff, 0xff, 0x57, 0x14, 0xff, 0xff, 0xad, 0x0, + 0x0, 0x0, 0x64, 0xff, 0xff, 0x62, 0x0, 0xd9, + 0xff, 0xe6, 0x7, 0x0, 0x0, 0x90, 0xff, 0xff, + 0x47, 0x0, 0x75, 0xff, 0xff, 0xae, 0x40, 0x68, + 0xf5, 0xff, 0xef, 0xb, 0x0, 0x7, 0xc4, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xfe, 0x5f, 0x0, 0x0, + 0x0, 0xa, 0x7f, 0xd8, 0xf8, 0xf1, 0xbd, 0x46, + 0x0, 0x0, + + /* U+0037 "7" */ + 0x24, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0x3c, 0x24, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0x3c, 0xb, 0x50, + 0x50, 0x50, 0x50, 0x50, 0x50, 0xad, 0xff, 0xf5, + 0x19, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x24, + 0xf5, 0xff, 0x7a, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x1, 0xc0, 0xff, 0xda, 0x6, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x61, 0xff, 0xff, 0x50, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xe, 0xe9, + 0xff, 0xcb, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x7f, 0xff, 0xff, 0x49, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x8, 0xea, 0xff, 0xd6, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x55, 0xff, + 0xff, 0x78, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0xa7, 0xff, 0xff, 0x2d, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0xe1, 0xff, 0xf4, 0x1, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xa, 0xff, + 0xff, 0xcf, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x1c, 0xff, 0xff, 0xbf, 0x0, 0x0, 0x0, + 0x0, 0x0, + + /* U+0038 "8" */ + 0x0, 0x0, 0x55, 0xbd, 0xed, 0xfc, 0xf0, 0xc5, + 0x67, 0x2, 0x0, 0x0, 0x76, 0xff, 0xff, 0xff, + 0xfd, 0xff, 0xff, 0xff, 0x96, 0x0, 0x0, 0xef, + 0xff, 0xf6, 0x3a, 0x1, 0x2a, 0xe9, 0xff, 0xfc, + 0xf, 0x3, 0xfa, 0xff, 0xce, 0x0, 0x0, 0x0, + 0xb2, 0xff, 0xff, 0x1a, 0x0, 0xb0, 0xff, 0xf7, + 0x3d, 0x1, 0x29, 0xea, 0xff, 0xc9, 0x0, 0x0, + 0x11, 0xa4, 0xf7, 0xff, 0xfd, 0xff, 0xf8, 0xac, + 0x19, 0x0, 0x0, 0xb, 0x99, 0xf3, 0xff, 0xff, + 0xff, 0xf9, 0xb0, 0x1e, 0x0, 0x0, 0xb8, 0xff, + 0xf3, 0x48, 0xb, 0x3c, 0xe7, 0xff, 0xdf, 0x7, + 0x2d, 0xff, 0xff, 0x98, 0x0, 0x0, 0x0, 0x7c, + 0xff, 0xff, 0x54, 0x53, 0xff, 0xff, 0x7b, 0x0, + 0x0, 0x0, 0x5f, 0xff, 0xff, 0x77, 0x46, 0xff, + 0xff, 0x9a, 0x0, 0x0, 0x0, 0x7b, 0xff, 0xff, + 0x68, 0xd, 0xf2, 0xff, 0xf3, 0x45, 0x6, 0x30, + 0xe2, 0xff, 0xfd, 0x24, 0x0, 0x63, 0xfe, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0x85, 0x0, 0x0, + 0x0, 0x40, 0xb1, 0xea, 0xfc, 0xef, 0xbd, 0x54, + 0x0, 0x0, + + /* U+0039 "9" */ + 0x0, 0x0, 0x38, 0xb0, 0xea, 0xfa, 0xe3, 0x98, + 0x17, 0x0, 0x0, 0x0, 0x4f, 0xfc, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xde, 0x16, 0x0, 0x3, 0xe5, + 0xff, 0xfd, 0x79, 0x3d, 0x94, 0xff, 0xff, 0x96, + 0x0, 0x31, 0xff, 0xff, 0xad, 0x0, 0x0, 0x0, + 0xca, 0xff, 0xf0, 0x5, 0x47, 0xff, 0xff, 0x84, + 0x0, 0x0, 0x0, 0x90, 0xff, 0xff, 0x2e, 0x35, + 0xff, 0xff, 0xa7, 0x0, 0x0, 0x0, 0xa5, 0xff, + 0xff, 0x4f, 0x6, 0xe8, 0xff, 0xfa, 0x5f, 0x1f, + 0x63, 0xfb, 0xff, 0xff, 0x5b, 0x0, 0x65, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xe1, 0xff, 0xff, 0x56, + 0x0, 0x0, 0x66, 0xd7, 0xf9, 0xe3, 0x88, 0x6b, + 0xff, 0xff, 0x45, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x8c, 0xff, 0xff, 0x1e, 0x1, 0x5a, + 0x7d, 0x62, 0x0, 0x0, 0x5, 0xde, 0xff, 0xdb, + 0x0, 0x0, 0xc3, 0xff, 0xf8, 0x66, 0x3e, 0xad, + 0xff, 0xff, 0x73, 0x0, 0x0, 0x3e, 0xfa, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xbf, 0x6, 0x0, 0x0, + 0x0, 0x3e, 0xb9, 0xe9, 0xf8, 0xd7, 0x7b, 0x7, + 0x0, 0x0, + + /* U+003A ":" */ + 0x14, 0xff, 0xff, 0xbc, 0x14, 0xff, 0xff, 0xbc, + 0x10, 0xd0, 0xd0, 0x98, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0xf, 0xcc, 0xcc, 0x95, 0x14, 0xff, 0xff, 0xbc, + 0x14, 0xff, 0xff, 0xbc, + + /* U+003B ";" */ + 0x10, 0xff, 0xff, 0xc4, 0x10, 0xff, 0xff, 0xc4, + 0xd, 0xd0, 0xd0, 0x9f, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0xc, 0xcc, 0xcc, 0x9c, 0x10, 0xff, 0xff, 0xc4, + 0x10, 0xff, 0xff, 0xc0, 0x0, 0x0, 0xde, 0xaa, + 0x0, 0x2f, 0xff, 0x70, 0x1, 0xbd, 0xed, 0x12, + + /* U+003C "<" */ + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x17, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x7, 0x58, 0xbc, 0xda, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x2d, 0x90, 0xec, 0xff, 0xff, + 0xdc, 0x0, 0x0, 0xd, 0x65, 0xc9, 0xff, 0xff, + 0xff, 0xeb, 0x8b, 0x25, 0xf, 0x9d, 0xf4, 0xff, + 0xff, 0xff, 0xbf, 0x58, 0x6, 0x0, 0x0, 0x28, + 0xff, 0xff, 0xeb, 0x8b, 0x25, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x28, 0xff, 0xf8, 0x77, 0x13, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x23, 0xfd, 0xff, + 0xff, 0xf8, 0xa5, 0x40, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x1c, 0x7e, 0xdf, 0xff, 0xff, 0xff, 0xd9, + 0x74, 0x14, 0x0, 0x0, 0x0, 0x0, 0x1, 0x46, + 0xa9, 0xf9, 0xff, 0xff, 0xf9, 0x96, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x13, 0x71, 0xd4, 0xff, + 0xdc, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x39, 0x80, + + /* U+003D "=" */ + 0x28, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xdc, 0x28, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xdc, 0x8, 0x38, + 0x38, 0x38, 0x38, 0x38, 0x38, 0x38, 0x38, 0x38, + 0x30, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x8, + 0x34, 0x34, 0x34, 0x34, 0x34, 0x34, 0x34, 0x34, + 0x34, 0x2c, 0x28, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xdc, 0x28, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xdc, + + /* U+003E ">" */ + 0x9, 0xd, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x28, 0xf4, 0x9e, 0x3a, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x28, 0xff, + 0xff, 0xff, 0xd5, 0x72, 0x15, 0x0, 0x0, 0x0, + 0x0, 0x1, 0x44, 0xaa, 0xfa, 0xff, 0xff, 0xf9, + 0xab, 0x47, 0x2, 0x0, 0x0, 0x0, 0x0, 0x16, + 0x78, 0xdc, 0xff, 0xff, 0xff, 0xe0, 0x73, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x1, 0x45, 0xab, 0xfa, + 0xff, 0xdc, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x2b, 0xa8, 0xff, 0xdc, 0x0, 0x0, 0x0, + 0x0, 0x9, 0x5f, 0xc5, 0xff, 0xff, 0xff, 0xd3, + 0x0, 0x0, 0x2d, 0x93, 0xef, 0xff, 0xff, 0xff, + 0xc4, 0x60, 0xa, 0x15, 0xc7, 0xff, 0xff, 0xff, + 0xe9, 0x8b, 0x28, 0x0, 0x0, 0x0, 0x28, 0xff, + 0xfd, 0xb7, 0x53, 0x5, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x1c, 0x7f, 0x1d, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, + + /* U+003F "?" */ + 0x0, 0x0, 0x6, 0x72, 0xcd, 0xf5, 0xf9, 0xde, + 0x9c, 0x24, 0x0, 0x0, 0x0, 0xa, 0xc5, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xf4, 0x38, 0x0, + 0x0, 0x87, 0xff, 0xff, 0xd0, 0x5c, 0x4d, 0xa4, + 0xff, 0xff, 0xc9, 0x0, 0x0, 0xe8, 0xff, 0xec, + 0x10, 0x0, 0x0, 0x1, 0xd7, 0xff, 0xfe, 0x6, + 0x3, 0x44, 0x44, 0x32, 0x0, 0x0, 0x0, 0x0, + 0xc9, 0xff, 0xfa, 0x3, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x58, 0xff, 0xff, 0xab, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x7d, 0xfd, + 0xff, 0xd0, 0x15, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x9e, 0xff, 0xff, 0xa2, 0xb, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x4c, 0xff, 0xff, 0x88, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x74, 0xcc, 0xca, 0xa, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x81, 0xb4, 0xb4, 0x10, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0xb8, 0xff, 0xff, 0x18, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0xb8, 0xff, 0xff, 0x18, 0x0, 0x0, 0x0, 0x0, + + /* U+0040 "@" */ + 0x0, 0x0, 0x0, 0x0, 0x0, 0x21, 0x80, 0xc4, + 0xec, 0xfb, 0xef, 0xd3, 0x97, 0x36, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0xb, 0x92, 0xfb, + 0xf9, 0xb3, 0x8e, 0x73, 0x7c, 0xa5, 0xec, 0xff, + 0xa7, 0xd, 0x0, 0x0, 0x0, 0x0, 0x16, 0xce, + 0xfc, 0x7f, 0x13, 0x0, 0x0, 0x0, 0x0, 0x0, + 0xa, 0x7d, 0xfb, 0xc2, 0x7, 0x0, 0x0, 0x5, + 0xc8, 0xf0, 0x40, 0x0, 0x20, 0xa8, 0xee, 0xef, + 0x92, 0x15, 0xfe, 0x74, 0x5d, 0xff, 0x79, 0x0, + 0x0, 0x7e, 0xff, 0x58, 0x0, 0x2e, 0xee, 0xdb, + 0x71, 0x7b, 0xee, 0xba, 0xff, 0x3e, 0x0, 0xb7, + 0xe9, 0x1, 0xf, 0xf1, 0xb0, 0x0, 0x5, 0xd6, + 0xd9, 0xf, 0x0, 0x0, 0x47, 0xff, 0xfc, 0xb, + 0x0, 0x58, 0xff, 0x2f, 0x60, 0xff, 0x41, 0x0, + 0x57, 0xff, 0x53, 0x0, 0x0, 0x0, 0x6, 0xff, + 0xd2, 0x0, 0x0, 0x2f, 0xff, 0x4c, 0xa2, 0xf3, + 0x3, 0x0, 0xa6, 0xf7, 0x7, 0x0, 0x0, 0x0, + 0x14, 0xff, 0x9c, 0x0, 0x0, 0x2a, 0xff, 0x4f, + 0xc9, 0xcc, 0x0, 0x0, 0xce, 0xd3, 0x0, 0x0, + 0x0, 0x0, 0x51, 0xff, 0x66, 0x0, 0x0, 0x4b, + 0xff, 0x32, 0xd8, 0xbc, 0x0, 0x0, 0xd4, 0xca, + 0x0, 0x0, 0x0, 0x0, 0xb5, 0xff, 0x38, 0x0, + 0x0, 0xa3, 0xec, 0x3, 0xcb, 0xc9, 0x0, 0x0, + 0xb7, 0xec, 0x4, 0x0, 0x0, 0x35, 0xf8, 0xff, + 0x17, 0x0, 0x25, 0xfa, 0x84, 0x0, 0xaa, 0xf1, + 0x4, 0x0, 0x67, 0xff, 0x8e, 0x21, 0x4e, 0xe8, + 0x87, 0xff, 0x4c, 0x42, 0xdc, 0xd3, 0xb, 0x0, + 0x63, 0xff, 0x4c, 0x0, 0x6, 0xb3, 0xff, 0xff, + 0xf0, 0x63, 0x9, 0xdd, 0xff, 0xff, 0xb6, 0x17, + 0x0, 0x0, 0x9, 0xe5, 0xd2, 0x9, 0x0, 0x0, + 0x27, 0x39, 0xd, 0x0, 0x0, 0xb, 0x3a, 0x21, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x4a, 0xfd, 0xb9, + 0x12, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x23, 0x86, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x5b, 0xf6, 0xee, 0x8a, 0x46, 0x29, 0x28, 0x40, + 0x73, 0xbf, 0xfd, 0xea, 0x24, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x24, 0xa0, 0xf2, 0xff, 0xff, + 0xff, 0xff, 0xfc, 0xc6, 0x6c, 0xb, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x5, + 0x30, 0x47, 0x47, 0x33, 0xa, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, + + /* U+0041 "A" */ + 0x0, 0x0, 0x0, 0x0, 0x0, 0xaa, 0xff, 0xff, + 0xfd, 0x1b, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0xe, 0xf7, 0xff, 0xff, 0xff, 0x74, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x62, 0xff, 0xfc, 0xab, 0xff, 0xd0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xbd, 0xff, + 0xbc, 0x4c, 0xff, 0xff, 0x2b, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x1b, 0xfd, 0xff, 0x67, 0x7, + 0xf1, 0xff, 0x87, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x75, 0xff, 0xfc, 0x15, 0x0, 0xa3, 0xff, + 0xe1, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0xd0, + 0xff, 0xbc, 0x0, 0x0, 0x4d, 0xff, 0xff, 0x3e, + 0x0, 0x0, 0x0, 0x0, 0x2b, 0xff, 0xff, 0x66, + 0x0, 0x0, 0x6, 0xf0, 0xff, 0x99, 0x0, 0x0, + 0x0, 0x0, 0x88, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xee, 0x6, 0x0, 0x0, 0x1, + 0xe2, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0x50, 0x0, 0x0, 0x3f, 0xff, 0xff, + 0x92, 0x34, 0x34, 0x34, 0x34, 0x3d, 0xfc, 0xff, + 0xab, 0x0, 0x0, 0x9b, 0xff, 0xff, 0x2d, 0x0, + 0x0, 0x0, 0x0, 0x0, 0xbe, 0xff, 0xf7, 0xf, + 0x7, 0xef, 0xff, 0xda, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x6c, 0xff, 0xff, 0x62, 0x52, 0xff, + 0xff, 0x89, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x1b, 0xfe, 0xff, 0xbe, + + /* U+0042 "B" */ + 0xa8, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf4, + 0xd4, 0x8e, 0x1a, 0x0, 0x0, 0xa8, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xe9, + 0x1e, 0x0, 0xa8, 0xff, 0xff, 0x5d, 0x30, 0x30, + 0x33, 0x54, 0xd4, 0xff, 0xff, 0x8f, 0x0, 0xa8, + 0xff, 0xff, 0x38, 0x0, 0x0, 0x0, 0x0, 0x40, + 0xff, 0xff, 0xb4, 0x0, 0xa8, 0xff, 0xff, 0x38, + 0x0, 0x0, 0x0, 0x0, 0x40, 0xff, 0xff, 0x96, + 0x0, 0xa8, 0xff, 0xff, 0x5d, 0x30, 0x30, 0x32, + 0x52, 0xd2, 0xff, 0xf6, 0x2c, 0x0, 0xa8, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc3, + 0x32, 0x0, 0x0, 0xa8, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xd1, 0x40, 0x0, + 0xa8, 0xff, 0xff, 0x38, 0x0, 0x0, 0x0, 0x10, + 0x49, 0xe6, 0xff, 0xf6, 0x23, 0xa8, 0xff, 0xff, + 0x38, 0x0, 0x0, 0x0, 0x0, 0x0, 0x71, 0xff, + 0xff, 0x71, 0xa8, 0xff, 0xff, 0x38, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x7f, 0xff, 0xff, 0x81, 0xa8, + 0xff, 0xff, 0x5d, 0x30, 0x30, 0x30, 0x3c, 0x72, + 0xf4, 0xff, 0xff, 0x46, 0xa8, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xa5, + 0x0, 0xa8, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xfc, 0xe9, 0xb8, 0x59, 0x1, 0x0, + + /* U+0043 "C" */ + 0x0, 0x0, 0x0, 0xd, 0x73, 0xbf, 0xea, 0xfa, + 0xe7, 0xca, 0x7a, 0x16, 0x0, 0x0, 0x0, 0x0, + 0x32, 0xe3, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xed, 0x38, 0x0, 0x0, 0x17, 0xe7, 0xff, + 0xff, 0xd7, 0x77, 0x56, 0x6a, 0xb9, 0xff, 0xff, + 0xf2, 0x15, 0x0, 0x8b, 0xff, 0xff, 0xba, 0x7, + 0x0, 0x0, 0x0, 0x0, 0x75, 0xff, 0xff, 0x7c, + 0x0, 0xe2, 0xff, 0xff, 0x25, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x1, 0x64, 0x29, 0x0, 0x15, 0xff, + 0xff, 0xda, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x28, 0xff, 0xff, 0xbe, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x26, 0xff, 0xff, 0xbf, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0xf, 0xff, 0xff, 0xe1, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xd6, + 0xff, 0xff, 0x31, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x1, 0xa7, 0x72, 0x18, 0x0, 0x76, 0xff, 0xff, + 0xc9, 0xd, 0x0, 0x0, 0x0, 0x0, 0x7b, 0xff, + 0xff, 0xae, 0x0, 0xa, 0xd4, 0xff, 0xff, 0xe1, + 0x7f, 0x5a, 0x6b, 0xba, 0xff, 0xff, 0xf3, 0x23, + 0x0, 0x0, 0x1e, 0xce, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xed, 0x40, 0x0, 0x0, 0x0, + 0x0, 0x4, 0x61, 0xb6, 0xe7, 0xf9, 0xea, 0xca, + 0x77, 0x12, 0x0, 0x0, + + /* U+0044 "D" */ + 0xa8, 0xff, 0xff, 0xff, 0xff, 0xfb, 0xea, 0xc3, + 0x7e, 0x17, 0x0, 0x0, 0x0, 0xa8, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf4, 0x5b, + 0x0, 0x0, 0xa8, 0xff, 0xff, 0x6d, 0x44, 0x49, + 0x67, 0xba, 0xff, 0xff, 0xfd, 0x4d, 0x0, 0xa8, + 0xff, 0xff, 0x38, 0x0, 0x0, 0x0, 0x0, 0x73, + 0xff, 0xff, 0xdf, 0x5, 0xa8, 0xff, 0xff, 0x38, + 0x0, 0x0, 0x0, 0x0, 0x0, 0xc4, 0xff, 0xff, + 0x42, 0xa8, 0xff, 0xff, 0x38, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x73, 0xff, 0xff, 0x79, 0xa8, 0xff, + 0xff, 0x38, 0x0, 0x0, 0x0, 0x0, 0x0, 0x53, + 0xff, 0xff, 0x8f, 0xa8, 0xff, 0xff, 0x38, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x56, 0xff, 0xff, 0x8d, + 0xa8, 0xff, 0xff, 0x38, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x7b, 0xff, 0xff, 0x74, 0xa8, 0xff, 0xff, + 0x38, 0x0, 0x0, 0x0, 0x0, 0x1, 0xd0, 0xff, + 0xff, 0x35, 0xa8, 0xff, 0xff, 0x38, 0x0, 0x0, + 0x0, 0x0, 0x7a, 0xff, 0xff, 0xcc, 0x0, 0xa8, + 0xff, 0xff, 0x70, 0x48, 0x49, 0x60, 0xb4, 0xff, + 0xff, 0xf9, 0x37, 0x0, 0xa8, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xf1, 0x4b, 0x0, + 0x0, 0xa8, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf3, + 0xd0, 0x83, 0x15, 0x0, 0x0, 0x0, + + /* U+0045 "E" */ + 0xa8, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0x28, 0xa8, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x28, + 0xa8, 0xff, 0xff, 0x6d, 0x44, 0x44, 0x44, 0x44, + 0x44, 0x44, 0x44, 0xa, 0xa8, 0xff, 0xff, 0x38, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0xa8, 0xff, 0xff, 0x38, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0xa8, 0xff, 0xff, 0x70, + 0x48, 0x48, 0x48, 0x48, 0x48, 0x48, 0x28, 0x0, + 0xa8, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0x90, 0x0, 0xa8, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x90, 0x0, + 0xa8, 0xff, 0xff, 0x38, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0xa8, 0xff, 0xff, 0x38, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0xa8, 0xff, 0xff, 0x38, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0xa8, 0xff, 0xff, 0x6d, + 0x44, 0x44, 0x44, 0x44, 0x44, 0x44, 0x44, 0x26, + 0xa8, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0x90, 0xa8, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x90, + + /* U+0046 "F" */ + 0xa8, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0x7c, 0xa8, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0x7c, 0xa8, 0xff, + 0xff, 0x6d, 0x44, 0x44, 0x44, 0x44, 0x44, 0x44, + 0x20, 0xa8, 0xff, 0xff, 0x38, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0xa8, 0xff, 0xff, 0x38, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xa8, + 0xff, 0xff, 0x38, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0xa8, 0xff, 0xff, 0x70, 0x48, 0x48, + 0x48, 0x48, 0x48, 0x48, 0x13, 0xa8, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x44, + 0xa8, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0x44, 0xa8, 0xff, 0xff, 0x38, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xa8, 0xff, + 0xff, 0x38, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0xa8, 0xff, 0xff, 0x38, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0xa8, 0xff, 0xff, 0x38, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xa8, + 0xff, 0xff, 0x38, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, + + /* U+0047 "G" */ + 0x0, 0x0, 0x0, 0x7, 0x64, 0xb5, 0xe6, 0xf8, + 0xef, 0xd6, 0x9f, 0x41, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x27, 0xd8, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0x98, 0x5, 0x0, 0x0, 0x11, + 0xdf, 0xff, 0xff, 0xe2, 0x7f, 0x58, 0x60, 0x96, + 0xf4, 0xff, 0xff, 0x7a, 0x0, 0x0, 0x83, 0xff, + 0xff, 0xc7, 0xd, 0x0, 0x0, 0x0, 0x0, 0x27, + 0xec, 0xca, 0x7e, 0x0, 0x0, 0xde, 0xff, 0xff, + 0x2d, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3, + 0x0, 0x0, 0x0, 0x13, 0xff, 0xff, 0xdd, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x28, 0xff, 0xff, 0xbe, 0x0, 0x0, + 0x0, 0x0, 0xb0, 0xff, 0xff, 0xff, 0xff, 0xff, + 0x50, 0x26, 0xff, 0xff, 0xc0, 0x0, 0x0, 0x0, + 0x0, 0xb0, 0xff, 0xff, 0xff, 0xff, 0xff, 0x50, + 0x10, 0xff, 0xff, 0xe3, 0x0, 0x0, 0x0, 0x0, + 0x21, 0x30, 0x30, 0x71, 0xff, 0xff, 0x50, 0x0, + 0xd8, 0xff, 0xff, 0x36, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x50, 0xff, 0xff, 0x50, 0x0, 0x7c, + 0xff, 0xff, 0xcf, 0x10, 0x0, 0x0, 0x0, 0x0, + 0x4, 0x94, 0xff, 0xff, 0x50, 0x0, 0xe, 0xdb, + 0xff, 0xff, 0xe6, 0x82, 0x57, 0x5d, 0x88, 0xdf, + 0xff, 0xff, 0xf9, 0x34, 0x0, 0x0, 0x23, 0xd5, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xd6, 0x3a, 0x0, 0x0, 0x0, 0x0, 0x6, 0x64, + 0xb6, 0xe7, 0xfa, 0xf1, 0xd9, 0xa0, 0x51, 0x2, + 0x0, 0x0, + + /* U+0048 "H" */ + 0xa8, 0xff, 0xff, 0x38, 0x0, 0x0, 0x0, 0x0, + 0x0, 0xc8, 0xff, 0xff, 0x18, 0xa8, 0xff, 0xff, + 0x38, 0x0, 0x0, 0x0, 0x0, 0x0, 0xc8, 0xff, + 0xff, 0x18, 0xa8, 0xff, 0xff, 0x38, 0x0, 0x0, + 0x0, 0x0, 0x0, 0xc8, 0xff, 0xff, 0x18, 0xa8, + 0xff, 0xff, 0x38, 0x0, 0x0, 0x0, 0x0, 0x0, + 0xc8, 0xff, 0xff, 0x18, 0xa8, 0xff, 0xff, 0x38, + 0x0, 0x0, 0x0, 0x0, 0x0, 0xc8, 0xff, 0xff, + 0x18, 0xa8, 0xff, 0xff, 0x8c, 0x6c, 0x6c, 0x6c, + 0x6c, 0x6c, 0xdf, 0xff, 0xff, 0x18, 0xa8, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0x18, 0xa8, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x18, + 0xa8, 0xff, 0xff, 0x38, 0x0, 0x0, 0x0, 0x0, + 0x0, 0xc8, 0xff, 0xff, 0x18, 0xa8, 0xff, 0xff, + 0x38, 0x0, 0x0, 0x0, 0x0, 0x0, 0xc8, 0xff, + 0xff, 0x18, 0xa8, 0xff, 0xff, 0x38, 0x0, 0x0, + 0x0, 0x0, 0x0, 0xc8, 0xff, 0xff, 0x18, 0xa8, + 0xff, 0xff, 0x38, 0x0, 0x0, 0x0, 0x0, 0x0, + 0xc8, 0xff, 0xff, 0x18, 0xa8, 0xff, 0xff, 0x38, + 0x0, 0x0, 0x0, 0x0, 0x0, 0xc8, 0xff, 0xff, + 0x18, 0xa8, 0xff, 0xff, 0x38, 0x0, 0x0, 0x0, + 0x0, 0x0, 0xc8, 0xff, 0xff, 0x18, + + /* U+0049 "I" */ + 0xa8, 0xff, 0xff, 0x38, 0xa8, 0xff, 0xff, 0x38, + 0xa8, 0xff, 0xff, 0x38, 0xa8, 0xff, 0xff, 0x38, + 0xa8, 0xff, 0xff, 0x38, 0xa8, 0xff, 0xff, 0x38, + 0xa8, 0xff, 0xff, 0x38, 0xa8, 0xff, 0xff, 0x38, + 0xa8, 0xff, 0xff, 0x38, 0xa8, 0xff, 0xff, 0x38, + 0xa8, 0xff, 0xff, 0x38, 0xa8, 0xff, 0xff, 0x38, + 0xa8, 0xff, 0xff, 0x38, 0xa8, 0xff, 0xff, 0x38, + + /* U+004A "J" */ + 0x0, 0x0, 0x0, 0x0, 0xdc, 0xff, 0xff, 0xff, + 0xff, 0xc4, 0x0, 0x0, 0x0, 0x0, 0xdc, 0xff, + 0xff, 0xff, 0xff, 0xc4, 0x0, 0x0, 0x0, 0x0, + 0x44, 0x50, 0x66, 0xff, 0xff, 0xc4, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x20, 0xff, 0xff, 0xc4, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x20, 0xff, + 0xff, 0xc4, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x20, 0xff, 0xff, 0xc4, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x20, 0xff, 0xff, 0xc4, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x20, 0xff, 0xff, 0xc4, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x20, 0xff, + 0xff, 0xc4, 0x6, 0x27, 0x4b, 0x14, 0x0, 0x0, + 0x24, 0xff, 0xff, 0xc0, 0x95, 0xff, 0xff, 0x6f, + 0x0, 0x0, 0x4c, 0xff, 0xff, 0xa8, 0x41, 0xff, + 0xff, 0xf1, 0x74, 0x62, 0xdd, 0xff, 0xff, 0x61, + 0x0, 0xaa, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xc3, 0x5, 0x0, 0x5, 0x67, 0xca, 0xed, 0xf9, + 0xd8, 0x81, 0x9, 0x0, + + /* U+004B "K" */ + 0xa8, 0xff, 0xff, 0x38, 0x0, 0x0, 0x0, 0x0, + 0x28, 0xe8, 0xff, 0xfa, 0x4e, 0x0, 0xa8, 0xff, + 0xff, 0x38, 0x0, 0x0, 0x0, 0x25, 0xe6, 0xff, + 0xfa, 0x50, 0x0, 0x0, 0xa8, 0xff, 0xff, 0x38, + 0x0, 0x0, 0x22, 0xe3, 0xff, 0xfb, 0x52, 0x0, + 0x0, 0x0, 0xa8, 0xff, 0xff, 0x38, 0x0, 0x1f, + 0xe0, 0xff, 0xfb, 0x53, 0x0, 0x0, 0x0, 0x0, + 0xa8, 0xff, 0xff, 0x38, 0x1c, 0xdd, 0xff, 0xfb, + 0x55, 0x0, 0x0, 0x0, 0x0, 0x0, 0xa8, 0xff, + 0xff, 0x51, 0xda, 0xff, 0xfd, 0x56, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0xa8, 0xff, 0xff, 0xf1, + 0xff, 0xff, 0xff, 0x5b, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0xa8, 0xff, 0xff, 0xff, 0xd8, 0xf5, + 0xff, 0xf6, 0x2f, 0x0, 0x0, 0x0, 0x0, 0x0, + 0xa8, 0xff, 0xff, 0xad, 0xc, 0x5c, 0xff, 0xff, + 0xdd, 0x11, 0x0, 0x0, 0x0, 0x0, 0xa8, 0xff, + 0xff, 0x38, 0x0, 0x0, 0x98, 0xff, 0xff, 0xb6, + 0x2, 0x0, 0x0, 0x0, 0xa8, 0xff, 0xff, 0x38, + 0x0, 0x0, 0x7, 0xcc, 0xff, 0xff, 0x82, 0x0, + 0x0, 0x0, 0xa8, 0xff, 0xff, 0x38, 0x0, 0x0, + 0x0, 0x21, 0xee, 0xff, 0xfe, 0x4d, 0x0, 0x0, + 0xa8, 0xff, 0xff, 0x38, 0x0, 0x0, 0x0, 0x0, + 0x4c, 0xfe, 0xff, 0xf0, 0x24, 0x0, 0xa8, 0xff, + 0xff, 0x38, 0x0, 0x0, 0x0, 0x0, 0x0, 0x86, + 0xff, 0xff, 0xd3, 0xb, + + /* U+004C "L" */ + 0xa8, 0xff, 0xff, 0x38, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0xa8, 0xff, 0xff, 0x38, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xa8, 0xff, + 0xff, 0x38, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0xa8, 0xff, 0xff, 0x38, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0xa8, 0xff, 0xff, 0x38, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xa8, + 0xff, 0xff, 0x38, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0xa8, 0xff, 0xff, 0x38, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0xa8, 0xff, 0xff, + 0x38, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0xa8, 0xff, 0xff, 0x38, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0xa8, 0xff, 0xff, 0x38, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xa8, 0xff, + 0xff, 0x38, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0xa8, 0xff, 0xff, 0x6d, 0x44, 0x44, 0x44, + 0x44, 0x44, 0x44, 0x28, 0xa8, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x98, 0xa8, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0x98, + + /* U+004D "M" */ + 0xa8, 0xff, 0xff, 0xff, 0x5c, 0x0, 0x0, 0x0, + 0x0, 0x0, 0xab, 0xff, 0xff, 0xff, 0x50, 0xa8, + 0xff, 0xff, 0xff, 0xac, 0x0, 0x0, 0x0, 0x0, + 0x7, 0xf3, 0xff, 0xff, 0xff, 0x50, 0xa8, 0xff, + 0xf8, 0xff, 0xf3, 0x8, 0x0, 0x0, 0x0, 0x49, + 0xff, 0xf7, 0xff, 0xff, 0x50, 0xa8, 0xff, 0xd7, + 0xed, 0xff, 0x4c, 0x0, 0x0, 0x0, 0x98, 0xff, + 0xc3, 0xff, 0xff, 0x50, 0xa8, 0xff, 0xe0, 0xa9, + 0xff, 0x9c, 0x0, 0x0, 0x1, 0xe5, 0xff, 0x87, + 0xff, 0xff, 0x50, 0xa8, 0xff, 0xe7, 0x62, 0xff, + 0xe9, 0x2, 0x0, 0x35, 0xff, 0xfb, 0x4b, 0xff, + 0xff, 0x50, 0xa8, 0xff, 0xe8, 0x19, 0xfe, 0xff, + 0x3c, 0x0, 0x84, 0xff, 0xbf, 0x3c, 0xff, 0xff, + 0x50, 0xa8, 0xff, 0xe8, 0x0, 0xc6, 0xff, 0x8c, + 0x0, 0xd2, 0xff, 0x6d, 0x3c, 0xff, 0xff, 0x50, + 0xa8, 0xff, 0xe8, 0x0, 0x75, 0xff, 0xd7, 0x1e, + 0xff, 0xfe, 0x1d, 0x3c, 0xff, 0xff, 0x50, 0xa8, + 0xff, 0xe8, 0x0, 0x23, 0xff, 0xff, 0x7f, 0xff, + 0xca, 0x0, 0x3c, 0xff, 0xff, 0x50, 0xa8, 0xff, + 0xe8, 0x0, 0x0, 0xd2, 0xff, 0xf2, 0xff, 0x79, + 0x0, 0x3c, 0xff, 0xff, 0x50, 0xa8, 0xff, 0xe8, + 0x0, 0x0, 0x80, 0xff, 0xff, 0xff, 0x27, 0x0, + 0x3c, 0xff, 0xff, 0x50, 0xa8, 0xff, 0xe8, 0x0, + 0x0, 0x2f, 0xff, 0xff, 0xd6, 0x0, 0x0, 0x3c, + 0xff, 0xff, 0x50, 0xa8, 0xff, 0xe8, 0x0, 0x0, + 0x0, 0xdc, 0xff, 0x84, 0x0, 0x0, 0x3c, 0xff, + 0xff, 0x50, + + /* U+004E "N" */ + 0xa8, 0xff, 0xff, 0xdf, 0x7, 0x0, 0x0, 0x0, + 0x0, 0x74, 0xff, 0xff, 0x18, 0xa8, 0xff, 0xff, + 0xff, 0x77, 0x0, 0x0, 0x0, 0x0, 0x74, 0xff, + 0xff, 0x18, 0xa8, 0xff, 0xff, 0xff, 0xf1, 0x15, + 0x0, 0x0, 0x0, 0x74, 0xff, 0xff, 0x18, 0xa8, + 0xff, 0xe1, 0xfa, 0xff, 0x96, 0x0, 0x0, 0x0, + 0x74, 0xff, 0xff, 0x18, 0xa8, 0xff, 0xd7, 0x92, + 0xff, 0xfb, 0x29, 0x0, 0x0, 0x74, 0xff, 0xff, + 0x18, 0xa8, 0xff, 0xe4, 0x13, 0xef, 0xff, 0xb5, + 0x0, 0x0, 0x74, 0xff, 0xff, 0x18, 0xa8, 0xff, + 0xe8, 0x0, 0x75, 0xff, 0xff, 0x44, 0x0, 0x74, + 0xff, 0xff, 0x18, 0xa8, 0xff, 0xe8, 0x0, 0x7, + 0xdf, 0xff, 0xd1, 0x2, 0x74, 0xff, 0xff, 0x18, + 0xa8, 0xff, 0xe8, 0x0, 0x0, 0x58, 0xff, 0xff, + 0x64, 0x6d, 0xff, 0xff, 0x18, 0xa8, 0xff, 0xe8, + 0x0, 0x0, 0x1, 0xc8, 0xff, 0xe7, 0x6a, 0xff, + 0xff, 0x18, 0xa8, 0xff, 0xe8, 0x0, 0x0, 0x0, + 0x3b, 0xff, 0xff, 0xd0, 0xff, 0xff, 0x18, 0xa8, + 0xff, 0xe8, 0x0, 0x0, 0x0, 0x0, 0xac, 0xff, + 0xff, 0xff, 0xff, 0x18, 0xa8, 0xff, 0xe8, 0x0, + 0x0, 0x0, 0x0, 0x24, 0xfa, 0xff, 0xff, 0xff, + 0x18, 0xa8, 0xff, 0xe8, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x8f, 0xff, 0xff, 0xff, 0x18, + + /* U+004F "O" */ + 0x0, 0x0, 0x0, 0x4, 0x5d, 0xb3, 0xe6, 0xf9, + 0xf1, 0xd3, 0x92, 0x26, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x1c, 0xcc, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xfc, 0x71, 0x0, 0x0, 0x0, 0xb, + 0xd3, 0xff, 0xff, 0xe2, 0x7d, 0x57, 0x63, 0xab, + 0xfe, 0xff, 0xff, 0x60, 0x0, 0x0, 0x79, 0xff, + 0xff, 0xcc, 0xe, 0x0, 0x0, 0x0, 0x0, 0x5b, + 0xff, 0xff, 0xed, 0xd, 0x0, 0xd9, 0xff, 0xff, + 0x31, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xb2, + 0xff, 0xff, 0x5e, 0x12, 0xff, 0xff, 0xdf, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x5f, 0xff, + 0xff, 0x97, 0x28, 0xff, 0xff, 0xbe, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xff, 0xff, + 0xaf, 0x26, 0xff, 0xff, 0xc1, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x41, 0xff, 0xff, 0xac, + 0xe, 0xfe, 0xff, 0xe5, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x62, 0xff, 0xff, 0x92, 0x0, + 0xd1, 0xff, 0xff, 0x3c, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0xb5, 0xff, 0xff, 0x51, 0x0, 0x6d, + 0xff, 0xff, 0xd5, 0x14, 0x0, 0x0, 0x0, 0x0, + 0x5f, 0xff, 0xff, 0xe0, 0x5, 0x0, 0x7, 0xcc, + 0xff, 0xff, 0xe9, 0x86, 0x5e, 0x6a, 0xb2, 0xff, + 0xff, 0xfd, 0x49, 0x0, 0x0, 0x0, 0x18, 0xc8, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf4, + 0x58, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3, 0x5b, + 0xb4, 0xe7, 0xfa, 0xf0, 0xcc, 0x83, 0x17, 0x0, + 0x0, 0x0, + + /* U+0050 "P" */ + 0xa8, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xee, + 0xc0, 0x5f, 0x1, 0x0, 0xa8, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xa3, 0x0, + 0xa8, 0xff, 0xff, 0x73, 0x4c, 0x4c, 0x55, 0x8a, + 0xf7, 0xff, 0xff, 0x47, 0xa8, 0xff, 0xff, 0x38, + 0x0, 0x0, 0x0, 0x0, 0x77, 0xff, 0xff, 0x8f, + 0xa8, 0xff, 0xff, 0x38, 0x0, 0x0, 0x0, 0x0, + 0x46, 0xff, 0xff, 0xa1, 0xa8, 0xff, 0xff, 0x38, + 0x0, 0x0, 0x0, 0x0, 0x7c, 0xff, 0xff, 0x83, + 0xa8, 0xff, 0xff, 0x6d, 0x44, 0x44, 0x4c, 0x85, + 0xf7, 0xff, 0xfd, 0x2b, 0xa8, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x78, 0x0, + 0xa8, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xee, + 0xb8, 0x47, 0x0, 0x0, 0xa8, 0xff, 0xff, 0x38, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0xa8, 0xff, 0xff, 0x38, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0xa8, 0xff, 0xff, 0x38, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0xa8, 0xff, 0xff, 0x38, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0xa8, 0xff, 0xff, 0x38, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + + /* U+0051 "Q" */ + 0x0, 0x0, 0x0, 0x3, 0x5b, 0xb2, 0xe6, 0xf9, + 0xf1, 0xd2, 0x90, 0x23, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x18, 0xc8, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xfb, 0x6a, 0x0, 0x0, 0x0, 0x8, + 0xce, 0xff, 0xff, 0xe4, 0x7f, 0x57, 0x64, 0xae, + 0xff, 0xff, 0xff, 0x59, 0x0, 0x0, 0x72, 0xff, + 0xff, 0xd0, 0x11, 0x0, 0x0, 0x0, 0x0, 0x62, + 0xff, 0xff, 0xea, 0xa, 0x0, 0xd3, 0xff, 0xff, + 0x38, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xb9, + 0xff, 0xff, 0x59, 0xf, 0xfe, 0xff, 0xe3, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x64, 0xff, + 0xff, 0x94, 0x26, 0xff, 0xff, 0xc0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x41, 0xff, 0xff, + 0xad, 0x28, 0xff, 0xff, 0xbf, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x3f, 0xff, 0xff, 0xaf, + 0x14, 0xff, 0xff, 0xdd, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x5a, 0xff, 0xff, 0x96, 0x0, + 0xe1, 0xff, 0xff, 0x34, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x9e, 0xff, 0xff, 0x5d, 0x0, 0x8a, + 0xff, 0xff, 0xbd, 0x3, 0x0, 0x0, 0x0, 0x0, + 0x30, 0xf9, 0xff, 0xf2, 0xd, 0x0, 0x15, 0xea, + 0xff, 0xff, 0xbb, 0x40, 0x16, 0x23, 0x6c, 0xed, + 0xff, 0xff, 0x6f, 0x0, 0x0, 0x0, 0x39, 0xef, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0x8c, 0x0, 0x0, 0x0, 0x0, 0x0, 0x19, 0x95, + 0xeb, 0xff, 0xff, 0xff, 0xf5, 0xb1, 0x41, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x3d, 0xff, 0xff, 0xd8, 0x5, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0xc8, 0xff, 0xff, 0xb9, 0x4e, 0x3d, 0x1b, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x34, + 0xf7, 0xff, 0xff, 0xff, 0xff, 0x5e, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x31, + 0xb5, 0xec, 0xf8, 0xdd, 0x45, 0x0, + + /* U+0052 "R" */ + 0xa8, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfa, + 0xe5, 0xab, 0x3a, 0x0, 0x0, 0x0, 0xa8, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xfe, 0x5f, 0x0, 0x0, 0xa8, 0xff, 0xff, 0x73, + 0x4c, 0x4c, 0x4c, 0x5f, 0xb0, 0xff, 0xff, 0xf1, + 0xb, 0x0, 0xa8, 0xff, 0xff, 0x38, 0x0, 0x0, + 0x0, 0x0, 0x1, 0xc9, 0xff, 0xff, 0x42, 0x0, + 0xa8, 0xff, 0xff, 0x38, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x9b, 0xff, 0xff, 0x4d, 0x0, 0xa8, 0xff, + 0xff, 0x38, 0x0, 0x0, 0x0, 0x0, 0x2, 0xd1, + 0xff, 0xff, 0x28, 0x0, 0xa8, 0xff, 0xff, 0x73, + 0x4c, 0x4c, 0x4c, 0x5e, 0xb7, 0xff, 0xff, 0xbf, + 0x0, 0x0, 0xa8, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xd5, 0x1a, 0x0, 0x0, + 0xa8, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0x9c, 0x4, 0x0, 0x0, 0x0, 0xa8, 0xff, + 0xff, 0x38, 0x0, 0x0, 0x21, 0xf5, 0xff, 0xee, + 0x19, 0x0, 0x0, 0x0, 0xa8, 0xff, 0xff, 0x38, + 0x0, 0x0, 0x0, 0x72, 0xff, 0xff, 0xb3, 0x0, + 0x0, 0x0, 0xa8, 0xff, 0xff, 0x38, 0x0, 0x0, + 0x0, 0x3, 0xca, 0xff, 0xff, 0x5f, 0x0, 0x0, + 0xa8, 0xff, 0xff, 0x38, 0x0, 0x0, 0x0, 0x0, + 0x2e, 0xfb, 0xff, 0xef, 0x1a, 0x0, 0xa8, 0xff, + 0xff, 0x38, 0x0, 0x0, 0x0, 0x0, 0x0, 0x86, + 0xff, 0xff, 0xb5, 0x0, + + /* U+0053 "S" */ + 0x0, 0x0, 0xd, 0x78, 0xc6, 0xed, 0xfc, 0xf6, + 0xdb, 0xa1, 0x30, 0x0, 0x0, 0x0, 0x15, 0xdb, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfa, + 0x4c, 0x0, 0x0, 0x8d, 0xff, 0xff, 0xb1, 0x3a, + 0x1e, 0x30, 0x92, 0xff, 0xff, 0xe2, 0x2, 0x0, + 0xc0, 0xff, 0xff, 0x14, 0x0, 0x0, 0x0, 0x0, + 0x9d, 0xaf, 0x8c, 0x10, 0x0, 0xb2, 0xff, 0xff, + 0x54, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x59, 0xff, 0xff, 0xff, 0xbe, 0x77, + 0x3e, 0x9, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x7d, 0xfb, 0xff, 0xff, 0xff, 0xff, 0xf9, 0xbd, + 0x5a, 0x1, 0x0, 0x0, 0x0, 0x0, 0x1b, 0x6b, + 0xad, 0xe6, 0xff, 0xff, 0xff, 0xff, 0xac, 0x1, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x21, + 0x78, 0xf3, 0xff, 0xff, 0x4d, 0x0, 0x0, 0x18, + 0x15, 0x0, 0x0, 0x0, 0x0, 0x0, 0x5f, 0xff, + 0xff, 0x86, 0x3f, 0xee, 0xff, 0xb5, 0x1, 0x0, + 0x0, 0x0, 0x0, 0x5f, 0xff, 0xff, 0x7f, 0x9, + 0xe4, 0xff, 0xff, 0xb5, 0x56, 0x3a, 0x43, 0x78, + 0xef, 0xff, 0xff, 0x3a, 0x0, 0x38, 0xec, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x8a, + 0x0, 0x0, 0x0, 0x16, 0x81, 0xca, 0xf0, 0xfd, + 0xf6, 0xdc, 0xa5, 0x42, 0x0, 0x0, + + /* U+0054 "T" */ + 0xc8, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xc8, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0x35, 0x44, 0x44, 0x44, 0x84, 0xff, 0xff, 0xaa, + 0x44, 0x44, 0x44, 0x44, 0x0, 0x0, 0x0, 0x0, + 0x58, 0xff, 0xff, 0x8c, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x58, 0xff, 0xff, 0x8c, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x58, 0xff, 0xff, 0x8c, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x58, 0xff, 0xff, 0x8c, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x58, 0xff, 0xff, 0x8c, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x58, 0xff, 0xff, 0x8c, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x58, 0xff, 0xff, 0x8c, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x58, 0xff, 0xff, 0x8c, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x58, 0xff, 0xff, 0x8c, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x58, 0xff, 0xff, 0x8c, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x58, 0xff, 0xff, 0x8c, 0x0, 0x0, 0x0, 0x0, + + /* U+0055 "U" */ + 0xcc, 0xff, 0xff, 0x14, 0x0, 0x0, 0x0, 0x0, + 0x0, 0xa8, 0xff, 0xff, 0x38, 0xcc, 0xff, 0xff, + 0x14, 0x0, 0x0, 0x0, 0x0, 0x0, 0xa8, 0xff, + 0xff, 0x38, 0xcc, 0xff, 0xff, 0x14, 0x0, 0x0, + 0x0, 0x0, 0x0, 0xa8, 0xff, 0xff, 0x38, 0xcc, + 0xff, 0xff, 0x14, 0x0, 0x0, 0x0, 0x0, 0x0, + 0xa8, 0xff, 0xff, 0x38, 0xcc, 0xff, 0xff, 0x14, + 0x0, 0x0, 0x0, 0x0, 0x0, 0xa8, 0xff, 0xff, + 0x38, 0xcc, 0xff, 0xff, 0x14, 0x0, 0x0, 0x0, + 0x0, 0x0, 0xa8, 0xff, 0xff, 0x38, 0xcc, 0xff, + 0xff, 0x14, 0x0, 0x0, 0x0, 0x0, 0x0, 0xa8, + 0xff, 0xff, 0x38, 0xcc, 0xff, 0xff, 0x14, 0x0, + 0x0, 0x0, 0x0, 0x0, 0xa8, 0xff, 0xff, 0x38, + 0xca, 0xff, 0xff, 0x1a, 0x0, 0x0, 0x0, 0x0, + 0x0, 0xb1, 0xff, 0xff, 0x35, 0xba, 0xff, 0xff, + 0x3d, 0x0, 0x0, 0x0, 0x0, 0x0, 0xd6, 0xff, + 0xff, 0x20, 0x89, 0xff, 0xff, 0xac, 0x0, 0x0, + 0x0, 0x0, 0x4f, 0xff, 0xff, 0xe6, 0x0, 0x26, + 0xfb, 0xff, 0xff, 0xbd, 0x69, 0x5e, 0x94, 0xfa, + 0xff, 0xff, 0x72, 0x0, 0x0, 0x62, 0xfb, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x9b, 0x1, + 0x0, 0x0, 0x0, 0x2f, 0x9d, 0xdc, 0xf7, 0xf8, + 0xe2, 0xab, 0x47, 0x0, 0x0, 0x0, + + /* U+0056 "V" */ + 0xae, 0xff, 0xff, 0x4c, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x3, 0xec, 0xff, 0xf7, 0xe, 0x51, 0xff, + 0xff, 0x9c, 0x0, 0x0, 0x0, 0x0, 0x0, 0x40, + 0xff, 0xff, 0xa8, 0x0, 0x6, 0xed, 0xff, 0xea, + 0x2, 0x0, 0x0, 0x0, 0x0, 0x90, 0xff, 0xff, + 0x4c, 0x0, 0x0, 0x97, 0xff, 0xff, 0x3e, 0x0, + 0x0, 0x0, 0x0, 0xdf, 0xff, 0xea, 0x4, 0x0, + 0x0, 0x3a, 0xff, 0xff, 0x8f, 0x0, 0x0, 0x0, + 0x30, 0xff, 0xff, 0x93, 0x0, 0x0, 0x0, 0x0, + 0xdc, 0xff, 0xdf, 0x0, 0x0, 0x0, 0x80, 0xff, + 0xff, 0x36, 0x0, 0x0, 0x0, 0x0, 0x80, 0xff, + 0xff, 0x31, 0x0, 0x0, 0xd0, 0xff, 0xd9, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x24, 0xff, 0xff, 0x82, + 0x0, 0x20, 0xff, 0xff, 0x7d, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0xc7, 0xff, 0xd3, 0x0, 0x70, + 0xff, 0xfe, 0x21, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x6a, 0xff, 0xff, 0x20, 0xbc, 0xff, 0xc4, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x13, + 0xfa, 0xff, 0x71, 0xf8, 0xff, 0x67, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xb0, 0xff, + 0xe5, 0xff, 0xf9, 0x11, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x53, 0xff, 0xff, 0xff, + 0xae, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x7, 0xef, 0xff, 0xff, 0x52, 0x0, + 0x0, 0x0, 0x0, 0x0, + + /* U+0057 "W" */ + 0xdc, 0xff, 0xfd, 0xe, 0x0, 0x0, 0x0, 0x41, + 0xff, 0xff, 0xff, 0x31, 0x0, 0x0, 0x0, 0x2b, + 0xff, 0xff, 0xbb, 0x9b, 0xff, 0xff, 0x44, 0x0, + 0x0, 0x0, 0x7c, 0xff, 0xff, 0xff, 0x6d, 0x0, + 0x0, 0x0, 0x62, 0xff, 0xff, 0x79, 0x5a, 0xff, + 0xff, 0x7d, 0x0, 0x0, 0x0, 0xb7, 0xff, 0xff, + 0xff, 0xa8, 0x0, 0x0, 0x0, 0x98, 0xff, 0xff, + 0x38, 0x19, 0xff, 0xff, 0xb5, 0x0, 0x0, 0x1, + 0xef, 0xff, 0xc9, 0xff, 0xe3, 0x0, 0x0, 0x0, + 0xcf, 0xff, 0xf3, 0x4, 0x0, 0xd8, 0xff, 0xed, + 0x0, 0x0, 0x2b, 0xff, 0xff, 0x6a, 0xff, 0xff, + 0x1f, 0x0, 0x9, 0xfb, 0xff, 0xb6, 0x0, 0x0, + 0x97, 0xff, 0xff, 0x26, 0x0, 0x65, 0xff, 0xec, + 0x13, 0xff, 0xff, 0x5b, 0x0, 0x3b, 0xff, 0xff, + 0x75, 0x0, 0x0, 0x56, 0xff, 0xff, 0x5f, 0x0, + 0x9d, 0xff, 0xb3, 0x0, 0xd8, 0xff, 0x97, 0x0, + 0x72, 0xff, 0xff, 0x34, 0x0, 0x0, 0x16, 0xff, + 0xff, 0x98, 0x0, 0xd6, 0xff, 0x78, 0x0, 0x9e, + 0xff, 0xd2, 0x0, 0xa8, 0xff, 0xf0, 0x3, 0x0, + 0x0, 0x0, 0xd5, 0xff, 0xd0, 0x10, 0xfe, 0xff, + 0x3d, 0x0, 0x63, 0xff, 0xfd, 0xb, 0xe1, 0xff, + 0xb1, 0x0, 0x0, 0x0, 0x0, 0x94, 0xff, 0xfc, + 0x4e, 0xff, 0xfa, 0x8, 0x0, 0x28, 0xff, 0xff, + 0x52, 0xff, 0xff, 0x70, 0x0, 0x0, 0x0, 0x0, + 0x53, 0xff, 0xff, 0xb3, 0xff, 0xc8, 0x0, 0x0, + 0x1, 0xec, 0xff, 0xb6, 0xff, 0xff, 0x2f, 0x0, + 0x0, 0x0, 0x0, 0x14, 0xfe, 0xff, 0xfd, 0xff, + 0x8d, 0x0, 0x0, 0x0, 0xb3, 0xff, 0xfd, 0xff, + 0xec, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0xd1, + 0xff, 0xff, 0xff, 0x53, 0x0, 0x0, 0x0, 0x78, + 0xff, 0xff, 0xff, 0xad, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x90, 0xff, 0xff, 0xff, 0x19, 0x0, + 0x0, 0x0, 0x3d, 0xff, 0xff, 0xff, 0x6c, 0x0, + 0x0, 0x0, + + /* U+0058 "X" */ + 0x22, 0xf5, 0xff, 0xe2, 0xc, 0x0, 0x0, 0x0, + 0x0, 0x93, 0xff, 0xff, 0x73, 0x0, 0x0, 0x70, + 0xff, 0xff, 0x8d, 0x0, 0x0, 0x0, 0x33, 0xfd, + 0xff, 0xce, 0x3, 0x0, 0x0, 0x2, 0xc5, 0xff, + 0xfc, 0x30, 0x0, 0x2, 0xcc, 0xff, 0xfc, 0x33, + 0x0, 0x0, 0x0, 0x0, 0x28, 0xf7, 0xff, 0xc9, + 0x2, 0x6d, 0xff, 0xff, 0x8e, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x78, 0xff, 0xff, 0x83, 0xf1, + 0xff, 0xe1, 0xb, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x3, 0xcc, 0xff, 0xff, 0xff, 0xff, 0x4b, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x3d, 0xff, 0xff, 0xff, 0xbf, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x9e, 0xff, + 0xff, 0xff, 0xf7, 0x24, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x43, 0xff, 0xff, 0xcb, 0xff, + 0xff, 0xba, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0xa, 0xde, 0xff, 0xed, 0x15, 0xa5, 0xff, 0xff, + 0x5a, 0x0, 0x0, 0x0, 0x0, 0x0, 0x8e, 0xff, + 0xff, 0x64, 0x0, 0x17, 0xef, 0xff, 0xe8, 0x11, + 0x0, 0x0, 0x0, 0x36, 0xfd, 0xff, 0xc4, 0x1, + 0x0, 0x0, 0x68, 0xff, 0xff, 0x99, 0x0, 0x0, + 0x5, 0xd2, 0xff, 0xfa, 0x2b, 0x0, 0x0, 0x0, + 0x2, 0xc8, 0xff, 0xfe, 0x39, 0x0, 0x7d, 0xff, + 0xff, 0x87, 0x0, 0x0, 0x0, 0x0, 0x0, 0x2f, + 0xfb, 0xff, 0xd3, 0x5, + + /* U+0059 "Y" */ + 0x5c, 0xff, 0xff, 0xa3, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x48, 0xff, 0xff, 0xb8, 0x0, 0x0, 0xc4, + 0xff, 0xfe, 0x33, 0x0, 0x0, 0x0, 0x3, 0xd5, + 0xff, 0xf9, 0x26, 0x0, 0x0, 0x31, 0xfd, 0xff, + 0xbf, 0x0, 0x0, 0x0, 0x6a, 0xff, 0xff, 0x89, + 0x0, 0x0, 0x0, 0x0, 0x96, 0xff, 0xff, 0x4e, + 0x0, 0xf, 0xea, 0xff, 0xe5, 0xc, 0x0, 0x0, + 0x0, 0x0, 0x12, 0xec, 0xff, 0xd8, 0x4, 0x8b, + 0xff, 0xff, 0x5a, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x67, 0xff, 0xff, 0x8c, 0xf8, 0xff, 0xc1, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x2, + 0xcd, 0xff, 0xff, 0xff, 0xfc, 0x2e, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x39, 0xfe, + 0xff, 0xff, 0x93, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0xc9, 0xff, 0xff, + 0x25, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0xc4, 0xff, 0xff, 0x20, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0xc4, 0xff, 0xff, 0x20, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xc4, + 0xff, 0xff, 0x20, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0xc4, 0xff, 0xff, + 0x20, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0xc4, 0xff, 0xff, 0x20, 0x0, + 0x0, 0x0, 0x0, 0x0, + + /* U+005A "Z" */ + 0x0, 0xa8, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0x3c, 0x0, 0xa8, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x3c, + 0x0, 0x34, 0x50, 0x50, 0x50, 0x50, 0x50, 0x77, + 0xff, 0xff, 0xd6, 0xb, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0xb, 0xd4, 0xff, 0xf3, 0x29, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xa7, 0xff, + 0xff, 0x57, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x6e, 0xff, 0xff, 0x91, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x3a, 0xfa, 0xff, 0xc6, + 0x5, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x17, + 0xe5, 0xff, 0xea, 0x1c, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x3, 0xbf, 0xff, 0xfd, 0x44, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x8a, 0xff, + 0xff, 0x7b, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x51, 0xff, 0xff, 0xb4, 0x1, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x24, 0xf1, 0xff, 0xf9, + 0x61, 0x50, 0x50, 0x50, 0x50, 0x50, 0x50, 0x33, + 0x68, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xa4, 0x68, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xa4, + + /* U+005B "[" */ + 0xe0, 0xff, 0xff, 0xff, 0xff, 0x6c, 0xe0, 0xff, + 0xf8, 0xe4, 0xe4, 0x60, 0xe0, 0xff, 0xb8, 0x0, + 0x0, 0x0, 0xe0, 0xff, 0xb8, 0x0, 0x0, 0x0, + 0xe0, 0xff, 0xb8, 0x0, 0x0, 0x0, 0xe0, 0xff, + 0xb8, 0x0, 0x0, 0x0, 0xe0, 0xff, 0xb8, 0x0, + 0x0, 0x0, 0xe0, 0xff, 0xb8, 0x0, 0x0, 0x0, + 0xe0, 0xff, 0xb8, 0x0, 0x0, 0x0, 0xe0, 0xff, + 0xb8, 0x0, 0x0, 0x0, 0xe0, 0xff, 0xb8, 0x0, + 0x0, 0x0, 0xe0, 0xff, 0xb8, 0x0, 0x0, 0x0, + 0xe0, 0xff, 0xb8, 0x0, 0x0, 0x0, 0xe0, 0xff, + 0xb8, 0x0, 0x0, 0x0, 0xe0, 0xff, 0xb8, 0x0, + 0x0, 0x0, 0xe0, 0xff, 0xb8, 0x0, 0x0, 0x0, + 0xe0, 0xff, 0xb8, 0x0, 0x0, 0x0, 0xe0, 0xff, + 0xfa, 0xec, 0xec, 0x63, 0xe0, 0xff, 0xff, 0xff, + 0xff, 0x6c, + + /* U+005C "\\" */ + 0xb4, 0xff, 0x9c, 0x0, 0x0, 0x0, 0x85, 0xff, + 0xcc, 0x0, 0x0, 0x0, 0x55, 0xff, 0xf8, 0x4, + 0x0, 0x0, 0x25, 0xff, 0xff, 0x2e, 0x0, 0x0, + 0x2, 0xf3, 0xff, 0x5f, 0x0, 0x0, 0x0, 0xc6, + 0xff, 0x90, 0x0, 0x0, 0x0, 0x96, 0xff, 0xc0, + 0x0, 0x0, 0x0, 0x66, 0xff, 0xf0, 0x1, 0x0, + 0x0, 0x37, 0xff, 0xff, 0x22, 0x0, 0x0, 0xa, + 0xfd, 0xff, 0x53, 0x0, 0x0, 0x0, 0xd7, 0xff, + 0x84, 0x0, 0x0, 0x0, 0xa7, 0xff, 0xb4, 0x0, + 0x0, 0x0, 0x78, 0xff, 0xe5, 0x0, 0x0, 0x0, + 0x48, 0xff, 0xff, 0x16, 0x0, 0x0, 0x18, 0xff, + 0xff, 0x47, + + /* U+005D "]" */ + 0xc4, 0xff, 0xff, 0xff, 0xff, 0x8c, 0xae, 0xe4, + 0xe5, 0xff, 0xff, 0x8c, 0x0, 0x0, 0xc, 0xff, + 0xff, 0x8c, 0x0, 0x0, 0xc, 0xff, 0xff, 0x8c, + 0x0, 0x0, 0xc, 0xff, 0xff, 0x8c, 0x0, 0x0, + 0xc, 0xff, 0xff, 0x8c, 0x0, 0x0, 0xc, 0xff, + 0xff, 0x8c, 0x0, 0x0, 0xc, 0xff, 0xff, 0x8c, + 0x0, 0x0, 0xc, 0xff, 0xff, 0x8c, 0x0, 0x0, + 0xc, 0xff, 0xff, 0x8c, 0x0, 0x0, 0xc, 0xff, + 0xff, 0x8c, 0x0, 0x0, 0xc, 0xff, 0xff, 0x8c, + 0x0, 0x0, 0xc, 0xff, 0xff, 0x8c, 0x0, 0x0, + 0xc, 0xff, 0xff, 0x8c, 0x0, 0x0, 0xc, 0xff, + 0xff, 0x8c, 0x0, 0x0, 0xc, 0xff, 0xff, 0x8c, + 0x0, 0x0, 0xc, 0xff, 0xff, 0x8c, 0xb4, 0xec, + 0xec, 0xff, 0xff, 0x8c, 0xc4, 0xff, 0xff, 0xff, + 0xff, 0x8c, + + /* U+005E "^" */ + 0x0, 0x0, 0x0, 0x7, 0xea, 0xff, 0xff, 0x9e, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x5f, + 0xff, 0xde, 0xff, 0xf7, 0x13, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0xcc, 0xff, 0x5e, 0xbe, 0xff, + 0x77, 0x0, 0x0, 0x0, 0x0, 0x0, 0x39, 0xff, + 0xeb, 0x7, 0x52, 0xff, 0xe1, 0x3, 0x0, 0x0, + 0x0, 0x0, 0xa6, 0xff, 0x88, 0x0, 0x3, 0xe2, + 0xff, 0x51, 0x0, 0x0, 0x0, 0x19, 0xfa, 0xfd, + 0x20, 0x0, 0x0, 0x7a, 0xff, 0xbe, 0x0, 0x0, + 0x0, 0x80, 0xff, 0xb2, 0x0, 0x0, 0x0, 0x15, + 0xf8, 0xff, 0x2c, 0x0, 0x5, 0xe7, 0xff, 0x47, + 0x0, 0x0, 0x0, 0x0, 0xa2, 0xff, 0x98, 0x0, + 0x5a, 0xff, 0xdb, 0x1, 0x0, 0x0, 0x0, 0x0, + 0x36, 0xff, 0xf4, 0x10, + + /* U+005F "_" */ + 0x28, 0xc8, 0xc8, 0xc8, 0xc8, 0xc8, 0xc8, 0xc8, + 0xc8, 0xc8, 0xc8, 0xc8, 0x3b, + + /* U+0060 "`" */ + 0x32, 0xf0, 0xff, 0x9b, 0x0, 0x0, 0x0, 0x24, + 0xd2, 0xff, 0x86, 0x0, 0x0, 0x0, 0xa, 0xa4, + 0xff, 0x65, + + /* U+0061 "a" */ + 0x0, 0x0, 0x2d, 0xa5, 0xdf, 0xf7, 0xdf, 0xa6, + 0x24, 0x0, 0x0, 0x0, 0x0, 0x31, 0xf3, 0xff, + 0xf9, 0xde, 0xfc, 0xff, 0xf2, 0x26, 0x0, 0x0, + 0x0, 0xaf, 0xff, 0xff, 0x30, 0x0, 0x4f, 0xff, + 0xff, 0x96, 0x0, 0x0, 0x0, 0x3c, 0x44, 0x40, + 0x0, 0x0, 0x2, 0xfc, 0xff, 0xc1, 0x0, 0x0, + 0x0, 0x0, 0x1b, 0x5d, 0x7a, 0x84, 0x84, 0xfa, + 0xff, 0xc8, 0x0, 0x0, 0x0, 0x78, 0xf8, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xc8, 0x0, 0x0, + 0x2b, 0xfe, 0xff, 0xd9, 0x2a, 0x3, 0x1, 0xf8, + 0xff, 0xc8, 0x0, 0x0, 0x63, 0xff, 0xff, 0x7e, + 0x0, 0x0, 0x2b, 0xff, 0xff, 0xc9, 0x0, 0x0, + 0x51, 0xff, 0xff, 0xa4, 0x0, 0xf, 0xc1, 0xfc, + 0xff, 0xe2, 0x1, 0x0, 0x12, 0xec, 0xff, 0xff, + 0xdc, 0xf6, 0xd5, 0x85, 0xff, 0xff, 0xdc, 0x39, + 0x0, 0x35, 0xc0, 0xf2, 0xec, 0x9f, 0x13, 0x14, + 0xc4, 0xf9, 0xdf, 0x2f, + + /* U+0062 "b" */ + 0x98, 0xff, 0xff, 0x24, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x98, 0xff, 0xff, 0x24, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x98, 0xff, + 0xff, 0x24, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x98, 0xff, 0xff, 0x24, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x98, 0xff, 0xff, 0x23, + 0x73, 0xdb, 0xf8, 0xdb, 0x6b, 0x0, 0x0, 0x98, + 0xff, 0xff, 0x99, 0xff, 0xfd, 0xff, 0xff, 0xff, + 0x6b, 0x0, 0x98, 0xff, 0xff, 0xe4, 0x34, 0x5, + 0x5d, 0xfd, 0xff, 0xea, 0x4, 0x98, 0xff, 0xff, + 0x6c, 0x0, 0x0, 0x0, 0xbc, 0xff, 0xff, 0x36, + 0x98, 0xff, 0xff, 0x30, 0x0, 0x0, 0x0, 0x89, + 0xff, 0xff, 0x5a, 0x98, 0xff, 0xff, 0x1d, 0x0, + 0x0, 0x0, 0x79, 0xff, 0xff, 0x64, 0x98, 0xff, + 0xff, 0x2f, 0x0, 0x0, 0x0, 0x8b, 0xff, 0xff, + 0x58, 0x98, 0xff, 0xff, 0x68, 0x0, 0x0, 0x0, + 0xc1, 0xff, 0xff, 0x32, 0x98, 0xff, 0xff, 0xe2, + 0x2b, 0x2, 0x5d, 0xfe, 0xff, 0xe4, 0x2, 0x9d, + 0xff, 0xff, 0xae, 0xff, 0xf9, 0xff, 0xff, 0xff, + 0x5c, 0x0, 0xa9, 0xff, 0xff, 0x11, 0x83, 0xe3, + 0xf9, 0xd3, 0x5c, 0x0, 0x0, + + /* U+0063 "c" */ + 0x0, 0x0, 0xe, 0x84, 0xd7, 0xf7, 0xe8, 0xb9, + 0x41, 0x0, 0x0, 0x0, 0xe, 0xd3, 0xff, 0xff, + 0xf9, 0xfe, 0xff, 0xff, 0x60, 0x0, 0x0, 0x91, + 0xff, 0xff, 0x83, 0x6, 0x15, 0xca, 0xff, 0xf8, + 0x12, 0x2, 0xf0, 0xff, 0xeb, 0x4, 0x0, 0x0, + 0x40, 0xa4, 0xa4, 0x37, 0x24, 0xff, 0xff, 0xbc, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x33, + 0xff, 0xff, 0xad, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x27, 0xff, 0xff, 0xbe, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x4, 0xf4, 0xff, + 0xed, 0x6, 0x0, 0x0, 0x45, 0xd0, 0xd0, 0x5e, + 0x0, 0x9c, 0xff, 0xff, 0x89, 0x7, 0x16, 0xc9, + 0xff, 0xfa, 0x25, 0x0, 0x14, 0xdc, 0xff, 0xff, + 0xf9, 0xfe, 0xff, 0xff, 0x65, 0x0, 0x0, 0x0, + 0x13, 0x8c, 0xdc, 0xf9, 0xf2, 0xbb, 0x3c, 0x0, + 0x0, + + /* U+0064 "d" */ + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0xec, 0xff, 0xd0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0xec, 0xff, 0xd0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xec, 0xff, + 0xd0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0xec, 0xff, 0xd0, 0x0, 0x0, 0x36, 0xc0, + 0xf5, 0xed, 0xa4, 0x15, 0xeb, 0xff, 0xd0, 0x0, + 0x2c, 0xf5, 0xff, 0xff, 0xf8, 0xfd, 0xcc, 0xec, + 0xff, 0xd0, 0x0, 0xae, 0xff, 0xff, 0x8d, 0x6, + 0x11, 0xbc, 0xff, 0xff, 0xd0, 0x3, 0xf7, 0xff, + 0xf1, 0x8, 0x0, 0x0, 0x2d, 0xff, 0xff, 0xd0, + 0x21, 0xff, 0xff, 0xc5, 0x0, 0x0, 0x0, 0x0, + 0xf6, 0xff, 0xd0, 0x2d, 0xff, 0xff, 0xb5, 0x0, + 0x0, 0x0, 0x0, 0xe6, 0xff, 0xd0, 0x22, 0xff, + 0xff, 0xc5, 0x0, 0x0, 0x0, 0x1, 0xf9, 0xff, + 0xd0, 0x4, 0xf9, 0xff, 0xf1, 0x8, 0x0, 0x0, + 0x3b, 0xff, 0xff, 0xd0, 0x0, 0xb5, 0xff, 0xff, + 0x8e, 0x7, 0x19, 0xca, 0xff, 0xff, 0xd0, 0x0, + 0x36, 0xfa, 0xff, 0xff, 0xfa, 0xff, 0xc1, 0xe4, + 0xff, 0xd3, 0x0, 0x0, 0x46, 0xcc, 0xf8, 0xe8, + 0x9a, 0xf, 0xd0, 0xff, 0xe0, + + /* U+0065 "e" */ + 0x0, 0x0, 0x15, 0x8f, 0xdc, 0xf9, 0xee, 0xb2, + 0x31, 0x0, 0x0, 0x0, 0x17, 0xe0, 0xff, 0xfc, + 0xd3, 0xed, 0xff, 0xf5, 0x37, 0x0, 0x0, 0xa0, + 0xff, 0xff, 0x47, 0x0, 0xc, 0xca, 0xff, 0xcb, + 0x0, 0x5, 0xf6, 0xff, 0xcf, 0x0, 0x0, 0x0, + 0x5c, 0xff, 0xff, 0x24, 0x27, 0xff, 0xff, 0xea, + 0xb8, 0xb8, 0xb8, 0xc9, 0xff, 0xff, 0x55, 0x34, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0x69, 0x26, 0xff, 0xff, 0xb5, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x4, 0xf5, 0xff, + 0xde, 0x1, 0x0, 0x0, 0x9, 0xe, 0x0, 0x0, + 0x0, 0xa1, 0xff, 0xff, 0x72, 0x1, 0x8, 0xae, + 0xff, 0xed, 0x13, 0x0, 0x19, 0xe2, 0xff, 0xff, + 0xf2, 0xf5, 0xff, 0xfe, 0x65, 0x0, 0x0, 0x0, + 0x18, 0x94, 0xe0, 0xfa, 0xe9, 0xb8, 0x45, 0x0, + 0x0, + + /* U+0066 "f" */ + 0x0, 0x0, 0x28, 0xb9, 0xef, 0xf7, 0x9f, 0x0, + 0x0, 0xd1, 0xff, 0xff, 0xee, 0xa6, 0x0, 0x10, + 0xff, 0xff, 0xc6, 0x3, 0x0, 0x0, 0x20, 0xff, + 0xff, 0xa0, 0x0, 0x0, 0xa8, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xb4, 0x95, 0xe7, 0xff, 0xff, 0xf5, + 0xe4, 0xa0, 0x0, 0x20, 0xff, 0xff, 0xa0, 0x0, + 0x0, 0x0, 0x20, 0xff, 0xff, 0xa0, 0x0, 0x0, + 0x0, 0x20, 0xff, 0xff, 0xa0, 0x0, 0x0, 0x0, + 0x20, 0xff, 0xff, 0xa0, 0x0, 0x0, 0x0, 0x20, + 0xff, 0xff, 0xa0, 0x0, 0x0, 0x0, 0x20, 0xff, + 0xff, 0xa0, 0x0, 0x0, 0x0, 0x20, 0xff, 0xff, + 0xa0, 0x0, 0x0, 0x0, 0x20, 0xff, 0xff, 0xa0, + 0x0, 0x0, 0x0, 0x20, 0xff, 0xff, 0xa0, 0x0, + 0x0, + + /* U+0067 "g" */ + 0x0, 0x0, 0x39, 0xc0, 0xf5, 0xed, 0xa6, 0x15, + 0xc8, 0xff, 0xda, 0x0, 0x2e, 0xf6, 0xff, 0xff, + 0xfc, 0xff, 0xcb, 0xdd, 0xff, 0xd2, 0x0, 0xb0, + 0xff, 0xff, 0x95, 0xb, 0x1a, 0xca, 0xff, 0xff, + 0xd0, 0x4, 0xf7, 0xff, 0xf3, 0xa, 0x0, 0x0, + 0x38, 0xff, 0xff, 0xd0, 0x22, 0xff, 0xff, 0xc6, + 0x0, 0x0, 0x0, 0x0, 0xf8, 0xff, 0xd0, 0x2d, + 0xff, 0xff, 0xb5, 0x0, 0x0, 0x0, 0x0, 0xe6, + 0xff, 0xd0, 0x22, 0xff, 0xff, 0xc5, 0x0, 0x0, + 0x0, 0x0, 0xf8, 0xff, 0xd0, 0x5, 0xf9, 0xff, + 0xf1, 0x9, 0x0, 0x0, 0x39, 0xff, 0xff, 0xd0, + 0x0, 0xb7, 0xff, 0xff, 0x94, 0xc, 0x1e, 0xca, + 0xff, 0xff, 0xd0, 0x0, 0x38, 0xfa, 0xff, 0xff, + 0xfd, 0xff, 0xc3, 0xe5, 0xff, 0xd0, 0x0, 0x0, + 0x45, 0xcc, 0xf8, 0xe8, 0x9b, 0x10, 0xeb, 0xff, + 0xcb, 0x0, 0x0, 0x0, 0x1, 0x0, 0x0, 0x0, + 0xb, 0xfe, 0xff, 0xb3, 0x0, 0x75, 0xe0, 0xf9, + 0x5a, 0x0, 0x1, 0x8a, 0xff, 0xff, 0x6c, 0x0, + 0x2a, 0xef, 0xff, 0xff, 0xe1, 0xed, 0xff, 0xff, + 0xca, 0x8, 0x0, 0x0, 0x27, 0x9b, 0xde, 0xf7, + 0xf5, 0xd0, 0x7d, 0x9, 0x0, + + /* U+0068 "h" */ + 0x98, 0xff, 0xff, 0x24, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x98, 0xff, 0xff, 0x24, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x98, 0xff, 0xff, 0x24, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x98, 0xff, + 0xff, 0x24, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x98, 0xff, 0xff, 0x21, 0x60, 0xd6, 0xf9, 0xde, + 0x6c, 0x0, 0x98, 0xff, 0xff, 0x7a, 0xff, 0xff, + 0xff, 0xff, 0xff, 0x51, 0x98, 0xff, 0xff, 0xea, + 0x62, 0x2b, 0x99, 0xff, 0xff, 0xc0, 0x98, 0xff, + 0xff, 0x80, 0x0, 0x0, 0x8, 0xf2, 0xff, 0xe7, + 0x98, 0xff, 0xff, 0x39, 0x0, 0x0, 0x0, 0xcf, + 0xff, 0xfb, 0x98, 0xff, 0xff, 0x24, 0x0, 0x0, + 0x0, 0xc4, 0xff, 0xfc, 0x98, 0xff, 0xff, 0x24, + 0x0, 0x0, 0x0, 0xc4, 0xff, 0xfc, 0x98, 0xff, + 0xff, 0x24, 0x0, 0x0, 0x0, 0xc4, 0xff, 0xfc, + 0x98, 0xff, 0xff, 0x24, 0x0, 0x0, 0x0, 0xc4, + 0xff, 0xfc, 0x98, 0xff, 0xff, 0x24, 0x0, 0x0, + 0x0, 0xc4, 0xff, 0xfc, 0x98, 0xff, 0xff, 0x24, + 0x0, 0x0, 0x0, 0xc4, 0xff, 0xfc, + + /* U+0069 "i" */ + 0x98, 0xff, 0xff, 0x24, 0x98, 0xff, 0xff, 0x24, + 0x9, 0x10, 0x10, 0x2, 0x0, 0x0, 0x0, 0x0, + 0x98, 0xff, 0xff, 0x24, 0x98, 0xff, 0xff, 0x24, + 0x98, 0xff, 0xff, 0x24, 0x98, 0xff, 0xff, 0x24, + 0x98, 0xff, 0xff, 0x24, 0x98, 0xff, 0xff, 0x24, + 0x98, 0xff, 0xff, 0x24, 0x98, 0xff, 0xff, 0x24, + 0x98, 0xff, 0xff, 0x24, 0x98, 0xff, 0xff, 0x24, + 0x98, 0xff, 0xff, 0x24, + + /* U+006A "j" */ + 0x0, 0x0, 0x98, 0xff, 0xff, 0x28, 0x0, 0x0, + 0x98, 0xff, 0xff, 0x28, 0x0, 0x0, 0x9, 0x10, + 0x10, 0x2, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x98, 0xff, 0xff, 0x28, 0x0, 0x0, + 0x98, 0xff, 0xff, 0x28, 0x0, 0x0, 0x98, 0xff, + 0xff, 0x28, 0x0, 0x0, 0x98, 0xff, 0xff, 0x28, + 0x0, 0x0, 0x98, 0xff, 0xff, 0x28, 0x0, 0x0, + 0x98, 0xff, 0xff, 0x28, 0x0, 0x0, 0x98, 0xff, + 0xff, 0x28, 0x0, 0x0, 0x98, 0xff, 0xff, 0x28, + 0x0, 0x0, 0x98, 0xff, 0xff, 0x28, 0x0, 0x0, + 0x98, 0xff, 0xff, 0x28, 0x0, 0x0, 0x98, 0xff, + 0xff, 0x28, 0x0, 0x0, 0x9c, 0xff, 0xff, 0x28, + 0x6, 0x19, 0xd1, 0xff, 0xff, 0x16, 0x50, 0xff, + 0xff, 0xff, 0xd6, 0x0, 0x48, 0xf7, 0xf6, 0xc5, + 0x2e, 0x0, + + /* U+006B "k" */ + 0x98, 0xff, 0xff, 0x24, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x98, 0xff, 0xff, 0x24, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x98, 0xff, + 0xff, 0x24, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x98, 0xff, 0xff, 0x24, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x98, 0xff, 0xff, 0x24, + 0x0, 0x0, 0x7e, 0xff, 0xff, 0x6d, 0x0, 0x98, + 0xff, 0xff, 0x24, 0x0, 0x54, 0xfe, 0xff, 0x8f, + 0x0, 0x0, 0x98, 0xff, 0xff, 0x24, 0x32, 0xf5, + 0xff, 0xaf, 0x2, 0x0, 0x0, 0x98, 0xff, 0xff, + 0x3d, 0xe3, 0xff, 0xca, 0xa, 0x0, 0x0, 0x0, + 0x98, 0xff, 0xff, 0xe0, 0xff, 0xff, 0x53, 0x0, + 0x0, 0x0, 0x0, 0x98, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xd6, 0x5, 0x0, 0x0, 0x0, 0x98, 0xff, + 0xff, 0x9f, 0x74, 0xff, 0xff, 0x74, 0x0, 0x0, + 0x0, 0x98, 0xff, 0xff, 0x24, 0x3, 0xd5, 0xff, + 0xf2, 0x19, 0x0, 0x0, 0x98, 0xff, 0xff, 0x24, + 0x0, 0x47, 0xff, 0xff, 0xa5, 0x0, 0x0, 0x98, + 0xff, 0xff, 0x24, 0x0, 0x0, 0xb6, 0xff, 0xff, + 0x3e, 0x0, 0x98, 0xff, 0xff, 0x24, 0x0, 0x0, + 0x29, 0xfb, 0xff, 0xd3, 0x4, + + /* U+006C "l" */ + 0x98, 0xff, 0xff, 0x24, 0x98, 0xff, 0xff, 0x24, + 0x98, 0xff, 0xff, 0x24, 0x98, 0xff, 0xff, 0x24, + 0x98, 0xff, 0xff, 0x24, 0x98, 0xff, 0xff, 0x24, + 0x98, 0xff, 0xff, 0x24, 0x98, 0xff, 0xff, 0x24, + 0x98, 0xff, 0xff, 0x24, 0x98, 0xff, 0xff, 0x24, + 0x98, 0xff, 0xff, 0x24, 0x98, 0xff, 0xff, 0x24, + 0x98, 0xff, 0xff, 0x24, 0x98, 0xff, 0xff, 0x24, + 0x98, 0xff, 0xff, 0x24, + + /* U+006D "m" */ + 0xa8, 0xff, 0xf7, 0x3, 0x86, 0xe7, 0xf4, 0xbe, + 0x28, 0x0, 0x75, 0xe0, 0xf9, 0xcc, 0x37, 0x0, + 0x9c, 0xff, 0xff, 0x8d, 0xfb, 0xf9, 0xff, 0xff, + 0xd7, 0x6d, 0xfe, 0xf5, 0xff, 0xff, 0xe7, 0x7, + 0x98, 0xff, 0xff, 0xd6, 0x16, 0x13, 0xdd, 0xff, + 0xff, 0xec, 0x2e, 0x5, 0xba, 0xff, 0xff, 0x55, + 0x98, 0xff, 0xff, 0x63, 0x0, 0x0, 0x84, 0xff, + 0xff, 0x97, 0x0, 0x0, 0x53, 0xff, 0xff, 0x78, + 0x98, 0xff, 0xff, 0x32, 0x0, 0x0, 0x66, 0xff, + 0xff, 0x67, 0x0, 0x0, 0x36, 0xff, 0xff, 0x8b, + 0x98, 0xff, 0xff, 0x24, 0x0, 0x0, 0x60, 0xff, + 0xff, 0x58, 0x0, 0x0, 0x30, 0xff, 0xff, 0x8c, + 0x98, 0xff, 0xff, 0x24, 0x0, 0x0, 0x60, 0xff, + 0xff, 0x58, 0x0, 0x0, 0x30, 0xff, 0xff, 0x8c, + 0x98, 0xff, 0xff, 0x24, 0x0, 0x0, 0x60, 0xff, + 0xff, 0x58, 0x0, 0x0, 0x30, 0xff, 0xff, 0x8c, + 0x98, 0xff, 0xff, 0x24, 0x0, 0x0, 0x60, 0xff, + 0xff, 0x58, 0x0, 0x0, 0x30, 0xff, 0xff, 0x8c, + 0x98, 0xff, 0xff, 0x24, 0x0, 0x0, 0x60, 0xff, + 0xff, 0x58, 0x0, 0x0, 0x30, 0xff, 0xff, 0x8c, + 0x98, 0xff, 0xff, 0x24, 0x0, 0x0, 0x60, 0xff, + 0xff, 0x58, 0x0, 0x0, 0x30, 0xff, 0xff, 0x8c, + + /* U+006E "n" */ + 0xa8, 0xff, 0xf7, 0x0, 0x6e, 0xda, 0xf9, 0xde, + 0x6c, 0x0, 0x9c, 0xff, 0xff, 0x81, 0xff, 0xf3, + 0xff, 0xff, 0xff, 0x50, 0x98, 0xff, 0xff, 0xe3, + 0x2c, 0x0, 0x6b, 0xff, 0xff, 0xbf, 0x98, 0xff, + 0xff, 0x6e, 0x0, 0x0, 0x2, 0xeb, 0xff, 0xe6, + 0x98, 0xff, 0xff, 0x35, 0x0, 0x0, 0x0, 0xcc, + 0xff, 0xfb, 0x98, 0xff, 0xff, 0x24, 0x0, 0x0, + 0x0, 0xc4, 0xff, 0xfc, 0x98, 0xff, 0xff, 0x24, + 0x0, 0x0, 0x0, 0xc4, 0xff, 0xfc, 0x98, 0xff, + 0xff, 0x24, 0x0, 0x0, 0x0, 0xc4, 0xff, 0xfc, + 0x98, 0xff, 0xff, 0x24, 0x0, 0x0, 0x0, 0xc4, + 0xff, 0xfc, 0x98, 0xff, 0xff, 0x24, 0x0, 0x0, + 0x0, 0xc4, 0xff, 0xfc, 0x98, 0xff, 0xff, 0x24, + 0x0, 0x0, 0x0, 0xc4, 0xff, 0xfc, + + /* U+006F "o" */ + 0x0, 0x0, 0x5, 0x6c, 0xc8, 0xf2, 0xf8, 0xdc, + 0x96, 0x1e, 0x0, 0x0, 0x0, 0x8, 0xc1, 0xff, + 0xff, 0xfe, 0xf9, 0xff, 0xff, 0xed, 0x2e, 0x0, + 0x0, 0x85, 0xff, 0xff, 0xa3, 0xf, 0x5, 0x65, + 0xfe, 0xff, 0xcd, 0x0, 0x1, 0xec, 0xff, 0xf1, + 0xc, 0x0, 0x0, 0x0, 0xb6, 0xff, 0xff, 0x2e, + 0x23, 0xff, 0xff, 0xc1, 0x0, 0x0, 0x0, 0x0, + 0x80, 0xff, 0xff, 0x5d, 0x33, 0xff, 0xff, 0xae, + 0x0, 0x0, 0x0, 0x0, 0x75, 0xff, 0xff, 0x6b, + 0x23, 0xff, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x0, + 0x8b, 0xff, 0xff, 0x5a, 0x2, 0xed, 0xff, 0xf2, + 0xc, 0x0, 0x0, 0x0, 0xc8, 0xff, 0xff, 0x26, + 0x0, 0x87, 0xff, 0xff, 0x9f, 0xd, 0x8, 0x75, + 0xff, 0xff, 0xbd, 0x0, 0x0, 0x8, 0xc5, 0xff, + 0xff, 0xfd, 0xfb, 0xff, 0xff, 0xe1, 0x1f, 0x0, + 0x0, 0x0, 0x7, 0x75, 0xcf, 0xf5, 0xf7, 0xd7, + 0x88, 0x13, 0x0, 0x0, + + /* U+0070 "p" */ + 0xa9, 0xff, 0xff, 0xc, 0x79, 0xdd, 0xf8, 0xda, + 0x68, 0x0, 0x0, 0x9d, 0xff, 0xff, 0x9d, 0xff, + 0xfd, 0xff, 0xff, 0xff, 0x67, 0x0, 0x98, 0xff, + 0xff, 0xe8, 0x37, 0x6, 0x63, 0xfe, 0xff, 0xe9, + 0x3, 0x98, 0xff, 0xff, 0x6f, 0x0, 0x0, 0x0, + 0xc0, 0xff, 0xff, 0x36, 0x98, 0xff, 0xff, 0x30, + 0x0, 0x0, 0x0, 0x8a, 0xff, 0xff, 0x59, 0x98, + 0xff, 0xff, 0x1d, 0x0, 0x0, 0x0, 0x7a, 0xff, + 0xff, 0x64, 0x98, 0xff, 0xff, 0x2f, 0x0, 0x0, + 0x0, 0x8c, 0xff, 0xff, 0x58, 0x98, 0xff, 0xff, + 0x68, 0x0, 0x0, 0x0, 0xc2, 0xff, 0xff, 0x32, + 0x98, 0xff, 0xff, 0xe2, 0x2c, 0x2, 0x5e, 0xfe, + 0xff, 0xe4, 0x2, 0x98, 0xff, 0xff, 0xb1, 0xff, + 0xf9, 0xff, 0xff, 0xff, 0x5b, 0x0, 0x98, 0xff, + 0xff, 0x27, 0x81, 0xe2, 0xf9, 0xd3, 0x5a, 0x0, + 0x0, 0x98, 0xff, 0xff, 0x24, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x98, 0xff, 0xff, 0x24, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x98, + 0xff, 0xff, 0x24, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x98, 0xff, 0xff, 0x24, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, + + /* U+0071 "q" */ + 0x0, 0x0, 0x35, 0xbe, 0xf5, 0xed, 0xa6, 0x15, + 0xd4, 0xff, 0xda, 0x0, 0x2c, 0xf4, 0xff, 0xff, + 0xfc, 0xff, 0xcb, 0xe7, 0xff, 0xd2, 0x0, 0xae, + 0xff, 0xff, 0x95, 0xb, 0x18, 0xc5, 0xff, 0xff, + 0xd0, 0x3, 0xf7, 0xff, 0xf3, 0xa, 0x0, 0x0, + 0x33, 0xff, 0xff, 0xd0, 0x21, 0xff, 0xff, 0xc6, + 0x0, 0x0, 0x0, 0x0, 0xf8, 0xff, 0xd0, 0x2c, + 0xff, 0xff, 0xb5, 0x0, 0x0, 0x0, 0x0, 0xe6, + 0xff, 0xd0, 0x22, 0xff, 0xff, 0xc5, 0x0, 0x0, + 0x0, 0x0, 0xf9, 0xff, 0xd0, 0x5, 0xf9, 0xff, + 0xf1, 0x8, 0x0, 0x0, 0x38, 0xff, 0xff, 0xd0, + 0x0, 0xb7, 0xff, 0xff, 0x8f, 0x8, 0x18, 0xc8, + 0xff, 0xff, 0xd0, 0x0, 0x38, 0xfb, 0xff, 0xff, + 0xfa, 0xfe, 0xca, 0xe3, 0xff, 0xd0, 0x0, 0x0, + 0x47, 0xcd, 0xf8, 0xe9, 0x9d, 0x12, 0xe6, 0xff, + 0xd0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0xe8, 0xff, 0xd0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0xe8, 0xff, 0xd0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xe8, + 0xff, 0xd0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0xe8, 0xff, 0xd0, + + /* U+0072 "r" */ + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x4, 0xa8, + 0xff, 0xf7, 0xe, 0xaf, 0xf6, 0x7c, 0x9c, 0xff, + 0xff, 0x94, 0xff, 0xff, 0x7c, 0x98, 0xff, 0xff, + 0xed, 0x5f, 0x2a, 0x1d, 0x98, 0xff, 0xff, 0x82, + 0x0, 0x0, 0x0, 0x98, 0xff, 0xff, 0x3d, 0x0, + 0x0, 0x0, 0x98, 0xff, 0xff, 0x27, 0x0, 0x0, + 0x0, 0x98, 0xff, 0xff, 0x24, 0x0, 0x0, 0x0, + 0x98, 0xff, 0xff, 0x24, 0x0, 0x0, 0x0, 0x98, + 0xff, 0xff, 0x24, 0x0, 0x0, 0x0, 0x98, 0xff, + 0xff, 0x24, 0x0, 0x0, 0x0, 0x98, 0xff, 0xff, + 0x24, 0x0, 0x0, 0x0, + + /* U+0073 "s" */ + 0x0, 0x0, 0x3d, 0xaf, 0xe0, 0xf8, 0xe6, 0xb6, + 0x45, 0x0, 0x0, 0x0, 0x55, 0xfe, 0xff, 0xf9, + 0xe5, 0xf7, 0xff, 0xfe, 0x5d, 0x0, 0x0, 0xc6, + 0xff, 0xcf, 0xc, 0x0, 0x8, 0xb2, 0xff, 0xd6, + 0x1, 0x0, 0xd5, 0xff, 0xd7, 0x1a, 0x0, 0x0, + 0xc, 0xd, 0x0, 0x0, 0x0, 0x8c, 0xff, 0xff, + 0xfd, 0xd0, 0x98, 0x56, 0xb, 0x0, 0x0, 0x0, + 0x6, 0x94, 0xf9, 0xff, 0xff, 0xff, 0xff, 0xed, + 0x51, 0x0, 0x0, 0x0, 0x0, 0xf, 0x51, 0x8a, + 0xc8, 0xff, 0xff, 0xf7, 0x12, 0x0, 0x3, 0x24, + 0x9, 0x0, 0x0, 0x0, 0x69, 0xff, 0xff, 0x42, + 0x1b, 0xf7, 0xff, 0x86, 0x3, 0x0, 0x1, 0x7b, + 0xff, 0xff, 0x2c, 0x0, 0x94, 0xff, 0xff, 0xf2, + 0xdf, 0xf0, 0xff, 0xff, 0xaa, 0x0, 0x0, 0x1, + 0x65, 0xc1, 0xe7, 0xf9, 0xe6, 0xc1, 0x5e, 0x3, + 0x0, + + /* U+0074 "t" */ + 0x0, 0x0, 0x41, 0x80, 0x26, 0x0, 0x0, 0x0, + 0x0, 0xc4, 0xff, 0x4c, 0x0, 0x0, 0x0, 0x1d, + 0xfe, 0xff, 0x4c, 0x0, 0x0, 0xc4, 0xff, 0xff, + 0xff, 0xff, 0xff, 0x4c, 0xae, 0xef, 0xff, 0xff, + 0xec, 0xe4, 0x43, 0x0, 0x6c, 0xff, 0xff, 0x4c, + 0x0, 0x0, 0x0, 0x6c, 0xff, 0xff, 0x4c, 0x0, + 0x0, 0x0, 0x6c, 0xff, 0xff, 0x4c, 0x0, 0x0, + 0x0, 0x6c, 0xff, 0xff, 0x4c, 0x0, 0x0, 0x0, + 0x6c, 0xff, 0xff, 0x4c, 0x0, 0x0, 0x0, 0x6c, + 0xff, 0xff, 0x4f, 0x0, 0x0, 0x0, 0x63, 0xff, + 0xff, 0x90, 0x0, 0x4, 0x0, 0x32, 0xff, 0xff, + 0xff, 0xf9, 0x6c, 0x0, 0x0, 0x77, 0xe8, 0xf8, + 0xdd, 0x4c, + + /* U+0075 "u" */ + 0xc4, 0xff, 0xfc, 0x0, 0x0, 0x0, 0x0, 0xec, + 0xff, 0xd0, 0xc4, 0xff, 0xfc, 0x0, 0x0, 0x0, + 0x0, 0xec, 0xff, 0xd0, 0xc4, 0xff, 0xfc, 0x0, + 0x0, 0x0, 0x0, 0xec, 0xff, 0xd0, 0xc4, 0xff, + 0xfc, 0x0, 0x0, 0x0, 0x0, 0xec, 0xff, 0xd0, + 0xc4, 0xff, 0xfc, 0x0, 0x0, 0x0, 0x0, 0xec, + 0xff, 0xd0, 0xc4, 0xff, 0xfc, 0x0, 0x0, 0x0, + 0x0, 0xec, 0xff, 0xd0, 0xc3, 0xff, 0xfe, 0x4, + 0x0, 0x0, 0x3, 0xfb, 0xff, 0xd0, 0xb0, 0xff, + 0xff, 0x25, 0x0, 0x0, 0x38, 0xff, 0xff, 0xd0, + 0x89, 0xff, 0xff, 0xa1, 0x5, 0x16, 0xca, 0xfc, + 0xff, 0xd0, 0x21, 0xfa, 0xff, 0xff, 0xf8, 0xfe, + 0xb0, 0xd1, 0xff, 0xd2, 0x0, 0x4a, 0xcf, 0xf9, + 0xe6, 0x8f, 0x8, 0xc1, 0xff, 0xdf, + + /* U+0076 "v" */ + 0xc0, 0xff, 0xff, 0x22, 0x0, 0x0, 0x0, 0xa, + 0xf6, 0xff, 0xdd, 0x0, 0x68, 0xff, 0xff, 0x6e, + 0x0, 0x0, 0x0, 0x4f, 0xff, 0xff, 0x83, 0x0, + 0x14, 0xfb, 0xff, 0xba, 0x0, 0x0, 0x0, 0x9f, + 0xff, 0xff, 0x28, 0x0, 0x0, 0xb8, 0xff, 0xf9, + 0xc, 0x0, 0x3, 0xec, 0xff, 0xcd, 0x0, 0x0, + 0x0, 0x60, 0xff, 0xff, 0x52, 0x0, 0x3e, 0xff, + 0xff, 0x72, 0x0, 0x0, 0x0, 0xf, 0xf8, 0xff, + 0x9f, 0x0, 0x8d, 0xff, 0xfd, 0x1a, 0x0, 0x0, + 0x0, 0x0, 0xb0, 0xff, 0xe9, 0x1, 0xdb, 0xff, + 0xbc, 0x0, 0x0, 0x0, 0x0, 0x0, 0x58, 0xff, + 0xff, 0x59, 0xff, 0xff, 0x61, 0x0, 0x0, 0x0, + 0x0, 0x0, 0xb, 0xf5, 0xff, 0xdf, 0xff, 0xf7, + 0xe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xa8, + 0xff, 0xff, 0xff, 0xab, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x50, 0xff, 0xff, 0xff, 0x51, + 0x0, 0x0, 0x0, 0x0, + + /* U+0077 "w" */ + 0x2, 0xee, 0xff, 0x9e, 0x0, 0x0, 0x0, 0xd5, + 0xff, 0xff, 0x5c, 0x0, 0x0, 0xd, 0xfd, 0xff, + 0x77, 0x0, 0xb0, 0xff, 0xd3, 0x0, 0x0, 0x17, + 0xff, 0xff, 0xff, 0x9c, 0x0, 0x0, 0x42, 0xff, + 0xff, 0x36, 0x0, 0x70, 0xff, 0xfc, 0xb, 0x0, + 0x59, 0xff, 0xce, 0xff, 0xdc, 0x0, 0x0, 0x79, + 0xff, 0xf1, 0x3, 0x0, 0x30, 0xff, 0xff, 0x3e, + 0x0, 0x9a, 0xff, 0x76, 0xee, 0xff, 0x1d, 0x0, + 0xb0, 0xff, 0xb5, 0x0, 0x0, 0x2, 0xee, 0xff, + 0x73, 0x0, 0xdc, 0xff, 0x3b, 0xb6, 0xff, 0x5d, + 0x0, 0xe7, 0xff, 0x74, 0x0, 0x0, 0x0, 0xb0, + 0xff, 0xa9, 0x1e, 0xff, 0xf4, 0x5, 0x77, 0xff, + 0x9e, 0x1e, 0xff, 0xff, 0x33, 0x0, 0x0, 0x0, + 0x70, 0xff, 0xde, 0x5d, 0xff, 0xb8, 0x0, 0x36, + 0xff, 0xdd, 0x55, 0xff, 0xef, 0x2, 0x0, 0x0, + 0x0, 0x30, 0xff, 0xff, 0xa5, 0xff, 0x77, 0x0, + 0x3, 0xf2, 0xff, 0xa2, 0xff, 0xb2, 0x0, 0x0, + 0x0, 0x0, 0x2, 0xee, 0xff, 0xf8, 0xff, 0x36, + 0x0, 0x0, 0xb5, 0xff, 0xf7, 0xff, 0x71, 0x0, + 0x0, 0x0, 0x0, 0x0, 0xb0, 0xff, 0xff, 0xf1, + 0x3, 0x0, 0x0, 0x75, 0xff, 0xff, 0xff, 0x30, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x70, 0xff, 0xff, + 0xb4, 0x0, 0x0, 0x0, 0x34, 0xff, 0xff, 0xee, + 0x2, 0x0, 0x0, + + /* U+0078 "x" */ + 0x57, 0xff, 0xff, 0x98, 0x0, 0x0, 0x0, 0x87, + 0xff, 0xff, 0x6a, 0x0, 0xa6, 0xff, 0xfe, 0x3a, + 0x0, 0x2b, 0xfa, 0xff, 0xb7, 0x0, 0x0, 0x10, + 0xe3, 0xff, 0xd3, 0x6, 0xc3, 0xff, 0xec, 0x19, + 0x0, 0x0, 0x0, 0x44, 0xfe, 0xff, 0xc4, 0xff, + 0xff, 0x54, 0x0, 0x0, 0x0, 0x0, 0x0, 0x91, + 0xff, 0xff, 0xff, 0xa1, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x32, 0xff, 0xff, 0xff, 0x46, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x4, 0xca, 0xff, 0xff, + 0xff, 0xdb, 0xa, 0x0, 0x0, 0x0, 0x0, 0x7c, + 0xff, 0xff, 0x6c, 0xfb, 0xff, 0x95, 0x0, 0x0, + 0x0, 0x2f, 0xfa, 0xff, 0x9e, 0x0, 0x8a, 0xff, + 0xfe, 0x45, 0x0, 0x6, 0xd1, 0xff, 0xeb, 0x13, + 0x0, 0xb, 0xe1, 0xff, 0xe3, 0x10, 0x85, 0xff, + 0xff, 0x5f, 0x0, 0x0, 0x0, 0x4f, 0xff, 0xff, + 0xa4, + + /* U+0079 "y" */ + 0xa6, 0xff, 0xff, 0x3a, 0x0, 0x0, 0x0, 0xb, + 0xf7, 0xff, 0xd4, 0x0, 0x41, 0xff, 0xff, 0x8e, + 0x0, 0x0, 0x0, 0x52, 0xff, 0xff, 0x76, 0x0, + 0x1, 0xdb, 0xff, 0xe1, 0x0, 0x0, 0x0, 0xa1, + 0xff, 0xfd, 0x1a, 0x0, 0x0, 0x78, 0xff, 0xff, + 0x36, 0x0, 0x3, 0xec, 0xff, 0xba, 0x0, 0x0, + 0x0, 0x18, 0xfb, 0xff, 0x8b, 0x0, 0x3f, 0xff, + 0xff, 0x5c, 0x0, 0x0, 0x0, 0x0, 0xaf, 0xff, + 0xe0, 0x0, 0x89, 0xff, 0xf3, 0xa, 0x0, 0x0, + 0x0, 0x0, 0x4a, 0xff, 0xff, 0x2e, 0xd0, 0xff, + 0x9f, 0x0, 0x0, 0x0, 0x0, 0x0, 0x2, 0xe3, + 0xff, 0x8d, 0xfe, 0xff, 0x41, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x81, 0xff, 0xf7, 0xff, 0xe1, + 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1f, + 0xfd, 0xff, 0xff, 0x85, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0xc4, 0xff, 0xff, 0x27, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x11, + 0xf3, 0xff, 0xc4, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x16, 0x26, 0xb6, 0xff, 0xff, 0x4a, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0xf4, 0xff, 0xff, + 0xff, 0xab, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0xe1, 0xfc, 0xe3, 0x88, 0x8, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, + + /* U+007A "z" */ + 0x0, 0xcc, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xcc, 0x0, 0x0, 0xcc, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xcc, 0x0, 0x0, 0x6, 0x8, 0x8, + 0x8, 0x93, 0xff, 0xff, 0x73, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x45, 0xfe, 0xff, 0xbb, 0x1, 0x0, + 0x0, 0x0, 0x0, 0x14, 0xe6, 0xff, 0xec, 0x1a, + 0x0, 0x0, 0x0, 0x0, 0x0, 0xb1, 0xff, 0xff, + 0x51, 0x0, 0x0, 0x0, 0x0, 0x0, 0x69, 0xff, + 0xff, 0x9a, 0x0, 0x0, 0x0, 0x0, 0x0, 0x29, + 0xf6, 0xff, 0xd9, 0xa, 0x0, 0x0, 0x0, 0x0, + 0x6, 0xcf, 0xff, 0xfc, 0x3f, 0xc, 0xc, 0xc, + 0xc, 0x3, 0x33, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0x48, 0x34, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0x48, + + /* U+007B "{" */ + 0x0, 0x0, 0x0, 0x59, 0xd8, 0xfc, 0xff, 0x5c, + 0x0, 0x0, 0x29, 0xfc, 0xff, 0xff, 0xf0, 0x51, + 0x0, 0x0, 0x63, 0xff, 0xff, 0x85, 0x0, 0x0, + 0x0, 0x0, 0x70, 0xff, 0xff, 0x2a, 0x0, 0x0, + 0x0, 0x0, 0x70, 0xff, 0xff, 0x20, 0x0, 0x0, + 0x0, 0x0, 0x70, 0xff, 0xff, 0x20, 0x0, 0x0, + 0x0, 0x0, 0x89, 0xff, 0xff, 0x1d, 0x0, 0x0, + 0x7, 0x3f, 0xeb, 0xff, 0xe8, 0x3, 0x0, 0x0, + 0xb0, 0xff, 0xff, 0xd3, 0x3b, 0x0, 0x0, 0x0, + 0xb0, 0xff, 0xff, 0xce, 0x28, 0x0, 0x0, 0x0, + 0xb, 0x4d, 0xf3, 0xff, 0xd4, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x94, 0xff, 0xff, 0x16, 0x0, 0x0, + 0x0, 0x0, 0x72, 0xff, 0xff, 0x20, 0x0, 0x0, + 0x0, 0x0, 0x70, 0xff, 0xff, 0x20, 0x0, 0x0, + 0x0, 0x0, 0x70, 0xff, 0xff, 0x20, 0x0, 0x0, + 0x0, 0x0, 0x6f, 0xff, 0xff, 0x30, 0x0, 0x0, + 0x0, 0x0, 0x58, 0xff, 0xff, 0x94, 0x2, 0x0, + 0x0, 0x0, 0x17, 0xf3, 0xff, 0xff, 0xf7, 0x54, + 0x0, 0x0, 0x0, 0x44, 0xd1, 0xfb, 0xff, 0x5c, + + /* U+007C "|" */ + 0x7c, 0xff, 0xff, 0x14, 0x7c, 0xff, 0xff, 0x14, + 0x7c, 0xff, 0xff, 0x14, 0x7c, 0xff, 0xff, 0x14, + 0x7c, 0xff, 0xff, 0x14, 0x7c, 0xff, 0xff, 0x14, + 0x7c, 0xff, 0xff, 0x14, 0x7c, 0xff, 0xff, 0x14, + 0x7c, 0xff, 0xff, 0x14, 0x7c, 0xff, 0xff, 0x14, + 0x7c, 0xff, 0xff, 0x14, 0x7c, 0xff, 0xff, 0x14, + 0x7c, 0xff, 0xff, 0x14, 0x7c, 0xff, 0xff, 0x14, + 0x7c, 0xff, 0xff, 0x14, 0x7c, 0xff, 0xff, 0x14, + 0x7c, 0xff, 0xff, 0x14, 0x7c, 0xff, 0xff, 0x14, + 0x7c, 0xff, 0xff, 0x14, + + /* U+007D "}" */ + 0x94, 0xff, 0xf7, 0xc9, 0x38, 0x0, 0x0, 0x0, + 0x83, 0xf6, 0xff, 0xff, 0xe7, 0x6, 0x0, 0x0, + 0x0, 0x6, 0xb7, 0xff, 0xff, 0x2b, 0x0, 0x0, + 0x0, 0x0, 0x62, 0xff, 0xff, 0x38, 0x0, 0x0, + 0x0, 0x0, 0x58, 0xff, 0xff, 0x38, 0x0, 0x0, + 0x0, 0x0, 0x58, 0xff, 0xff, 0x38, 0x0, 0x0, + 0x0, 0x0, 0x55, 0xff, 0xff, 0x50, 0x0, 0x0, + 0x0, 0x0, 0x25, 0xfc, 0xff, 0xcc, 0x2b, 0x3, + 0x0, 0x0, 0x0, 0x5d, 0xe2, 0xff, 0xff, 0x7c, + 0x0, 0x0, 0x0, 0x50, 0xe5, 0xff, 0xff, 0x7c, + 0x0, 0x0, 0x18, 0xf7, 0xff, 0xd9, 0x36, 0x6, + 0x0, 0x0, 0x4f, 0xff, 0xff, 0x5c, 0x0, 0x0, + 0x0, 0x0, 0x58, 0xff, 0xff, 0x3a, 0x0, 0x0, + 0x0, 0x0, 0x58, 0xff, 0xff, 0x38, 0x0, 0x0, + 0x0, 0x0, 0x58, 0xff, 0xff, 0x38, 0x0, 0x0, + 0x0, 0x0, 0x69, 0xff, 0xff, 0x37, 0x0, 0x0, + 0x0, 0xb, 0xc3, 0xff, 0xff, 0x1f, 0x0, 0x0, + 0x88, 0xfb, 0xff, 0xff, 0xd1, 0x1, 0x0, 0x0, + 0x94, 0xff, 0xf6, 0xbd, 0x26, 0x0, 0x0, 0x0, + + /* U+007E "~" */ + 0x0, 0x0, 0x0, 0xc, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x14, 0xa8, 0xf4, 0xff, 0xf5, + 0xbd, 0x75, 0x33, 0x18, 0x3b, 0x93, 0x34, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xec, 0x25, 0x6e, 0x1d, 0x8, 0x2c, 0x6d, 0xb7, + 0xe7, 0xfb, 0xdf, 0x77 +}; + + +/*--------------------- + * 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 = 89, .box_w = 0, .box_h = 0, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 0, .adv_w = 107, .box_w = 4, .box_h = 14, .ofs_x = 1, .ofs_y = 0}, + {.bitmap_index = 56, .adv_w = 152, .box_w = 8, .box_h = 6, .ofs_x = 1, .ofs_y = 8}, + {.bitmap_index = 104, .adv_w = 178, .box_w = 11, .box_h = 14, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 258, .adv_w = 178, .box_w = 11, .box_h = 17, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 445, .adv_w = 284, .box_w = 18, .box_h = 14, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 697, .adv_w = 231, .box_w = 14, .box_h = 14, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 893, .adv_w = 76, .box_w = 3, .box_h = 6, .ofs_x = 1, .ofs_y = 8}, + {.bitmap_index = 911, .adv_w = 107, .box_w = 6, .box_h = 19, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 1025, .adv_w = 107, .box_w = 6, .box_h = 19, .ofs_x = 0, .ofs_y = -4}, + {.bitmap_index = 1139, .adv_w = 124, .box_w = 8, .box_h = 8, .ofs_x = 0, .ofs_y = 6}, + {.bitmap_index = 1203, .adv_w = 187, .box_w = 11, .box_h = 11, .ofs_x = 0, .ofs_y = 2}, + {.bitmap_index = 1324, .adv_w = 89, .box_w = 4, .box_h = 7, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 1352, .adv_w = 107, .box_w = 6, .box_h = 3, .ofs_x = 0, .ofs_y = 4}, + {.bitmap_index = 1370, .adv_w = 89, .box_w = 4, .box_h = 4, .ofs_x = 1, .ofs_y = 0}, + {.bitmap_index = 1386, .adv_w = 89, .box_w = 6, .box_h = 15, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 1476, .adv_w = 178, .box_w = 11, .box_h = 14, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 1630, .adv_w = 178, .box_w = 10, .box_h = 14, .ofs_x = 1, .ofs_y = 0}, + {.bitmap_index = 1770, .adv_w = 178, .box_w = 11, .box_h = 14, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 1924, .adv_w = 178, .box_w = 11, .box_h = 14, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 2078, .adv_w = 178, .box_w = 12, .box_h = 14, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 2246, .adv_w = 178, .box_w = 11, .box_h = 14, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 2400, .adv_w = 178, .box_w = 11, .box_h = 14, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 2554, .adv_w = 178, .box_w = 11, .box_h = 14, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 2708, .adv_w = 178, .box_w = 11, .box_h = 14, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 2862, .adv_w = 178, .box_w = 11, .box_h = 14, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 3016, .adv_w = 107, .box_w = 4, .box_h = 11, .ofs_x = 1, .ofs_y = 0}, + {.bitmap_index = 3060, .adv_w = 107, .box_w = 4, .box_h = 14, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 3116, .adv_w = 187, .box_w = 11, .box_h = 12, .ofs_x = 0, .ofs_y = 1}, + {.bitmap_index = 3248, .adv_w = 187, .box_w = 11, .box_h = 8, .ofs_x = 0, .ofs_y = 3}, + {.bitmap_index = 3336, .adv_w = 187, .box_w = 11, .box_h = 12, .ofs_x = 0, .ofs_y = 1}, + {.bitmap_index = 3468, .adv_w = 196, .box_w = 12, .box_h = 14, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 3636, .adv_w = 312, .box_w = 18, .box_h = 18, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 3960, .adv_w = 231, .box_w = 14, .box_h = 14, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 4156, .adv_w = 231, .box_w = 13, .box_h = 14, .ofs_x = 1, .ofs_y = 0}, + {.bitmap_index = 4338, .adv_w = 231, .box_w = 14, .box_h = 14, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 4534, .adv_w = 231, .box_w = 13, .box_h = 14, .ofs_x = 1, .ofs_y = 0}, + {.bitmap_index = 4716, .adv_w = 213, .box_w = 12, .box_h = 14, .ofs_x = 1, .ofs_y = 0}, + {.bitmap_index = 4884, .adv_w = 196, .box_w = 11, .box_h = 14, .ofs_x = 1, .ofs_y = 0}, + {.bitmap_index = 5038, .adv_w = 249, .box_w = 15, .box_h = 14, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 5248, .adv_w = 231, .box_w = 13, .box_h = 14, .ofs_x = 1, .ofs_y = 0}, + {.bitmap_index = 5430, .adv_w = 89, .box_w = 4, .box_h = 14, .ofs_x = 1, .ofs_y = 0}, + {.bitmap_index = 5486, .adv_w = 178, .box_w = 10, .box_h = 14, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 5626, .adv_w = 231, .box_w = 14, .box_h = 14, .ofs_x = 1, .ofs_y = 0}, + {.bitmap_index = 5822, .adv_w = 196, .box_w = 11, .box_h = 14, .ofs_x = 1, .ofs_y = 0}, + {.bitmap_index = 5976, .adv_w = 267, .box_w = 15, .box_h = 14, .ofs_x = 1, .ofs_y = 0}, + {.bitmap_index = 6186, .adv_w = 231, .box_w = 13, .box_h = 14, .ofs_x = 1, .ofs_y = 0}, + {.bitmap_index = 6368, .adv_w = 249, .box_w = 15, .box_h = 14, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 6578, .adv_w = 213, .box_w = 12, .box_h = 14, .ofs_x = 1, .ofs_y = 0}, + {.bitmap_index = 6746, .adv_w = 249, .box_w = 15, .box_h = 18, .ofs_x = 0, .ofs_y = -4}, + {.bitmap_index = 7016, .adv_w = 231, .box_w = 14, .box_h = 14, .ofs_x = 1, .ofs_y = 0}, + {.bitmap_index = 7212, .adv_w = 213, .box_w = 13, .box_h = 14, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 7394, .adv_w = 196, .box_w = 12, .box_h = 14, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 7562, .adv_w = 231, .box_w = 13, .box_h = 14, .ofs_x = 1, .ofs_y = 0}, + {.bitmap_index = 7744, .adv_w = 213, .box_w = 14, .box_h = 14, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 7940, .adv_w = 302, .box_w = 19, .box_h = 14, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 8206, .adv_w = 213, .box_w = 14, .box_h = 14, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 8402, .adv_w = 213, .box_w = 14, .box_h = 14, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 8598, .adv_w = 196, .box_w = 12, .box_h = 14, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 8766, .adv_w = 107, .box_w = 6, .box_h = 19, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 8880, .adv_w = 89, .box_w = 6, .box_h = 15, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 8970, .adv_w = 107, .box_w = 6, .box_h = 19, .ofs_x = 0, .ofs_y = -4}, + {.bitmap_index = 9084, .adv_w = 187, .box_w = 12, .box_h = 9, .ofs_x = 0, .ofs_y = 5}, + {.bitmap_index = 9192, .adv_w = 178, .box_w = 13, .box_h = 1, .ofs_x = -1, .ofs_y = -3}, + {.bitmap_index = 9205, .adv_w = 107, .box_w = 6, .box_h = 3, .ofs_x = 0, .ofs_y = 12}, + {.bitmap_index = 9223, .adv_w = 178, .box_w = 12, .box_h = 11, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 9355, .adv_w = 196, .box_w = 11, .box_h = 15, .ofs_x = 1, .ofs_y = 0}, + {.bitmap_index = 9520, .adv_w = 178, .box_w = 11, .box_h = 11, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 9641, .adv_w = 196, .box_w = 11, .box_h = 15, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 9806, .adv_w = 178, .box_w = 11, .box_h = 11, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 9927, .adv_w = 107, .box_w = 7, .box_h = 15, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 10032, .adv_w = 196, .box_w = 11, .box_h = 15, .ofs_x = 0, .ofs_y = -4}, + {.bitmap_index = 10197, .adv_w = 196, .box_w = 10, .box_h = 15, .ofs_x = 1, .ofs_y = 0}, + {.bitmap_index = 10347, .adv_w = 89, .box_w = 4, .box_h = 15, .ofs_x = 1, .ofs_y = 0}, + {.bitmap_index = 10407, .adv_w = 89, .box_w = 6, .box_h = 19, .ofs_x = -1, .ofs_y = -4}, + {.bitmap_index = 10521, .adv_w = 178, .box_w = 11, .box_h = 15, .ofs_x = 1, .ofs_y = 0}, + {.bitmap_index = 10686, .adv_w = 89, .box_w = 4, .box_h = 15, .ofs_x = 1, .ofs_y = 0}, + {.bitmap_index = 10746, .adv_w = 284, .box_w = 16, .box_h = 11, .ofs_x = 1, .ofs_y = 0}, + {.bitmap_index = 10922, .adv_w = 196, .box_w = 10, .box_h = 11, .ofs_x = 1, .ofs_y = 0}, + {.bitmap_index = 11032, .adv_w = 196, .box_w = 12, .box_h = 11, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 11164, .adv_w = 196, .box_w = 11, .box_h = 15, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 11329, .adv_w = 196, .box_w = 11, .box_h = 15, .ofs_x = 0, .ofs_y = -4}, + {.bitmap_index = 11494, .adv_w = 124, .box_w = 7, .box_h = 12, .ofs_x = 1, .ofs_y = 0}, + {.bitmap_index = 11578, .adv_w = 178, .box_w = 11, .box_h = 11, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 11699, .adv_w = 107, .box_w = 7, .box_h = 14, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 11797, .adv_w = 196, .box_w = 10, .box_h = 11, .ofs_x = 1, .ofs_y = 0}, + {.bitmap_index = 11907, .adv_w = 178, .box_w = 12, .box_h = 11, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 12039, .adv_w = 249, .box_w = 17, .box_h = 11, .ofs_x = -1, .ofs_y = 0}, + {.bitmap_index = 12226, .adv_w = 178, .box_w = 11, .box_h = 11, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 12347, .adv_w = 178, .box_w = 12, .box_h = 15, .ofs_x = 0, .ofs_y = -4}, + {.bitmap_index = 12527, .adv_w = 160, .box_w = 10, .box_h = 11, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 12637, .adv_w = 124, .box_w = 8, .box_h = 19, .ofs_x = 0, .ofs_y = -4}, + {.bitmap_index = 12789, .adv_w = 90, .box_w = 4, .box_h = 19, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 12865, .adv_w = 124, .box_w = 8, .box_h = 19, .ofs_x = 0, .ofs_y = -4}, + {.bitmap_index = 13017, .adv_w = 187, .box_w = 11, .box_h = 4, .ofs_x = 0, .ofs_y = 5} +}; + +/*--------------------- + * CHARACTER MAPPING + *--------------------*/ + + + +/*Collect the unicode lists and glyph_id offsets*/ +static const lv_font_fmt_txt_cmap_t cmaps[] = +{ + { + .range_start = 32, .range_length = 95, .glyph_id_start = 1, + .unicode_list = NULL, .glyph_id_ofs_list = NULL, .list_length = 0, .type = LV_FONT_FMT_TXT_CMAP_FORMAT0_TINY + } +}; + +/*----------------- + * KERNING + *----------------*/ + + +/*Pair left and right glyphs for kerning*/ +static const uint8_t kern_pair_glyph_ids[] = +{ + 1, 34, + 1, 58, + 18, 18, + 34, 1, + 34, 53, + 34, 55, + 34, 56, + 34, 58, + 34, 87, + 34, 88, + 34, 90, + 39, 13, + 39, 15, + 39, 34, + 45, 1, + 45, 53, + 45, 55, + 45, 56, + 45, 58, + 45, 90, + 49, 1, + 49, 13, + 49, 15, + 49, 34, + 51, 55, + 51, 56, + 51, 58, + 53, 13, + 53, 14, + 53, 15, + 53, 27, + 53, 28, + 53, 34, + 53, 48, + 53, 66, + 53, 68, + 53, 70, + 53, 74, + 53, 80, + 53, 83, + 53, 84, + 53, 86, + 53, 88, + 53, 90, + 55, 13, + 55, 14, + 55, 15, + 55, 27, + 55, 28, + 55, 34, + 55, 66, + 55, 70, + 55, 74, + 55, 80, + 55, 83, + 55, 86, + 55, 90, + 56, 13, + 56, 14, + 56, 15, + 56, 27, + 56, 28, + 56, 34, + 56, 66, + 56, 70, + 56, 74, + 56, 80, + 56, 83, + 56, 86, + 56, 90, + 58, 1, + 58, 13, + 58, 14, + 58, 15, + 58, 27, + 58, 28, + 58, 34, + 58, 66, + 58, 70, + 58, 74, + 58, 80, + 58, 81, + 58, 82, + 58, 86, + 58, 87, + 83, 13, + 83, 15, + 87, 13, + 87, 15, + 88, 13, + 88, 15, + 90, 13, + 90, 15 +}; + +/* Kerning between the respective left and right glyphs + * 4.4 format which needs to scaled with `kern_scale`*/ +static const int8_t kern_pair_values[] = +{ + -12, -6, -18, -12, -24, -24, -18, -29, + -12, -6, -12, -36, -36, -18, -6, -24, + -24, -18, -29, -12, -6, -41, -41, -24, + -6, -6, -12, -36, -18, -36, -36, -36, + -24, -6, -24, -24, -24, -6, -24, -18, + -24, -24, -24, -24, -29, -18, -29, -18, + -18, -24, -18, -18, -6, -24, -18, -12, + -12, -18, -6, -18, -6, -6, -18, -12, + -6, -3, -6, -6, -6, -6, -6, -36, + -18, -36, -24, -24, -29, -18, -18, -12, + -24, -18, -24, -18, -18, -18, -18, -24, + -24, -12, -12, -24, -24 +}; + +/*Collect the kern pair's data in one place*/ +static const lv_font_fmt_txt_kern_pair_t kern_pairs = +{ + .glyph_ids = kern_pair_glyph_ids, + .values = kern_pair_values, + .pair_cnt = 93, + .glyph_ids_size = 0 +}; + +/*-------------------- + * ALL CUSTOM DATA + *--------------------*/ + +#if LV_VERSION_CHECK(8, 0, 0) +/*Store all the custom data of the font*/ +static lv_font_fmt_txt_glyph_cache_t cache; +static const lv_font_fmt_txt_dsc_t font_dsc = { +#else +static lv_font_fmt_txt_dsc_t font_dsc = { +#endif + .glyph_bitmap = glyph_bitmap, + .glyph_dsc = glyph_dsc, + .cmaps = cmaps, + .kern_dsc = &kern_pairs, + .kern_scale = 16, + .cmap_num = 1, + .bpp = 8, + .kern_classes = 0, + .bitmap_format = 0, +#if LV_VERSION_CHECK(8, 0, 0) + .cache = &cache +#endif +}; + + +/*----------------- + * PUBLIC FONT + *----------------*/ + +/*Initialize a public general font descriptor*/ +#if LV_VERSION_CHECK(8, 0, 0) +const lv_font_t ui_font_font0 = { +#else +lv_font_t ui_font_font0 = { +#endif + .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 = 19, /*The maximum line height required by the font*/ + .base_line = 4, /*Baseline measured from the bottom of the line*/ +#if !(LVGL_VERSION_MAJOR == 6 && LVGL_VERSION_MINOR == 0) + .subpx = LV_FONT_SUBPX_NONE, +#endif +#if LV_VERSION_CHECK(7, 4, 0) || LVGL_VERSION_MAJOR >= 8 + .underline_position = -2, + .underline_thickness = 2, +#endif + .dsc = &font_dsc /*The custom font data. Will be accessed by `get_glyph_bitmap/dsc` */ +}; + + + +#endif /*#if UI_FONT_FONT0*/ + diff --git a/examples/indicator_matter/main/ui/ui_font_font1.c b/examples/indicator_matter/main/ui/ui_font_font1.c new file mode 100644 index 0000000..cb0dc48 --- /dev/null +++ b/examples/indicator_matter/main/ui/ui_font_font1.c @@ -0,0 +1,3098 @@ +/******************************************************************************* + * Size: 25 px + * Bpp: 8 + * Opts: --bpp 8 --size 25 --font /Users/virgil/seeed/SenseCAP_Indicator_ESP32/code/squareline_studio/sensecap_d1/assets/fonts/LibraSans-Bold.ttf -o /Users/virgil/seeed/SenseCAP_Indicator_ESP32/code/squareline_studio/sensecap_d1/assets/fonts/ui_font_font1.c --format lvgl -r 0x20-0x7f --no-compress --no-prefilter + ******************************************************************************/ + +#include "ui.h" + +#ifndef UI_FONT_FONT1 +#define UI_FONT_FONT1 1 +#endif + +#if UI_FONT_FONT1 + +/*----------------- + * BITMAPS + *----------------*/ + +/*Store the image of the glyphs*/ +static LV_ATTRIBUTE_LARGE_CONST const uint8_t glyph_bitmap[] = { + /* U+0020 " " */ + + /* U+0021 "!" */ + 0xa4, 0xff, 0xff, 0xef, 0x9c, 0xff, 0xff, 0xe7, + 0x94, 0xff, 0xff, 0xdf, 0x8b, 0xff, 0xff, 0xd6, + 0x83, 0xff, 0xff, 0xce, 0x7b, 0xff, 0xff, 0xc6, + 0x72, 0xff, 0xff, 0xbd, 0x6a, 0xff, 0xff, 0xb5, + 0x62, 0xff, 0xff, 0xad, 0x59, 0xff, 0xff, 0xa4, + 0x51, 0xff, 0xff, 0x9c, 0x49, 0xff, 0xff, 0x94, + 0x21, 0x80, 0x80, 0x47, 0x0, 0x0, 0x0, 0x0, + 0x49, 0x70, 0x70, 0x62, 0xa8, 0xff, 0xff, 0xe0, + 0xa8, 0xff, 0xff, 0xe0, 0xa8, 0xff, 0xff, 0xe0, + + /* U+0022 "\"" */ + 0x52, 0xff, 0xff, 0xf1, 0x0, 0x22, 0xff, 0xff, + 0xff, 0x2c, 0x46, 0xff, 0xff, 0xe5, 0x0, 0x15, + 0xff, 0xff, 0xff, 0x1e, 0x3a, 0xff, 0xff, 0xd9, + 0x0, 0x8, 0xff, 0xff, 0xff, 0x10, 0x2d, 0xff, + 0xff, 0xcc, 0x0, 0x0, 0xfb, 0xff, 0xff, 0x2, + 0x21, 0xff, 0xff, 0xc0, 0x0, 0x0, 0xee, 0xff, + 0xf4, 0x0, 0x15, 0xff, 0xff, 0xb4, 0x0, 0x0, + 0xe1, 0xff, 0xe6, 0x0, 0x5, 0x84, 0x84, 0x58, + 0x0, 0x0, 0x6f, 0x84, 0x71, 0x0, + + /* U+0023 "#" */ + 0x0, 0x0, 0x0, 0x0, 0x21, 0xff, 0xbf, 0x0, + 0x0, 0x0, 0x7a, 0xff, 0x6e, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x54, 0xff, 0x8d, 0x0, 0x0, 0x0, + 0xae, 0xff, 0x3a, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x87, 0xff, 0x5b, 0x0, 0x0, 0x0, 0xe1, 0xfc, + 0xa, 0x0, 0x0, 0x0, 0x0, 0x0, 0xba, 0xff, + 0x29, 0x0, 0x0, 0x15, 0xff, 0xd3, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0xec, 0xf4, 0x2, 0x0, + 0x0, 0x48, 0xff, 0x9f, 0x0, 0x0, 0x0, 0xd5, + 0xe0, 0xe1, 0xff, 0xfb, 0xe0, 0xe0, 0xe0, 0xec, + 0xff, 0xf0, 0xe0, 0x70, 0x0, 0xf4, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0x80, 0x0, 0x0, 0x0, 0x87, 0xff, 0x5c, + 0x0, 0x0, 0x0, 0xe2, 0xf8, 0x5, 0x0, 0x0, + 0x0, 0x0, 0x0, 0xbd, 0xff, 0x25, 0x0, 0x0, + 0x17, 0xff, 0xc8, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x1, 0xf0, 0xee, 0x0, 0x0, 0x0, 0x4c, 0xff, + 0x94, 0x0, 0x0, 0x0, 0x0, 0x0, 0x28, 0xff, + 0xb8, 0x0, 0x0, 0x0, 0x80, 0xff, 0x5f, 0x0, + 0x0, 0x0, 0x83, 0xe4, 0xeb, 0xff, 0xf4, 0xe4, + 0xe4, 0xe4, 0xf5, 0xff, 0xeb, 0xe4, 0xc7, 0x0, + 0x94, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xe0, 0x0, 0x0, 0x0, + 0xc5, 0xff, 0x1a, 0x0, 0x0, 0x25, 0xff, 0xc6, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x2, 0xf5, 0xe8, + 0x0, 0x0, 0x0, 0x58, 0xff, 0x92, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x2a, 0xff, 0xb5, 0x0, 0x0, + 0x0, 0x8a, 0xff, 0x5f, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x5d, 0xff, 0x83, 0x0, 0x0, 0x0, 0xbd, + 0xff, 0x2c, 0x0, 0x0, 0x0, 0x0, 0x0, 0x8f, + 0xff, 0x51, 0x0, 0x0, 0x0, 0xee, 0xf6, 0x3, + 0x0, 0x0, 0x0, 0x0, + + /* U+0024 "$" */ + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xa8, 0xad, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0xe, 0x7e, 0xcc, 0xf2, 0xfe, 0xff, 0xee, 0xbe, + 0x63, 0x2, 0x0, 0x0, 0x0, 0x18, 0xdb, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xae, + 0x1, 0x0, 0x0, 0xa6, 0xff, 0xff, 0xff, 0xbc, + 0xda, 0xe0, 0xdb, 0xff, 0xff, 0xff, 0x5f, 0x0, + 0x5, 0xf6, 0xff, 0xff, 0x72, 0x0, 0xa8, 0xac, + 0x7, 0xbf, 0xff, 0xff, 0xca, 0x0, 0x1a, 0xff, + 0xff, 0xff, 0x1e, 0x0, 0xa8, 0xac, 0x0, 0x44, + 0xff, 0xe7, 0xbd, 0x7, 0xc, 0xff, 0xff, 0xff, + 0x3e, 0x0, 0xa8, 0xac, 0x0, 0x4, 0x10, 0x0, + 0x0, 0x0, 0x0, 0xd7, 0xff, 0xff, 0xe5, 0x5f, + 0xb0, 0xac, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x64, 0xff, 0xff, 0xff, 0xff, 0xff, 0xe3, + 0x82, 0x2e, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x8e, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xc0, 0x39, 0x0, 0x0, 0x0, 0x0, 0x0, 0x45, + 0xb5, 0xfa, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf9, + 0x4e, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xc, + 0xb9, 0xdf, 0xd7, 0xff, 0xff, 0xff, 0xeb, 0xa, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xa8, 0xac, + 0x0, 0x5b, 0xfc, 0xff, 0xff, 0x57, 0x4, 0x2e, + 0x60, 0x46, 0x0, 0x0, 0xa8, 0xac, 0x0, 0x0, + 0xb4, 0xff, 0xff, 0x7c, 0x8d, 0xff, 0xff, 0xbe, + 0x0, 0x0, 0xa8, 0xac, 0x0, 0x0, 0xb1, 0xff, + 0xff, 0x80, 0x42, 0xff, 0xff, 0xff, 0x5a, 0x0, + 0xa8, 0xac, 0x0, 0x28, 0xf3, 0xff, 0xff, 0x56, + 0x1, 0xc8, 0xff, 0xff, 0xff, 0xc2, 0xdb, 0xe2, + 0xba, 0xf9, 0xff, 0xff, 0xe8, 0xb, 0x0, 0x21, + 0xe0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xf2, 0x41, 0x0, 0x0, 0x0, 0xf, 0x7e, + 0xcd, 0xf3, 0xff, 0xff, 0xf3, 0xd2, 0x8e, 0x1f, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0xa8, 0xac, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xa8, 0xac, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x24, 0x25, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, + + /* U+0025 "%" */ + 0x0, 0x0, 0x5d, 0xcc, 0xf5, 0xf3, 0xc2, 0x45, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x6, 0xd5, + 0xff, 0xb0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x69, + 0xff, 0xff, 0xe6, 0xeb, 0xff, 0xfc, 0x44, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x7c, 0xff, 0xf3, 0x1c, + 0x0, 0x0, 0x0, 0x0, 0x3, 0xea, 0xff, 0xbe, + 0x2, 0x9, 0xd6, 0xff, 0xcc, 0x0, 0x0, 0x0, + 0x0, 0x24, 0xf7, 0xff, 0x70, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x31, 0xff, 0xff, 0x63, 0x0, 0x0, + 0x83, 0xff, 0xff, 0x15, 0x0, 0x0, 0x0, 0xbb, + 0xff, 0xcd, 0x3, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x53, 0xff, 0xff, 0x47, 0x0, 0x0, 0x68, 0xff, + 0xff, 0x39, 0x0, 0x0, 0x5b, 0xff, 0xfc, 0x33, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x5d, 0xff, + 0xff, 0x41, 0x0, 0x0, 0x62, 0xff, 0xff, 0x44, + 0x0, 0x11, 0xe9, 0xff, 0x90, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x52, 0xff, 0xff, 0x4a, + 0x0, 0x0, 0x6c, 0xff, 0xff, 0x38, 0x0, 0x9b, + 0xff, 0xe3, 0xc, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x2d, 0xff, 0xff, 0x6e, 0x0, 0x0, + 0x8e, 0xff, 0xff, 0x12, 0x3c, 0xfe, 0xff, 0x50, + 0x2a, 0xae, 0xec, 0xf9, 0xd8, 0x78, 0x2, 0x0, + 0x1, 0xe0, 0xff, 0xd6, 0x1a, 0x26, 0xe8, 0xff, + 0xc3, 0x5, 0xd4, 0xff, 0xb0, 0x21, 0xef, 0xff, + 0xff, 0xfd, 0xff, 0xff, 0x90, 0x0, 0x0, 0x56, + 0xfe, 0xff, 0xff, 0xff, 0xff, 0xf9, 0x3a, 0x7a, + 0xff, 0xf3, 0x1c, 0x9a, 0xff, 0xfa, 0x41, 0x9, + 0xa8, 0xff, 0xfd, 0x1c, 0x0, 0x0, 0x50, 0xc9, + 0xf6, 0xf3, 0xbd, 0x3b, 0x22, 0xf6, 0xff, 0x70, + 0x0, 0xe2, 0xff, 0xbe, 0x0, 0x0, 0x36, 0xff, + 0xff, 0x62, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0xb9, 0xff, 0xcd, 0x3, 0x7, 0xff, + 0xff, 0x9d, 0x0, 0x0, 0x16, 0xff, 0xff, 0x85, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x5a, + 0xff, 0xfc, 0x33, 0x0, 0x11, 0xff, 0xff, 0x95, + 0x0, 0x0, 0xe, 0xff, 0xff, 0x90, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x10, 0xe8, 0xff, 0x90, + 0x0, 0x0, 0x6, 0xff, 0xff, 0x9d, 0x0, 0x0, + 0x17, 0xff, 0xff, 0x84, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x99, 0xff, 0xe3, 0xc, 0x0, 0x0, + 0x0, 0xe0, 0xff, 0xbe, 0x0, 0x0, 0x3b, 0xff, + 0xff, 0x5e, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3a, + 0xfe, 0xff, 0x50, 0x0, 0x0, 0x0, 0x0, 0x96, + 0xff, 0xfa, 0x4a, 0x13, 0xb3, 0xff, 0xfa, 0x16, + 0x0, 0x0, 0x0, 0x0, 0x5, 0xd3, 0xff, 0xb0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x1c, 0xec, 0xff, + 0xff, 0xff, 0xff, 0xff, 0x81, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x78, 0xff, 0xf3, 0x1c, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x27, 0xae, 0xee, 0xf9, + 0xd5, 0x6b, 0x0, 0x0, + + /* U+0026 "&" */ + 0x0, 0x0, 0x0, 0x0, 0xc, 0x86, 0xd8, 0xf8, + 0xf5, 0xcb, 0x65, 0x1, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x7, 0xcd, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0x94, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x65, 0xff, 0xff, + 0xb6, 0x39, 0x49, 0xe1, 0xff, 0xfe, 0x23, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x9e, 0xff, + 0xff, 0x15, 0x0, 0x0, 0x6f, 0xff, 0xff, 0x50, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x9e, + 0xff, 0xfe, 0x7, 0x0, 0x0, 0x92, 0xff, 0xff, + 0x3a, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x7b, 0xff, 0xff, 0x3c, 0x4, 0x76, 0xfd, 0xff, + 0xd0, 0x2, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x31, 0xff, 0xff, 0xc5, 0xdc, 0xff, 0xff, + 0xde, 0x21, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x12, 0xec, 0xff, 0xff, 0xff, 0xfc, + 0x9a, 0x11, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x61, 0xef, 0xff, 0xff, 0xff, 0xd6, + 0x29, 0x0, 0x0, 0x0, 0x6b, 0x5d, 0xd, 0x0, + 0x0, 0x0, 0x85, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xf9, 0x28, 0x0, 0x0, 0x3, 0xeb, 0xff, 0xdd, + 0x0, 0x0, 0x39, 0xff, 0xff, 0xff, 0x84, 0x6b, + 0xff, 0xff, 0xc2, 0x2, 0x0, 0x45, 0xff, 0xff, + 0x8b, 0x0, 0x0, 0xaa, 0xff, 0xff, 0x9b, 0x0, + 0x1, 0xc4, 0xff, 0xff, 0x82, 0x0, 0xc0, 0xff, + 0xff, 0x2f, 0x0, 0x0, 0xd7, 0xff, 0xff, 0x44, + 0x0, 0x0, 0x29, 0xf4, 0xff, 0xfe, 0x8e, 0xff, + 0xff, 0xb8, 0x0, 0x0, 0x0, 0xdc, 0xff, 0xff, + 0x4c, 0x0, 0x0, 0x0, 0x58, 0xff, 0xff, 0xff, + 0xff, 0xfd, 0x2e, 0x0, 0x0, 0x0, 0xaf, 0xff, + 0xff, 0xb1, 0x0, 0x0, 0x0, 0x0, 0xa4, 0xff, + 0xff, 0xff, 0xdf, 0x1a, 0x0, 0x0, 0x0, 0x48, + 0xff, 0xff, 0xff, 0xc0, 0x69, 0x59, 0x9b, 0xfc, + 0xff, 0xff, 0xff, 0xff, 0xf4, 0xbb, 0xbf, 0x3c, + 0x0, 0x81, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xfd, 0xa5, 0xf2, 0xff, 0xff, 0xff, 0xff, + 0x48, 0x0, 0x0, 0x3c, 0xa5, 0xdf, 0xf8, 0xf7, + 0xd8, 0x95, 0x2b, 0x0, 0x1d, 0x8f, 0xdb, 0xf9, + 0xe9, 0x36, + + /* U+0027 "'" */ + 0xa6, 0xff, 0xff, 0xa1, 0x99, 0xff, 0xff, 0x94, + 0x8c, 0xff, 0xff, 0x87, 0x7f, 0xff, 0xff, 0x7a, + 0x72, 0xff, 0xff, 0x6d, 0x65, 0xff, 0xff, 0x60, + 0x2f, 0x84, 0x84, 0x2c, + + /* U+0028 "(" */ + 0x0, 0x0, 0x0, 0x71, 0xff, 0xff, 0xee, 0x13, + 0x0, 0x0, 0x1b, 0xf4, 0xff, 0xff, 0x6d, 0x0, + 0x0, 0x0, 0x9a, 0xff, 0xff, 0xd5, 0x4, 0x0, + 0x0, 0x1a, 0xfa, 0xff, 0xff, 0x59, 0x0, 0x0, + 0x0, 0x7f, 0xff, 0xff, 0xe8, 0x4, 0x0, 0x0, + 0x0, 0xd8, 0xff, 0xff, 0x93, 0x0, 0x0, 0x0, + 0x16, 0xff, 0xff, 0xff, 0x53, 0x0, 0x0, 0x0, + 0x4d, 0xff, 0xff, 0xff, 0x1b, 0x0, 0x0, 0x0, + 0x80, 0xff, 0xff, 0xe5, 0x0, 0x0, 0x0, 0x0, + 0x98, 0xff, 0xff, 0xca, 0x0, 0x0, 0x0, 0x0, + 0xa8, 0xff, 0xff, 0xb9, 0x0, 0x0, 0x0, 0x0, + 0xb8, 0xff, 0xff, 0xa8, 0x0, 0x0, 0x0, 0x0, + 0xb8, 0xff, 0xff, 0xa8, 0x0, 0x0, 0x0, 0x0, + 0xa8, 0xff, 0xff, 0xb8, 0x0, 0x0, 0x0, 0x0, + 0x98, 0xff, 0xff, 0xc8, 0x0, 0x0, 0x0, 0x0, + 0x7f, 0xff, 0xff, 0xe1, 0x0, 0x0, 0x0, 0x0, + 0x4b, 0xff, 0xff, 0xff, 0x16, 0x0, 0x0, 0x0, + 0x15, 0xff, 0xff, 0xff, 0x4d, 0x0, 0x0, 0x0, + 0x0, 0xd5, 0xff, 0xff, 0x8e, 0x0, 0x0, 0x0, + 0x0, 0x7c, 0xff, 0xff, 0xe6, 0x3, 0x0, 0x0, + 0x0, 0x18, 0xf9, 0xff, 0xff, 0x58, 0x0, 0x0, + 0x0, 0x0, 0x96, 0xff, 0xff, 0xd2, 0x2, 0x0, + 0x0, 0x0, 0x19, 0xf3, 0xff, 0xff, 0x60, 0x0, + 0x0, 0x0, 0x0, 0x70, 0xff, 0xff, 0xe9, 0x11, + + /* U+0029 ")" */ + 0xa8, 0xff, 0xff, 0xc1, 0x0, 0x0, 0x0, 0x0, + 0x17, 0xf2, 0xff, 0xff, 0x5c, 0x0, 0x0, 0x0, + 0x0, 0x7f, 0xff, 0xff, 0xdf, 0x6, 0x0, 0x0, + 0x0, 0x14, 0xf9, 0xff, 0xff, 0x5f, 0x0, 0x0, + 0x0, 0x0, 0xa7, 0xff, 0xff, 0xca, 0x0, 0x0, + 0x0, 0x0, 0x42, 0xff, 0xff, 0xff, 0x25, 0x0, + 0x0, 0x0, 0x7, 0xf9, 0xff, 0xff, 0x64, 0x0, + 0x0, 0x0, 0x0, 0xc8, 0xff, 0xff, 0x9c, 0x0, + 0x0, 0x0, 0x0, 0x92, 0xff, 0xff, 0xd1, 0x0, + 0x0, 0x0, 0x0, 0x77, 0xff, 0xff, 0xea, 0x0, + 0x0, 0x0, 0x0, 0x66, 0xff, 0xff, 0xfa, 0x0, + 0x0, 0x0, 0x0, 0x55, 0xff, 0xff, 0xff, 0xb, + 0x0, 0x0, 0x0, 0x55, 0xff, 0xff, 0xff, 0xb, + 0x0, 0x0, 0x0, 0x66, 0xff, 0xff, 0xfa, 0x0, + 0x0, 0x0, 0x0, 0x77, 0xff, 0xff, 0xea, 0x0, + 0x0, 0x0, 0x0, 0x93, 0xff, 0xff, 0xd1, 0x0, + 0x0, 0x0, 0x0, 0xcb, 0xff, 0xff, 0x9b, 0x0, + 0x0, 0x0, 0x8, 0xfa, 0xff, 0xff, 0x64, 0x0, + 0x0, 0x0, 0x45, 0xff, 0xff, 0xff, 0x24, 0x0, + 0x0, 0x0, 0xa0, 0xff, 0xff, 0xc9, 0x0, 0x0, + 0x0, 0x14, 0xf7, 0xff, 0xff, 0x5e, 0x0, 0x0, + 0x0, 0x86, 0xff, 0xff, 0xdf, 0x6, 0x0, 0x0, + 0x1a, 0xf5, 0xff, 0xff, 0x5b, 0x0, 0x0, 0x0, + 0xa9, 0xff, 0xff, 0xc1, 0x0, 0x0, 0x0, 0x0, + + /* U+002A "*" */ + 0x0, 0x0, 0x0, 0x5f, 0xff, 0xff, 0x30, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x4e, 0xff, 0xff, + 0x20, 0x0, 0x0, 0x0, 0x30, 0x8e, 0x1e, 0x3d, + 0xff, 0xff, 0x10, 0x31, 0xa0, 0x8, 0x89, 0xff, + 0xfb, 0xc0, 0xff, 0xff, 0xbd, 0xff, 0xff, 0x51, + 0xa4, 0xfa, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xf2, 0x74, 0x0, 0xb, 0x5a, 0xfd, 0xff, 0xff, + 0xea, 0x3b, 0x4, 0x0, 0x0, 0x7, 0xc4, 0xff, + 0xe2, 0xf7, 0xff, 0x8a, 0x0, 0x0, 0x1, 0xa8, + 0xff, 0xff, 0x53, 0x89, 0xff, 0xff, 0x5f, 0x0, + 0x8, 0x9b, 0xff, 0xc0, 0x0, 0xf, 0xec, 0xf7, + 0x6c, 0x0, 0x0, 0x0, 0x4b, 0x2f, 0x0, 0x0, + 0x52, 0x28, 0x0, 0x0, + + /* U+002B "+" */ + 0x0, 0x0, 0x0, 0x0, 0x3, 0x30, 0x30, 0x20, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x14, 0xff, 0xff, 0xac, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x14, 0xff, + 0xff, 0xac, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x14, 0xff, 0xff, 0xac, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x14, 0xff, 0xff, 0xac, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x14, 0xff, 0xff, + 0xac, 0x0, 0x0, 0x0, 0x0, 0x0, 0xf4, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0x94, 0xf4, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x94, + 0xca, 0xd4, 0xd4, 0xd4, 0xd7, 0xff, 0xff, 0xf1, + 0xd4, 0xd4, 0xd4, 0xd4, 0x7a, 0x0, 0x0, 0x0, + 0x0, 0x14, 0xff, 0xff, 0xac, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x14, 0xff, + 0xff, 0xac, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x14, 0xff, 0xff, 0xac, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x14, 0xff, 0xff, 0xac, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x14, 0xff, 0xff, + 0xac, 0x0, 0x0, 0x0, 0x0, 0x0, + + /* U+002C "," */ + 0x38, 0xe0, 0xe0, 0xe0, 0x3f, 0x40, 0xff, 0xff, + 0xff, 0x48, 0x40, 0xff, 0xff, 0xff, 0x48, 0x40, + 0xff, 0xff, 0xff, 0x42, 0x0, 0x0, 0xba, 0xff, + 0x31, 0x0, 0x5, 0xee, 0xfc, 0xa, 0x0, 0x5d, + 0xff, 0xb8, 0x0, 0x10, 0xe3, 0xff, 0x3e, 0x0, + + /* U+002D "-" */ + 0x0, 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, 0x7, + 0x8, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x54, + 0x8, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x54, + 0x8, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x54, + + /* U+002E "." */ + 0x42, 0xe0, 0xe0, 0xe0, 0x31, 0x4c, 0xff, 0xff, + 0xff, 0x38, 0x4c, 0xff, 0xff, 0xff, 0x38, 0x4c, + 0xff, 0xff, 0xff, 0x38, + + /* U+002F "/" */ + 0x0, 0x0, 0x0, 0x4b, 0xff, 0xff, 0x9d, 0x0, + 0x0, 0x0, 0x7a, 0xff, 0xff, 0x6f, 0x0, 0x0, + 0x0, 0xa9, 0xff, 0xff, 0x41, 0x0, 0x0, 0x0, + 0xd7, 0xff, 0xff, 0x13, 0x0, 0x0, 0x9, 0xfc, + 0xff, 0xe5, 0x0, 0x0, 0x0, 0x34, 0xff, 0xff, + 0xb7, 0x0, 0x0, 0x0, 0x63, 0xff, 0xff, 0x89, + 0x0, 0x0, 0x0, 0x91, 0xff, 0xff, 0x5b, 0x0, + 0x0, 0x0, 0xc0, 0xff, 0xff, 0x2d, 0x0, 0x0, + 0x0, 0xee, 0xff, 0xf9, 0x5, 0x0, 0x0, 0x1d, + 0xff, 0xff, 0xd1, 0x0, 0x0, 0x0, 0x4c, 0xff, + 0xff, 0xa3, 0x0, 0x0, 0x0, 0x7a, 0xff, 0xff, + 0x75, 0x0, 0x0, 0x0, 0xa9, 0xff, 0xff, 0x47, + 0x0, 0x0, 0x0, 0xd7, 0xff, 0xff, 0x19, 0x0, + 0x0, 0x9, 0xfc, 0xff, 0xeb, 0x0, 0x0, 0x0, + 0x35, 0xff, 0xff, 0xbd, 0x0, 0x0, 0x0, 0x63, + 0xff, 0xff, 0x8f, 0x0, 0x0, 0x0, 0x92, 0xff, + 0xff, 0x61, 0x0, 0x0, 0x0, 0x5a, 0x80, 0x80, + 0x1f, 0x0, 0x0, 0x0, + + /* U+0030 "0" */ + 0x0, 0x0, 0x10, 0x85, 0xd3, 0xf4, 0xf3, 0xd0, + 0x79, 0x7, 0x0, 0x0, 0x0, 0x1e, 0xe2, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xcc, 0xb, 0x0, + 0x0, 0xc1, 0xff, 0xff, 0xff, 0xd9, 0xde, 0xff, + 0xff, 0xff, 0x96, 0x0, 0x39, 0xff, 0xff, 0xff, + 0x5b, 0x0, 0x0, 0x7f, 0xff, 0xff, 0xf9, 0x15, + 0x86, 0xff, 0xff, 0xd5, 0x0, 0x0, 0x0, 0x7, + 0xf4, 0xff, 0xff, 0x5d, 0xba, 0xff, 0xff, 0x9c, + 0x0, 0x0, 0x0, 0x0, 0xc4, 0xff, 0xff, 0x96, + 0xde, 0xff, 0xff, 0x80, 0x0, 0x0, 0x0, 0x0, + 0xa8, 0xff, 0xff, 0xba, 0xf1, 0xff, 0xff, 0x73, + 0x0, 0x0, 0x0, 0x0, 0x9b, 0xff, 0xff, 0xcf, + 0xfb, 0xff, 0xff, 0x6d, 0x0, 0x0, 0x0, 0x0, + 0x96, 0xff, 0xff, 0xda, 0xfb, 0xff, 0xff, 0x6e, + 0x0, 0x0, 0x0, 0x0, 0x97, 0xff, 0xff, 0xda, + 0xf0, 0xff, 0xff, 0x73, 0x0, 0x0, 0x0, 0x0, + 0x9d, 0xff, 0xff, 0xce, 0xd9, 0xff, 0xff, 0x83, + 0x0, 0x0, 0x0, 0x0, 0xad, 0xff, 0xff, 0xb7, + 0xb3, 0xff, 0xff, 0xa1, 0x0, 0x0, 0x0, 0x0, + 0xcc, 0xff, 0xff, 0x90, 0x77, 0xff, 0xff, 0xd9, + 0x0, 0x0, 0x0, 0xf, 0xfa, 0xff, 0xff, 0x53, + 0x25, 0xfd, 0xff, 0xff, 0x61, 0x0, 0x2, 0x92, + 0xff, 0xff, 0xf1, 0xd, 0x0, 0xa4, 0xff, 0xff, + 0xff, 0xde, 0xe8, 0xff, 0xff, 0xff, 0x7f, 0x0, + 0x0, 0xf, 0xd0, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xb5, 0x4, 0x0, 0x0, 0x0, 0x8, 0x7c, + 0xd3, 0xf5, 0xf1, 0xc8, 0x68, 0x2, 0x0, 0x0, + + /* U+0031 "1" */ + 0x0, 0x0, 0x0, 0x11, 0xa3, 0xff, 0xff, 0xff, + 0x48, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x48, + 0xe5, 0xff, 0xff, 0xff, 0xff, 0x48, 0x0, 0x0, + 0x0, 0x0, 0xc, 0x9a, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0x48, 0x0, 0x0, 0x0, 0x0, 0x4c, + 0xff, 0xff, 0xe1, 0x72, 0xff, 0xff, 0xff, 0x48, + 0x0, 0x0, 0x0, 0x0, 0x4c, 0xfe, 0x97, 0xd, + 0x2c, 0xff, 0xff, 0xff, 0x48, 0x0, 0x0, 0x0, + 0x0, 0x32, 0x40, 0x0, 0x0, 0x2c, 0xff, 0xff, + 0xff, 0x48, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x2c, 0xff, 0xff, 0xff, 0x48, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x2c, + 0xff, 0xff, 0xff, 0x48, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x2c, 0xff, 0xff, 0xff, + 0x48, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x2c, 0xff, 0xff, 0xff, 0x48, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x2c, 0xff, + 0xff, 0xff, 0x48, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x2c, 0xff, 0xff, 0xff, 0x48, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x2c, 0xff, 0xff, 0xff, 0x48, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x2c, 0xff, 0xff, + 0xff, 0x48, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x2c, 0xff, 0xff, 0xff, 0x48, 0x0, + 0x0, 0x0, 0x0, 0x46, 0xa8, 0xa8, 0xa8, 0xb7, + 0xff, 0xff, 0xff, 0xc0, 0xa8, 0xa8, 0xa8, 0x22, + 0x6c, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0x34, 0x6c, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0x34, + + /* U+0032 "2" */ + 0x0, 0x0, 0x0, 0x2e, 0x9f, 0xdf, 0xf8, 0xf6, + 0xd9, 0x99, 0x2a, 0x0, 0x0, 0x0, 0x0, 0x5f, + 0xfa, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf9, + 0x57, 0x0, 0x0, 0x29, 0xfb, 0xff, 0xff, 0xff, + 0xe4, 0xea, 0xff, 0xff, 0xff, 0xf5, 0x19, 0x0, + 0x98, 0xff, 0xff, 0xfb, 0x45, 0x0, 0x0, 0x70, + 0xff, 0xff, 0xff, 0x6f, 0x0, 0xdb, 0xff, 0xff, + 0xa8, 0x0, 0x0, 0x0, 0x0, 0xef, 0xff, 0xff, + 0x95, 0x0, 0x2a, 0x2c, 0x2c, 0x15, 0x0, 0x0, + 0x0, 0x0, 0xeb, 0xff, 0xff, 0x92, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x42, 0xff, + 0xff, 0xff, 0x63, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x17, 0xdd, 0xff, 0xff, 0xee, 0x10, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x18, 0xd2, + 0xff, 0xff, 0xff, 0x5f, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x29, 0xdf, 0xff, 0xff, 0xff, 0x7d, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3c, 0xee, + 0xff, 0xff, 0xfd, 0x6e, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x41, 0xf7, 0xff, 0xff, 0xf0, 0x4a, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x33, 0xf3, + 0xff, 0xff, 0xe5, 0x2b, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0xf, 0xde, 0xff, 0xff, 0xe2, 0x20, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x93, + 0xff, 0xff, 0xff, 0x3c, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x12, 0xfa, 0xff, 0xff, 0xff, + 0xf0, 0xf0, 0xf0, 0xf0, 0xf0, 0xf0, 0xf0, 0xd9, + 0x20, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xe8, 0x20, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xe8, + + /* U+0033 "3" */ + 0x0, 0x0, 0x0, 0x42, 0xaa, 0xe3, 0xf9, 0xf5, + 0xd9, 0x99, 0x2b, 0x0, 0x0, 0x0, 0x0, 0x90, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfa, + 0x5d, 0x0, 0x0, 0x64, 0xff, 0xff, 0xff, 0xfd, + 0xe0, 0xee, 0xff, 0xff, 0xff, 0xf7, 0x1e, 0x0, + 0xd8, 0xff, 0xff, 0xe2, 0x28, 0x0, 0x2, 0x83, + 0xff, 0xff, 0xff, 0x6d, 0xa, 0xbf, 0xd1, 0xe2, + 0x65, 0x0, 0x0, 0x0, 0x5, 0xfa, 0xff, 0xff, + 0x83, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0xc, 0xfd, 0xff, 0xff, 0x61, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x15, 0xa6, 0xff, + 0xff, 0xe7, 0xe, 0x0, 0x0, 0x0, 0x0, 0x0, + 0xe0, 0xea, 0xfe, 0xff, 0xff, 0xd8, 0x30, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff, + 0xfd, 0x96, 0x18, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf8, + 0x74, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x9, 0x2c, 0x9f, 0xff, 0xff, 0xff, 0x66, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, + 0xc6, 0xff, 0xff, 0xd4, 0x15, 0x44, 0x5b, 0x72, + 0x12, 0x0, 0x0, 0x0, 0x0, 0x92, 0xff, 0xff, + 0xf9, 0x4d, 0xff, 0xff, 0xff, 0x5d, 0x0, 0x0, + 0x0, 0x0, 0xb2, 0xff, 0xff, 0xee, 0xf, 0xf6, + 0xff, 0xff, 0xe6, 0x39, 0x0, 0x2, 0x5a, 0xfd, + 0xff, 0xff, 0xbb, 0x0, 0x87, 0xff, 0xff, 0xff, + 0xff, 0xf2, 0xf8, 0xff, 0xff, 0xff, 0xff, 0x4e, + 0x0, 0x5, 0xa7, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xfe, 0x80, 0x0, 0x0, 0x0, 0x0, + 0x4b, 0xad, 0xe3, 0xf9, 0xf7, 0xdd, 0xa2, 0x39, + 0x0, 0x0, + + /* U+0034 "4" */ + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xa6, + 0xff, 0xff, 0xff, 0x78, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x42, 0xff, 0xff, 0xff, + 0xff, 0x78, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x6, 0xd7, 0xff, 0xff, 0xff, 0xff, 0x78, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x79, + 0xff, 0xff, 0xf7, 0xff, 0xff, 0x78, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x1f, 0xf5, 0xff, 0xd6, + 0xc0, 0xff, 0xff, 0x78, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0xb1, 0xff, 0xff, 0x45, 0xca, 0xff, + 0xff, 0x78, 0x0, 0x0, 0x0, 0x0, 0x0, 0x4c, + 0xff, 0xff, 0xa5, 0x0, 0xcc, 0xff, 0xff, 0x78, + 0x0, 0x0, 0x0, 0x0, 0x9, 0xdf, 0xff, 0xed, + 0x16, 0x0, 0xcc, 0xff, 0xff, 0x78, 0x0, 0x0, + 0x0, 0x0, 0x84, 0xff, 0xff, 0x62, 0x0, 0x0, + 0xcc, 0xff, 0xff, 0x78, 0x0, 0x0, 0x0, 0x26, + 0xf9, 0xff, 0xbf, 0x0, 0x0, 0x0, 0xcc, 0xff, + 0xff, 0x78, 0x0, 0x0, 0x0, 0xbb, 0xff, 0xf8, + 0x26, 0x0, 0x0, 0x0, 0xcc, 0xff, 0xff, 0x78, + 0x0, 0x0, 0x57, 0xff, 0xff, 0x7c, 0x0, 0x0, + 0x0, 0x0, 0xcc, 0xff, 0xff, 0x78, 0x0, 0x0, + 0xa0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xc8, 0xa0, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xc8, 0x69, 0xa8, 0xa8, 0xa8, + 0xa8, 0xa8, 0xa8, 0xa8, 0xee, 0xff, 0xff, 0xd1, + 0xa8, 0x83, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0xcc, 0xff, 0xff, 0x78, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0xcc, 0xff, 0xff, 0x78, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xcc, 0xff, + 0xff, 0x78, 0x0, 0x0, + + /* U+0035 "5" */ + 0x0, 0x28, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0x34, 0x0, 0x0, 0x37, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0x34, 0x0, 0x0, 0x46, 0xff, 0xff, + 0xfc, 0xa8, 0xa8, 0xa8, 0xa8, 0xa8, 0xa8, 0xa8, + 0x22, 0x0, 0x0, 0x55, 0xff, 0xff, 0xea, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x64, 0xff, 0xff, 0xdb, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x74, + 0xff, 0xff, 0xcc, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x83, 0xff, 0xff, + 0xbe, 0x66, 0xd0, 0xf8, 0xf0, 0xc0, 0x5a, 0x0, + 0x0, 0x0, 0x0, 0x92, 0xff, 0xff, 0xfc, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xa1, 0x0, 0x0, + 0x0, 0xa1, 0xff, 0xff, 0xff, 0xff, 0xf1, 0xf9, + 0xff, 0xff, 0xff, 0xff, 0x64, 0x0, 0x0, 0xb0, + 0xff, 0xff, 0xef, 0x4b, 0x1, 0x4, 0x64, 0xfd, + 0xff, 0xff, 0xd4, 0x0, 0x0, 0x2, 0x4, 0x4, + 0x2, 0x0, 0x0, 0x0, 0x0, 0xa1, 0xff, 0xff, + 0xff, 0x14, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x64, 0xff, 0xff, 0xff, 0x2c, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x69, 0xff, 0xff, 0xff, 0x25, 0x19, 0xc2, + 0xd7, 0xec, 0x61, 0x0, 0x0, 0x0, 0x0, 0xa7, + 0xff, 0xff, 0xf8, 0x8, 0x2, 0xe7, 0xff, 0xff, + 0xe4, 0x2e, 0x0, 0x1, 0x66, 0xfe, 0xff, 0xff, + 0xb0, 0x0, 0x0, 0x71, 0xff, 0xff, 0xff, 0xfe, + 0xe5, 0xf3, 0xff, 0xff, 0xff, 0xf6, 0x2d, 0x0, + 0x0, 0x2, 0x9e, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xf2, 0x4b, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x49, 0xae, 0xe5, 0xfa, 0xf3, 0xd2, 0x8b, + 0x1b, 0x0, 0x0, 0x0, + + /* U+0036 "6" */ + 0x0, 0x0, 0x0, 0x0, 0x55, 0xba, 0xeb, 0xf6, + 0xd9, 0x9f, 0x26, 0x0, 0x0, 0x0, 0x0, 0x2, + 0xa3, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf9, + 0x47, 0x0, 0x0, 0x0, 0x7e, 0xff, 0xff, 0xff, + 0xee, 0xdc, 0xff, 0xff, 0xff, 0xe8, 0x9, 0x0, + 0x16, 0xf5, 0xff, 0xff, 0x9d, 0x6, 0x0, 0x43, + 0xfc, 0xff, 0xff, 0x5c, 0x0, 0x6b, 0xff, 0xff, + 0xe6, 0x7, 0x0, 0x0, 0x0, 0x54, 0x4b, 0x28, + 0x7, 0x0, 0xb2, 0xff, 0xff, 0x94, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xdd, + 0xff, 0xff, 0x66, 0xb, 0x61, 0x95, 0x99, 0x6e, + 0x16, 0x0, 0x0, 0x0, 0xfc, 0xff, 0xff, 0x72, + 0xdc, 0xff, 0xff, 0xff, 0xff, 0xf2, 0x4d, 0x0, + 0xa, 0xff, 0xff, 0xff, 0xf5, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xf6, 0x26, 0x11, 0xff, 0xff, + 0xff, 0xff, 0x8b, 0x18, 0x16, 0x83, 0xff, 0xff, + 0xff, 0x98, 0x7, 0xff, 0xff, 0xff, 0xc9, 0x0, + 0x0, 0x0, 0x0, 0xc2, 0xff, 0xff, 0xdb, 0x0, + 0xf4, 0xff, 0xff, 0x92, 0x0, 0x0, 0x0, 0x0, + 0x87, 0xff, 0xff, 0xf7, 0x0, 0xca, 0xff, 0xff, + 0xa3, 0x0, 0x0, 0x0, 0x0, 0x81, 0xff, 0xff, + 0xf5, 0x0, 0x8e, 0xff, 0xff, 0xe2, 0x4, 0x0, + 0x0, 0x0, 0xb1, 0xff, 0xff, 0xd8, 0x0, 0x34, + 0xff, 0xff, 0xff, 0x8e, 0x1, 0x0, 0x4c, 0xfd, + 0xff, 0xff, 0x96, 0x0, 0x0, 0xaa, 0xff, 0xff, + 0xff, 0xee, 0xe0, 0xff, 0xff, 0xff, 0xf7, 0x26, + 0x0, 0x0, 0xd, 0xc6, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xf9, 0x58, 0x0, 0x0, 0x0, 0x0, + 0x4, 0x6a, 0xc5, 0xef, 0xf9, 0xe1, 0xa0, 0x2c, + 0x0, 0x0, + + /* U+0037 "7" */ + 0xec, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xcc, 0xec, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xcc, + 0xe0, 0xf4, 0xf4, 0xf4, 0xf4, 0xf4, 0xf4, 0xf4, + 0xf8, 0xff, 0xff, 0xca, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0xbb, 0xff, 0xff, 0x69, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x64, + 0xff, 0xff, 0xd1, 0x3, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x17, 0xef, 0xff, 0xff, 0x40, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xa4, 0xff, + 0xff, 0xad, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x3b, 0xff, 0xff, 0xfd, 0x2b, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0xc9, 0xff, 0xff, + 0xa8, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x4c, 0xff, 0xff, 0xfd, 0x2a, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0xbf, 0xff, 0xff, 0xb2, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x2b, + 0xff, 0xff, 0xff, 0x52, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x82, 0xff, 0xff, 0xf6, 0x8, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xd1, + 0xff, 0xff, 0xb7, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0xc, 0xfe, 0xff, 0xff, 0x7f, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3b, 0xff, + 0xff, 0xff, 0x55, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x55, 0xff, 0xff, 0xff, 0x3b, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x64, 0xff, + 0xff, 0xff, 0x2e, 0x0, 0x0, 0x0, 0x0, 0x0, + + /* U+0038 "8" */ + 0x0, 0x0, 0x0, 0x4d, 0xaf, 0xe4, 0xf9, 0xf7, + 0xde, 0xa6, 0x3f, 0x0, 0x0, 0x0, 0x0, 0x1, + 0x9e, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0x86, 0x0, 0x0, 0x0, 0x59, 0xff, 0xff, + 0xff, 0xde, 0x8f, 0x94, 0xe9, 0xff, 0xff, 0xff, + 0x41, 0x0, 0x0, 0xaf, 0xff, 0xff, 0xee, 0x11, + 0x0, 0x0, 0x22, 0xfb, 0xff, 0xff, 0x96, 0x0, + 0x0, 0xc3, 0xff, 0xff, 0xbe, 0x0, 0x0, 0x0, + 0x0, 0xde, 0xff, 0xff, 0xab, 0x0, 0x0, 0x9f, + 0xff, 0xff, 0xd5, 0x0, 0x0, 0x0, 0x2, 0xef, + 0xff, 0xff, 0x85, 0x0, 0x0, 0x31, 0xfd, 0xff, + 0xff, 0x78, 0x10, 0x12, 0x85, 0xff, 0xff, 0xf4, + 0x1b, 0x0, 0x0, 0x0, 0x4e, 0xe7, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xdb, 0x38, 0x0, 0x0, + 0x0, 0x0, 0xe, 0x73, 0xf3, 0xff, 0xff, 0xff, + 0xff, 0xea, 0x70, 0xd, 0x0, 0x0, 0x0, 0x1b, + 0xd5, 0xff, 0xff, 0xda, 0x91, 0x98, 0xe5, 0xff, + 0xff, 0xd4, 0x19, 0x0, 0x0, 0xa8, 0xff, 0xff, + 0xd1, 0x8, 0x0, 0x0, 0x10, 0xe4, 0xff, 0xff, + 0x9f, 0x0, 0x9, 0xfd, 0xff, 0xff, 0x72, 0x0, + 0x0, 0x0, 0x0, 0x8a, 0xff, 0xff, 0xf5, 0x0, + 0x2a, 0xff, 0xff, 0xff, 0x5b, 0x0, 0x0, 0x0, + 0x0, 0x74, 0xff, 0xff, 0xff, 0x16, 0x22, 0xff, + 0xff, 0xff, 0x77, 0x0, 0x0, 0x0, 0x0, 0x8d, + 0xff, 0xff, 0xff, 0xc, 0x2, 0xea, 0xff, 0xff, + 0xd9, 0xc, 0x0, 0x0, 0xf, 0xe5, 0xff, 0xff, + 0xd5, 0x0, 0x0, 0x7b, 0xff, 0xff, 0xff, 0xe2, + 0x9b, 0x9b, 0xe3, 0xff, 0xff, 0xff, 0x62, 0x0, + 0x0, 0x3, 0xa3, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0x8e, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x4a, 0xab, 0xe2, 0xf8, 0xf8, 0xdf, 0xa6, + 0x3f, 0x0, 0x0, 0x0, + + /* U+0039 "9" */ + 0x0, 0x0, 0x0, 0x38, 0xa5, 0xe0, 0xf8, 0xf0, + 0xc9, 0x6e, 0x4, 0x0, 0x0, 0x0, 0x0, 0x79, + 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc5, + 0xb, 0x0, 0x0, 0x49, 0xff, 0xff, 0xff, 0xfe, + 0xd9, 0xef, 0xff, 0xff, 0xff, 0x9c, 0x0, 0x0, + 0xc0, 0xff, 0xff, 0xf6, 0x3b, 0x0, 0x3, 0x9f, + 0xff, 0xff, 0xfc, 0x21, 0x5, 0xfa, 0xff, 0xff, + 0x94, 0x0, 0x0, 0x0, 0xd, 0xf0, 0xff, 0xff, + 0x74, 0x19, 0xff, 0xff, 0xff, 0x64, 0x0, 0x0, + 0x0, 0x0, 0xc0, 0xff, 0xff, 0xae, 0x15, 0xff, + 0xff, 0xff, 0x6c, 0x0, 0x0, 0x0, 0x0, 0xb4, + 0xff, 0xff, 0xd6, 0x2, 0xf2, 0xff, 0xff, 0xb0, + 0x0, 0x0, 0x0, 0x9, 0xe6, 0xff, 0xff, 0xe8, + 0x0, 0xae, 0xff, 0xff, 0xfe, 0x75, 0x11, 0x22, + 0xad, 0xff, 0xff, 0xff, 0xf4, 0x0, 0x35, 0xfc, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf4, 0xff, + 0xff, 0xee, 0x0, 0x0, 0x62, 0xf8, 0xff, 0xff, + 0xff, 0xff, 0xcf, 0x87, 0xff, 0xff, 0xe1, 0x0, + 0x0, 0x0, 0x20, 0x7a, 0x9f, 0x94, 0x57, 0x6, + 0x8b, 0xff, 0xff, 0xc4, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0xba, 0xff, 0xff, + 0x99, 0x0, 0x2e, 0x59, 0x7c, 0x4e, 0x0, 0x0, + 0x0, 0x1a, 0xf9, 0xff, 0xff, 0x53, 0x0, 0x9e, + 0xff, 0xff, 0xe5, 0x22, 0x0, 0xf, 0xbb, 0xff, + 0xff, 0xeb, 0xa, 0x0, 0x34, 0xfe, 0xff, 0xff, + 0xfa, 0xd8, 0xf4, 0xff, 0xff, 0xff, 0x68, 0x0, + 0x0, 0x0, 0x81, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0x8e, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x40, 0xb2, 0xdf, 0xf8, 0xe9, 0xb1, 0x47, 0x0, + 0x0, 0x0, + + /* U+003A ":" */ + 0x98, 0xff, 0xff, 0xec, 0x98, 0xff, 0xff, 0xec, + 0x98, 0xff, 0xff, 0xec, 0x5a, 0x98, 0x98, 0x8c, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x55, 0x90, 0x90, 0x84, + 0x98, 0xff, 0xff, 0xec, 0x98, 0xff, 0xff, 0xec, + 0x98, 0xff, 0xff, 0xec, + + /* U+003B ";" */ + 0x94, 0xff, 0xff, 0xf4, 0x94, 0xff, 0xff, 0xf4, + 0x94, 0xff, 0xff, 0xf4, 0x57, 0x98, 0x98, 0x90, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x53, 0x90, 0x90, 0x89, + 0x94, 0xff, 0xff, 0xf4, 0x94, 0xff, 0xff, 0xf4, + 0x94, 0xff, 0xff, 0xee, 0x0, 0xe, 0xff, 0xdd, + 0x0, 0x49, 0xff, 0xb2, 0x0, 0xb3, 0xff, 0x64, + 0x4a, 0xff, 0xe0, 0x8, + + /* U+003C "<" */ + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x2e, 0x49, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0xb, 0x63, 0xc9, + 0xff, 0x94, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x33, 0x98, 0xf2, 0xff, 0xff, 0xff, 0x94, 0x0, + 0x0, 0x0, 0xd, 0x67, 0xcd, 0xff, 0xff, 0xff, + 0xff, 0xfe, 0xb9, 0x3b, 0x0, 0x37, 0x9c, 0xf4, + 0xff, 0xff, 0xff, 0xff, 0xea, 0x89, 0x22, 0x0, + 0x0, 0xca, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc2, + 0x5a, 0x6, 0x0, 0x0, 0x0, 0x0, 0xf4, 0xff, + 0xff, 0xf0, 0x93, 0x2b, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0xf4, 0xff, 0xdd, 0x2f, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0xf4, 0xff, 0xff, 0xfe, 0xbc, 0x54, 0x5, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x98, 0xf5, 0xff, + 0xff, 0xff, 0xff, 0xe7, 0x85, 0x20, 0x0, 0x0, + 0x0, 0x0, 0x0, 0xe, 0x69, 0xce, 0xff, 0xff, + 0xff, 0xff, 0xfd, 0xb6, 0x4e, 0x3, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x35, 0x9a, 0xf3, 0xff, 0xff, + 0xff, 0xff, 0xe3, 0x56, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0xc, 0x65, 0xca, 0xff, 0xff, 0xff, + 0x94, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x2f, 0x96, 0xf0, 0x94, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0xa, 0x2b, + + /* U+003D "=" */ + 0xf4, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0x94, 0xf4, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0x94, 0xcd, 0xd8, 0xd8, 0xd8, 0xd8, 0xd8, + 0xd8, 0xd8, 0xd8, 0xd8, 0xd8, 0xd8, 0x7c, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0xf4, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x94, + 0xf4, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0x94, 0xc6, 0xd0, 0xd0, + 0xd0, 0xd0, 0xd0, 0xd0, 0xd0, 0xd0, 0xd0, 0xd0, + 0xd0, 0x78, + + /* U+003E ">" */ + 0x66, 0x11, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0xf4, 0xf7, 0xa2, + 0x3d, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0xf4, 0xff, 0xff, 0xff, 0xd7, 0x72, + 0x13, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x74, + 0xde, 0xff, 0xff, 0xff, 0xff, 0xf8, 0xa6, 0x41, + 0x1, 0x0, 0x0, 0x0, 0x0, 0x1, 0x48, 0xb1, + 0xfc, 0xff, 0xff, 0xff, 0xff, 0xda, 0x76, 0x16, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x1c, 0x82, 0xe5, + 0xff, 0xff, 0xff, 0xff, 0xfa, 0x6f, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x4, 0x52, 0xbb, 0xfe, + 0xff, 0xff, 0x94, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x2, 0x6e, 0xfb, 0xff, 0x94, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x19, 0x7b, + 0xe0, 0xff, 0xff, 0xff, 0x94, 0x0, 0x0, 0x0, + 0x1, 0x45, 0xac, 0xfb, 0xff, 0xff, 0xff, 0xff, + 0xdc, 0x51, 0x0, 0x15, 0x76, 0xdc, 0xff, 0xff, + 0xff, 0xff, 0xf9, 0xa9, 0x43, 0x1, 0x0, 0xa1, + 0xf9, 0xff, 0xff, 0xff, 0xff, 0xd8, 0x74, 0x14, + 0x0, 0x0, 0x0, 0x0, 0xf4, 0xff, 0xff, 0xf7, + 0xa4, 0x3e, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0xf4, 0xd4, 0x6f, 0x11, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x35, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, + + /* U+003F "?" */ + 0x0, 0x0, 0x2, 0x5b, 0xb7, 0xe9, 0xfb, 0xf2, + 0xcf, 0x8c, 0x21, 0x0, 0x0, 0x0, 0x11, 0xc2, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf6, + 0x57, 0x0, 0x1, 0xbf, 0xff, 0xff, 0xff, 0xff, + 0xe7, 0xf7, 0xff, 0xff, 0xff, 0xfb, 0x2b, 0x4f, + 0xff, 0xff, 0xff, 0xb8, 0x1c, 0x0, 0x3, 0x73, + 0xff, 0xff, 0xff, 0x96, 0xa5, 0xff, 0xff, 0xea, + 0xb, 0x0, 0x0, 0x0, 0x0, 0xc6, 0xff, 0xff, + 0xc6, 0x62, 0x7c, 0x7c, 0x56, 0x0, 0x0, 0x0, + 0x0, 0x0, 0xad, 0xff, 0xff, 0xc7, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x12, 0xed, + 0xff, 0xff, 0x95, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x11, 0xc5, 0xff, 0xff, 0xf5, 0x26, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x2c, 0xde, + 0xff, 0xff, 0xf4, 0x4c, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x35, 0xf1, 0xff, 0xff, 0xdd, 0x30, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x6, 0xe1, + 0xff, 0xff, 0xc2, 0x11, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x54, 0xff, 0xff, 0xf3, 0x13, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x4f, 0xa0, 0xa0, 0x79, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x49, 0x70, 0x70, 0x62, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xa8, + 0xff, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0xa8, 0xff, 0xff, 0xe0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0xa8, 0xff, 0xff, 0xe0, 0x0, 0x0, 0x0, + 0x0, 0x0, + + /* U+0040 "@" */ + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x16, + 0x6a, 0xaf, 0xdd, 0xf3, 0xfa, 0xe9, 0xcf, 0x92, + 0x46, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x10, 0x93, 0xf8, 0xff, 0xff, + 0xf3, 0xd9, 0xd1, 0xe3, 0xfc, 0xff, 0xff, 0xd2, + 0x3b, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x3b, 0xe5, 0xff, 0xe4, 0x7a, 0x28, 0x1, 0x0, + 0x0, 0x0, 0xf, 0x54, 0xc4, 0xff, 0xfb, 0x65, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x45, 0xf7, 0xfe, + 0x87, 0x7, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x68, 0xfa, 0xfc, 0x47, 0x0, + 0x0, 0x0, 0x27, 0xf1, 0xfd, 0x5a, 0x0, 0x0, + 0x11, 0x88, 0xdc, 0xf7, 0xd9, 0x64, 0x0, 0xcf, + 0xff, 0x18, 0x60, 0xff, 0xdb, 0x4, 0x0, 0x1, + 0xc5, 0xff, 0x7b, 0x0, 0x0, 0x28, 0xe3, 0xff, + 0xea, 0xc8, 0xf1, 0xff, 0x61, 0xfb, 0xe1, 0x0, + 0x0, 0xba, 0xff, 0x54, 0x0, 0x51, 0xff, 0xd2, + 0x3, 0x0, 0xe, 0xe1, 0xff, 0x7f, 0x4, 0x0, + 0x11, 0xc0, 0xf6, 0xff, 0xaa, 0x0, 0x0, 0x4e, + 0xff, 0xa0, 0x0, 0xbf, 0xff, 0x58, 0x0, 0x0, + 0x8d, 0xff, 0x9c, 0x0, 0x0, 0x0, 0x0, 0x2c, + 0xff, 0xff, 0x74, 0x0, 0x0, 0xc, 0xff, 0xcd, + 0x15, 0xfd, 0xf2, 0x6, 0x0, 0xb, 0xf2, 0xfb, + 0x1d, 0x0, 0x0, 0x0, 0x0, 0x2, 0xfd, 0xff, + 0x3d, 0x0, 0x0, 0x0, 0xf4, 0xe3, 0x4e, 0xff, + 0xb3, 0x0, 0x0, 0x4a, 0xff, 0xc6, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x14, 0xff, 0xfc, 0xa, 0x0, + 0x0, 0x0, 0xf5, 0xe1, 0x78, 0xff, 0x86, 0x0, + 0x0, 0x7b, 0xff, 0x91, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x4a, 0xff, 0xd0, 0x0, 0x0, 0x0, 0x13, + 0xff, 0xca, 0x8b, 0xff, 0x71, 0x0, 0x0, 0x8d, + 0xff, 0x7b, 0x0, 0x0, 0x0, 0x0, 0x0, 0x9a, + 0xff, 0x9f, 0x0, 0x0, 0x0, 0x52, 0xff, 0x93, + 0x8d, 0xff, 0x6f, 0x0, 0x0, 0x8a, 0xff, 0x86, + 0x0, 0x0, 0x0, 0x0, 0x14, 0xf4, 0xff, 0x74, + 0x0, 0x0, 0x0, 0xb5, 0xff, 0x3f, 0x79, 0xff, + 0x83, 0x0, 0x0, 0x68, 0xff, 0xbe, 0x0, 0x0, + 0x0, 0x0, 0xa8, 0xf2, 0xff, 0x59, 0x0, 0x0, + 0x4e, 0xff, 0xc9, 0x0, 0x56, 0xff, 0xb5, 0x0, + 0x0, 0x1d, 0xfb, 0xff, 0x74, 0x12, 0x21, 0xa5, + 0xfd, 0x76, 0xff, 0x8a, 0xd, 0x65, 0xf6, 0xf3, + 0x2e, 0x0, 0x13, 0xfd, 0xf4, 0xf, 0x0, 0x0, + 0x7c, 0xff, 0xff, 0xff, 0xff, 0xf8, 0x55, 0x17, + 0xf7, 0xff, 0xff, 0xff, 0xea, 0x40, 0x0, 0x0, + 0x0, 0xb1, 0xff, 0x81, 0x0, 0x0, 0x0, 0x4b, + 0xa3, 0xb7, 0x8c, 0x1f, 0x0, 0x0, 0x42, 0xab, + 0xb1, 0x79, 0x15, 0x0, 0x0, 0x0, 0x0, 0x2e, + 0xfc, 0xfa, 0x3d, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x71, 0xff, + 0xf4, 0x59, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x1b, 0x8f, 0xa0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x7c, 0xfe, 0xff, + 0xc8, 0x67, 0x29, 0xe, 0x5, 0x16, 0x39, 0x6f, + 0xbc, 0xfd, 0xff, 0xe1, 0x9, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x43, 0xcd, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xd6, + 0x6e, 0x7, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x3b, 0x83, 0xb4, 0xca, + 0xd1, 0xc2, 0xa5, 0x72, 0x30, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, + + /* U+0041 "A" */ + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x45, 0xff, + 0xff, 0xff, 0xff, 0x54, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x9e, 0xff, 0xff, 0xff, 0xff, 0xac, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x7, 0xf0, 0xff, 0xff, 0xff, 0xff, 0xf7, + 0xd, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x51, 0xff, 0xff, 0xf1, 0xe6, + 0xff, 0xff, 0x5e, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0xaa, 0xff, 0xff, + 0xac, 0x9c, 0xff, 0xff, 0xb7, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xc, 0xf6, + 0xff, 0xff, 0x5a, 0x4e, 0xff, 0xff, 0xfb, 0x14, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x5d, 0xff, 0xff, 0xf8, 0xd, 0x9, 0xf3, 0xff, + 0xff, 0x69, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0xb6, 0xff, 0xff, 0xb2, 0x0, 0x0, + 0xa8, 0xff, 0xff, 0xc2, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x14, 0xfb, 0xff, 0xff, 0x5e, + 0x0, 0x0, 0x54, 0xff, 0xff, 0xfe, 0x1d, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x69, 0xff, 0xff, + 0xf9, 0x10, 0x0, 0x0, 0xa, 0xf5, 0xff, 0xff, + 0x74, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xc2, + 0xff, 0xff, 0xb6, 0x0, 0x0, 0x0, 0x0, 0xaa, + 0xff, 0xff, 0xcc, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x1d, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0x25, 0x0, 0x0, + 0x0, 0x0, 0x75, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x7e, + 0x0, 0x0, 0x0, 0x0, 0xce, 0xff, 0xff, 0xf2, + 0xd0, 0xd0, 0xd0, 0xd0, 0xd0, 0xd0, 0xf0, 0xff, + 0xff, 0xd7, 0x0, 0x0, 0x0, 0x27, 0xff, 0xff, + 0xff, 0x7f, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x74, 0xff, 0xff, 0xff, 0x30, 0x0, 0x0, 0x81, + 0xff, 0xff, 0xff, 0x22, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x19, 0xfc, 0xff, 0xff, 0x89, 0x0, + 0x0, 0xda, 0xff, 0xff, 0xc4, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0xb9, 0xff, 0xff, + 0xe1, 0x1, 0x33, 0xff, 0xff, 0xff, 0x66, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x5b, + 0xff, 0xff, 0xff, 0x3b, + + /* U+0042 "B" */ + 0x54, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xfe, 0xf4, 0xda, 0xa7, 0x4c, 0x0, 0x0, 0x0, + 0x54, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xaf, 0x5, 0x0, + 0x54, 0xff, 0xff, 0xff, 0xda, 0xcc, 0xcc, 0xcc, + 0xd1, 0xec, 0xff, 0xff, 0xff, 0xff, 0x75, 0x0, + 0x54, 0xff, 0xff, 0xff, 0x48, 0x0, 0x0, 0x0, + 0x0, 0x1, 0x5d, 0xfd, 0xff, 0xff, 0xcc, 0x0, + 0x54, 0xff, 0xff, 0xff, 0x48, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0xcb, 0xff, 0xff, 0xe4, 0x0, + 0x54, 0xff, 0xff, 0xff, 0x48, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0xca, 0xff, 0xff, 0xc7, 0x0, + 0x54, 0xff, 0xff, 0xff, 0x48, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x58, 0xfd, 0xff, 0xff, 0x6a, 0x0, + 0x54, 0xff, 0xff, 0xff, 0xd7, 0xc8, 0xc8, 0xc8, + 0xcc, 0xe7, 0xff, 0xff, 0xff, 0x9d, 0x4, 0x0, + 0x54, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xf7, 0x84, 0xd, 0x0, 0x0, + 0x54, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xf0, 0x62, 0x0, + 0x54, 0xff, 0xff, 0xff, 0x48, 0x0, 0x0, 0x0, + 0x0, 0x12, 0x3f, 0xbf, 0xff, 0xff, 0xff, 0x49, + 0x54, 0xff, 0xff, 0xff, 0x48, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0xb, 0xeb, 0xff, 0xff, 0xba, + 0x54, 0xff, 0xff, 0xff, 0x48, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0xc0, 0xff, 0xff, 0xe3, + 0x54, 0xff, 0xff, 0xff, 0x48, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x1, 0xe1, 0xff, 0xff, 0xdc, + 0x54, 0xff, 0xff, 0xff, 0x48, 0x0, 0x0, 0x0, + 0x0, 0x0, 0xa, 0x8b, 0xff, 0xff, 0xff, 0xa8, + 0x54, 0xff, 0xff, 0xff, 0xd7, 0xc8, 0xc8, 0xc8, + 0xc8, 0xd6, 0xf5, 0xff, 0xff, 0xff, 0xfd, 0x36, + 0x54, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xf5, 0x5b, 0x0, + 0x54, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xfc, 0xed, 0xc7, 0x83, 0x1d, 0x0, 0x0, + + /* U+0043 "C" */ + 0x0, 0x0, 0x0, 0x0, 0x3d, 0x95, 0xd1, 0xeb, + 0xfb, 0xf2, 0xd4, 0x9b, 0x3f, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x14, 0xb8, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xb2, 0x11, + 0x0, 0x0, 0x0, 0x12, 0xdc, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xf6, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xcc, 0xa, 0x0, 0x0, 0xac, 0xff, 0xff, 0xff, + 0xda, 0x55, 0xd, 0x0, 0xd, 0x50, 0xcf, 0xff, + 0xff, 0xff, 0x86, 0x0, 0x2b, 0xff, 0xff, 0xff, + 0xd8, 0x11, 0x0, 0x0, 0x0, 0x0, 0x0, 0xa, + 0xc0, 0xff, 0xff, 0xf0, 0x8, 0x85, 0xff, 0xff, + 0xff, 0x4b, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x2e, 0xa3, 0x5d, 0x17, 0x0, 0xbf, 0xff, + 0xff, 0xee, 0x2, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xe1, + 0xff, 0xff, 0xc1, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0xf1, 0xff, 0xff, 0xae, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0xee, 0xff, 0xff, 0xb0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0xdb, 0xff, 0xff, 0xc6, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0xb3, 0xff, 0xff, 0xf4, 0x7, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x16, 0x0, 0x0, 0x0, 0x75, 0xff, 0xff, 0xff, + 0x5c, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x2c, 0xfc, 0xc1, 0x62, 0xc, 0x18, 0xf8, 0xff, + 0xff, 0xe5, 0x1d, 0x0, 0x0, 0x0, 0x0, 0x0, + 0xc, 0xc7, 0xff, 0xff, 0xfa, 0x1f, 0x0, 0x8a, + 0xff, 0xff, 0xff, 0xe6, 0x66, 0x19, 0x1, 0x13, + 0x51, 0xd1, 0xff, 0xff, 0xff, 0x8c, 0x0, 0x0, + 0x5, 0xbf, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfd, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xc3, 0x8, 0x0, + 0x0, 0x0, 0x6, 0x95, 0xfc, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xa5, 0xc, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x25, 0x84, 0xc7, + 0xe9, 0xfa, 0xf4, 0xd5, 0x99, 0x37, 0x0, 0x0, + 0x0, 0x0, + + /* U+0044 "D" */ + 0x54, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf5, + 0xe3, 0xba, 0x7c, 0x1d, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x54, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xfb, 0x91, 0x7, 0x0, + 0x0, 0x0, 0x54, 0xff, 0xff, 0xff, 0xeb, 0xe4, + 0xe4, 0xf2, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc4, + 0x8, 0x0, 0x0, 0x54, 0xff, 0xff, 0xff, 0x48, + 0x0, 0x0, 0x0, 0x18, 0x6b, 0xea, 0xff, 0xff, + 0xff, 0x99, 0x0, 0x0, 0x54, 0xff, 0xff, 0xff, + 0x48, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1e, 0xe5, + 0xff, 0xff, 0xfc, 0x25, 0x0, 0x54, 0xff, 0xff, + 0xff, 0x48, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x54, 0xff, 0xff, 0xff, 0x84, 0x0, 0x54, 0xff, + 0xff, 0xff, 0x48, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x3, 0xed, 0xff, 0xff, 0xc3, 0x0, 0x54, + 0xff, 0xff, 0xff, 0x48, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0xbb, 0xff, 0xff, 0xe6, 0x0, + 0x54, 0xff, 0xff, 0xff, 0x48, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0xa6, 0xff, 0xff, 0xf8, + 0x0, 0x54, 0xff, 0xff, 0xff, 0x48, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0xab, 0xff, 0xff, + 0xf4, 0x0, 0x54, 0xff, 0xff, 0xff, 0x48, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xc5, 0xff, + 0xff, 0xe2, 0x0, 0x54, 0xff, 0xff, 0xff, 0x48, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xa, 0xf6, + 0xff, 0xff, 0xb2, 0x0, 0x54, 0xff, 0xff, 0xff, + 0x48, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x6a, + 0xff, 0xff, 0xff, 0x6c, 0x0, 0x54, 0xff, 0xff, + 0xff, 0x48, 0x0, 0x0, 0x0, 0x0, 0x0, 0x29, + 0xef, 0xff, 0xff, 0xf0, 0xe, 0x0, 0x54, 0xff, + 0xff, 0xff, 0x48, 0x0, 0x0, 0x0, 0x10, 0x68, + 0xec, 0xff, 0xff, 0xff, 0x6f, 0x0, 0x0, 0x54, + 0xff, 0xff, 0xff, 0xf1, 0xec, 0xec, 0xf1, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xa5, 0x0, 0x0, 0x0, + 0x54, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xf8, 0x83, 0x1, 0x0, 0x0, + 0x0, 0x54, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xfe, 0xec, 0xcb, 0x84, 0x20, 0x0, 0x0, 0x0, + 0x0, 0x0, + + /* U+0045 "E" */ + 0x54, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x34, 0x54, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0x34, 0x54, 0xff, + 0xff, 0xff, 0xeb, 0xe4, 0xe4, 0xe4, 0xe4, 0xe4, + 0xe4, 0xe4, 0xe4, 0xe4, 0x2e, 0x54, 0xff, 0xff, + 0xff, 0x48, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x54, 0xff, 0xff, 0xff, + 0x48, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x54, 0xff, 0xff, 0xff, 0x48, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x54, 0xff, 0xff, 0xff, 0x48, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x54, 0xff, 0xff, 0xff, 0xf1, 0xec, 0xec, + 0xec, 0xec, 0xec, 0xec, 0xec, 0xec, 0x6a, 0x0, + 0x54, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0x74, 0x0, 0x54, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0x74, 0x0, 0x54, 0xff, + 0xff, 0xff, 0x48, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x54, 0xff, 0xff, + 0xff, 0x48, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x54, 0xff, 0xff, 0xff, + 0x48, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x54, 0xff, 0xff, 0xff, 0x48, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x54, 0xff, 0xff, 0xff, 0x48, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x54, 0xff, 0xff, 0xff, 0xeb, 0xe4, 0xe4, + 0xe4, 0xe4, 0xe4, 0xe4, 0xe4, 0xe4, 0xe4, 0xa0, + 0x54, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xb4, 0x54, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xb4, + + /* U+0046 "F" */ + 0x54, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0x58, 0x54, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0x58, 0x54, 0xff, 0xff, 0xff, + 0xeb, 0xe4, 0xe4, 0xe4, 0xe4, 0xe4, 0xe4, 0xe4, + 0xe4, 0x4e, 0x54, 0xff, 0xff, 0xff, 0x48, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x54, 0xff, 0xff, 0xff, 0x48, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x54, 0xff, + 0xff, 0xff, 0x48, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x54, 0xff, 0xff, 0xff, + 0x48, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x54, 0xff, 0xff, 0xff, 0x48, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x54, 0xff, 0xff, 0xff, 0xee, 0xe8, 0xe8, 0xe8, + 0xe8, 0xe8, 0xe8, 0xe8, 0xe8, 0x12, 0x54, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0x14, 0x54, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0x14, 0x54, 0xff, 0xff, 0xff, 0x48, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x54, 0xff, 0xff, 0xff, 0x48, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x54, 0xff, + 0xff, 0xff, 0x48, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x54, 0xff, 0xff, 0xff, + 0x48, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x54, 0xff, 0xff, 0xff, 0x48, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x54, 0xff, 0xff, 0xff, 0x48, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x54, 0xff, + 0xff, 0xff, 0x48, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, + + /* U+0047 "G" */ + 0x0, 0x0, 0x0, 0x0, 0x2b, 0x88, 0xc6, 0xe7, + 0xf9, 0xf7, 0xe3, 0xb7, 0x6f, 0xf, 0x0, 0x0, + 0x0, 0x0, 0x0, 0xc, 0xa3, 0xfe, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf0, 0x59, + 0x0, 0x0, 0x0, 0xb, 0xcf, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xf7, 0xfd, 0xff, 0xff, 0xff, 0xff, + 0xfe, 0x5d, 0x0, 0x0, 0x9f, 0xff, 0xff, 0xff, + 0xe6, 0x65, 0x15, 0x0, 0x5, 0x30, 0x9c, 0xff, + 0xff, 0xff, 0xf3, 0x19, 0x24, 0xfd, 0xff, 0xff, + 0xe4, 0x1c, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x70, 0xff, 0xfe, 0xcc, 0x3f, 0x80, 0xff, 0xff, + 0xff, 0x58, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x1, 0x54, 0x16, 0x0, 0x0, 0xbc, 0xff, + 0xff, 0xf2, 0x5, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xdf, + 0xff, 0xff, 0xc3, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0xf0, 0xff, 0xff, 0xae, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x76, 0xc8, 0xc8, 0xc8, 0xc8, 0xc8, 0xc8, + 0xb5, 0xee, 0xff, 0xff, 0xb0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x98, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xe8, 0xdc, 0xff, 0xff, 0xc8, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x98, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xe8, 0xb6, 0xff, 0xff, 0xf7, 0x9, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x68, 0xff, 0xff, 0xe8, 0x78, 0xff, 0xff, 0xff, + 0x65, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x68, 0xff, 0xff, 0xe8, 0x1c, 0xfa, 0xff, + 0xff, 0xed, 0x26, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x1, 0x93, 0xff, 0xff, 0xe8, 0x0, 0x92, + 0xff, 0xff, 0xff, 0xed, 0x70, 0x1b, 0x0, 0x3, + 0x20, 0x60, 0xcb, 0xff, 0xff, 0xff, 0xe4, 0x0, + 0x7, 0xc7, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfa, + 0xfd, 0xff, 0xff, 0xff, 0xff, 0xff, 0xe7, 0x38, + 0x0, 0x0, 0x9, 0xa0, 0xfe, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xf9, 0x96, 0x18, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x2b, 0x89, 0xc8, + 0xe9, 0xfa, 0xf0, 0xda, 0xb0, 0x69, 0x1a, 0x0, + 0x0, 0x0, + + /* U+0048 "H" */ + 0x54, 0xff, 0xff, 0xff, 0x48, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x38, 0xff, 0xff, 0xff, 0x60, + 0x54, 0xff, 0xff, 0xff, 0x48, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x38, 0xff, 0xff, 0xff, 0x60, + 0x54, 0xff, 0xff, 0xff, 0x48, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x38, 0xff, 0xff, 0xff, 0x60, + 0x54, 0xff, 0xff, 0xff, 0x48, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x38, 0xff, 0xff, 0xff, 0x60, + 0x54, 0xff, 0xff, 0xff, 0x48, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x38, 0xff, 0xff, 0xff, 0x60, + 0x54, 0xff, 0xff, 0xff, 0x48, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x38, 0xff, 0xff, 0xff, 0x60, + 0x54, 0xff, 0xff, 0xff, 0x48, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x38, 0xff, 0xff, 0xff, 0x60, + 0x54, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x60, + 0x54, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x60, + 0x54, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x60, + 0x54, 0xff, 0xff, 0xff, 0x59, 0x18, 0x18, 0x18, + 0x18, 0x18, 0x18, 0x4a, 0xff, 0xff, 0xff, 0x60, + 0x54, 0xff, 0xff, 0xff, 0x48, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x38, 0xff, 0xff, 0xff, 0x60, + 0x54, 0xff, 0xff, 0xff, 0x48, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x38, 0xff, 0xff, 0xff, 0x60, + 0x54, 0xff, 0xff, 0xff, 0x48, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x38, 0xff, 0xff, 0xff, 0x60, + 0x54, 0xff, 0xff, 0xff, 0x48, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x38, 0xff, 0xff, 0xff, 0x60, + 0x54, 0xff, 0xff, 0xff, 0x48, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x38, 0xff, 0xff, 0xff, 0x60, + 0x54, 0xff, 0xff, 0xff, 0x48, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x38, 0xff, 0xff, 0xff, 0x60, + 0x54, 0xff, 0xff, 0xff, 0x48, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x38, 0xff, 0xff, 0xff, 0x60, + + /* U+0049 "I" */ + 0x54, 0xff, 0xff, 0xff, 0x48, 0x54, 0xff, 0xff, + 0xff, 0x48, 0x54, 0xff, 0xff, 0xff, 0x48, 0x54, + 0xff, 0xff, 0xff, 0x48, 0x54, 0xff, 0xff, 0xff, + 0x48, 0x54, 0xff, 0xff, 0xff, 0x48, 0x54, 0xff, + 0xff, 0xff, 0x48, 0x54, 0xff, 0xff, 0xff, 0x48, + 0x54, 0xff, 0xff, 0xff, 0x48, 0x54, 0xff, 0xff, + 0xff, 0x48, 0x54, 0xff, 0xff, 0xff, 0x48, 0x54, + 0xff, 0xff, 0xff, 0x48, 0x54, 0xff, 0xff, 0xff, + 0x48, 0x54, 0xff, 0xff, 0xff, 0x48, 0x54, 0xff, + 0xff, 0xff, 0x48, 0x54, 0xff, 0xff, 0xff, 0x48, + 0x54, 0xff, 0xff, 0xff, 0x48, 0x54, 0xff, 0xff, + 0xff, 0x48, + + /* U+004A "J" */ + 0x0, 0x0, 0x0, 0x0, 0x0, 0xd4, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0x34, 0x0, 0x0, 0x0, + 0x0, 0x0, 0xd4, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0x34, 0x0, 0x0, 0x0, 0x0, 0x0, 0xca, + 0xf4, 0xf4, 0xf8, 0xff, 0xff, 0xff, 0x34, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x68, + 0xff, 0xff, 0xff, 0x34, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x68, 0xff, 0xff, 0xff, + 0x34, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x68, 0xff, 0xff, 0xff, 0x34, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x68, 0xff, + 0xff, 0xff, 0x34, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x68, 0xff, 0xff, 0xff, 0x34, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x68, 0xff, 0xff, 0xff, 0x34, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x68, 0xff, 0xff, + 0xff, 0x34, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x68, 0xff, 0xff, 0xff, 0x34, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x68, + 0xff, 0xff, 0xff, 0x34, 0x18, 0x46, 0x6c, 0x91, + 0x6, 0x0, 0x0, 0x0, 0x70, 0xff, 0xff, 0xff, + 0x2c, 0x7c, 0xff, 0xff, 0xff, 0x47, 0x0, 0x0, + 0x0, 0x9b, 0xff, 0xff, 0xff, 0x13, 0x31, 0xff, + 0xff, 0xff, 0xd6, 0x2a, 0x3, 0x47, 0xf5, 0xff, + 0xff, 0xd5, 0x0, 0x0, 0xbc, 0xff, 0xff, 0xff, + 0xff, 0xfc, 0xff, 0xff, 0xff, 0xff, 0x62, 0x0, + 0x0, 0x1d, 0xde, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0x98, 0x0, 0x0, 0x0, 0x0, 0xe, + 0x7d, 0xcb, 0xf2, 0xfb, 0xea, 0xb4, 0x4e, 0x0, + 0x0, 0x0, + + /* U+004B "K" */ + 0x54, 0xff, 0xff, 0xff, 0x48, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x71, 0xff, 0xff, 0xff, 0xb5, + 0x6, 0x54, 0xff, 0xff, 0xff, 0x48, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x65, 0xff, 0xff, 0xff, 0xbc, + 0x8, 0x0, 0x54, 0xff, 0xff, 0xff, 0x48, 0x0, + 0x0, 0x0, 0x0, 0x5a, 0xfd, 0xff, 0xff, 0xc2, + 0xa, 0x0, 0x0, 0x54, 0xff, 0xff, 0xff, 0x48, + 0x0, 0x0, 0x0, 0x4f, 0xfb, 0xff, 0xff, 0xc8, + 0xd, 0x0, 0x0, 0x0, 0x54, 0xff, 0xff, 0xff, + 0x48, 0x0, 0x0, 0x46, 0xf8, 0xff, 0xff, 0xce, + 0x10, 0x0, 0x0, 0x0, 0x0, 0x54, 0xff, 0xff, + 0xff, 0x48, 0x0, 0x3c, 0xf5, 0xff, 0xff, 0xd4, + 0x14, 0x0, 0x0, 0x0, 0x0, 0x0, 0x54, 0xff, + 0xff, 0xff, 0x48, 0x33, 0xf1, 0xff, 0xff, 0xd9, + 0x18, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x54, + 0xff, 0xff, 0xff, 0x73, 0xec, 0xff, 0xff, 0xfb, + 0x21, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x54, 0xff, 0xff, 0xff, 0xfd, 0xff, 0xff, 0xff, + 0xff, 0x8e, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x54, 0xff, 0xff, 0xff, 0xff, 0xff, 0xee, + 0xff, 0xff, 0xff, 0x52, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x54, 0xff, 0xff, 0xff, 0xfc, 0x76, + 0x1b, 0xeb, 0xff, 0xff, 0xf1, 0x24, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x54, 0xff, 0xff, 0xff, 0x66, + 0x0, 0x0, 0x48, 0xfe, 0xff, 0xff, 0xd0, 0x9, + 0x0, 0x0, 0x0, 0x0, 0x54, 0xff, 0xff, 0xff, + 0x48, 0x0, 0x0, 0x0, 0x87, 0xff, 0xff, 0xff, + 0x9e, 0x0, 0x0, 0x0, 0x0, 0x54, 0xff, 0xff, + 0xff, 0x48, 0x0, 0x0, 0x0, 0x4, 0xc4, 0xff, + 0xff, 0xff, 0x62, 0x0, 0x0, 0x0, 0x54, 0xff, + 0xff, 0xff, 0x48, 0x0, 0x0, 0x0, 0x0, 0x1c, + 0xec, 0xff, 0xff, 0xf6, 0x2f, 0x0, 0x0, 0x54, + 0xff, 0xff, 0xff, 0x48, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x4b, 0xfe, 0xff, 0xff, 0xdb, 0xe, 0x0, + 0x54, 0xff, 0xff, 0xff, 0x48, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x8b, 0xff, 0xff, 0xff, 0xad, + 0x0, 0x54, 0xff, 0xff, 0xff, 0x48, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x5, 0xc7, 0xff, 0xff, + 0xff, 0x72, + + /* U+004C "L" */ + 0x54, 0xff, 0xff, 0xff, 0x48, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x54, 0xff, + 0xff, 0xff, 0x48, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x54, 0xff, 0xff, 0xff, + 0x48, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x54, 0xff, 0xff, 0xff, 0x48, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x54, 0xff, 0xff, 0xff, 0x48, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x54, 0xff, + 0xff, 0xff, 0x48, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x54, 0xff, 0xff, 0xff, + 0x48, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x54, 0xff, 0xff, 0xff, 0x48, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x54, 0xff, 0xff, 0xff, 0x48, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x54, 0xff, + 0xff, 0xff, 0x48, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x54, 0xff, 0xff, 0xff, + 0x48, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x54, 0xff, 0xff, 0xff, 0x48, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x54, 0xff, 0xff, 0xff, 0x48, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x54, 0xff, + 0xff, 0xff, 0x48, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x54, 0xff, 0xff, 0xff, + 0x48, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x54, 0xff, 0xff, 0xff, 0xeb, 0xe4, + 0xe4, 0xe4, 0xe4, 0xe4, 0xe4, 0xe4, 0xe4, 0x72, + 0x54, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0x80, 0x54, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0x80, + + /* U+004D "M" */ + 0x54, 0xff, 0xff, 0xff, 0xff, 0xa7, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0xce, 0xff, 0xff, + 0xff, 0xff, 0x28, 0x54, 0xff, 0xff, 0xff, 0xff, + 0xef, 0x4, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1b, + 0xff, 0xff, 0xff, 0xff, 0xff, 0x28, 0x54, 0xff, + 0xff, 0xff, 0xff, 0xff, 0x43, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x67, 0xff, 0xff, 0xff, 0xff, 0xff, + 0x28, 0x54, 0xff, 0xff, 0xec, 0xff, 0xff, 0x91, + 0x0, 0x0, 0x0, 0x0, 0x0, 0xb3, 0xff, 0xf6, + 0xf5, 0xff, 0xff, 0x28, 0x54, 0xff, 0xff, 0xc9, + 0xe9, 0xff, 0xde, 0x0, 0x0, 0x0, 0x0, 0x8, + 0xf5, 0xff, 0xbb, 0xf8, 0xff, 0xff, 0x28, 0x54, + 0xff, 0xff, 0xd4, 0xa5, 0xff, 0xff, 0x2d, 0x0, + 0x0, 0x0, 0x4b, 0xff, 0xff, 0x7a, 0xff, 0xff, + 0xff, 0x28, 0x54, 0xff, 0xff, 0xdc, 0x5f, 0xff, + 0xff, 0x7c, 0x0, 0x0, 0x0, 0x97, 0xff, 0xff, + 0x3f, 0xff, 0xff, 0xff, 0x28, 0x54, 0xff, 0xff, + 0xdf, 0x19, 0xff, 0xff, 0xca, 0x0, 0x0, 0x0, + 0xe2, 0xff, 0xeb, 0xe, 0xff, 0xff, 0xff, 0x28, + 0x54, 0xff, 0xff, 0xe0, 0x0, 0xce, 0xff, 0xfe, + 0x19, 0x0, 0x2f, 0xff, 0xff, 0xa1, 0xc, 0xff, + 0xff, 0xff, 0x28, 0x54, 0xff, 0xff, 0xe0, 0x0, + 0x7f, 0xff, 0xff, 0x66, 0x0, 0x7b, 0xff, 0xff, + 0x52, 0xc, 0xff, 0xff, 0xff, 0x28, 0x54, 0xff, + 0xff, 0xe0, 0x0, 0x30, 0xff, 0xff, 0xb1, 0x0, + 0xc5, 0xff, 0xf7, 0xb, 0xc, 0xff, 0xff, 0xff, + 0x28, 0x54, 0xff, 0xff, 0xe0, 0x0, 0x0, 0xe1, + 0xff, 0xf0, 0x12, 0xfc, 0xff, 0xb4, 0x0, 0xc, + 0xff, 0xff, 0xff, 0x28, 0x54, 0xff, 0xff, 0xe0, + 0x0, 0x0, 0x92, 0xff, 0xff, 0x83, 0xff, 0xff, + 0x65, 0x0, 0xc, 0xff, 0xff, 0xff, 0x28, 0x54, + 0xff, 0xff, 0xe0, 0x0, 0x0, 0x43, 0xff, 0xff, + 0xf2, 0xff, 0xfe, 0x18, 0x0, 0xc, 0xff, 0xff, + 0xff, 0x28, 0x54, 0xff, 0xff, 0xe0, 0x0, 0x0, + 0x4, 0xef, 0xff, 0xff, 0xff, 0xc7, 0x0, 0x0, + 0xc, 0xff, 0xff, 0xff, 0x28, 0x54, 0xff, 0xff, + 0xe0, 0x0, 0x0, 0x0, 0xa5, 0xff, 0xff, 0xff, + 0x78, 0x0, 0x0, 0xc, 0xff, 0xff, 0xff, 0x28, + 0x54, 0xff, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x56, + 0xff, 0xff, 0xff, 0x29, 0x0, 0x0, 0xc, 0xff, + 0xff, 0xff, 0x28, 0x54, 0xff, 0xff, 0xe0, 0x0, + 0x0, 0x0, 0xe, 0xf9, 0xff, 0xdb, 0x0, 0x0, + 0x0, 0xc, 0xff, 0xff, 0xff, 0x28, + + /* U+004E "N" */ + 0x54, 0xff, 0xff, 0xff, 0xf4, 0x18, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0xd4, 0xff, 0xff, 0x60, + 0x54, 0xff, 0xff, 0xff, 0xff, 0x99, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0xd4, 0xff, 0xff, 0x60, + 0x54, 0xff, 0xff, 0xff, 0xff, 0xfc, 0x28, 0x0, + 0x0, 0x0, 0x0, 0x0, 0xd4, 0xff, 0xff, 0x60, + 0x54, 0xff, 0xff, 0xff, 0xff, 0xff, 0xb0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0xd4, 0xff, 0xff, 0x60, + 0x54, 0xff, 0xff, 0xd8, 0xfc, 0xff, 0xff, 0x3c, + 0x0, 0x0, 0x0, 0x0, 0xd4, 0xff, 0xff, 0x60, + 0x54, 0xff, 0xff, 0xc6, 0x9c, 0xff, 0xff, 0xc7, + 0x0, 0x0, 0x0, 0x0, 0xd4, 0xff, 0xff, 0x60, + 0x54, 0xff, 0xff, 0xd7, 0x1b, 0xf6, 0xff, 0xff, + 0x54, 0x0, 0x0, 0x0, 0xd4, 0xff, 0xff, 0x60, + 0x54, 0xff, 0xff, 0xdf, 0x0, 0x87, 0xff, 0xff, + 0xda, 0x4, 0x0, 0x0, 0xd4, 0xff, 0xff, 0x60, + 0x54, 0xff, 0xff, 0xe0, 0x0, 0xf, 0xec, 0xff, + 0xff, 0x6b, 0x0, 0x0, 0xd4, 0xff, 0xff, 0x60, + 0x54, 0xff, 0xff, 0xe0, 0x0, 0x0, 0x72, 0xff, + 0xff, 0xe9, 0xd, 0x0, 0xd4, 0xff, 0xff, 0x60, + 0x54, 0xff, 0xff, 0xe0, 0x0, 0x0, 0x7, 0xe0, + 0xff, 0xff, 0x83, 0x0, 0xd2, 0xff, 0xff, 0x60, + 0x54, 0xff, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x5d, + 0xff, 0xff, 0xf5, 0x19, 0xcb, 0xff, 0xff, 0x60, + 0x54, 0xff, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x2, + 0xd0, 0xff, 0xff, 0x9a, 0xbb, 0xff, 0xff, 0x60, + 0x54, 0xff, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x0, + 0x48, 0xff, 0xff, 0xfc, 0xcd, 0xff, 0xff, 0x60, + 0x54, 0xff, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0xbd, 0xff, 0xff, 0xff, 0xff, 0xff, 0x60, + 0x54, 0xff, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x34, 0xfe, 0xff, 0xff, 0xff, 0xff, 0x60, + 0x54, 0xff, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0xa8, 0xff, 0xff, 0xff, 0xff, 0x60, + 0x54, 0xff, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x23, 0xfa, 0xff, 0xff, 0xff, 0x60, + + /* U+004F "O" */ + 0x0, 0x0, 0x0, 0x0, 0x25, 0x86, 0xc7, 0xe8, + 0xfa, 0xf0, 0xd9, 0xa1, 0x52, 0x1, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x5, 0x94, 0xfc, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xd3, + 0x2b, 0x0, 0x0, 0x0, 0x0, 0x5, 0xbc, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xf6, 0xfe, 0xff, 0xff, + 0xff, 0xff, 0xf2, 0x36, 0x0, 0x0, 0x0, 0x8b, + 0xff, 0xff, 0xff, 0xe8, 0x65, 0x13, 0x0, 0x5, + 0x3e, 0xbd, 0xff, 0xff, 0xff, 0xe1, 0x10, 0x0, + 0x1b, 0xf9, 0xff, 0xff, 0xe9, 0x21, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x2, 0xa8, 0xff, 0xff, 0xff, + 0x7d, 0x0, 0x79, 0xff, 0xff, 0xff, 0x5f, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xf, 0xf0, + 0xff, 0xff, 0xe4, 0x0, 0xb9, 0xff, 0xff, 0xf4, + 0x7, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x9b, 0xff, 0xff, 0xff, 0x25, 0xdf, 0xff, + 0xff, 0xc4, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x65, 0xff, 0xff, 0xff, 0x4c, + 0xf0, 0xff, 0xff, 0xae, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x4e, 0xff, 0xff, + 0xff, 0x5f, 0xee, 0xff, 0xff, 0xb0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x51, + 0xff, 0xff, 0xff, 0x5c, 0xdb, 0xff, 0xff, 0xca, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x68, 0xff, 0xff, 0xff, 0x49, 0xaf, 0xff, + 0xff, 0xf8, 0xc, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0xa0, 0xff, 0xff, 0xff, 0x18, + 0x6d, 0xff, 0xff, 0xff, 0x6c, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x11, 0xf2, 0xff, 0xff, + 0xd1, 0x0, 0x11, 0xf3, 0xff, 0xff, 0xf0, 0x2c, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x3, 0xab, 0xff, + 0xff, 0xff, 0x61, 0x0, 0x0, 0x79, 0xff, 0xff, + 0xff, 0xf0, 0x74, 0x1f, 0x2, 0xf, 0x49, 0xc4, + 0xff, 0xff, 0xff, 0xc9, 0x5, 0x0, 0x0, 0x2, + 0xaf, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xe0, 0x1e, 0x0, 0x0, + 0x0, 0x0, 0x3, 0x8a, 0xfa, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xb5, 0x16, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x21, 0x83, + 0xc6, 0xe9, 0xfa, 0xee, 0xd3, 0x94, 0x3c, 0x0, + 0x0, 0x0, 0x0, 0x0, + + /* U+0050 "P" */ + 0x54, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xfc, 0xec, 0xc3, 0x78, 0x10, 0x0, 0x0, 0x54, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xe4, 0x31, 0x0, 0x54, 0xff, + 0xff, 0xff, 0xf1, 0xec, 0xec, 0xec, 0xfa, 0xff, + 0xff, 0xff, 0xff, 0xe5, 0xd, 0x54, 0xff, 0xff, + 0xff, 0x48, 0x0, 0x0, 0x0, 0x3, 0x32, 0xc8, + 0xff, 0xff, 0xff, 0x70, 0x54, 0xff, 0xff, 0xff, + 0x48, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1c, 0xfc, + 0xff, 0xff, 0xb2, 0x54, 0xff, 0xff, 0xff, 0x48, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xdc, 0xff, + 0xff, 0xcc, 0x54, 0xff, 0xff, 0xff, 0x48, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0xe4, 0xff, 0xff, + 0xc4, 0x54, 0xff, 0xff, 0xff, 0x48, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x2e, 0xff, 0xff, 0xff, 0x9b, + 0x54, 0xff, 0xff, 0xff, 0x48, 0x0, 0x0, 0x0, + 0xf, 0x48, 0xda, 0xff, 0xff, 0xff, 0x44, 0x54, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xb0, 0x0, 0x54, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xaf, 0xc, 0x0, 0x54, 0xff, 0xff, + 0xff, 0xeb, 0xe4, 0xe4, 0xe4, 0xe1, 0xd0, 0x9f, + 0x43, 0x0, 0x0, 0x0, 0x54, 0xff, 0xff, 0xff, + 0x48, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x54, 0xff, 0xff, 0xff, 0x48, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x54, 0xff, 0xff, 0xff, 0x48, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x54, 0xff, 0xff, 0xff, 0x48, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x54, 0xff, 0xff, 0xff, 0x48, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x54, + 0xff, 0xff, 0xff, 0x48, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + + /* U+0051 "Q" */ + 0x0, 0x0, 0x0, 0x0, 0x23, 0x84, 0xc6, 0xe7, + 0xf9, 0xf0, 0xd8, 0x9f, 0x4f, 0x1, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x4, 0x8f, 0xfb, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xcf, + 0x27, 0x0, 0x0, 0x0, 0x0, 0x3, 0xb6, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xf6, 0xfe, 0xff, 0xff, + 0xff, 0xff, 0xef, 0x31, 0x0, 0x0, 0x0, 0x84, + 0xff, 0xff, 0xff, 0xea, 0x67, 0x14, 0x0, 0x5, + 0x3f, 0xc0, 0xff, 0xff, 0xff, 0xdd, 0xd, 0x0, + 0x16, 0xf7, 0xff, 0xff, 0xec, 0x24, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x3, 0xae, 0xff, 0xff, 0xff, + 0x77, 0x0, 0x74, 0xff, 0xff, 0xff, 0x65, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x13, 0xf3, + 0xff, 0xff, 0xe0, 0x0, 0xb5, 0xff, 0xff, 0xf6, + 0x9, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0xa0, 0xff, 0xff, 0xff, 0x21, 0xdc, 0xff, + 0xff, 0xc8, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x68, 0xff, 0xff, 0xff, 0x4b, + 0xef, 0xff, 0xff, 0xb0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x51, 0xff, 0xff, + 0xff, 0x5e, 0xf0, 0xff, 0xff, 0xaf, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x4f, + 0xff, 0xff, 0xff, 0x5f, 0xe0, 0xff, 0xff, 0xc5, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x63, 0xff, 0xff, 0xff, 0x4d, 0xba, 0xff, + 0xff, 0xf4, 0x6, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x94, 0xff, 0xff, 0xff, 0x20, + 0x7e, 0xff, 0xff, 0xff, 0x59, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x5, 0xe6, 0xff, 0xff, + 0xdf, 0x0, 0x22, 0xfe, 0xff, 0xff, 0xe1, 0x13, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x84, 0xff, + 0xff, 0xff, 0x7b, 0x0, 0x0, 0x9f, 0xff, 0xff, + 0xff, 0xd6, 0x3a, 0x0, 0x0, 0x0, 0x10, 0x8d, + 0xff, 0xff, 0xff, 0xe3, 0xb, 0x0, 0x0, 0x11, + 0xd6, 0xff, 0xff, 0xff, 0xff, 0xe1, 0xc2, 0xcf, + 0xfa, 0xff, 0xff, 0xff, 0xf5, 0x35, 0x0, 0x0, + 0x0, 0x0, 0x17, 0xbe, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xdb, 0x31, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x50, 0xb0, + 0xea, 0xff, 0xff, 0xff, 0xff, 0xb7, 0x61, 0x5, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x83, 0xff, 0xff, 0xff, 0x4e, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x22, 0xfc, 0xff, + 0xff, 0xe7, 0x38, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x9c, 0xff, 0xff, 0xff, 0xff, 0xe6, 0xd4, 0xa2, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0xf, 0xd0, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xb5, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0xb, 0x84, 0xda, + 0xfa, 0xf4, 0xd9, 0x7e, 0x0, 0x0, + + /* U+0052 "R" */ + 0x54, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xfc, 0xec, 0xc2, 0x78, 0x11, 0x0, 0x0, + 0x0, 0x54, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xe7, 0x35, + 0x0, 0x0, 0x54, 0xff, 0xff, 0xff, 0xf1, 0xec, + 0xec, 0xec, 0xec, 0xfb, 0xff, 0xff, 0xff, 0xff, + 0xe7, 0xd, 0x0, 0x54, 0xff, 0xff, 0xff, 0x48, + 0x0, 0x0, 0x0, 0x0, 0x2, 0x34, 0xcb, 0xff, + 0xff, 0xff, 0x66, 0x0, 0x54, 0xff, 0xff, 0xff, + 0x48, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x28, + 0xff, 0xff, 0xff, 0x9a, 0x0, 0x54, 0xff, 0xff, + 0xff, 0x48, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x2, 0xfc, 0xff, 0xff, 0xa5, 0x0, 0x54, 0xff, + 0xff, 0xff, 0x48, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x30, 0xff, 0xff, 0xff, 0x86, 0x0, 0x54, + 0xff, 0xff, 0xff, 0x48, 0x0, 0x0, 0x0, 0x0, + 0x1, 0x34, 0xd2, 0xff, 0xff, 0xff, 0x33, 0x0, + 0x54, 0xff, 0xff, 0xff, 0xee, 0xe8, 0xe8, 0xe8, + 0xe8, 0xf8, 0xff, 0xff, 0xff, 0xff, 0x8f, 0x0, + 0x0, 0x54, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xf2, 0x7d, 0x0, + 0x0, 0x0, 0x54, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xfd, 0x28, 0x0, + 0x0, 0x0, 0x0, 0x54, 0xff, 0xff, 0xff, 0x48, + 0x0, 0x0, 0x0, 0x38, 0xfe, 0xff, 0xff, 0xa5, + 0x0, 0x0, 0x0, 0x0, 0x54, 0xff, 0xff, 0xff, + 0x48, 0x0, 0x0, 0x0, 0x0, 0xa5, 0xff, 0xff, + 0xff, 0x3f, 0x0, 0x0, 0x0, 0x54, 0xff, 0xff, + 0xff, 0x48, 0x0, 0x0, 0x0, 0x0, 0x1d, 0xf6, + 0xff, 0xff, 0xd3, 0x4, 0x0, 0x0, 0x54, 0xff, + 0xff, 0xff, 0x48, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x80, 0xff, 0xff, 0xff, 0x72, 0x0, 0x0, 0x54, + 0xff, 0xff, 0xff, 0x48, 0x0, 0x0, 0x0, 0x0, + 0x0, 0xa, 0xe3, 0xff, 0xff, 0xf2, 0x19, 0x0, + 0x54, 0xff, 0xff, 0xff, 0x48, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x5c, 0xff, 0xff, 0xff, 0xa5, + 0x0, 0x54, 0xff, 0xff, 0xff, 0x48, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x1, 0xc8, 0xff, 0xff, + 0xff, 0x3f, + + /* U+0053 "S" */ + 0x0, 0x0, 0x0, 0x6, 0x60, 0xb0, 0xde, 0xf4, + 0xfc, 0xf3, 0xd8, 0xa6, 0x4d, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x24, 0xd8, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xb1, 0x6, 0x0, + 0x0, 0x4, 0xd5, 0xff, 0xff, 0xff, 0xe8, 0xba, + 0xaf, 0xcb, 0xfe, 0xff, 0xff, 0xff, 0x88, 0x0, + 0x0, 0x46, 0xff, 0xff, 0xff, 0x8e, 0x4, 0x0, + 0x0, 0x0, 0x2f, 0xe8, 0xff, 0xff, 0xf4, 0x8, + 0x0, 0x6f, 0xff, 0xff, 0xff, 0x18, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x62, 0xcb, 0xa8, 0x86, 0x15, + 0x0, 0x67, 0xff, 0xff, 0xff, 0x3b, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x33, 0xff, 0xff, 0xff, 0xe9, 0x66, 0x12, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0xb3, 0xff, 0xff, 0xff, 0xff, 0xfd, + 0xce, 0x94, 0x58, 0x15, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0xb, 0xa8, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xfd, 0xbe, 0x45, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x2e, 0x85, 0xcc, 0xfc, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x7b, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xc, + 0x41, 0x7f, 0xd4, 0xff, 0xff, 0xff, 0xff, 0x36, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x1, 0x76, 0xff, 0xff, 0xff, 0x8e, + 0x0, 0x2, 0x23, 0x4d, 0x1e, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0xde, 0xff, 0xff, 0xad, + 0x22, 0xf6, 0xff, 0xff, 0x9d, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x3, 0xf0, 0xff, 0xff, 0xa0, + 0x0, 0xd0, 0xff, 0xff, 0xff, 0x89, 0x16, 0x0, + 0x0, 0x0, 0x1e, 0xa7, 0xff, 0xff, 0xff, 0x66, + 0x0, 0x3c, 0xfa, 0xff, 0xff, 0xff, 0xfd, 0xe6, + 0xd5, 0xe7, 0xfe, 0xff, 0xff, 0xff, 0xdd, 0xa, + 0x0, 0x0, 0x48, 0xea, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xd2, 0x22, 0x0, + 0x0, 0x0, 0x0, 0xc, 0x6a, 0xb4, 0xe0, 0xf6, + 0xfc, 0xf2, 0xd6, 0xa6, 0x55, 0x3, 0x0, 0x0, + + /* U+0054 "T" */ + 0xb8, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xb8, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xa3, 0xe4, + 0xe4, 0xe4, 0xe4, 0xe8, 0xff, 0xff, 0xff, 0xef, + 0xe4, 0xe4, 0xe4, 0xe4, 0xe4, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x2c, 0xff, 0xff, 0xff, 0x6c, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x2c, 0xff, 0xff, 0xff, 0x6c, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x2c, 0xff, 0xff, 0xff, 0x6c, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x2c, + 0xff, 0xff, 0xff, 0x6c, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x2c, 0xff, + 0xff, 0xff, 0x6c, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x2c, 0xff, 0xff, + 0xff, 0x6c, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x2c, 0xff, 0xff, 0xff, + 0x6c, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x2c, 0xff, 0xff, 0xff, 0x6c, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x2c, 0xff, 0xff, 0xff, 0x6c, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x2c, 0xff, 0xff, 0xff, 0x6c, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x2c, 0xff, 0xff, 0xff, 0x6c, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x2c, + 0xff, 0xff, 0xff, 0x6c, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x2c, 0xff, + 0xff, 0xff, 0x6c, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x2c, 0xff, 0xff, + 0xff, 0x6c, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x2c, 0xff, 0xff, 0xff, + 0x6c, 0x0, 0x0, 0x0, 0x0, 0x0, + + /* U+0055 "U" */ + 0x80, 0xff, 0xff, 0xff, 0x18, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x14, 0xff, 0xff, 0xff, 0x88, + 0x80, 0xff, 0xff, 0xff, 0x18, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x14, 0xff, 0xff, 0xff, 0x88, + 0x80, 0xff, 0xff, 0xff, 0x18, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x14, 0xff, 0xff, 0xff, 0x88, + 0x80, 0xff, 0xff, 0xff, 0x18, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x14, 0xff, 0xff, 0xff, 0x88, + 0x80, 0xff, 0xff, 0xff, 0x18, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x14, 0xff, 0xff, 0xff, 0x88, + 0x80, 0xff, 0xff, 0xff, 0x18, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x14, 0xff, 0xff, 0xff, 0x88, + 0x80, 0xff, 0xff, 0xff, 0x18, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x14, 0xff, 0xff, 0xff, 0x88, + 0x80, 0xff, 0xff, 0xff, 0x18, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x14, 0xff, 0xff, 0xff, 0x88, + 0x80, 0xff, 0xff, 0xff, 0x18, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x14, 0xff, 0xff, 0xff, 0x88, + 0x80, 0xff, 0xff, 0xff, 0x18, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x14, 0xff, 0xff, 0xff, 0x88, + 0x80, 0xff, 0xff, 0xff, 0x18, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x15, 0xff, 0xff, 0xff, 0x87, + 0x78, 0xff, 0xff, 0xff, 0x2f, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x24, 0xff, 0xff, 0xff, 0x7c, + 0x62, 0xff, 0xff, 0xff, 0x58, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x58, 0xff, 0xff, 0xff, 0x62, + 0x2b, 0xff, 0xff, 0xff, 0xcd, 0x1, 0x0, 0x0, + 0x0, 0x0, 0x4, 0xca, 0xff, 0xff, 0xff, 0x24, + 0x0, 0xce, 0xff, 0xff, 0xff, 0xac, 0x2b, 0x0, + 0x2, 0x35, 0xbb, 0xff, 0xff, 0xff, 0xbb, 0x0, + 0x0, 0x3c, 0xfa, 0xff, 0xff, 0xff, 0xff, 0xfb, + 0xfc, 0xff, 0xff, 0xff, 0xff, 0xef, 0x28, 0x0, + 0x0, 0x0, 0x4d, 0xef, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xdb, 0x32, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x13, 0x77, 0xbe, 0xe9, 0xfa, + 0xf5, 0xe0, 0xae, 0x5d, 0x6, 0x0, 0x0, 0x0, + + /* U+0056 "V" */ + 0xa7, 0xff, 0xff, 0xfd, 0x15, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x5f, 0xff, 0xff, 0xff, + 0x53, 0x4d, 0xff, 0xff, 0xff, 0x61, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0xae, 0xff, 0xff, + 0xf1, 0x8, 0x5, 0xec, 0xff, 0xff, 0xb0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x7, 0xf4, 0xff, + 0xff, 0x9f, 0x0, 0x0, 0x98, 0xff, 0xff, 0xf5, + 0x9, 0x0, 0x0, 0x0, 0x0, 0x0, 0x4a, 0xff, + 0xff, 0xff, 0x45, 0x0, 0x0, 0x3d, 0xff, 0xff, + 0xff, 0x4d, 0x0, 0x0, 0x0, 0x0, 0x0, 0x98, + 0xff, 0xff, 0xe7, 0x3, 0x0, 0x0, 0x1, 0xe1, + 0xff, 0xff, 0x9b, 0x0, 0x0, 0x0, 0x0, 0x1, + 0xe5, 0xff, 0xff, 0x91, 0x0, 0x0, 0x0, 0x0, + 0x88, 0xff, 0xff, 0xe8, 0x1, 0x0, 0x0, 0x0, + 0x35, 0xff, 0xff, 0xff, 0x37, 0x0, 0x0, 0x0, + 0x0, 0x2e, 0xff, 0xff, 0xff, 0x38, 0x0, 0x0, + 0x0, 0x83, 0xff, 0xff, 0xdc, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0xd3, 0xff, 0xff, 0x87, 0x0, + 0x0, 0x0, 0xd1, 0xff, 0xff, 0x83, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x79, 0xff, 0xff, 0xd5, + 0x0, 0x0, 0x1f, 0xff, 0xff, 0xff, 0x29, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x20, 0xfe, 0xff, + 0xff, 0x24, 0x0, 0x6d, 0xff, 0xff, 0xcf, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xc4, + 0xff, 0xff, 0x72, 0x0, 0xba, 0xff, 0xff, 0x75, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x6a, 0xff, 0xff, 0xbe, 0x9, 0xf8, 0xff, 0xfe, + 0x1c, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x14, 0xfb, 0xff, 0xf8, 0x4f, 0xff, 0xff, + 0xc1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0xb5, 0xff, 0xff, 0xc6, 0xff, + 0xff, 0x67, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x5a, 0xff, 0xff, 0xff, + 0xff, 0xfa, 0x12, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0xb, 0xf4, 0xff, + 0xff, 0xff, 0xb3, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xa5, + 0xff, 0xff, 0xff, 0x59, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, + + /* U+0057 "W" */ + 0xd9, 0xff, 0xff, 0xc7, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x48, 0xff, 0xff, 0xff, 0xf2, 0x2, 0x0, + 0x0, 0x0, 0x0, 0x2f, 0xff, 0xff, 0xff, 0x74, + 0x9a, 0xff, 0xff, 0xf8, 0x6, 0x0, 0x0, 0x0, + 0x0, 0x81, 0xff, 0xff, 0xff, 0xff, 0x2f, 0x0, + 0x0, 0x0, 0x0, 0x64, 0xff, 0xff, 0xff, 0x34, + 0x5b, 0xff, 0xff, 0xff, 0x35, 0x0, 0x0, 0x0, + 0x0, 0xb9, 0xff, 0xff, 0xff, 0xff, 0x69, 0x0, + 0x0, 0x0, 0x0, 0x99, 0xff, 0xff, 0xf2, 0x3, + 0x1c, 0xff, 0xff, 0xff, 0x6c, 0x0, 0x0, 0x0, + 0x1, 0xf0, 0xff, 0xfc, 0xff, 0xff, 0xa4, 0x0, + 0x0, 0x0, 0x0, 0xce, 0xff, 0xff, 0xb6, 0x0, + 0x0, 0xdd, 0xff, 0xff, 0xa3, 0x0, 0x0, 0x0, + 0x2b, 0xff, 0xff, 0xba, 0xff, 0xff, 0xde, 0x0, + 0x0, 0x0, 0x8, 0xfa, 0xff, 0xff, 0x76, 0x0, + 0x0, 0x9e, 0xff, 0xff, 0xda, 0x0, 0x0, 0x0, + 0x63, 0xff, 0xff, 0x79, 0xe4, 0xff, 0xff, 0x19, + 0x0, 0x0, 0x38, 0xff, 0xff, 0xff, 0x37, 0x0, + 0x0, 0x5f, 0xff, 0xff, 0xff, 0x12, 0x0, 0x0, + 0x9c, 0xff, 0xff, 0x47, 0xb1, 0xff, 0xff, 0x53, + 0x0, 0x0, 0x6d, 0xff, 0xff, 0xf3, 0x4, 0x0, + 0x0, 0x20, 0xff, 0xff, 0xff, 0x49, 0x0, 0x0, + 0xd4, 0xff, 0xfe, 0xf, 0x7c, 0xff, 0xff, 0x8e, + 0x0, 0x0, 0xa2, 0xff, 0xff, 0xb8, 0x0, 0x0, + 0x0, 0x0, 0xe1, 0xff, 0xff, 0x80, 0x0, 0xe, + 0xfd, 0xff, 0xd4, 0x0, 0x44, 0xff, 0xff, 0xc8, + 0x0, 0x0, 0xd8, 0xff, 0xff, 0x79, 0x0, 0x0, + 0x0, 0x0, 0xa3, 0xff, 0xff, 0xb7, 0x0, 0x44, + 0xff, 0xff, 0x9c, 0x0, 0xe, 0xfd, 0xff, 0xfa, + 0x8, 0xf, 0xfe, 0xff, 0xff, 0x3a, 0x0, 0x0, + 0x0, 0x0, 0x64, 0xff, 0xff, 0xed, 0x0, 0x7b, + 0xff, 0xff, 0x64, 0x0, 0x0, 0xd2, 0xff, 0xff, + 0x36, 0x43, 0xff, 0xff, 0xf5, 0x5, 0x0, 0x0, + 0x0, 0x0, 0x25, 0xff, 0xff, 0xff, 0x25, 0xb0, + 0xff, 0xff, 0x2c, 0x0, 0x0, 0x99, 0xff, 0xff, + 0x64, 0x7b, 0xff, 0xff, 0xbb, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0xe6, 0xff, 0xff, 0x57, 0xe4, + 0xff, 0xf1, 0x2, 0x0, 0x0, 0x61, 0xff, 0xff, + 0x91, 0xb2, 0xff, 0xff, 0x7c, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0xa7, 0xff, 0xff, 0xa1, 0xff, + 0xff, 0xbb, 0x0, 0x0, 0x0, 0x28, 0xff, 0xff, + 0xbe, 0xe8, 0xff, 0xff, 0x3c, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x68, 0xff, 0xff, 0xf6, 0xff, + 0xff, 0x81, 0x0, 0x0, 0x0, 0x1, 0xee, 0xff, + 0xf6, 0xff, 0xff, 0xf6, 0x6, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x29, 0xff, 0xff, 0xff, 0xff, + 0xff, 0x48, 0x0, 0x0, 0x0, 0x0, 0xb6, 0xff, + 0xff, 0xff, 0xff, 0xbe, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0xe9, 0xff, 0xff, 0xff, + 0xfe, 0xf, 0x0, 0x0, 0x0, 0x0, 0x7d, 0xff, + 0xff, 0xff, 0xff, 0x7e, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0xab, 0xff, 0xff, 0xff, + 0xd4, 0x0, 0x0, 0x0, 0x0, 0x0, 0x44, 0xff, + 0xff, 0xff, 0xff, 0x3f, 0x0, 0x0, 0x0, 0x0, + + /* U+0058 "X" */ + 0x10, 0xe6, 0xff, 0xff, 0xd0, 0x3, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x27, 0xf9, 0xff, 0xff, 0xa5, + 0x0, 0x0, 0x53, 0xff, 0xff, 0xff, 0x6d, 0x0, + 0x0, 0x0, 0x0, 0x0, 0xbb, 0xff, 0xff, 0xf0, + 0x17, 0x0, 0x0, 0x0, 0xaf, 0xff, 0xff, 0xf0, + 0x16, 0x0, 0x0, 0x0, 0x56, 0xff, 0xff, 0xff, + 0x6a, 0x0, 0x0, 0x0, 0x0, 0x1a, 0xf1, 0xff, + 0xff, 0xa0, 0x0, 0x0, 0xc, 0xe3, 0xff, 0xff, + 0xcb, 0x2, 0x0, 0x0, 0x0, 0x0, 0x0, 0x68, + 0xff, 0xff, 0xfe, 0x3b, 0x0, 0x8a, 0xff, 0xff, + 0xfd, 0x33, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x1, 0xc3, 0xff, 0xff, 0xd0, 0x2c, 0xfa, 0xff, + 0xff, 0x93, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x28, 0xf8, 0xff, 0xff, 0xec, 0xff, + 0xff, 0xe7, 0xf, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x7d, 0xff, 0xff, 0xff, + 0xff, 0xff, 0x59, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x8, 0xf4, 0xff, + 0xff, 0xff, 0xde, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x70, 0xff, + 0xff, 0xff, 0xff, 0xff, 0x4d, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1d, 0xf3, + 0xff, 0xff, 0xfb, 0xff, 0xff, 0xdf, 0x9, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xb2, + 0xff, 0xff, 0xe4, 0x4d, 0xff, 0xff, 0xff, 0x83, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x53, + 0xff, 0xff, 0xff, 0x56, 0x0, 0xa6, 0xff, 0xff, + 0xf8, 0x25, 0x0, 0x0, 0x0, 0x0, 0x0, 0xe, + 0xe5, 0xff, 0xff, 0xbb, 0x0, 0x0, 0x19, 0xf1, + 0xff, 0xff, 0xb9, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x95, 0xff, 0xff, 0xfa, 0x28, 0x0, 0x0, 0x0, + 0x71, 0xff, 0xff, 0xff, 0x54, 0x0, 0x0, 0x0, + 0x38, 0xfd, 0xff, 0xff, 0x88, 0x0, 0x0, 0x0, + 0x0, 0x4, 0xd2, 0xff, 0xff, 0xe3, 0xb, 0x0, + 0x4, 0xd2, 0xff, 0xff, 0xe2, 0xb, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x3d, 0xff, 0xff, 0xff, 0x8a, + 0x0, 0x78, 0xff, 0xff, 0xff, 0x54, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0xa1, 0xff, 0xff, + 0xfa, 0x2b, + + /* U+0059 "Y" */ + 0x4a, 0xff, 0xff, 0xff, 0x79, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0xc5, 0xff, 0xff, 0xec, + 0x11, 0x0, 0xb7, 0xff, 0xff, 0xf0, 0x13, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x53, 0xff, 0xff, 0xff, + 0x6a, 0x0, 0x0, 0x28, 0xfb, 0xff, 0xff, 0x8e, + 0x0, 0x0, 0x0, 0x0, 0x5, 0xda, 0xff, 0xff, + 0xd3, 0x3, 0x0, 0x0, 0x0, 0x90, 0xff, 0xff, + 0xf8, 0x20, 0x0, 0x0, 0x0, 0x6c, 0xff, 0xff, + 0xff, 0x43, 0x0, 0x0, 0x0, 0x0, 0x10, 0xeb, + 0xff, 0xff, 0xa4, 0x0, 0x0, 0xd, 0xea, 0xff, + 0xff, 0xaf, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x69, 0xff, 0xff, 0xfe, 0x30, 0x0, 0x84, 0xff, + 0xff, 0xf8, 0x23, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x3, 0xd1, 0xff, 0xff, 0xb9, 0x1b, 0xf5, + 0xff, 0xff, 0x88, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x41, 0xff, 0xff, 0xff, 0xcc, + 0xff, 0xff, 0xe7, 0xd, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0xae, 0xff, 0xff, + 0xff, 0xff, 0xff, 0x61, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x22, 0xf8, + 0xff, 0xff, 0xff, 0xcb, 0x1, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x91, 0xff, 0xff, 0xff, 0x44, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x74, 0xff, 0xff, 0xff, 0x28, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x74, 0xff, 0xff, 0xff, 0x28, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x74, 0xff, 0xff, 0xff, 0x28, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x74, 0xff, 0xff, 0xff, + 0x28, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x74, 0xff, 0xff, + 0xff, 0x28, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x74, 0xff, + 0xff, 0xff, 0x28, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x74, + 0xff, 0xff, 0xff, 0x28, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, + + /* U+005A "Z" */ + 0x0, 0x54, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc, 0x0, + 0x54, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xc, 0x0, 0x50, + 0xf4, 0xf4, 0xf4, 0xf4, 0xf4, 0xf4, 0xf4, 0xf4, + 0xff, 0xff, 0xff, 0xf5, 0x7, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x5d, 0xff, + 0xff, 0xff, 0x61, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x29, 0xf4, 0xff, 0xff, + 0xa2, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x9, 0xd3, 0xff, 0xff, 0xd7, 0xb, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x9e, 0xff, 0xff, 0xf6, 0x2d, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x5d, + 0xff, 0xff, 0xff, 0x64, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x29, 0xf4, 0xff, + 0xff, 0xa5, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x9, 0xd3, 0xff, 0xff, 0xd9, + 0xc, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x9e, 0xff, 0xff, 0xf7, 0x2f, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x5d, 0xff, 0xff, 0xff, 0x68, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x29, 0xf4, + 0xff, 0xff, 0xa9, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x9, 0xd3, 0xff, 0xff, + 0xdc, 0xe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x9e, 0xff, 0xff, 0xf8, 0x32, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x34, 0xff, 0xff, 0xff, 0xfc, 0xf0, 0xf0, + 0xf0, 0xf0, 0xf0, 0xf0, 0xf0, 0xf0, 0xf0, 0x83, + 0x40, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x8c, 0x40, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0x8c, + + /* U+005B "[" */ + 0x98, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x8, + 0x98, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x8, + 0x98, 0xff, 0xff, 0xcd, 0x6c, 0x6c, 0x6c, 0x3, + 0x98, 0xff, 0xff, 0xa8, 0x0, 0x0, 0x0, 0x0, + 0x98, 0xff, 0xff, 0xa8, 0x0, 0x0, 0x0, 0x0, + 0x98, 0xff, 0xff, 0xa8, 0x0, 0x0, 0x0, 0x0, + 0x98, 0xff, 0xff, 0xa8, 0x0, 0x0, 0x0, 0x0, + 0x98, 0xff, 0xff, 0xa8, 0x0, 0x0, 0x0, 0x0, + 0x98, 0xff, 0xff, 0xa8, 0x0, 0x0, 0x0, 0x0, + 0x98, 0xff, 0xff, 0xa8, 0x0, 0x0, 0x0, 0x0, + 0x98, 0xff, 0xff, 0xa8, 0x0, 0x0, 0x0, 0x0, + 0x98, 0xff, 0xff, 0xa8, 0x0, 0x0, 0x0, 0x0, + 0x98, 0xff, 0xff, 0xa8, 0x0, 0x0, 0x0, 0x0, + 0x98, 0xff, 0xff, 0xa8, 0x0, 0x0, 0x0, 0x0, + 0x98, 0xff, 0xff, 0xa8, 0x0, 0x0, 0x0, 0x0, + 0x98, 0xff, 0xff, 0xa8, 0x0, 0x0, 0x0, 0x0, + 0x98, 0xff, 0xff, 0xa8, 0x0, 0x0, 0x0, 0x0, + 0x98, 0xff, 0xff, 0xa8, 0x0, 0x0, 0x0, 0x0, + 0x98, 0xff, 0xff, 0xa8, 0x0, 0x0, 0x0, 0x0, + 0x98, 0xff, 0xff, 0xa8, 0x0, 0x0, 0x0, 0x0, + 0x98, 0xff, 0xff, 0xa8, 0x0, 0x0, 0x0, 0x0, + 0x98, 0xff, 0xff, 0xce, 0x70, 0x70, 0x70, 0x3, + 0x98, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x8, + 0x98, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x8, + + /* U+005C "\\" */ + 0xa9, 0xff, 0xff, 0x3f, 0x0, 0x0, 0x0, 0x7c, + 0xff, 0xff, 0x6d, 0x0, 0x0, 0x0, 0x4e, 0xff, + 0xff, 0x9c, 0x0, 0x0, 0x0, 0x20, 0xff, 0xff, + 0xcb, 0x0, 0x0, 0x0, 0x0, 0xf1, 0xff, 0xf6, + 0x3, 0x0, 0x0, 0x0, 0xc4, 0xff, 0xff, 0x28, + 0x0, 0x0, 0x0, 0x96, 0xff, 0xff, 0x57, 0x0, + 0x0, 0x0, 0x68, 0xff, 0xff, 0x86, 0x0, 0x0, + 0x0, 0x3a, 0xff, 0xff, 0xb5, 0x0, 0x0, 0x0, + 0xd, 0xfe, 0xff, 0xe3, 0x0, 0x0, 0x0, 0x0, + 0xde, 0xff, 0xff, 0x12, 0x0, 0x0, 0x0, 0xb0, + 0xff, 0xff, 0x41, 0x0, 0x0, 0x0, 0x82, 0xff, + 0xff, 0x70, 0x0, 0x0, 0x0, 0x54, 0xff, 0xff, + 0x9f, 0x0, 0x0, 0x0, 0x26, 0xff, 0xff, 0xcd, + 0x0, 0x0, 0x0, 0x2, 0xf5, 0xff, 0xf8, 0x4, + 0x0, 0x0, 0x0, 0xca, 0xff, 0xff, 0x2b, 0x0, + 0x0, 0x0, 0x9c, 0xff, 0xff, 0x5a, 0x0, 0x0, + 0x0, 0x6e, 0xff, 0xff, 0x88, 0x0, 0x0, 0x0, + 0x25, 0x80, 0x80, 0x56, + + /* U+005D "]" */ + 0xb4, 0xff, 0xff, 0xff, 0xff, 0xff, 0xec, 0xb4, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xec, 0x4b, 0x6c, + 0x6c, 0x97, 0xff, 0xff, 0xec, 0x0, 0x0, 0x0, + 0x4c, 0xff, 0xff, 0xec, 0x0, 0x0, 0x0, 0x4c, + 0xff, 0xff, 0xec, 0x0, 0x0, 0x0, 0x4c, 0xff, + 0xff, 0xec, 0x0, 0x0, 0x0, 0x4c, 0xff, 0xff, + 0xec, 0x0, 0x0, 0x0, 0x4c, 0xff, 0xff, 0xec, + 0x0, 0x0, 0x0, 0x4c, 0xff, 0xff, 0xec, 0x0, + 0x0, 0x0, 0x4c, 0xff, 0xff, 0xec, 0x0, 0x0, + 0x0, 0x4c, 0xff, 0xff, 0xec, 0x0, 0x0, 0x0, + 0x4c, 0xff, 0xff, 0xec, 0x0, 0x0, 0x0, 0x4c, + 0xff, 0xff, 0xec, 0x0, 0x0, 0x0, 0x4c, 0xff, + 0xff, 0xec, 0x0, 0x0, 0x0, 0x4c, 0xff, 0xff, + 0xec, 0x0, 0x0, 0x0, 0x4c, 0xff, 0xff, 0xec, + 0x0, 0x0, 0x0, 0x4c, 0xff, 0xff, 0xec, 0x0, + 0x0, 0x0, 0x4c, 0xff, 0xff, 0xec, 0x0, 0x0, + 0x0, 0x4c, 0xff, 0xff, 0xec, 0x0, 0x0, 0x0, + 0x4c, 0xff, 0xff, 0xec, 0x0, 0x0, 0x0, 0x4c, + 0xff, 0xff, 0xec, 0x4e, 0x70, 0x70, 0x9a, 0xff, + 0xff, 0xec, 0xb4, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xec, 0xb4, 0xff, 0xff, 0xff, 0xff, 0xff, 0xec, + + /* U+005E "^" */ + 0x0, 0x0, 0x0, 0x0, 0x0, 0x63, 0x80, 0x80, + 0x80, 0x2d, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x1b, 0xfb, 0xff, 0xff, 0xff, + 0xaa, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x81, 0xff, 0xff, 0xd2, 0xff, 0xfb, + 0x19, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x5, 0xe6, 0xff, 0xce, 0x3e, 0xff, 0xff, 0x7f, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x56, + 0xff, 0xff, 0x65, 0x0, 0xd5, 0xff, 0xe5, 0x4, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xc0, 0xff, + 0xf1, 0xb, 0x0, 0x6c, 0xff, 0xff, 0x55, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x2b, 0xff, 0xff, 0x94, + 0x0, 0x0, 0xe, 0xf4, 0xff, 0xc0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x95, 0xff, 0xff, 0x2c, 0x0, + 0x0, 0x0, 0x9a, 0xff, 0xff, 0x2b, 0x0, 0x0, + 0x0, 0xd, 0xf2, 0xff, 0xc2, 0x0, 0x0, 0x0, + 0x0, 0x30, 0xff, 0xff, 0x95, 0x0, 0x0, 0x0, + 0x6a, 0xff, 0xff, 0x59, 0x0, 0x0, 0x0, 0x0, + 0x0, 0xc7, 0xff, 0xf2, 0xd, 0x0, 0x0, 0xd4, + 0xff, 0xea, 0x6, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x5e, 0xff, 0xff, 0x6b, 0x0, 0x3f, 0xff, 0xff, + 0x88, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x8, + 0xec, 0xff, 0xd5, 0x0, + + /* U+005F "_" */ + 0x3f, 0xfc, 0xfc, 0xfc, 0xfc, 0xfc, 0xfc, 0xfc, + 0xfc, 0xfc, 0xfc, 0xfc, 0xfc, 0xfc, 0xfc, 0x1f, + + /* U+0060 "`" */ + 0x20, 0xf3, 0xff, 0xff, 0x60, 0x0, 0x0, 0x0, + 0x0, 0x2e, 0xe0, 0xff, 0xfa, 0x40, 0x0, 0x0, + 0x0, 0x0, 0x16, 0xc5, 0xff, 0xee, 0x26, 0x0, + 0x0, 0x0, 0x0, 0x6, 0x9f, 0xff, 0xdb, 0x3, + + /* U+0061 "a" */ + 0x0, 0x0, 0x0, 0x41, 0xa9, 0xe1, 0xf9, 0xf7, + 0xd8, 0x8e, 0x18, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x82, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xe8, 0x25, 0x0, 0x0, 0x0, 0x0, 0x3b, + 0xff, 0xff, 0xff, 0xb4, 0x5a, 0x6e, 0xe8, 0xff, + 0xff, 0xbc, 0x0, 0x0, 0x0, 0x0, 0x75, 0xd0, + 0xd0, 0xcc, 0x9, 0x0, 0x0, 0x60, 0xff, 0xff, + 0xfe, 0x12, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x38, 0xff, 0xff, 0xff, + 0x31, 0x0, 0x0, 0x0, 0x0, 0x1d, 0x8a, 0xca, + 0xe4, 0xec, 0xec, 0xf0, 0xff, 0xff, 0xff, 0x38, + 0x0, 0x0, 0x0, 0x37, 0xf1, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x38, 0x0, + 0x0, 0x0, 0xd6, 0xff, 0xff, 0xe7, 0x46, 0xa, + 0x0, 0x34, 0xff, 0xff, 0xff, 0x38, 0x0, 0x0, + 0x27, 0xff, 0xff, 0xff, 0x71, 0x0, 0x0, 0x0, + 0x50, 0xff, 0xff, 0xff, 0x38, 0x0, 0x0, 0x42, + 0xff, 0xff, 0xff, 0x52, 0x0, 0x0, 0x0, 0x8d, + 0xff, 0xff, 0xff, 0x38, 0x0, 0x0, 0x36, 0xff, + 0xff, 0xff, 0x76, 0x0, 0x0, 0x25, 0xf4, 0xff, + 0xff, 0xff, 0x47, 0x0, 0x0, 0x8, 0xf2, 0xff, + 0xff, 0xec, 0x66, 0x6a, 0xe9, 0xe7, 0xcb, 0xff, + 0xff, 0xb7, 0x54, 0x7, 0x0, 0x78, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xf5, 0x43, 0x76, 0xff, 0xff, + 0xff, 0xff, 0x14, 0x0, 0x0, 0x67, 0xd4, 0xf9, + 0xe9, 0xab, 0x2e, 0x0, 0xa, 0xa5, 0xf1, 0xf5, + 0xc0, 0xb, + + /* U+0062 "b" */ + 0x40, 0xff, 0xff, 0xff, 0x2c, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x40, 0xff, + 0xff, 0xff, 0x2c, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x40, 0xff, 0xff, 0xff, + 0x2c, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x40, 0xff, 0xff, 0xff, 0x2c, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x40, 0xff, 0xff, 0xff, 0x2c, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x40, 0xff, + 0xff, 0xff, 0x2a, 0x23, 0xa0, 0xe4, 0xf8, 0xdb, + 0x7d, 0x6, 0x0, 0x0, 0x40, 0xff, 0xff, 0xff, + 0x4d, 0xeb, 0xff, 0xff, 0xff, 0xff, 0xff, 0xb5, + 0x2, 0x0, 0x40, 0xff, 0xff, 0xff, 0xdb, 0xe2, + 0x88, 0x8c, 0xe8, 0xff, 0xff, 0xff, 0x5f, 0x0, + 0x40, 0xff, 0xff, 0xff, 0xe4, 0x14, 0x0, 0x0, + 0x20, 0xf4, 0xff, 0xff, 0xc6, 0x0, 0x40, 0xff, + 0xff, 0xff, 0x79, 0x0, 0x0, 0x0, 0x0, 0xa0, + 0xff, 0xff, 0xfd, 0x8, 0x40, 0xff, 0xff, 0xff, + 0x3d, 0x0, 0x0, 0x0, 0x0, 0x6c, 0xff, 0xff, + 0xff, 0x2a, 0x40, 0xff, 0xff, 0xff, 0x25, 0x0, + 0x0, 0x0, 0x0, 0x58, 0xff, 0xff, 0xff, 0x39, + 0x40, 0xff, 0xff, 0xff, 0x2a, 0x0, 0x0, 0x0, + 0x0, 0x5a, 0xff, 0xff, 0xff, 0x38, 0x40, 0xff, + 0xff, 0xff, 0x42, 0x0, 0x0, 0x0, 0x0, 0x6f, + 0xff, 0xff, 0xff, 0x28, 0x40, 0xff, 0xff, 0xff, + 0x80, 0x0, 0x0, 0x0, 0x0, 0xa6, 0xff, 0xff, + 0xfa, 0x5, 0x40, 0xff, 0xff, 0xff, 0xe3, 0x10, + 0x0, 0x0, 0x25, 0xf7, 0xff, 0xff, 0xbc, 0x0, + 0x43, 0xff, 0xff, 0xff, 0xea, 0xdd, 0x83, 0x89, + 0xea, 0xff, 0xff, 0xff, 0x50, 0x0, 0x48, 0xff, + 0xff, 0xff, 0x54, 0xf4, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xa3, 0x0, 0x0, 0x52, 0xff, 0xff, 0xff, + 0xc, 0x2f, 0xaf, 0xeb, 0xf7, 0xd1, 0x6d, 0x2, + 0x0, 0x0, + + /* U+0063 "c" */ + 0x0, 0x0, 0x0, 0x9, 0x73, 0xc6, 0xee, 0xfa, + 0xe3, 0xa4, 0x31, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x1f, 0xd8, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xfb, 0x69, 0x0, 0x0, 0x0, 0x5, 0xce, 0xff, + 0xff, 0xf8, 0x96, 0x80, 0xcc, 0xff, 0xff, 0xfd, + 0x3e, 0x0, 0x0, 0x5e, 0xff, 0xff, 0xff, 0x51, + 0x0, 0x0, 0x4, 0xcb, 0xff, 0xff, 0xbc, 0x0, + 0x0, 0xb5, 0xff, 0xff, 0xde, 0x0, 0x0, 0x0, + 0x0, 0x4a, 0xa0, 0xa0, 0x9b, 0x2, 0x0, 0xe9, + 0xff, 0xff, 0xab, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x1, 0xfd, 0xff, 0xff, + 0x97, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x2, 0xfe, 0xff, 0xff, 0x98, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0xed, 0xff, 0xff, 0xaf, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xbc, + 0xff, 0xff, 0xe4, 0x1, 0x0, 0x0, 0x0, 0x56, + 0xdc, 0xdc, 0xdb, 0x11, 0x0, 0x69, 0xff, 0xff, + 0xff, 0x5c, 0x0, 0x0, 0x3, 0xc4, 0xff, 0xff, + 0xcf, 0x0, 0x0, 0x9, 0xd9, 0xff, 0xff, 0xfa, + 0x99, 0x7f, 0xcc, 0xff, 0xff, 0xff, 0x4a, 0x0, + 0x0, 0x0, 0x29, 0xe2, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xfb, 0x6c, 0x0, 0x0, 0x0, 0x0, + 0x0, 0xf, 0x7c, 0xcb, 0xf1, 0xfa, 0xe1, 0xa0, + 0x2f, 0x0, 0x0, 0x0, + + /* U+0064 "d" */ + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0xe8, 0xff, 0xff, 0x88, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xe8, 0xff, + 0xff, 0x88, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0xe8, 0xff, 0xff, 0x88, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0xe8, 0xff, 0xff, 0x88, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0xe8, 0xff, 0xff, + 0x88, 0x0, 0x0, 0x40, 0xba, 0xf0, 0xf3, 0xc9, + 0x5b, 0x0, 0xe6, 0xff, 0xff, 0x88, 0x0, 0x5b, + 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0x79, 0xe3, + 0xff, 0xff, 0x88, 0x17, 0xf2, 0xff, 0xff, 0xf9, + 0x95, 0x74, 0xb8, 0xf9, 0xf4, 0xff, 0xff, 0x88, + 0x76, 0xff, 0xff, 0xff, 0x5a, 0x0, 0x0, 0x0, + 0xa3, 0xff, 0xff, 0xff, 0x88, 0xb9, 0xff, 0xff, + 0xe4, 0x1, 0x0, 0x0, 0x0, 0x2a, 0xff, 0xff, + 0xff, 0x88, 0xe1, 0xff, 0xff, 0xb0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0xf2, 0xff, 0xff, 0x88, 0xf1, + 0xff, 0xff, 0x9c, 0x0, 0x0, 0x0, 0x0, 0x0, + 0xdd, 0xff, 0xff, 0x88, 0xf2, 0xff, 0xff, 0x9c, + 0x0, 0x0, 0x0, 0x0, 0x0, 0xde, 0xff, 0xff, + 0x88, 0xe2, 0xff, 0xff, 0xb1, 0x0, 0x0, 0x0, + 0x0, 0x2, 0xf7, 0xff, 0xff, 0x88, 0xbc, 0xff, + 0xff, 0xe6, 0x1, 0x0, 0x0, 0x0, 0x39, 0xff, + 0xff, 0xff, 0x88, 0x7c, 0xff, 0xff, 0xff, 0x5d, + 0x0, 0x0, 0x3, 0xb9, 0xff, 0xff, 0xff, 0x88, + 0x1d, 0xf7, 0xff, 0xff, 0xfa, 0x9a, 0x7c, 0xc9, + 0xf4, 0xf0, 0xff, 0xff, 0x89, 0x0, 0x6e, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0x67, 0xd8, 0xff, + 0xff, 0x8d, 0x0, 0x0, 0x54, 0xc9, 0xf6, 0xee, + 0xbe, 0x4b, 0x0, 0xc3, 0xff, 0xff, 0x99, + + /* U+0065 "e" */ + 0x0, 0x0, 0x0, 0x10, 0x7f, 0xcd, 0xf1, 0xf8, + 0xdd, 0x98, 0x21, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x2d, 0xe5, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xf4, 0x41, 0x0, 0x0, 0x0, 0xc, 0xde, 0xff, + 0xff, 0xce, 0x59, 0x4c, 0xa3, 0xff, 0xff, 0xea, + 0x12, 0x0, 0x0, 0x6e, 0xff, 0xff, 0xee, 0x11, + 0x0, 0x0, 0x0, 0xb6, 0xff, 0xff, 0x75, 0x0, + 0x0, 0xbf, 0xff, 0xff, 0xae, 0x0, 0x0, 0x0, + 0x0, 0x61, 0xff, 0xff, 0xc1, 0x0, 0x0, 0xef, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xee, 0x0, 0x2, 0xfe, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0x2, 0x1, 0xfd, 0xff, 0xff, 0xa9, 0x2c, + 0x2c, 0x2c, 0x2c, 0x2c, 0x2c, 0x2c, 0x2c, 0x1, + 0x0, 0xec, 0xff, 0xff, 0xa9, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xbc, + 0xff, 0xff, 0xdc, 0x0, 0x0, 0x0, 0x0, 0x10, + 0x15, 0x1, 0x0, 0x0, 0x0, 0x6e, 0xff, 0xff, + 0xff, 0x4e, 0x0, 0x0, 0x0, 0xb2, 0xff, 0xfb, + 0x90, 0x0, 0x0, 0xd, 0xe1, 0xff, 0xff, 0xf6, + 0x8e, 0x71, 0xb5, 0xff, 0xff, 0xfa, 0x26, 0x0, + 0x0, 0x0, 0x32, 0xe9, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xf8, 0x4d, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x14, 0x85, 0xd1, 0xf3, 0xf4, 0xd6, 0x96, + 0x25, 0x0, 0x0, 0x0, + + /* U+0066 "f" */ + 0x0, 0x0, 0x0, 0x34, 0xb6, 0xe7, 0xfb, 0xe9, + 0x4e, 0x0, 0x0, 0x20, 0xf4, 0xff, 0xff, 0xff, + 0xff, 0x60, 0x0, 0x0, 0x7d, 0xff, 0xff, 0xff, + 0x97, 0x6c, 0x2f, 0x0, 0x0, 0xa1, 0xff, 0xff, + 0xd9, 0x0, 0x0, 0x0, 0x0, 0x0, 0xa8, 0xff, + 0xff, 0xc8, 0x0, 0x0, 0x0, 0x94, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0x60, 0x94, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x60, 0x39, + 0x64, 0xca, 0xff, 0xff, 0xdd, 0x64, 0x64, 0x25, + 0x0, 0x0, 0xa8, 0xff, 0xff, 0xc8, 0x0, 0x0, + 0x0, 0x0, 0x0, 0xa8, 0xff, 0xff, 0xc8, 0x0, + 0x0, 0x0, 0x0, 0x0, 0xa8, 0xff, 0xff, 0xc8, + 0x0, 0x0, 0x0, 0x0, 0x0, 0xa8, 0xff, 0xff, + 0xc8, 0x0, 0x0, 0x0, 0x0, 0x0, 0xa8, 0xff, + 0xff, 0xc8, 0x0, 0x0, 0x0, 0x0, 0x0, 0xa8, + 0xff, 0xff, 0xc8, 0x0, 0x0, 0x0, 0x0, 0x0, + 0xa8, 0xff, 0xff, 0xc8, 0x0, 0x0, 0x0, 0x0, + 0x0, 0xa8, 0xff, 0xff, 0xc8, 0x0, 0x0, 0x0, + 0x0, 0x0, 0xa8, 0xff, 0xff, 0xc8, 0x0, 0x0, + 0x0, 0x0, 0x0, 0xa8, 0xff, 0xff, 0xc8, 0x0, + 0x0, 0x0, 0x0, 0x0, 0xa8, 0xff, 0xff, 0xc8, + 0x0, 0x0, 0x0, + + /* U+0067 "g" */ + 0x0, 0x0, 0x44, 0xbb, 0xef, 0xf3, 0xca, 0x5b, + 0x0, 0xb8, 0xff, 0xff, 0x93, 0x0, 0x5f, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0x77, 0xcc, 0xff, + 0xff, 0x8c, 0x18, 0xf3, 0xff, 0xff, 0xfc, 0xa2, + 0x80, 0xc7, 0xf8, 0xec, 0xff, 0xff, 0x89, 0x77, + 0xff, 0xff, 0xff, 0x64, 0x0, 0x0, 0x2, 0xb7, + 0xff, 0xff, 0xff, 0x88, 0xba, 0xff, 0xff, 0xe8, + 0x2, 0x0, 0x0, 0x0, 0x40, 0xff, 0xff, 0xff, + 0x88, 0xe2, 0xff, 0xff, 0xb3, 0x0, 0x0, 0x0, + 0x0, 0x1, 0xfa, 0xff, 0xff, 0x88, 0xf2, 0xff, + 0xff, 0x9d, 0x0, 0x0, 0x0, 0x0, 0x0, 0xe3, + 0xff, 0xff, 0x88, 0xf2, 0xff, 0xff, 0x9c, 0x0, + 0x0, 0x0, 0x0, 0x0, 0xde, 0xff, 0xff, 0x88, + 0xe3, 0xff, 0xff, 0xb1, 0x0, 0x0, 0x0, 0x0, + 0x1, 0xf5, 0xff, 0xff, 0x88, 0xbf, 0xff, 0xff, + 0xe5, 0x1, 0x0, 0x0, 0x0, 0x35, 0xff, 0xff, + 0xff, 0x88, 0x80, 0xff, 0xff, 0xff, 0x60, 0x0, + 0x0, 0x2, 0xb4, 0xff, 0xff, 0xff, 0x88, 0x21, + 0xfa, 0xff, 0xff, 0xfb, 0xa0, 0x7f, 0xc6, 0xf7, + 0xef, 0xff, 0xff, 0x88, 0x0, 0x75, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0x6f, 0xde, 0xff, 0xff, + 0x88, 0x0, 0x0, 0x57, 0xc9, 0xf6, 0xef, 0xc0, + 0x4f, 0x0, 0xe6, 0xff, 0xff, 0x80, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7, 0xfd, + 0xff, 0xff, 0x68, 0x2c, 0x8f, 0xa9, 0xc3, 0x2c, + 0x0, 0x0, 0x0, 0x67, 0xff, 0xff, 0xff, 0x2b, + 0x1a, 0xf7, 0xff, 0xff, 0xe6, 0x7a, 0x62, 0x93, + 0xfb, 0xff, 0xff, 0xb8, 0x0, 0x0, 0x5d, 0xfa, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xd1, + 0x16, 0x0, 0x0, 0x0, 0x27, 0x8d, 0xd1, 0xec, + 0xfb, 0xeb, 0xbd, 0x69, 0x7, 0x0, 0x0, + + /* U+0068 "h" */ + 0x40, 0xff, 0xff, 0xff, 0x2c, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x40, 0xff, 0xff, + 0xff, 0x2c, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x40, 0xff, 0xff, 0xff, 0x2c, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x40, + 0xff, 0xff, 0xff, 0x2c, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x40, 0xff, 0xff, 0xff, + 0x2c, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x40, 0xff, 0xff, 0xff, 0x2a, 0x14, 0x93, + 0xe2, 0xf9, 0xdd, 0x82, 0x7, 0x0, 0x40, 0xff, + 0xff, 0xff, 0x36, 0xd5, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xaf, 0x0, 0x40, 0xff, 0xff, 0xff, 0xaf, + 0xfc, 0xc1, 0xcf, 0xff, 0xff, 0xff, 0xff, 0x3f, + 0x40, 0xff, 0xff, 0xff, 0xf8, 0x3b, 0x0, 0x0, + 0x72, 0xff, 0xff, 0xff, 0x89, 0x40, 0xff, 0xff, + 0xff, 0x9b, 0x0, 0x0, 0x0, 0x5, 0xed, 0xff, + 0xff, 0xab, 0x40, 0xff, 0xff, 0xff, 0x4e, 0x0, + 0x0, 0x0, 0x0, 0xc8, 0xff, 0xff, 0xb7, 0x40, + 0xff, 0xff, 0xff, 0x32, 0x0, 0x0, 0x0, 0x0, + 0xb5, 0xff, 0xff, 0xb8, 0x40, 0xff, 0xff, 0xff, + 0x2c, 0x0, 0x0, 0x0, 0x0, 0xb4, 0xff, 0xff, + 0xb8, 0x40, 0xff, 0xff, 0xff, 0x2c, 0x0, 0x0, + 0x0, 0x0, 0xb4, 0xff, 0xff, 0xb8, 0x40, 0xff, + 0xff, 0xff, 0x2c, 0x0, 0x0, 0x0, 0x0, 0xb4, + 0xff, 0xff, 0xb8, 0x40, 0xff, 0xff, 0xff, 0x2c, + 0x0, 0x0, 0x0, 0x0, 0xb4, 0xff, 0xff, 0xb8, + 0x40, 0xff, 0xff, 0xff, 0x2c, 0x0, 0x0, 0x0, + 0x0, 0xb4, 0xff, 0xff, 0xb8, 0x40, 0xff, 0xff, + 0xff, 0x2c, 0x0, 0x0, 0x0, 0x0, 0xb4, 0xff, + 0xff, 0xb8, 0x40, 0xff, 0xff, 0xff, 0x2c, 0x0, + 0x0, 0x0, 0x0, 0xb4, 0xff, 0xff, 0xb8, + + /* U+0069 "i" */ + 0x40, 0xff, 0xff, 0xff, 0x2c, 0x40, 0xff, 0xff, + 0xff, 0x2c, 0x28, 0xa0, 0xa0, 0xa0, 0x1b, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x40, 0xff, 0xff, 0xff, 0x2c, 0x40, 0xff, + 0xff, 0xff, 0x2c, 0x40, 0xff, 0xff, 0xff, 0x2c, + 0x40, 0xff, 0xff, 0xff, 0x2c, 0x40, 0xff, 0xff, + 0xff, 0x2c, 0x40, 0xff, 0xff, 0xff, 0x2c, 0x40, + 0xff, 0xff, 0xff, 0x2c, 0x40, 0xff, 0xff, 0xff, + 0x2c, 0x40, 0xff, 0xff, 0xff, 0x2c, 0x40, 0xff, + 0xff, 0xff, 0x2c, 0x40, 0xff, 0xff, 0xff, 0x2c, + 0x40, 0xff, 0xff, 0xff, 0x2c, 0x40, 0xff, 0xff, + 0xff, 0x2c, 0x40, 0xff, 0xff, 0xff, 0x2c, + + /* U+006A "j" */ + 0x0, 0x0, 0x40, 0xff, 0xff, 0xff, 0x34, 0x0, + 0x0, 0x40, 0xff, 0xff, 0xff, 0x34, 0x0, 0x0, + 0x28, 0xa0, 0xa0, 0xa0, 0x20, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x40, 0xff, 0xff, + 0xff, 0x34, 0x0, 0x0, 0x40, 0xff, 0xff, 0xff, + 0x34, 0x0, 0x0, 0x40, 0xff, 0xff, 0xff, 0x34, + 0x0, 0x0, 0x40, 0xff, 0xff, 0xff, 0x34, 0x0, + 0x0, 0x40, 0xff, 0xff, 0xff, 0x34, 0x0, 0x0, + 0x40, 0xff, 0xff, 0xff, 0x34, 0x0, 0x0, 0x40, + 0xff, 0xff, 0xff, 0x34, 0x0, 0x0, 0x40, 0xff, + 0xff, 0xff, 0x34, 0x0, 0x0, 0x40, 0xff, 0xff, + 0xff, 0x34, 0x0, 0x0, 0x40, 0xff, 0xff, 0xff, + 0x34, 0x0, 0x0, 0x40, 0xff, 0xff, 0xff, 0x34, + 0x0, 0x0, 0x40, 0xff, 0xff, 0xff, 0x34, 0x0, + 0x0, 0x40, 0xff, 0xff, 0xff, 0x34, 0x0, 0x0, + 0x40, 0xff, 0xff, 0xff, 0x34, 0x0, 0x0, 0x44, + 0xff, 0xff, 0xff, 0x34, 0x0, 0x0, 0x64, 0xff, + 0xff, 0xff, 0x2a, 0x3f, 0x9c, 0xed, 0xff, 0xff, + 0xfd, 0x8, 0x68, 0xff, 0xff, 0xff, 0xff, 0x9c, + 0x0, 0x5d, 0xf5, 0xfc, 0xdf, 0x8e, 0xa, 0x0, + + /* U+006B "k" */ + 0x40, 0xff, 0xff, 0xff, 0x2c, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x40, 0xff, 0xff, + 0xff, 0x2c, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x40, 0xff, 0xff, 0xff, 0x2c, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x40, + 0xff, 0xff, 0xff, 0x2c, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x40, 0xff, 0xff, 0xff, + 0x2c, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x40, 0xff, 0xff, 0xff, 0x2c, 0x0, 0x0, + 0x0, 0x81, 0xff, 0xff, 0xf4, 0x32, 0x40, 0xff, + 0xff, 0xff, 0x2c, 0x0, 0x0, 0x54, 0xfe, 0xff, + 0xfd, 0x4f, 0x0, 0x40, 0xff, 0xff, 0xff, 0x2c, + 0x0, 0x2f, 0xf4, 0xff, 0xff, 0x73, 0x0, 0x0, + 0x40, 0xff, 0xff, 0xff, 0x2c, 0x15, 0xe0, 0xff, + 0xff, 0x99, 0x0, 0x0, 0x0, 0x40, 0xff, 0xff, + 0xff, 0x31, 0xc2, 0xff, 0xff, 0xba, 0x4, 0x0, + 0x0, 0x0, 0x40, 0xff, 0xff, 0xff, 0xc0, 0xff, + 0xff, 0xfd, 0x1b, 0x0, 0x0, 0x0, 0x0, 0x40, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x86, + 0x0, 0x0, 0x0, 0x0, 0x40, 0xff, 0xff, 0xff, + 0xff, 0xe3, 0xff, 0xff, 0xf8, 0x23, 0x0, 0x0, + 0x0, 0x40, 0xff, 0xff, 0xff, 0x8a, 0x9, 0xdb, + 0xff, 0xff, 0xb2, 0x0, 0x0, 0x0, 0x40, 0xff, + 0xff, 0xff, 0x2c, 0x0, 0x53, 0xff, 0xff, 0xff, + 0x47, 0x0, 0x0, 0x40, 0xff, 0xff, 0xff, 0x2c, + 0x0, 0x0, 0xc4, 0xff, 0xff, 0xd8, 0x5, 0x0, + 0x40, 0xff, 0xff, 0xff, 0x2c, 0x0, 0x0, 0x38, + 0xff, 0xff, 0xff, 0x74, 0x0, 0x40, 0xff, 0xff, + 0xff, 0x2c, 0x0, 0x0, 0x0, 0xa9, 0xff, 0xff, + 0xf1, 0x18, 0x40, 0xff, 0xff, 0xff, 0x2c, 0x0, + 0x0, 0x0, 0x21, 0xf9, 0xff, 0xff, 0xa0, + + /* U+006C "l" */ + 0x40, 0xff, 0xff, 0xff, 0x2c, 0x40, 0xff, 0xff, + 0xff, 0x2c, 0x40, 0xff, 0xff, 0xff, 0x2c, 0x40, + 0xff, 0xff, 0xff, 0x2c, 0x40, 0xff, 0xff, 0xff, + 0x2c, 0x40, 0xff, 0xff, 0xff, 0x2c, 0x40, 0xff, + 0xff, 0xff, 0x2c, 0x40, 0xff, 0xff, 0xff, 0x2c, + 0x40, 0xff, 0xff, 0xff, 0x2c, 0x40, 0xff, 0xff, + 0xff, 0x2c, 0x40, 0xff, 0xff, 0xff, 0x2c, 0x40, + 0xff, 0xff, 0xff, 0x2c, 0x40, 0xff, 0xff, 0xff, + 0x2c, 0x40, 0xff, 0xff, 0xff, 0x2c, 0x40, 0xff, + 0xff, 0xff, 0x2c, 0x40, 0xff, 0xff, 0xff, 0x2c, + 0x40, 0xff, 0xff, 0xff, 0x2c, 0x40, 0xff, 0xff, + 0xff, 0x2c, 0x40, 0xff, 0xff, 0xff, 0x2c, + + /* U+006D "m" */ + 0x53, 0xff, 0xff, 0xf4, 0x0, 0x26, 0xb0, 0xee, + 0xec, 0xb3, 0x2a, 0x0, 0x0, 0x5a, 0xcf, 0xf6, + 0xe9, 0x96, 0xe, 0x0, 0x49, 0xff, 0xff, 0xfe, + 0x1e, 0xe6, 0xff, 0xff, 0xff, 0xff, 0xe7, 0x16, + 0x65, 0xff, 0xff, 0xff, 0xff, 0xff, 0xba, 0x0, + 0x42, 0xff, 0xff, 0xff, 0xab, 0xee, 0xb8, 0xef, + 0xff, 0xff, 0xff, 0x89, 0xef, 0xe4, 0xc0, 0xfa, + 0xff, 0xff, 0xff, 0x3d, 0x40, 0xff, 0xff, 0xff, + 0xeb, 0x1d, 0x0, 0x23, 0xf5, 0xff, 0xff, 0xff, + 0xcb, 0xb, 0x0, 0x58, 0xff, 0xff, 0xff, 0x81, + 0x40, 0xff, 0xff, 0xff, 0x88, 0x0, 0x0, 0x0, + 0xad, 0xff, 0xff, 0xff, 0x4b, 0x0, 0x0, 0x2, + 0xea, 0xff, 0xff, 0xa1, 0x40, 0xff, 0xff, 0xff, + 0x48, 0x0, 0x0, 0x0, 0x89, 0xff, 0xff, 0xff, + 0xd, 0x0, 0x0, 0x0, 0xc9, 0xff, 0xff, 0xab, + 0x40, 0xff, 0xff, 0xff, 0x31, 0x0, 0x0, 0x0, + 0x79, 0xff, 0xff, 0xef, 0x0, 0x0, 0x0, 0x0, + 0xb9, 0xff, 0xff, 0xac, 0x40, 0xff, 0xff, 0xff, + 0x2c, 0x0, 0x0, 0x0, 0x78, 0xff, 0xff, 0xec, + 0x0, 0x0, 0x0, 0x0, 0xb8, 0xff, 0xff, 0xac, + 0x40, 0xff, 0xff, 0xff, 0x2c, 0x0, 0x0, 0x0, + 0x78, 0xff, 0xff, 0xec, 0x0, 0x0, 0x0, 0x0, + 0xb8, 0xff, 0xff, 0xac, 0x40, 0xff, 0xff, 0xff, + 0x2c, 0x0, 0x0, 0x0, 0x78, 0xff, 0xff, 0xec, + 0x0, 0x0, 0x0, 0x0, 0xb8, 0xff, 0xff, 0xac, + 0x40, 0xff, 0xff, 0xff, 0x2c, 0x0, 0x0, 0x0, + 0x78, 0xff, 0xff, 0xec, 0x0, 0x0, 0x0, 0x0, + 0xb8, 0xff, 0xff, 0xac, 0x40, 0xff, 0xff, 0xff, + 0x2c, 0x0, 0x0, 0x0, 0x78, 0xff, 0xff, 0xec, + 0x0, 0x0, 0x0, 0x0, 0xb8, 0xff, 0xff, 0xac, + 0x40, 0xff, 0xff, 0xff, 0x2c, 0x0, 0x0, 0x0, + 0x78, 0xff, 0xff, 0xec, 0x0, 0x0, 0x0, 0x0, + 0xb8, 0xff, 0xff, 0xac, 0x40, 0xff, 0xff, 0xff, + 0x2c, 0x0, 0x0, 0x0, 0x78, 0xff, 0xff, 0xec, + 0x0, 0x0, 0x0, 0x0, 0xb8, 0xff, 0xff, 0xac, + + /* U+006E "n" */ + 0x53, 0xff, 0xff, 0xf4, 0x0, 0x14, 0x93, 0xe2, + 0xf9, 0xdc, 0x81, 0x6, 0x0, 0x49, 0xff, 0xff, + 0xfe, 0x14, 0xd6, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xab, 0x0, 0x42, 0xff, 0xff, 0xff, 0xa3, 0xfb, + 0xbd, 0xcb, 0xff, 0xff, 0xff, 0xff, 0x3d, 0x40, + 0xff, 0xff, 0xff, 0xf8, 0x3a, 0x0, 0x0, 0x70, + 0xff, 0xff, 0xff, 0x89, 0x40, 0xff, 0xff, 0xff, + 0x9b, 0x0, 0x0, 0x0, 0x5, 0xed, 0xff, 0xff, + 0xab, 0x40, 0xff, 0xff, 0xff, 0x4e, 0x0, 0x0, + 0x0, 0x0, 0xc8, 0xff, 0xff, 0xb7, 0x40, 0xff, + 0xff, 0xff, 0x32, 0x0, 0x0, 0x0, 0x0, 0xb5, + 0xff, 0xff, 0xb8, 0x40, 0xff, 0xff, 0xff, 0x2c, + 0x0, 0x0, 0x0, 0x0, 0xb4, 0xff, 0xff, 0xb8, + 0x40, 0xff, 0xff, 0xff, 0x2c, 0x0, 0x0, 0x0, + 0x0, 0xb4, 0xff, 0xff, 0xb8, 0x40, 0xff, 0xff, + 0xff, 0x2c, 0x0, 0x0, 0x0, 0x0, 0xb4, 0xff, + 0xff, 0xb8, 0x40, 0xff, 0xff, 0xff, 0x2c, 0x0, + 0x0, 0x0, 0x0, 0xb4, 0xff, 0xff, 0xb8, 0x40, + 0xff, 0xff, 0xff, 0x2c, 0x0, 0x0, 0x0, 0x0, + 0xb4, 0xff, 0xff, 0xb8, 0x40, 0xff, 0xff, 0xff, + 0x2c, 0x0, 0x0, 0x0, 0x0, 0xb4, 0xff, 0xff, + 0xb8, 0x40, 0xff, 0xff, 0xff, 0x2c, 0x0, 0x0, + 0x0, 0x0, 0xb4, 0xff, 0xff, 0xb8, + + /* U+006F "o" */ + 0x0, 0x0, 0x0, 0x1, 0x57, 0xb2, 0xe7, 0xfa, + 0xef, 0xcd, 0x87, 0x19, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x11, 0xbe, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xf2, 0x4a, 0x0, 0x0, 0x0, 0x1, + 0xbb, 0xff, 0xff, 0xff, 0xb3, 0x7b, 0x92, 0xf0, + 0xff, 0xff, 0xf5, 0x29, 0x0, 0x0, 0x51, 0xff, + 0xff, 0xff, 0x77, 0x0, 0x0, 0x0, 0x27, 0xf6, + 0xff, 0xff, 0xa8, 0x0, 0x0, 0xaf, 0xff, 0xff, + 0xeb, 0x4, 0x0, 0x0, 0x0, 0x0, 0x9d, 0xff, + 0xff, 0xf7, 0x5, 0x0, 0xe8, 0xff, 0xff, 0xb1, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x66, 0xff, 0xff, + 0xff, 0x2f, 0x1, 0xfd, 0xff, 0xff, 0x99, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x51, 0xff, 0xff, 0xff, + 0x43, 0x1, 0xfd, 0xff, 0xff, 0x99, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x53, 0xff, 0xff, 0xff, 0x42, + 0x0, 0xe8, 0xff, 0xff, 0xb1, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x6b, 0xff, 0xff, 0xff, 0x2b, 0x0, + 0xb1, 0xff, 0xff, 0xe9, 0x3, 0x0, 0x0, 0x0, + 0x0, 0xaa, 0xff, 0xff, 0xf1, 0x2, 0x0, 0x54, + 0xff, 0xff, 0xff, 0x70, 0x0, 0x0, 0x0, 0x37, + 0xfb, 0xff, 0xff, 0x96, 0x0, 0x0, 0x2, 0xbe, + 0xff, 0xff, 0xfe, 0xaa, 0x7a, 0x9b, 0xf7, 0xff, + 0xff, 0xe9, 0x19, 0x0, 0x0, 0x0, 0x13, 0xc3, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xe5, + 0x33, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3, 0x5e, + 0xb8, 0xea, 0xfb, 0xee, 0xc6, 0x78, 0xe, 0x0, + 0x0, 0x0, + + /* U+0070 "p" */ + 0x52, 0xff, 0xff, 0xff, 0x9, 0x26, 0xa3, 0xe5, + 0xf8, 0xda, 0x7b, 0x5, 0x0, 0x0, 0x48, 0xff, + 0xff, 0xff, 0x45, 0xef, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xb2, 0x1, 0x0, 0x43, 0xff, 0xff, 0xff, + 0xe0, 0xe7, 0x90, 0x95, 0xee, 0xff, 0xff, 0xff, + 0x5c, 0x0, 0x40, 0xff, 0xff, 0xff, 0xe9, 0x19, + 0x0, 0x0, 0x27, 0xf7, 0xff, 0xff, 0xc4, 0x0, + 0x40, 0xff, 0xff, 0xff, 0x7d, 0x0, 0x0, 0x0, + 0x0, 0xa4, 0xff, 0xff, 0xfc, 0x7, 0x40, 0xff, + 0xff, 0xff, 0x3e, 0x0, 0x0, 0x0, 0x0, 0x6d, + 0xff, 0xff, 0xff, 0x2a, 0x40, 0xff, 0xff, 0xff, + 0x25, 0x0, 0x0, 0x0, 0x0, 0x58, 0xff, 0xff, + 0xff, 0x39, 0x40, 0xff, 0xff, 0xff, 0x24, 0x0, + 0x0, 0x0, 0x0, 0x5a, 0xff, 0xff, 0xff, 0x38, + 0x40, 0xff, 0xff, 0xff, 0x3b, 0x0, 0x0, 0x0, + 0x0, 0x6f, 0xff, 0xff, 0xff, 0x27, 0x40, 0xff, + 0xff, 0xff, 0x75, 0x0, 0x0, 0x0, 0x0, 0xa7, + 0xff, 0xff, 0xfa, 0x5, 0x40, 0xff, 0xff, 0xff, + 0xe2, 0x11, 0x0, 0x0, 0x26, 0xf8, 0xff, 0xff, + 0xbb, 0x0, 0x40, 0xff, 0xff, 0xff, 0xe8, 0xde, + 0x82, 0x8a, 0xeb, 0xff, 0xff, 0xff, 0x4f, 0x0, + 0x40, 0xff, 0xff, 0xff, 0x5e, 0xf4, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xa0, 0x0, 0x0, 0x40, 0xff, + 0xff, 0xff, 0x2b, 0x2e, 0xad, 0xeb, 0xf6, 0xcf, + 0x6a, 0x2, 0x0, 0x0, 0x40, 0xff, 0xff, 0xff, + 0x2c, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x40, 0xff, 0xff, 0xff, 0x2c, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x40, 0xff, 0xff, 0xff, 0x2c, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x40, 0xff, + 0xff, 0xff, 0x2c, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x40, 0xff, 0xff, 0xff, + 0x2c, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, + + /* U+0071 "q" */ + 0x0, 0x0, 0x3d, 0xb8, 0xef, 0xf3, 0xca, 0x5b, + 0x0, 0xc6, 0xff, 0xff, 0x93, 0x0, 0x57, 0xfd, + 0xff, 0xff, 0xff, 0xff, 0xff, 0x77, 0xd9, 0xff, + 0xff, 0x8c, 0x15, 0xf1, 0xff, 0xff, 0xfc, 0xa2, + 0x80, 0xc4, 0xf8, 0xf2, 0xff, 0xff, 0x89, 0x74, + 0xff, 0xff, 0xff, 0x63, 0x0, 0x0, 0x1, 0xb0, + 0xff, 0xff, 0xff, 0x88, 0xb8, 0xff, 0xff, 0xe7, + 0x2, 0x0, 0x0, 0x0, 0x3a, 0xff, 0xff, 0xff, + 0x88, 0xe1, 0xff, 0xff, 0xb2, 0x0, 0x0, 0x0, + 0x0, 0x0, 0xf9, 0xff, 0xff, 0x88, 0xf1, 0xff, + 0xff, 0x9d, 0x0, 0x0, 0x0, 0x0, 0x0, 0xe2, + 0xff, 0xff, 0x88, 0xf2, 0xff, 0xff, 0x9c, 0x0, + 0x0, 0x0, 0x0, 0x0, 0xde, 0xff, 0xff, 0x88, + 0xe2, 0xff, 0xff, 0xb1, 0x0, 0x0, 0x0, 0x0, + 0x2, 0xf6, 0xff, 0xff, 0x88, 0xbc, 0xff, 0xff, + 0xe5, 0x1, 0x0, 0x0, 0x0, 0x37, 0xff, 0xff, + 0xff, 0x88, 0x7d, 0xff, 0xff, 0xff, 0x5f, 0x0, + 0x0, 0x2, 0xb7, 0xff, 0xff, 0xff, 0x88, 0x1e, + 0xf8, 0xff, 0xff, 0xfb, 0x9c, 0x7c, 0xc6, 0xf9, + 0xee, 0xff, 0xff, 0x88, 0x0, 0x70, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0x74, 0xdb, 0xff, 0xff, + 0x88, 0x0, 0x0, 0x56, 0xca, 0xf6, 0xee, 0xc1, + 0x51, 0x0, 0xdf, 0xff, 0xff, 0x88, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xe0, + 0xff, 0xff, 0x88, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0xe0, 0xff, 0xff, 0x88, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0xe0, 0xff, 0xff, 0x88, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xe0, 0xff, + 0xff, 0x88, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0xe0, 0xff, 0xff, 0x88, + + /* U+0072 "r" */ + 0x54, 0xff, 0xff, 0xf4, 0x0, 0x5e, 0xe2, 0xfe, + 0x58, 0x4a, 0xff, 0xff, 0xfe, 0x30, 0xfd, 0xff, + 0xff, 0x58, 0x42, 0xff, 0xff, 0xff, 0xac, 0xff, + 0xff, 0xff, 0x58, 0x40, 0xff, 0xff, 0xff, 0xfb, + 0x74, 0xa, 0x11, 0xd, 0x40, 0xff, 0xff, 0xff, + 0xa9, 0x0, 0x0, 0x0, 0x0, 0x40, 0xff, 0xff, + 0xff, 0x57, 0x0, 0x0, 0x0, 0x0, 0x40, 0xff, + 0xff, 0xff, 0x35, 0x0, 0x0, 0x0, 0x0, 0x40, + 0xff, 0xff, 0xff, 0x2c, 0x0, 0x0, 0x0, 0x0, + 0x40, 0xff, 0xff, 0xff, 0x2c, 0x0, 0x0, 0x0, + 0x0, 0x40, 0xff, 0xff, 0xff, 0x2c, 0x0, 0x0, + 0x0, 0x0, 0x40, 0xff, 0xff, 0xff, 0x2c, 0x0, + 0x0, 0x0, 0x0, 0x40, 0xff, 0xff, 0xff, 0x2c, + 0x0, 0x0, 0x0, 0x0, 0x40, 0xff, 0xff, 0xff, + 0x2c, 0x0, 0x0, 0x0, 0x0, 0x40, 0xff, 0xff, + 0xff, 0x2c, 0x0, 0x0, 0x0, 0x0, + + /* U+0073 "s" */ + 0x0, 0x0, 0x0, 0x4a, 0xad, 0xe2, 0xf8, 0xf1, + 0xd4, 0x97, 0x2a, 0x0, 0x0, 0x0, 0x0, 0x94, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfd, + 0x69, 0x0, 0x0, 0x41, 0xff, 0xff, 0xfc, 0x9b, + 0x6d, 0x6f, 0xa9, 0xff, 0xff, 0xfc, 0x29, 0x0, + 0x88, 0xff, 0xff, 0xa1, 0x0, 0x0, 0x0, 0x0, + 0xa7, 0xe6, 0xca, 0x56, 0x0, 0x8a, 0xff, 0xff, + 0xd3, 0x19, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x4c, 0xff, 0xff, 0xff, 0xfa, 0xc3, + 0x88, 0x4d, 0xe, 0x0, 0x0, 0x0, 0x0, 0x1, + 0x9d, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf9, + 0xab, 0x26, 0x0, 0x0, 0x0, 0x0, 0x53, 0xb7, + 0xf7, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf2, 0x2a, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x7, 0x3b, 0x74, + 0xc0, 0xff, 0xff, 0xff, 0xa3, 0x0, 0x0, 0x0, + 0xd, 0x0, 0x0, 0x0, 0x0, 0x0, 0x80, 0xff, + 0xff, 0xd4, 0x4, 0xb8, 0xe8, 0xff, 0x2c, 0x0, + 0x0, 0x0, 0x0, 0x66, 0xff, 0xff, 0xcb, 0x0, + 0x9e, 0xff, 0xff, 0xe8, 0x87, 0x64, 0x69, 0x8f, + 0xf2, 0xff, 0xff, 0x79, 0x0, 0x11, 0xc8, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xb2, + 0x6, 0x0, 0x0, 0x9, 0x6f, 0xbf, 0xe9, 0xfb, + 0xf9, 0xe3, 0xb0, 0x53, 0x0, 0x0, + + /* U+0074 "t" */ + 0x0, 0x0, 0x6, 0xee, 0xff, 0x60, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x50, 0xff, 0xff, 0x60, 0x0, + 0x0, 0x0, 0x0, 0x0, 0xab, 0xff, 0xff, 0x60, + 0x0, 0x0, 0x0, 0xb4, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xe0, 0x0, 0xb4, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xe0, 0x0, 0x46, 0x68, 0xff, + 0xff, 0xff, 0x9e, 0x64, 0x57, 0x0, 0x0, 0x8, + 0xff, 0xff, 0xff, 0x60, 0x0, 0x0, 0x0, 0x0, + 0x8, 0xff, 0xff, 0xff, 0x60, 0x0, 0x0, 0x0, + 0x0, 0x8, 0xff, 0xff, 0xff, 0x60, 0x0, 0x0, + 0x0, 0x0, 0x8, 0xff, 0xff, 0xff, 0x60, 0x0, + 0x0, 0x0, 0x0, 0x8, 0xff, 0xff, 0xff, 0x60, + 0x0, 0x0, 0x0, 0x0, 0x8, 0xff, 0xff, 0xff, + 0x60, 0x0, 0x0, 0x0, 0x0, 0x8, 0xff, 0xff, + 0xff, 0x62, 0x0, 0x0, 0x0, 0x0, 0x5, 0xff, + 0xff, 0xff, 0x87, 0x0, 0x0, 0x0, 0x0, 0x0, + 0xe7, 0xff, 0xff, 0xf6, 0x8d, 0x91, 0x5, 0x0, + 0x0, 0x92, 0xff, 0xff, 0xff, 0xff, 0xff, 0x8, + 0x0, 0x0, 0xc, 0x95, 0xe6, 0xf8, 0xe4, 0xb0, + 0x4, + + /* U+0075 "u" */ + 0x74, 0xff, 0xff, 0xf8, 0x0, 0x0, 0x0, 0x0, + 0x0, 0xe8, 0xff, 0xff, 0x88, 0x74, 0xff, 0xff, + 0xf8, 0x0, 0x0, 0x0, 0x0, 0x0, 0xe8, 0xff, + 0xff, 0x88, 0x74, 0xff, 0xff, 0xf8, 0x0, 0x0, + 0x0, 0x0, 0x0, 0xe8, 0xff, 0xff, 0x88, 0x74, + 0xff, 0xff, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x0, + 0xe8, 0xff, 0xff, 0x88, 0x74, 0xff, 0xff, 0xf8, + 0x0, 0x0, 0x0, 0x0, 0x0, 0xe8, 0xff, 0xff, + 0x88, 0x74, 0xff, 0xff, 0xf8, 0x0, 0x0, 0x0, + 0x0, 0x0, 0xe8, 0xff, 0xff, 0x88, 0x74, 0xff, + 0xff, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x0, 0xe8, + 0xff, 0xff, 0x88, 0x74, 0xff, 0xff, 0xf8, 0x0, + 0x0, 0x0, 0x0, 0x0, 0xee, 0xff, 0xff, 0x88, + 0x73, 0xff, 0xff, 0xff, 0xa, 0x0, 0x0, 0x0, + 0xb, 0xff, 0xff, 0xff, 0x88, 0x69, 0xff, 0xff, + 0xff, 0x35, 0x0, 0x0, 0x0, 0x57, 0xff, 0xff, + 0xff, 0x88, 0x46, 0xff, 0xff, 0xff, 0xb1, 0x4, + 0x0, 0x15, 0xd8, 0xff, 0xff, 0xff, 0x88, 0xa, + 0xf1, 0xff, 0xff, 0xff, 0xe0, 0xb9, 0xf0, 0xd7, + 0xcd, 0xff, 0xff, 0x89, 0x0, 0x6c, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xf3, 0x3a, 0xbf, 0xff, 0xff, + 0x8c, 0x0, 0x0, 0x5a, 0xcc, 0xf7, 0xec, 0xb1, + 0x30, 0x0, 0xb0, 0xff, 0xff, 0x99, + + /* U+0076 "v" */ + 0xbd, 0xff, 0xff, 0xdd, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x4, 0xef, 0xff, 0xff, 0x9f, 0x66, 0xff, + 0xff, 0xff, 0x29, 0x0, 0x0, 0x0, 0x0, 0x44, + 0xff, 0xff, 0xff, 0x45, 0x14, 0xfb, 0xff, 0xff, + 0x74, 0x0, 0x0, 0x0, 0x0, 0x93, 0xff, 0xff, + 0xe9, 0x3, 0x0, 0xb9, 0xff, 0xff, 0xc0, 0x0, + 0x0, 0x0, 0x0, 0xe1, 0xff, 0xff, 0x93, 0x0, + 0x0, 0x63, 0xff, 0xff, 0xfb, 0x10, 0x0, 0x0, + 0x31, 0xff, 0xff, 0xff, 0x3a, 0x0, 0x0, 0x12, + 0xfa, 0xff, 0xff, 0x57, 0x0, 0x0, 0x7e, 0xff, + 0xff, 0xe0, 0x1, 0x0, 0x0, 0x0, 0xb5, 0xff, + 0xff, 0xa3, 0x0, 0x0, 0xcb, 0xff, 0xff, 0x88, + 0x0, 0x0, 0x0, 0x0, 0x5f, 0xff, 0xff, 0xec, + 0x2, 0x19, 0xfe, 0xff, 0xff, 0x2f, 0x0, 0x0, + 0x0, 0x0, 0xf, 0xf9, 0xff, 0xff, 0x34, 0x62, + 0xff, 0xff, 0xd5, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0xb2, 0xff, 0xff, 0x79, 0xad, 0xff, 0xff, + 0x7c, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x5b, + 0xff, 0xff, 0xc3, 0xf1, 0xff, 0xff, 0x24, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0xd, 0xf7, 0xff, + 0xff, 0xff, 0xff, 0xca, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0xae, 0xff, 0xff, 0xff, + 0xff, 0x71, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x57, 0xff, 0xff, 0xff, 0xfd, 0x1a, + 0x0, 0x0, 0x0, 0x0, + + /* U+0077 "w" */ + 0x3, 0xf1, 0xff, 0xff, 0x42, 0x0, 0x0, 0x0, + 0x40, 0xff, 0xff, 0xff, 0xab, 0x0, 0x0, 0x0, + 0x0, 0xc7, 0xff, 0xff, 0x60, 0x0, 0xb6, 0xff, + 0xff, 0x76, 0x0, 0x0, 0x0, 0x81, 0xff, 0xff, + 0xff, 0xe9, 0x0, 0x0, 0x0, 0x5, 0xf8, 0xff, + 0xff, 0x20, 0x0, 0x78, 0xff, 0xff, 0xaa, 0x0, + 0x0, 0x0, 0xc2, 0xff, 0xf6, 0xff, 0xff, 0x29, + 0x0, 0x0, 0x34, 0xff, 0xff, 0xe0, 0x0, 0x0, + 0x39, 0xff, 0xff, 0xde, 0x0, 0x0, 0x9, 0xf9, + 0xff, 0xa3, 0xff, 0xff, 0x69, 0x0, 0x0, 0x6a, + 0xff, 0xff, 0xa1, 0x0, 0x0, 0x5, 0xf5, 0xff, + 0xff, 0x12, 0x0, 0x43, 0xff, 0xff, 0x4f, 0xec, + 0xff, 0xa8, 0x0, 0x0, 0xa1, 0xff, 0xff, 0x62, + 0x0, 0x0, 0x0, 0xbc, 0xff, 0xff, 0x46, 0x0, + 0x84, 0xff, 0xff, 0x17, 0xb2, 0xff, 0xe7, 0x0, + 0x0, 0xd7, 0xff, 0xff, 0x22, 0x0, 0x0, 0x0, + 0x7d, 0xff, 0xff, 0x7a, 0x0, 0xc5, 0xff, 0xd8, + 0x0, 0x73, 0xff, 0xff, 0x26, 0xf, 0xfe, 0xff, + 0xe3, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xff, 0xff, + 0xae, 0xb, 0xfa, 0xff, 0x98, 0x0, 0x34, 0xff, + 0xff, 0x66, 0x44, 0xff, 0xff, 0xa4, 0x0, 0x0, + 0x0, 0x0, 0x8, 0xf8, 0xff, 0xe2, 0x42, 0xff, + 0xff, 0x58, 0x0, 0x3, 0xf1, 0xff, 0xa4, 0x79, + 0xff, 0xff, 0x64, 0x0, 0x0, 0x0, 0x0, 0x0, + 0xc2, 0xff, 0xff, 0x8a, 0xff, 0xff, 0x18, 0x0, + 0x0, 0xb5, 0xff, 0xd8, 0xaf, 0xff, 0xff, 0x25, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x83, 0xff, 0xff, + 0xe8, 0xff, 0xd8, 0x0, 0x0, 0x0, 0x76, 0xff, + 0xfe, 0xea, 0xff, 0xe5, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x45, 0xff, 0xff, 0xff, 0xff, 0x98, + 0x0, 0x0, 0x0, 0x36, 0xff, 0xff, 0xff, 0xff, + 0xa6, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xb, + 0xfb, 0xff, 0xff, 0xff, 0x58, 0x0, 0x0, 0x0, + 0x4, 0xf3, 0xff, 0xff, 0xff, 0x66, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0xc7, 0xff, 0xff, + 0xff, 0x18, 0x0, 0x0, 0x0, 0x0, 0xb8, 0xff, + 0xff, 0xff, 0x27, 0x0, 0x0, 0x0, + + /* U+0078 "x" */ + 0x42, 0xfe, 0xff, 0xff, 0x66, 0x0, 0x0, 0x0, + 0x0, 0x96, 0xff, 0xff, 0xf5, 0x26, 0x0, 0x94, + 0xff, 0xff, 0xee, 0x15, 0x0, 0x0, 0x34, 0xfd, + 0xff, 0xff, 0x6c, 0x0, 0x0, 0xa, 0xdb, 0xff, + 0xff, 0xa1, 0x0, 0x2, 0xcb, 0xff, 0xff, 0xbc, + 0x1, 0x0, 0x0, 0x0, 0x3a, 0xfd, 0xff, 0xff, + 0x3f, 0x6a, 0xff, 0xff, 0xf0, 0x1d, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x8a, 0xff, 0xff, 0xd9, 0xef, + 0xff, 0xff, 0x5f, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x7, 0xd5, 0xff, 0xff, 0xff, 0xff, 0xaf, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x38, 0xff, 0xff, 0xff, 0xf6, 0x16, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7e, 0xff, + 0xff, 0xff, 0xff, 0x5b, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x2e, 0xfa, 0xff, 0xff, 0xff, + 0xff, 0xed, 0x19, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x4, 0xce, 0xff, 0xff, 0x93, 0xbc, 0xff, 0xff, + 0xb2, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7e, 0xff, + 0xff, 0xe7, 0xf, 0x27, 0xf9, 0xff, 0xff, 0x5e, + 0x0, 0x0, 0x0, 0x2f, 0xfa, 0xff, 0xff, 0x5a, + 0x0, 0x0, 0x85, 0xff, 0xff, 0xef, 0x1a, 0x0, + 0x5, 0xcf, 0xff, 0xff, 0xbd, 0x0, 0x0, 0x0, + 0xa, 0xdf, 0xff, 0xff, 0xb5, 0x0, 0x7f, 0xff, + 0xff, 0xf9, 0x28, 0x0, 0x0, 0x0, 0x0, 0x4e, + 0xff, 0xff, 0xff, 0x62, + + /* U+0079 "y" */ + 0x9a, 0xff, 0xff, 0xf4, 0x9, 0x0, 0x0, 0x0, + 0x0, 0x7, 0xf3, 0xff, 0xff, 0x99, 0x37, 0xff, + 0xff, 0xff, 0x51, 0x0, 0x0, 0x0, 0x0, 0x4a, + 0xff, 0xff, 0xff, 0x3b, 0x0, 0xd4, 0xff, 0xff, + 0xa4, 0x0, 0x0, 0x0, 0x0, 0x98, 0xff, 0xff, + 0xdd, 0x0, 0x0, 0x71, 0xff, 0xff, 0xf1, 0x6, + 0x0, 0x0, 0x1, 0xe4, 0xff, 0xff, 0x81, 0x0, + 0x0, 0x14, 0xf9, 0xff, 0xff, 0x4c, 0x0, 0x0, + 0x34, 0xff, 0xff, 0xff, 0x24, 0x0, 0x0, 0x0, + 0xab, 0xff, 0xff, 0x9f, 0x0, 0x0, 0x82, 0xff, + 0xff, 0xc6, 0x0, 0x0, 0x0, 0x0, 0x48, 0xff, + 0xff, 0xee, 0x5, 0x0, 0xcd, 0xff, 0xff, 0x69, + 0x0, 0x0, 0x0, 0x0, 0x2, 0xe2, 0xff, 0xff, + 0x46, 0x14, 0xfe, 0xff, 0xf9, 0x12, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x82, 0xff, 0xff, 0x90, 0x57, + 0xff, 0xff, 0xae, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x21, 0xfe, 0xff, 0xd6, 0x9a, 0xff, 0xff, + 0x51, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0xbc, 0xff, 0xff, 0xea, 0xff, 0xed, 0x6, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x59, 0xff, + 0xff, 0xff, 0xff, 0x96, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x8, 0xee, 0xff, 0xff, + 0xff, 0x39, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0xad, 0xff, 0xff, 0xdb, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0xf, 0xf2, 0xff, 0xff, 0x7a, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x9d, 0xff, + 0xff, 0xf3, 0x13, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x7a, 0xa7, 0xd6, 0xff, 0xff, 0xff, 0x7b, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xb4, + 0xff, 0xff, 0xff, 0xff, 0xbf, 0x4, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x9b, 0xf5, 0xfc, + 0xe1, 0x87, 0x8, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, + + /* U+007A "z" */ + 0x80, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0x0, 0x80, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0x0, 0x4a, 0x94, + 0x94, 0x94, 0x94, 0x95, 0xf7, 0xff, 0xff, 0xed, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x6d, 0xff, + 0xff, 0xff, 0x55, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x29, 0xf6, 0xff, 0xff, 0xa2, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x5, 0xcd, 0xff, 0xff, 0xe1, 0xe, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x86, 0xff, 0xff, + 0xfd, 0x3f, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3c, + 0xfd, 0xff, 0xff, 0x8a, 0x0, 0x0, 0x0, 0x0, + 0x0, 0xd, 0xde, 0xff, 0xff, 0xd1, 0x6, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x9f, 0xff, 0xff, 0xf8, + 0x2d, 0x0, 0x0, 0x0, 0x0, 0x0, 0x53, 0xff, + 0xff, 0xff, 0x72, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0xec, 0xff, 0xff, 0xfa, 0x9d, 0x9c, 0x9c, + 0x9c, 0x9c, 0x9c, 0x5c, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x98, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0x98, + + /* U+007B "{" */ + 0x0, 0x0, 0x0, 0x0, 0x45, 0xc6, 0xf3, 0xff, + 0xff, 0x34, 0x0, 0x0, 0x0, 0x35, 0xfd, 0xff, + 0xff, 0xff, 0xff, 0x34, 0x0, 0x0, 0x0, 0x9f, + 0xff, 0xff, 0xff, 0xab, 0x71, 0x15, 0x0, 0x0, + 0x0, 0xc3, 0xff, 0xff, 0xb1, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0xcc, 0xff, 0xff, 0x74, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0xcc, 0xff, 0xff, + 0x68, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xcc, + 0xff, 0xff, 0x68, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0xcd, 0xff, 0xff, 0x68, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0xe8, 0xff, 0xff, 0x64, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x54, 0xff, 0xff, 0xff, + 0x3e, 0x0, 0x0, 0x0, 0x59, 0xb6, 0xfe, 0xff, + 0xff, 0xba, 0x0, 0x0, 0x0, 0x0, 0x98, 0xff, + 0xff, 0xfc, 0x80, 0x6, 0x0, 0x0, 0x0, 0x0, + 0x98, 0xff, 0xff, 0xff, 0xf3, 0x4e, 0x0, 0x0, + 0x0, 0x0, 0x6, 0x31, 0xc2, 0xff, 0xff, 0xf3, + 0x15, 0x0, 0x0, 0x0, 0x0, 0x0, 0x19, 0xfa, + 0xff, 0xff, 0x55, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0xda, 0xff, 0xff, 0x68, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0xcc, 0xff, 0xff, 0x68, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0xcc, 0xff, 0xff, + 0x68, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xcc, + 0xff, 0xff, 0x68, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0xcc, 0xff, 0xff, 0x78, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0xbe, 0xff, 0xff, 0xb8, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x95, 0xff, 0xff, + 0xff, 0xb1, 0x75, 0x16, 0x0, 0x0, 0x0, 0x25, + 0xf9, 0xff, 0xff, 0xff, 0xff, 0x34, 0x0, 0x0, + 0x0, 0x0, 0x42, 0xc8, 0xf9, 0xff, 0xff, 0x34, + + /* U+007C "|" */ + 0x18, 0xff, 0xff, 0xff, 0x18, 0x18, 0xff, 0xff, + 0xff, 0x18, 0x18, 0xff, 0xff, 0xff, 0x18, 0x18, + 0xff, 0xff, 0xff, 0x18, 0x18, 0xff, 0xff, 0xff, + 0x18, 0x18, 0xff, 0xff, 0xff, 0x18, 0x18, 0xff, + 0xff, 0xff, 0x18, 0x18, 0xff, 0xff, 0xff, 0x18, + 0x18, 0xff, 0xff, 0xff, 0x18, 0x18, 0xff, 0xff, + 0xff, 0x18, 0x18, 0xff, 0xff, 0xff, 0x18, 0x18, + 0xff, 0xff, 0xff, 0x18, 0x18, 0xff, 0xff, 0xff, + 0x18, 0x18, 0xff, 0xff, 0xff, 0x18, 0x18, 0xff, + 0xff, 0xff, 0x18, 0x18, 0xff, 0xff, 0xff, 0x18, + 0x18, 0xff, 0xff, 0xff, 0x18, 0x18, 0xff, 0xff, + 0xff, 0x18, 0x18, 0xff, 0xff, 0xff, 0x18, 0x18, + 0xff, 0xff, 0xff, 0x18, 0x18, 0xff, 0xff, 0xff, + 0x18, 0x18, 0xff, 0xff, 0xff, 0x18, 0x18, 0xff, + 0xff, 0xff, 0x18, 0x18, 0xff, 0xff, 0xff, 0x18, + + /* U+007D "}" */ + 0x78, 0xff, 0xff, 0xe8, 0xb0, 0x25, 0x0, 0x0, + 0x0, 0x0, 0x78, 0xff, 0xff, 0xff, 0xff, 0xe3, + 0xc, 0x0, 0x0, 0x0, 0x32, 0x79, 0xcd, 0xff, + 0xff, 0xff, 0x5b, 0x0, 0x0, 0x0, 0x0, 0x0, + 0xb, 0xec, 0xff, 0xff, 0x7f, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0xb9, 0xff, 0xff, 0x88, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0xac, 0xff, 0xff, + 0x88, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xac, + 0xff, 0xff, 0x88, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0xac, 0xff, 0xff, 0x89, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0xa9, 0xff, 0xff, 0xa4, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x84, 0xff, 0xff, + 0xf2, 0x20, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1a, + 0xea, 0xff, 0xff, 0xf3, 0xa9, 0x32, 0x0, 0x0, + 0x0, 0x0, 0x1d, 0xb0, 0xff, 0xff, 0xff, 0x58, + 0x0, 0x0, 0x0, 0x0, 0x88, 0xfd, 0xff, 0xff, + 0xff, 0x58, 0x0, 0x0, 0x0, 0x4d, 0xff, 0xff, + 0xff, 0x8e, 0x1f, 0x2, 0x0, 0x0, 0x0, 0x99, + 0xff, 0xff, 0xcc, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0xac, 0xff, 0xff, 0x95, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0xac, 0xff, 0xff, 0x88, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0xac, 0xff, 0xff, + 0x88, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xac, + 0xff, 0xff, 0x88, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0xbd, 0xff, 0xff, 0x88, 0x0, 0x0, 0x0, + 0x0, 0x0, 0xe, 0xf0, 0xff, 0xff, 0x79, 0x0, + 0x0, 0x0, 0x34, 0x7d, 0xd2, 0xff, 0xff, 0xff, + 0x4f, 0x0, 0x0, 0x0, 0x78, 0xff, 0xff, 0xff, + 0xff, 0xd2, 0x4, 0x0, 0x0, 0x0, 0x78, 0xff, + 0xff, 0xf2, 0xad, 0x1e, 0x0, 0x0, 0x0, 0x0, + + /* U+007E "~" */ + 0x41, 0xb3, 0xe3, 0xf7, 0xdd, 0xa2, 0x5a, 0xe, + 0x0, 0x0, 0x0, 0x13, 0x51, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xfa, 0xc6, 0xa7, 0xba, + 0xf6, 0xa8, 0xff, 0xec, 0xc0, 0xb4, 0xdb, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xa8, 0x64, + 0x4, 0x0, 0x0, 0x0, 0x1f, 0x6d, 0xb8, 0xe2, + 0xfa, 0xe8, 0xa4, 0x29 +}; + + +/*--------------------- + * 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 = 111, .box_w = 0, .box_h = 0, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 0, .adv_w = 133, .box_w = 4, .box_h = 18, .ofs_x = 2, .ofs_y = 0}, + {.bitmap_index = 72, .adv_w = 190, .box_w = 10, .box_h = 7, .ofs_x = 1, .ofs_y = 11}, + {.bitmap_index = 142, .adv_w = 222, .box_w = 14, .box_h = 18, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 394, .adv_w = 222, .box_w = 14, .box_h = 22, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 702, .adv_w = 356, .box_w = 22, .box_h = 18, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 1098, .adv_w = 289, .box_w = 17, .box_h = 18, .ofs_x = 1, .ofs_y = 0}, + {.bitmap_index = 1404, .adv_w = 95, .box_w = 4, .box_h = 7, .ofs_x = 1, .ofs_y = 11}, + {.bitmap_index = 1432, .adv_w = 133, .box_w = 8, .box_h = 24, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 1624, .adv_w = 133, .box_w = 8, .box_h = 24, .ofs_x = 0, .ofs_y = -5}, + {.bitmap_index = 1816, .adv_w = 156, .box_w = 10, .box_h = 10, .ofs_x = 0, .ofs_y = 8}, + {.bitmap_index = 1916, .adv_w = 234, .box_w = 13, .box_h = 14, .ofs_x = 1, .ofs_y = 2}, + {.bitmap_index = 2098, .adv_w = 111, .box_w = 5, .box_h = 8, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 2138, .adv_w = 133, .box_w = 8, .box_h = 4, .ofs_x = 0, .ofs_y = 5}, + {.bitmap_index = 2170, .adv_w = 111, .box_w = 5, .box_h = 4, .ofs_x = 1, .ofs_y = 0}, + {.bitmap_index = 2190, .adv_w = 111, .box_w = 7, .box_h = 20, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 2330, .adv_w = 222, .box_w = 12, .box_h = 18, .ofs_x = 1, .ofs_y = 0}, + {.bitmap_index = 2546, .adv_w = 222, .box_w = 13, .box_h = 18, .ofs_x = 1, .ofs_y = 0}, + {.bitmap_index = 2780, .adv_w = 222, .box_w = 13, .box_h = 18, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 3014, .adv_w = 222, .box_w = 13, .box_h = 18, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 3248, .adv_w = 222, .box_w = 14, .box_h = 18, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 3500, .adv_w = 222, .box_w = 14, .box_h = 18, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 3752, .adv_w = 222, .box_w = 13, .box_h = 18, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 3986, .adv_w = 222, .box_w = 12, .box_h = 18, .ofs_x = 1, .ofs_y = 0}, + {.bitmap_index = 4202, .adv_w = 222, .box_w = 14, .box_h = 18, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 4454, .adv_w = 222, .box_w = 13, .box_h = 18, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 4688, .adv_w = 133, .box_w = 4, .box_h = 13, .ofs_x = 2, .ofs_y = 0}, + {.bitmap_index = 4740, .adv_w = 133, .box_w = 4, .box_h = 17, .ofs_x = 2, .ofs_y = -4}, + {.bitmap_index = 4808, .adv_w = 234, .box_w = 13, .box_h = 15, .ofs_x = 1, .ofs_y = 1}, + {.bitmap_index = 5003, .adv_w = 234, .box_w = 13, .box_h = 10, .ofs_x = 1, .ofs_y = 4}, + {.bitmap_index = 5133, .adv_w = 234, .box_w = 13, .box_h = 15, .ofs_x = 1, .ofs_y = 1}, + {.bitmap_index = 5328, .adv_w = 244, .box_w = 13, .box_h = 18, .ofs_x = 1, .ofs_y = 0}, + {.bitmap_index = 5562, .adv_w = 390, .box_w = 22, .box_h = 22, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 6046, .adv_w = 289, .box_w = 18, .box_h = 18, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 6370, .adv_w = 289, .box_w = 16, .box_h = 18, .ofs_x = 1, .ofs_y = 0}, + {.bitmap_index = 6658, .adv_w = 289, .box_w = 17, .box_h = 18, .ofs_x = 1, .ofs_y = 0}, + {.bitmap_index = 6964, .adv_w = 289, .box_w = 17, .box_h = 18, .ofs_x = 1, .ofs_y = 0}, + {.bitmap_index = 7270, .adv_w = 267, .box_w = 15, .box_h = 18, .ofs_x = 1, .ofs_y = 0}, + {.bitmap_index = 7540, .adv_w = 244, .box_w = 14, .box_h = 18, .ofs_x = 1, .ofs_y = 0}, + {.bitmap_index = 7792, .adv_w = 311, .box_w = 17, .box_h = 18, .ofs_x = 1, .ofs_y = 0}, + {.bitmap_index = 8098, .adv_w = 289, .box_w = 16, .box_h = 18, .ofs_x = 1, .ofs_y = 0}, + {.bitmap_index = 8386, .adv_w = 111, .box_w = 5, .box_h = 18, .ofs_x = 1, .ofs_y = 0}, + {.bitmap_index = 8476, .adv_w = 222, .box_w = 13, .box_h = 18, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 8710, .adv_w = 289, .box_w = 17, .box_h = 18, .ofs_x = 1, .ofs_y = 0}, + {.bitmap_index = 9016, .adv_w = 244, .box_w = 14, .box_h = 18, .ofs_x = 1, .ofs_y = 0}, + {.bitmap_index = 9268, .adv_w = 333, .box_w = 19, .box_h = 18, .ofs_x = 1, .ofs_y = 0}, + {.bitmap_index = 9610, .adv_w = 289, .box_w = 16, .box_h = 18, .ofs_x = 1, .ofs_y = 0}, + {.bitmap_index = 9898, .adv_w = 311, .box_w = 18, .box_h = 18, .ofs_x = 1, .ofs_y = 0}, + {.bitmap_index = 10222, .adv_w = 267, .box_w = 15, .box_h = 18, .ofs_x = 1, .ofs_y = 0}, + {.bitmap_index = 10492, .adv_w = 311, .box_w = 18, .box_h = 23, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 10906, .adv_w = 289, .box_w = 17, .box_h = 18, .ofs_x = 1, .ofs_y = 0}, + {.bitmap_index = 11212, .adv_w = 267, .box_w = 16, .box_h = 18, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 11500, .adv_w = 244, .box_w = 15, .box_h = 18, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 11770, .adv_w = 289, .box_w = 16, .box_h = 18, .ofs_x = 1, .ofs_y = 0}, + {.bitmap_index = 12058, .adv_w = 267, .box_w = 17, .box_h = 18, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 12364, .adv_w = 378, .box_w = 24, .box_h = 18, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 12796, .adv_w = 267, .box_w = 17, .box_h = 18, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 13102, .adv_w = 267, .box_w = 17, .box_h = 18, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 13408, .adv_w = 244, .box_w = 15, .box_h = 18, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 13678, .adv_w = 133, .box_w = 8, .box_h = 24, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 13870, .adv_w = 111, .box_w = 7, .box_h = 20, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 14010, .adv_w = 133, .box_w = 7, .box_h = 24, .ofs_x = 0, .ofs_y = -5}, + {.bitmap_index = 14178, .adv_w = 234, .box_w = 15, .box_h = 12, .ofs_x = 0, .ofs_y = 7}, + {.bitmap_index = 14358, .adv_w = 222, .box_w = 16, .box_h = 1, .ofs_x = -1, .ofs_y = -3}, + {.bitmap_index = 14374, .adv_w = 133, .box_w = 8, .box_h = 4, .ofs_x = 0, .ofs_y = 15}, + {.bitmap_index = 14406, .adv_w = 222, .box_w = 15, .box_h = 14, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 14616, .adv_w = 244, .box_w = 14, .box_h = 19, .ofs_x = 1, .ofs_y = 0}, + {.bitmap_index = 14882, .adv_w = 222, .box_w = 14, .box_h = 14, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 15078, .adv_w = 244, .box_w = 13, .box_h = 19, .ofs_x = 1, .ofs_y = 0}, + {.bitmap_index = 15325, .adv_w = 222, .box_w = 14, .box_h = 14, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 15521, .adv_w = 133, .box_w = 9, .box_h = 19, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 15692, .adv_w = 244, .box_w = 13, .box_h = 19, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 15939, .adv_w = 244, .box_w = 13, .box_h = 19, .ofs_x = 1, .ofs_y = 0}, + {.bitmap_index = 16186, .adv_w = 111, .box_w = 5, .box_h = 19, .ofs_x = 1, .ofs_y = 0}, + {.bitmap_index = 16281, .adv_w = 111, .box_w = 7, .box_h = 24, .ofs_x = -1, .ofs_y = -5}, + {.bitmap_index = 16449, .adv_w = 222, .box_w = 13, .box_h = 19, .ofs_x = 1, .ofs_y = 0}, + {.bitmap_index = 16696, .adv_w = 111, .box_w = 5, .box_h = 19, .ofs_x = 1, .ofs_y = 0}, + {.bitmap_index = 16791, .adv_w = 356, .box_w = 20, .box_h = 14, .ofs_x = 1, .ofs_y = 0}, + {.bitmap_index = 17071, .adv_w = 244, .box_w = 13, .box_h = 14, .ofs_x = 1, .ofs_y = 0}, + {.bitmap_index = 17253, .adv_w = 244, .box_w = 15, .box_h = 14, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 17463, .adv_w = 244, .box_w = 14, .box_h = 19, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 17729, .adv_w = 244, .box_w = 13, .box_h = 19, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 17976, .adv_w = 156, .box_w = 9, .box_h = 14, .ofs_x = 1, .ofs_y = 0}, + {.bitmap_index = 18102, .adv_w = 222, .box_w = 13, .box_h = 14, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 18284, .adv_w = 133, .box_w = 9, .box_h = 17, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 18437, .adv_w = 244, .box_w = 13, .box_h = 14, .ofs_x = 1, .ofs_y = 0}, + {.bitmap_index = 18619, .adv_w = 222, .box_w = 14, .box_h = 14, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 18815, .adv_w = 311, .box_w = 21, .box_h = 14, .ofs_x = -1, .ofs_y = 0}, + {.bitmap_index = 19109, .adv_w = 222, .box_w = 14, .box_h = 14, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 19305, .adv_w = 222, .box_w = 14, .box_h = 19, .ofs_x = 0, .ofs_y = -5}, + {.bitmap_index = 19571, .adv_w = 200, .box_w = 11, .box_h = 14, .ofs_x = 1, .ofs_y = 0}, + {.bitmap_index = 19725, .adv_w = 156, .box_w = 10, .box_h = 24, .ofs_x = 0, .ofs_y = -5}, + {.bitmap_index = 19965, .adv_w = 112, .box_w = 5, .box_h = 24, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 20085, .adv_w = 156, .box_w = 10, .box_h = 24, .ofs_x = 0, .ofs_y = -5}, + {.bitmap_index = 20325, .adv_w = 234, .box_w = 13, .box_h = 4, .ofs_x = 1, .ofs_y = 7} +}; + +/*--------------------- + * CHARACTER MAPPING + *--------------------*/ + + + +/*Collect the unicode lists and glyph_id offsets*/ +static const lv_font_fmt_txt_cmap_t cmaps[] = +{ + { + .range_start = 32, .range_length = 95, .glyph_id_start = 1, + .unicode_list = NULL, .glyph_id_ofs_list = NULL, .list_length = 0, .type = LV_FONT_FMT_TXT_CMAP_FORMAT0_TINY + } +}; + +/*----------------- + * KERNING + *----------------*/ + + +/*Pair left and right glyphs for kerning*/ +static const uint8_t kern_pair_glyph_ids[] = +{ + 1, 34, + 1, 58, + 18, 18, + 34, 1, + 34, 53, + 34, 55, + 34, 56, + 34, 58, + 34, 87, + 34, 88, + 34, 90, + 39, 13, + 39, 15, + 39, 34, + 45, 1, + 45, 53, + 45, 55, + 45, 56, + 45, 58, + 45, 90, + 49, 1, + 49, 13, + 49, 15, + 49, 34, + 51, 55, + 51, 56, + 51, 58, + 53, 13, + 53, 14, + 53, 15, + 53, 27, + 53, 28, + 53, 34, + 53, 48, + 53, 66, + 53, 68, + 53, 70, + 53, 74, + 53, 80, + 53, 83, + 53, 84, + 53, 86, + 53, 88, + 53, 90, + 55, 13, + 55, 14, + 55, 15, + 55, 27, + 55, 28, + 55, 34, + 55, 66, + 55, 70, + 55, 74, + 55, 80, + 55, 83, + 55, 86, + 55, 90, + 56, 13, + 56, 14, + 56, 15, + 56, 27, + 56, 28, + 56, 34, + 56, 66, + 56, 70, + 56, 74, + 56, 80, + 56, 83, + 56, 86, + 56, 90, + 58, 1, + 58, 13, + 58, 14, + 58, 15, + 58, 27, + 58, 28, + 58, 34, + 58, 66, + 58, 70, + 58, 74, + 58, 80, + 58, 81, + 58, 82, + 58, 86, + 58, 87, + 83, 13, + 83, 15, + 87, 13, + 87, 15, + 88, 13, + 88, 15, + 90, 13, + 90, 15 +}; + +/* Kerning between the respective left and right glyphs + * 4.4 format which needs to scaled with `kern_scale`*/ +static const int8_t kern_pair_values[] = +{ + -15, -7, -22, -15, -30, -30, -22, -37, + -15, -7, -15, -44, -44, -22, -7, -30, + -30, -22, -37, -15, -7, -52, -52, -30, + -7, -7, -15, -44, -22, -44, -44, -44, + -30, -7, -30, -30, -30, -7, -30, -22, + -30, -30, -30, -30, -37, -22, -37, -22, + -22, -30, -22, -22, -7, -30, -22, -15, + -15, -22, -8, -22, -7, -7, -22, -15, + -7, -4, -7, -7, -7, -7, -7, -44, + -22, -44, -30, -30, -37, -22, -22, -15, + -30, -22, -30, -22, -22, -22, -22, -30, + -30, -15, -15, -30, -30 +}; + +/*Collect the kern pair's data in one place*/ +static const lv_font_fmt_txt_kern_pair_t kern_pairs = +{ + .glyph_ids = kern_pair_glyph_ids, + .values = kern_pair_values, + .pair_cnt = 93, + .glyph_ids_size = 0 +}; + +/*-------------------- + * ALL CUSTOM DATA + *--------------------*/ + +#if LV_VERSION_CHECK(8, 0, 0) +/*Store all the custom data of the font*/ +static lv_font_fmt_txt_glyph_cache_t cache; +static const lv_font_fmt_txt_dsc_t font_dsc = { +#else +static lv_font_fmt_txt_dsc_t font_dsc = { +#endif + .glyph_bitmap = glyph_bitmap, + .glyph_dsc = glyph_dsc, + .cmaps = cmaps, + .kern_dsc = &kern_pairs, + .kern_scale = 16, + .cmap_num = 1, + .bpp = 8, + .kern_classes = 0, + .bitmap_format = 0, +#if LV_VERSION_CHECK(8, 0, 0) + .cache = &cache +#endif +}; + + +/*----------------- + * PUBLIC FONT + *----------------*/ + +/*Initialize a public general font descriptor*/ +#if LV_VERSION_CHECK(8, 0, 0) +const lv_font_t ui_font_font1 = { +#else +lv_font_t ui_font_font1 = { +#endif + .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 = 24, /*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 +#if LV_VERSION_CHECK(7, 4, 0) || LVGL_VERSION_MAJOR >= 8 + .underline_position = -3, + .underline_thickness = 3, +#endif + .dsc = &font_dsc /*The custom font data. Will be accessed by `get_glyph_bitmap/dsc` */ +}; + + + +#endif /*#if UI_FONT_FONT1*/ + diff --git a/examples/indicator_matter/main/ui/ui_font_font2.c b/examples/indicator_matter/main/ui/ui_font_font2.c new file mode 100644 index 0000000..553639c --- /dev/null +++ b/examples/indicator_matter/main/ui/ui_font_font2.c @@ -0,0 +1,3940 @@ +/******************************************************************************* + * Size: 30 px + * Bpp: 8 + * Opts: --bpp 8 --size 30 --font /Users/virgil/seeed/SenseCAP_Indicator_ESP32/code/squareline_studio/sensecap_d1/assets/fonts/LibraSans-Bold.ttf -o /Users/virgil/seeed/SenseCAP_Indicator_ESP32/code/squareline_studio/sensecap_d1/assets/fonts/ui_font_font2.c --format lvgl -r 0x20-0x7f --no-compress --no-prefilter + ******************************************************************************/ + +#include "ui.h" + +#ifndef UI_FONT_FONT2 +#define UI_FONT_FONT2 1 +#endif + +#if UI_FONT_FONT2 + +/*----------------- + * BITMAPS + *----------------*/ + +/*Store the image of the glyphs*/ +static LV_ATTRIBUTE_LARGE_CONST const uint8_t glyph_bitmap[] = { + /* U+0020 " " */ + + /* U+0021 "!" */ + 0x2c, 0xff, 0xff, 0xff, 0xff, 0x1f, 0x23, 0xff, + 0xff, 0xff, 0xff, 0x16, 0x1a, 0xff, 0xff, 0xff, + 0xff, 0xd, 0x12, 0xff, 0xff, 0xff, 0xff, 0x5, + 0x9, 0xff, 0xff, 0xff, 0xfc, 0x0, 0x1, 0xff, + 0xff, 0xff, 0xf3, 0x0, 0x0, 0xf8, 0xff, 0xff, + 0xeb, 0x0, 0x0, 0xef, 0xff, 0xff, 0xe2, 0x0, + 0x0, 0xe6, 0xff, 0xff, 0xd9, 0x0, 0x0, 0xde, + 0xff, 0xff, 0xd1, 0x0, 0x0, 0xd5, 0xff, 0xff, + 0xc8, 0x0, 0x0, 0xcc, 0xff, 0xff, 0xbf, 0x0, + 0x0, 0xc4, 0xff, 0xff, 0xb7, 0x0, 0x0, 0xbb, + 0xff, 0xff, 0xae, 0x0, 0x0, 0x30, 0x44, 0x44, + 0x2c, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x2c, 0xec, 0xec, 0xec, 0xec, 0xb, 0x30, 0xff, + 0xff, 0xff, 0xff, 0xc, 0x30, 0xff, 0xff, 0xff, + 0xff, 0xc, 0x30, 0xff, 0xff, 0xff, 0xff, 0xc, + + /* U+0022 "\"" */ + 0x0, 0xfc, 0xff, 0xff, 0xf1, 0x0, 0x0, 0xc1, + 0xff, 0xff, 0xff, 0x34, 0x0, 0xf0, 0xff, 0xff, + 0xe3, 0x0, 0x0, 0xb4, 0xff, 0xff, 0xff, 0x25, + 0x0, 0xe3, 0xff, 0xff, 0xd6, 0x0, 0x0, 0xa7, + 0xff, 0xff, 0xff, 0x17, 0x0, 0xd5, 0xff, 0xff, + 0xc8, 0x0, 0x0, 0x99, 0xff, 0xff, 0xff, 0x8, + 0x0, 0xc8, 0xff, 0xff, 0xbb, 0x0, 0x0, 0x8c, + 0xff, 0xff, 0xf9, 0x0, 0x0, 0xba, 0xff, 0xff, + 0xad, 0x0, 0x0, 0x7e, 0xff, 0xff, 0xeb, 0x0, + 0x0, 0xad, 0xff, 0xff, 0xa0, 0x0, 0x0, 0x71, + 0xff, 0xff, 0xdd, 0x0, 0x0, 0x44, 0x6c, 0x6c, + 0x3f, 0x0, 0x0, 0x2b, 0x6c, 0x6c, 0x59, 0x0, + + /* U+0023 "#" */ + 0x0, 0x0, 0x0, 0x0, 0x0, 0x28, 0xff, 0xff, + 0x19, 0x0, 0x0, 0x0, 0x60, 0xff, 0xe7, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x67, 0xff, + 0xdb, 0x0, 0x0, 0x0, 0x0, 0x9f, 0xff, 0xa8, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xa6, + 0xff, 0x9d, 0x0, 0x0, 0x0, 0x0, 0xde, 0xff, + 0x69, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0xe5, 0xff, 0x60, 0x0, 0x0, 0x0, 0x1d, 0xff, + 0xff, 0x2a, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x24, 0xff, 0xff, 0x22, 0x0, 0x0, 0x0, 0x5c, + 0xff, 0xea, 0x0, 0x0, 0x0, 0x0, 0xbc, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0x34, 0x0, 0xbc, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x34, 0x0, + 0x1a, 0x24, 0x24, 0xd2, 0xff, 0x8b, 0x24, 0x24, + 0x24, 0x2c, 0xfd, 0xff, 0x54, 0x24, 0x24, 0x7, + 0x0, 0x0, 0x0, 0x6, 0xf8, 0xff, 0x44, 0x0, + 0x0, 0x0, 0x39, 0xff, 0xfc, 0xa, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x35, 0xff, 0xfe, 0xf, + 0x0, 0x0, 0x0, 0x6e, 0xff, 0xd1, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x6b, 0xff, 0xd6, + 0x0, 0x0, 0x0, 0x0, 0xa4, 0xff, 0x9c, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xa1, 0xff, + 0x9f, 0x0, 0x0, 0x0, 0x0, 0xd9, 0xff, 0x66, + 0x0, 0x0, 0x0, 0x0, 0x7c, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0x74, 0x0, 0x7c, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0x74, 0x0, 0x15, 0x2c, + 0x68, 0xff, 0xf6, 0x2d, 0x2c, 0x2c, 0x2c, 0x9d, + 0xff, 0xcc, 0x2c, 0x2c, 0x2c, 0x13, 0x0, 0x0, + 0x0, 0x79, 0xff, 0xc7, 0x0, 0x0, 0x0, 0x0, + 0xb9, 0xff, 0x92, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0xac, 0xff, 0x93, 0x0, 0x0, 0x0, + 0x0, 0xec, 0xff, 0x5e, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0xe0, 0xff, 0x60, 0x0, 0x0, + 0x0, 0x20, 0xff, 0xff, 0x2a, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x13, 0xff, 0xff, 0x2c, 0x0, + 0x0, 0x0, 0x53, 0xff, 0xf3, 0x2, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x46, 0xff, 0xf6, 0x3, + 0x0, 0x0, 0x0, 0x86, 0xff, 0xc2, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, + + /* U+0024 "$" */ + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x60, + 0xff, 0x34, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x60, 0xff, 0x38, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x27, 0x8d, 0xcc, + 0xef, 0xfc, 0xff, 0xfe, 0xe6, 0xb3, 0x61, 0x4, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x6b, 0xfa, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xcb, 0x13, 0x0, 0x0, 0x0, 0x41, 0xff, 0xff, + 0xff, 0xff, 0xf9, 0xe6, 0xff, 0xf5, 0xff, 0xff, + 0xff, 0xff, 0xb1, 0x0, 0x0, 0x0, 0xb2, 0xff, + 0xff, 0xff, 0xa2, 0xe, 0x60, 0xff, 0x36, 0x59, + 0xf8, 0xff, 0xff, 0xff, 0x34, 0x0, 0x0, 0xe4, + 0xff, 0xff, 0xfb, 0x9, 0x0, 0x60, 0xff, 0x34, + 0x0, 0x84, 0xff, 0xff, 0xff, 0x8f, 0x0, 0x0, + 0xea, 0xff, 0xff, 0xed, 0x0, 0x0, 0x60, 0xff, + 0x34, 0x0, 0x28, 0x9d, 0x76, 0x50, 0x22, 0x0, + 0x0, 0xcd, 0xff, 0xff, 0xff, 0x5d, 0x0, 0x60, + 0xff, 0x34, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x7f, 0xff, 0xff, 0xff, 0xff, 0xb8, + 0xa1, 0xff, 0x34, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x10, 0xdd, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xe4, 0xa4, 0x53, 0x8, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x22, 0xd2, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xee, + 0x7c, 0x5, 0x0, 0x0, 0x0, 0x0, 0x0, 0x6, + 0x65, 0xc5, 0xfd, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xbf, 0x9, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x12, 0x88, 0xff, 0xd5, 0xfd, + 0xff, 0xff, 0xff, 0xff, 0x8c, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x60, 0xff, 0x34, + 0x1a, 0x95, 0xff, 0xff, 0xff, 0xf3, 0x7, 0x0, + 0x0, 0x2, 0x25, 0xb, 0x0, 0x0, 0x60, 0xff, + 0x34, 0x0, 0x0, 0xbd, 0xff, 0xff, 0xff, 0x31, + 0x57, 0xc7, 0xf4, 0xff, 0x5b, 0x0, 0x0, 0x60, + 0xff, 0x34, 0x0, 0x0, 0x95, 0xff, 0xff, 0xff, + 0x3e, 0x51, 0xff, 0xff, 0xff, 0xc6, 0x3, 0x0, + 0x60, 0xff, 0x34, 0x0, 0x0, 0xc8, 0xff, 0xff, + 0xff, 0x26, 0x6, 0xe7, 0xff, 0xff, 0xff, 0xb0, + 0x2c, 0x61, 0xff, 0x3c, 0x2a, 0x9c, 0xff, 0xff, + 0xff, 0xe1, 0x0, 0x0, 0x59, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xfb, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0x5e, 0x0, 0x0, 0x0, 0x71, 0xfa, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xfb, 0x77, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x26, 0x8c, 0xcc, 0xf0, 0xfd, 0xff, 0xfb, 0xed, + 0xc9, 0x8b, 0x28, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x60, 0xff, 0x34, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x60, 0xff, + 0x34, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x19, + 0x44, 0xd, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, + + /* U+0025 "%" */ + 0x0, 0x0, 0x17, 0x8f, 0xd9, 0xf6, 0xf5, 0xd1, + 0x7b, 0x9, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x3, 0xc7, 0xff, 0xfe, 0x42, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x19, 0xe2, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xc4, 0x5, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x77, 0xff, 0xff, 0x94, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x9e, 0xff, 0xff, + 0xda, 0x5e, 0x65, 0xec, 0xff, 0xff, 0x72, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x2b, 0xf8, 0xff, 0xdc, + 0xb, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3, 0xf3, + 0xff, 0xff, 0x37, 0x0, 0x0, 0x5e, 0xff, 0xff, + 0xd0, 0x0, 0x0, 0x0, 0x0, 0x4, 0xcb, 0xff, + 0xfd, 0x3c, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x26, 0xff, 0xff, 0xfb, 0x3, 0x0, 0x0, 0x24, + 0xff, 0xff, 0xfc, 0x6, 0x0, 0x0, 0x0, 0x7d, + 0xff, 0xff, 0x8e, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x39, 0xff, 0xff, 0xeb, 0x0, 0x0, + 0x0, 0x10, 0xff, 0xff, 0xff, 0x18, 0x0, 0x0, + 0x2f, 0xfa, 0xff, 0xd8, 0x9, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x39, 0xff, 0xff, 0xeb, + 0x0, 0x0, 0x0, 0x10, 0xff, 0xff, 0xff, 0x18, + 0x0, 0x5, 0xd0, 0xff, 0xfc, 0x37, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x23, 0xff, + 0xff, 0xfb, 0x3, 0x0, 0x0, 0x24, 0xff, 0xff, + 0xfb, 0x6, 0x0, 0x83, 0xff, 0xff, 0x87, 0x1d, + 0x98, 0xdf, 0xf8, 0xef, 0xbf, 0x53, 0x0, 0x0, + 0x1, 0xed, 0xff, 0xff, 0x3a, 0x0, 0x0, 0x5f, + 0xff, 0xff, 0xca, 0x0, 0x33, 0xfb, 0xff, 0xd3, + 0x2d, 0xea, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0x79, 0x0, 0x0, 0x8f, 0xff, 0xff, 0xdd, 0x5d, + 0x66, 0xed, 0xff, 0xff, 0x66, 0x7, 0xd4, 0xff, + 0xfb, 0x32, 0xb9, 0xff, 0xff, 0xbf, 0x4c, 0x77, + 0xfd, 0xff, 0xfb, 0x25, 0x0, 0xf, 0xd4, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xb5, 0x2, 0x88, + 0xff, 0xff, 0x81, 0x1c, 0xfe, 0xff, 0xfa, 0x13, + 0x0, 0x0, 0xa1, 0xff, 0xff, 0x82, 0x0, 0x0, + 0xf, 0x84, 0xd7, 0xf7, 0xf5, 0xcd, 0x71, 0x5, + 0x38, 0xfc, 0xff, 0xcf, 0x5, 0x52, 0xff, 0xff, + 0xd0, 0x0, 0x0, 0x0, 0x65, 0xff, 0xff, 0xb9, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x9, 0xd8, 0xff, 0xf9, 0x2e, 0x0, 0x6f, + 0xff, 0xff, 0xb7, 0x0, 0x0, 0x0, 0x4c, 0xff, + 0xff, 0xd6, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x8e, 0xff, 0xff, 0x7a, 0x0, + 0x0, 0x79, 0xff, 0xff, 0xb1, 0x0, 0x0, 0x0, + 0x46, 0xff, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x3c, 0xfd, 0xff, 0xca, + 0x3, 0x0, 0x0, 0x6f, 0xff, 0xff, 0xb8, 0x0, + 0x0, 0x0, 0x4d, 0xff, 0xff, 0xd5, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0xb, 0xdc, 0xff, + 0xf7, 0x29, 0x0, 0x0, 0x0, 0x50, 0xff, 0xff, + 0xd2, 0x0, 0x0, 0x0, 0x68, 0xff, 0xff, 0xb6, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x94, + 0xff, 0xff, 0x74, 0x0, 0x0, 0x0, 0x0, 0x19, + 0xfd, 0xff, 0xfb, 0x17, 0x0, 0x0, 0xab, 0xff, + 0xff, 0x7a, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x42, 0xfe, 0xff, 0xc5, 0x2, 0x0, 0x0, 0x0, + 0x0, 0x0, 0xb4, 0xff, 0xff, 0xc9, 0x5b, 0x8a, + 0xff, 0xff, 0xf6, 0x1c, 0x0, 0x0, 0x0, 0x0, + 0x0, 0xd, 0xe0, 0xff, 0xf5, 0x25, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x22, 0xe7, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xfe, 0x65, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x9a, 0xff, 0xff, 0x6e, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1a, + 0x96, 0xe0, 0xfa, 0xee, 0xb8, 0x44, 0x0, 0x0, + + /* U+0026 "&" */ + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x54, 0xb6, + 0xe8, 0xfb, 0xf3, 0xcd, 0x7d, 0xd, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x1, 0xa3, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xdd, 0x1b, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x5a, 0xff, 0xff, 0xff, + 0xc0, 0x83, 0xa2, 0xfb, 0xff, 0xff, 0xa7, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0xb0, 0xff, 0xff, 0xb1, 0x0, 0x0, 0x0, 0x7a, + 0xff, 0xff, 0xf1, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0xcb, 0xff, 0xff, 0x6a, + 0x0, 0x0, 0x0, 0x4e, 0xff, 0xff, 0xf6, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0xba, 0xff, 0xff, 0x83, 0x0, 0x0, 0x8, 0xc1, + 0xff, 0xff, 0xb9, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x83, 0xff, 0xff, 0xd3, + 0x1, 0x4e, 0xd6, 0xff, 0xff, 0xf0, 0x2a, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x2c, 0xff, 0xff, 0xff, 0xe1, 0xff, 0xff, 0xff, + 0xde, 0x2f, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x2a, 0xe8, 0xff, 0xff, + 0xff, 0xff, 0xf0, 0x7d, 0xa, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xe, 0x9a, + 0xfd, 0xff, 0xff, 0xff, 0xff, 0xa4, 0xf, 0x0, + 0x0, 0x0, 0x4, 0xa5, 0x61, 0x15, 0x0, 0x0, + 0x0, 0x1a, 0xd7, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xe0, 0xe, 0x0, 0x0, 0x0, 0x4c, 0xff, + 0xff, 0xf9, 0x13, 0x0, 0x3, 0xc9, 0xff, 0xff, + 0xff, 0xb8, 0x53, 0xfa, 0xff, 0xff, 0x9e, 0x0, + 0x0, 0x0, 0xa8, 0xff, 0xff, 0xb3, 0x0, 0x0, + 0x52, 0xff, 0xff, 0xff, 0xb1, 0x3, 0x0, 0x7c, + 0xff, 0xff, 0xff, 0x66, 0x0, 0x2b, 0xfc, 0xff, + 0xff, 0x4e, 0x0, 0x0, 0x99, 0xff, 0xff, 0xff, + 0x32, 0x0, 0x0, 0x4, 0xc9, 0xff, 0xff, 0xfb, + 0x45, 0xbb, 0xff, 0xff, 0xd6, 0x3, 0x0, 0x0, + 0xaa, 0xff, 0xff, 0xff, 0x18, 0x0, 0x0, 0x0, + 0x1b, 0xe4, 0xff, 0xff, 0xf8, 0xff, 0xff, 0xff, + 0x44, 0x0, 0x0, 0x0, 0x92, 0xff, 0xff, 0xff, + 0x52, 0x0, 0x0, 0x0, 0x0, 0x31, 0xf4, 0xff, + 0xff, 0xff, 0xff, 0xad, 0x0, 0x0, 0x0, 0x0, + 0x4c, 0xff, 0xff, 0xff, 0xe3, 0x30, 0x0, 0x0, + 0x0, 0x19, 0xc5, 0xff, 0xff, 0xff, 0xff, 0xe6, + 0x63, 0x17, 0x17, 0x26, 0x1, 0xc3, 0xff, 0xff, + 0xff, 0xfd, 0xcb, 0xab, 0xbf, 0xf9, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xbc, + 0x0, 0x12, 0xbd, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xfa, 0x89, 0x9d, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xbc, 0x0, 0x0, 0x0, 0x4a, + 0xa3, 0xd8, 0xf3, 0xfb, 0xec, 0xc2, 0x7d, 0x1c, + 0x0, 0x0, 0x35, 0x9d, 0xdd, 0xf8, 0xf1, 0x91, + + /* U+0027 "'" */ + 0x61, 0xff, 0xff, 0xff, 0x8d, 0x54, 0xff, 0xff, + 0xff, 0x7f, 0x47, 0xff, 0xff, 0xff, 0x72, 0x39, + 0xff, 0xff, 0xff, 0x64, 0x2c, 0xff, 0xff, 0xff, + 0x57, 0x1e, 0xff, 0xff, 0xff, 0x49, 0x11, 0xff, + 0xff, 0xff, 0x3c, 0x2, 0x6c, 0x6c, 0x6c, 0x15, + + /* U+0028 "(" */ + 0x0, 0x0, 0x0, 0x0, 0x7b, 0xff, 0xff, 0xff, + 0xa3, 0x0, 0x0, 0x0, 0x27, 0xf8, 0xff, 0xff, + 0xed, 0x15, 0x0, 0x0, 0x0, 0xb2, 0xff, 0xff, + 0xff, 0x70, 0x0, 0x0, 0x0, 0x38, 0xff, 0xff, + 0xff, 0xe0, 0x6, 0x0, 0x0, 0x0, 0xae, 0xff, + 0xff, 0xff, 0x6e, 0x0, 0x0, 0x0, 0x19, 0xfc, + 0xff, 0xff, 0xf6, 0xd, 0x0, 0x0, 0x0, 0x70, + 0xff, 0xff, 0xff, 0xa9, 0x0, 0x0, 0x0, 0x0, + 0xb9, 0xff, 0xff, 0xff, 0x5e, 0x0, 0x0, 0x0, + 0x2, 0xf4, 0xff, 0xff, 0xff, 0x1d, 0x0, 0x0, + 0x0, 0x25, 0xff, 0xff, 0xff, 0xed, 0x0, 0x0, + 0x0, 0x0, 0x4a, 0xff, 0xff, 0xff, 0xc5, 0x0, + 0x0, 0x0, 0x0, 0x63, 0xff, 0xff, 0xff, 0xaa, + 0x0, 0x0, 0x0, 0x0, 0x75, 0xff, 0xff, 0xff, + 0x98, 0x0, 0x0, 0x0, 0x0, 0x7c, 0xff, 0xff, + 0xff, 0x8f, 0x0, 0x0, 0x0, 0x0, 0x7c, 0xff, + 0xff, 0xff, 0x90, 0x0, 0x0, 0x0, 0x0, 0x74, + 0xff, 0xff, 0xff, 0x98, 0x0, 0x0, 0x0, 0x0, + 0x63, 0xff, 0xff, 0xff, 0xa9, 0x0, 0x0, 0x0, + 0x0, 0x49, 0xff, 0xff, 0xff, 0xc3, 0x0, 0x0, + 0x0, 0x0, 0x24, 0xff, 0xff, 0xff, 0xe9, 0x0, + 0x0, 0x0, 0x0, 0x2, 0xf3, 0xff, 0xff, 0xff, + 0x19, 0x0, 0x0, 0x0, 0x0, 0xb7, 0xff, 0xff, + 0xff, 0x59, 0x0, 0x0, 0x0, 0x0, 0x6d, 0xff, + 0xff, 0xff, 0xa4, 0x0, 0x0, 0x0, 0x0, 0x16, + 0xfc, 0xff, 0xff, 0xf4, 0xc, 0x0, 0x0, 0x0, + 0x0, 0xab, 0xff, 0xff, 0xff, 0x6c, 0x0, 0x0, + 0x0, 0x0, 0x35, 0xff, 0xff, 0xff, 0xdf, 0x5, + 0x0, 0x0, 0x0, 0x0, 0xae, 0xff, 0xff, 0xff, + 0x6d, 0x0, 0x0, 0x0, 0x0, 0x25, 0xf8, 0xff, + 0xff, 0xec, 0x13, 0x0, 0x0, 0x0, 0x0, 0x7a, + 0xff, 0xff, 0xff, 0xa2, + + /* U+0029 ")" */ + 0xa5, 0xff, 0xff, 0xff, 0x75, 0x0, 0x0, 0x0, + 0x0, 0x14, 0xec, 0xff, 0xff, 0xf6, 0x21, 0x0, + 0x0, 0x0, 0x0, 0x70, 0xff, 0xff, 0xff, 0xa9, + 0x0, 0x0, 0x0, 0x0, 0x6, 0xe2, 0xff, 0xff, + 0xfe, 0x30, 0x0, 0x0, 0x0, 0x0, 0x71, 0xff, + 0xff, 0xff, 0xa5, 0x0, 0x0, 0x0, 0x0, 0x10, + 0xf8, 0xff, 0xff, 0xfa, 0x13, 0x0, 0x0, 0x0, + 0x0, 0xac, 0xff, 0xff, 0xff, 0x69, 0x0, 0x0, + 0x0, 0x0, 0x61, 0xff, 0xff, 0xff, 0xb1, 0x0, + 0x0, 0x0, 0x0, 0x1f, 0xff, 0xff, 0xff, 0xef, + 0x0, 0x0, 0x0, 0x0, 0x0, 0xef, 0xff, 0xff, + 0xff, 0x1f, 0x0, 0x0, 0x0, 0x0, 0xcb, 0xff, + 0xff, 0xff, 0x45, 0x0, 0x0, 0x0, 0x0, 0xba, + 0xff, 0xff, 0xff, 0x5e, 0x0, 0x0, 0x0, 0x0, + 0xa9, 0xff, 0xff, 0xff, 0x6f, 0x0, 0x0, 0x0, + 0x0, 0x98, 0xff, 0xff, 0xff, 0x77, 0x0, 0x0, + 0x0, 0x0, 0x95, 0xff, 0xff, 0xff, 0x77, 0x0, + 0x0, 0x0, 0x0, 0x9d, 0xff, 0xff, 0xff, 0x6e, + 0x0, 0x0, 0x0, 0x0, 0xb0, 0xff, 0xff, 0xff, + 0x5d, 0x0, 0x0, 0x0, 0x0, 0xcb, 0xff, 0xff, + 0xff, 0x44, 0x0, 0x0, 0x0, 0x1, 0xf3, 0xff, + 0xff, 0xff, 0x1e, 0x0, 0x0, 0x0, 0x25, 0xff, + 0xff, 0xff, 0xee, 0x0, 0x0, 0x0, 0x0, 0x67, + 0xff, 0xff, 0xff, 0xaf, 0x0, 0x0, 0x0, 0x0, + 0xb1, 0xff, 0xff, 0xff, 0x66, 0x0, 0x0, 0x0, + 0x12, 0xfa, 0xff, 0xff, 0xf9, 0x11, 0x0, 0x0, + 0x0, 0x77, 0xff, 0xff, 0xff, 0xa2, 0x0, 0x0, + 0x0, 0x7, 0xe4, 0xff, 0xff, 0xfe, 0x2e, 0x0, + 0x0, 0x0, 0x74, 0xff, 0xff, 0xff, 0xa6, 0x0, + 0x0, 0x0, 0x16, 0xef, 0xff, 0xff, 0xf5, 0x20, + 0x0, 0x0, 0x0, 0xa7, 0xff, 0xff, 0xff, 0x75, + 0x0, 0x0, 0x0, 0x0, + + /* U+002A "*" */ + 0x0, 0x0, 0x0, 0x0, 0xa7, 0xff, 0xff, 0x6f, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x95, 0xff, 0xff, 0x5d, 0x0, 0x0, 0x0, 0x0, + 0x4, 0x56, 0x5, 0x0, 0x83, 0xff, 0xff, 0x4c, + 0x0, 0x11, 0x4d, 0x0, 0x48, 0xff, 0xe5, 0x7c, + 0x86, 0xff, 0xff, 0x62, 0x95, 0xf4, 0xf6, 0xc, + 0xa0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0x5b, 0x5e, 0xa8, 0xe5, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xfe, 0xd6, 0x97, 0x3b, + 0x0, 0x0, 0x0, 0xa0, 0xff, 0xff, 0xff, 0xff, + 0x59, 0x0, 0x0, 0x0, 0x0, 0x0, 0x6f, 0xff, + 0xff, 0xd3, 0xf4, 0xff, 0xf1, 0x2d, 0x0, 0x0, + 0x0, 0x5a, 0xfe, 0xff, 0xfe, 0x38, 0x7b, 0xff, + 0xff, 0xe4, 0x1c, 0x0, 0x0, 0x9b, 0xff, 0xff, + 0x9e, 0x0, 0x7, 0xdd, 0xff, 0xf4, 0x55, 0x0, + 0x0, 0x0, 0x48, 0xd2, 0x16, 0x0, 0x0, 0x50, + 0xbd, 0x21, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + + /* U+002B "+" */ + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x11, 0x14, + 0x14, 0x8, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xe4, 0xff, + 0xff, 0x68, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xe4, 0xff, + 0xff, 0x68, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xe4, 0xff, + 0xff, 0x68, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xe4, 0xff, + 0xff, 0x68, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xe4, 0xff, + 0xff, 0x68, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x2f, 0x40, 0x40, 0x40, 0x40, 0x40, 0xeb, 0xff, + 0xff, 0x8e, 0x40, 0x40, 0x40, 0x40, 0x40, 0x13, + 0xbc, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x4c, + 0xbc, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x4c, + 0xbc, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x4c, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xe4, 0xff, + 0xff, 0x68, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xe4, 0xff, + 0xff, 0x68, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xe4, 0xff, + 0xff, 0x68, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xe4, 0xff, + 0xff, 0x68, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xe4, 0xff, + 0xff, 0x68, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xe4, 0xff, + 0xff, 0x68, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + + /* U+002C "," */ + 0x65, 0x70, 0x70, 0x70, 0x24, 0xe8, 0xff, 0xff, + 0xff, 0x54, 0xe8, 0xff, 0xff, 0xff, 0x54, 0xe8, + 0xff, 0xff, 0xff, 0x54, 0xe8, 0xff, 0xff, 0xff, + 0x4c, 0x0, 0x14, 0xff, 0xff, 0x3a, 0x0, 0x4a, + 0xff, 0xfe, 0xf, 0x0, 0xaf, 0xff, 0xc5, 0x0, + 0x3e, 0xff, 0xff, 0x55, 0x0, 0x62, 0x80, 0x71, + 0x0, 0x0, + + /* U+002D "-" */ + 0x70, 0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x6c, + 0xd4, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xcc, + 0xd4, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xcc, + 0xd4, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xcc, + + /* U+002E "." */ + 0x6a, 0x70, 0x70, 0x70, 0x1d, 0xf4, 0xff, 0xff, + 0xff, 0x44, 0xf4, 0xff, 0xff, 0xff, 0x44, 0xf4, + 0xff, 0xff, 0xff, 0x44, 0xf4, 0xff, 0xff, 0xff, + 0x44, + + /* U+002F "/" */ + 0x0, 0x0, 0x0, 0x0, 0x89, 0xff, 0xff, 0xf2, + 0x1, 0x0, 0x0, 0x0, 0x0, 0xbb, 0xff, 0xff, + 0xc2, 0x0, 0x0, 0x0, 0x0, 0x0, 0xec, 0xff, + 0xff, 0x91, 0x0, 0x0, 0x0, 0x0, 0x1e, 0xff, + 0xff, 0xff, 0x60, 0x0, 0x0, 0x0, 0x0, 0x50, + 0xff, 0xff, 0xff, 0x2f, 0x0, 0x0, 0x0, 0x0, + 0x81, 0xff, 0xff, 0xf9, 0x5, 0x0, 0x0, 0x0, + 0x0, 0xb3, 0xff, 0xff, 0xcd, 0x0, 0x0, 0x0, + 0x0, 0x0, 0xe5, 0xff, 0xff, 0x9c, 0x0, 0x0, + 0x0, 0x0, 0x16, 0xff, 0xff, 0xff, 0x6b, 0x0, + 0x0, 0x0, 0x0, 0x48, 0xff, 0xff, 0xff, 0x3a, + 0x0, 0x0, 0x0, 0x0, 0x79, 0xff, 0xff, 0xfd, + 0xc, 0x0, 0x0, 0x0, 0x0, 0xab, 0xff, 0xff, + 0xd9, 0x0, 0x0, 0x0, 0x0, 0x0, 0xdd, 0xff, + 0xff, 0xa8, 0x0, 0x0, 0x0, 0x0, 0xf, 0xfe, + 0xff, 0xff, 0x77, 0x0, 0x0, 0x0, 0x0, 0x40, + 0xff, 0xff, 0xff, 0x46, 0x0, 0x0, 0x0, 0x0, + 0x72, 0xff, 0xff, 0xff, 0x15, 0x0, 0x0, 0x0, + 0x0, 0xa3, 0xff, 0xff, 0xe4, 0x0, 0x0, 0x0, + 0x0, 0x0, 0xd5, 0xff, 0xff, 0xb3, 0x0, 0x0, + 0x0, 0x0, 0xa, 0xfc, 0xff, 0xff, 0x82, 0x0, + 0x0, 0x0, 0x0, 0x38, 0xff, 0xff, 0xff, 0x51, + 0x0, 0x0, 0x0, 0x0, 0x6a, 0xff, 0xff, 0xff, + 0x20, 0x0, 0x0, 0x0, 0x0, 0x9b, 0xff, 0xff, + 0xef, 0x0, 0x0, 0x0, 0x0, 0x0, + + /* U+0030 "0" */ + 0x0, 0x0, 0x0, 0x16, 0x82, 0xcb, 0xec, 0xfa, + 0xe6, 0xb8, 0x60, 0x2, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x48, 0xf0, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xc6, 0xf, 0x0, 0x0, 0x0, 0x2b, + 0xf6, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xba, 0x0, 0x0, 0x0, 0xb3, 0xff, + 0xff, 0xff, 0xcb, 0x4e, 0x34, 0x6c, 0xf4, 0xff, + 0xff, 0xff, 0x4c, 0x0, 0x16, 0xfd, 0xff, 0xff, + 0xf2, 0x15, 0x0, 0x0, 0x0, 0x6a, 0xff, 0xff, + 0xff, 0xb1, 0x0, 0x5c, 0xff, 0xff, 0xff, 0xaa, + 0x0, 0x0, 0x0, 0x0, 0xf, 0xfd, 0xff, 0xff, + 0xf6, 0x6, 0x88, 0xff, 0xff, 0xff, 0x7b, 0x0, + 0x0, 0x0, 0x0, 0x0, 0xde, 0xff, 0xff, 0xff, + 0x2b, 0xac, 0xff, 0xff, 0xff, 0x63, 0x0, 0x0, + 0x0, 0x0, 0x0, 0xc6, 0xff, 0xff, 0xff, 0x51, + 0xbb, 0xff, 0xff, 0xff, 0x56, 0x0, 0x0, 0x0, + 0x0, 0x0, 0xb8, 0xff, 0xff, 0xff, 0x62, 0xc6, + 0xff, 0xff, 0xff, 0x51, 0x0, 0x0, 0x0, 0x0, + 0x0, 0xb2, 0xff, 0xff, 0xff, 0x6e, 0xc6, 0xff, + 0xff, 0xff, 0x52, 0x0, 0x0, 0x0, 0x0, 0x0, + 0xb3, 0xff, 0xff, 0xff, 0x6d, 0xbb, 0xff, 0xff, + 0xff, 0x57, 0x0, 0x0, 0x0, 0x0, 0x0, 0xb9, + 0xff, 0xff, 0xff, 0x61, 0xa8, 0xff, 0xff, 0xff, + 0x66, 0x0, 0x0, 0x0, 0x0, 0x0, 0xca, 0xff, + 0xff, 0xff, 0x4d, 0x80, 0xff, 0xff, 0xff, 0x7f, + 0x0, 0x0, 0x0, 0x0, 0x0, 0xe6, 0xff, 0xff, + 0xff, 0x25, 0x4e, 0xff, 0xff, 0xff, 0xb1, 0x0, + 0x0, 0x0, 0x0, 0x1a, 0xff, 0xff, 0xff, 0xee, + 0x3, 0x9, 0xf5, 0xff, 0xff, 0xf6, 0x19, 0x0, + 0x0, 0x0, 0x7d, 0xff, 0xff, 0xff, 0xa0, 0x0, + 0x0, 0x94, 0xff, 0xff, 0xff, 0xd0, 0x56, 0x40, + 0x7f, 0xfb, 0xff, 0xff, 0xfe, 0x35, 0x0, 0x0, + 0x15, 0xe6, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0x9a, 0x0, 0x0, 0x0, 0x0, + 0x2e, 0xe2, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xa9, 0x5, 0x0, 0x0, 0x0, 0x0, 0x0, + 0xd, 0x79, 0xca, 0xee, 0xf9, 0xe3, 0xad, 0x4c, + 0x0, 0x0, 0x0, 0x0, + + /* U+0031 "1" */ + 0x0, 0x0, 0x0, 0x0, 0xa, 0x8a, 0xfb, 0xff, + 0xff, 0xff, 0x20, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x49, 0xdf, 0xff, 0xff, 0xff, 0xff, + 0xff, 0x20, 0x0, 0x0, 0x0, 0x0, 0x0, 0x18, + 0xa9, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0x20, 0x0, 0x0, 0x0, 0x0, 0x0, 0xe7, 0xff, + 0xff, 0xff, 0xb1, 0xff, 0xff, 0xff, 0xff, 0x20, + 0x0, 0x0, 0x0, 0x0, 0x0, 0xf4, 0xff, 0xdc, + 0x49, 0x4, 0xff, 0xff, 0xff, 0xff, 0x20, 0x0, + 0x0, 0x0, 0x0, 0x0, 0xeb, 0x7f, 0x8, 0x0, + 0x4, 0xff, 0xff, 0xff, 0xff, 0x20, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x1d, 0x0, 0x0, 0x0, 0x4, + 0xff, 0xff, 0xff, 0xff, 0x20, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x4, 0xff, + 0xff, 0xff, 0xff, 0x20, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x4, 0xff, 0xff, + 0xff, 0xff, 0x20, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x4, 0xff, 0xff, 0xff, + 0xff, 0x20, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x4, 0xff, 0xff, 0xff, 0xff, + 0x20, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x4, 0xff, 0xff, 0xff, 0xff, 0x20, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x4, 0xff, 0xff, 0xff, 0xff, 0x20, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x4, 0xff, 0xff, 0xff, 0xff, 0x20, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x4, + 0xff, 0xff, 0xff, 0xff, 0x20, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x4, 0xff, + 0xff, 0xff, 0xff, 0x20, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x8, 0x8, 0x8, 0x8, 0xb, 0xff, 0xff, + 0xff, 0xff, 0x27, 0x8, 0x8, 0x8, 0x6, 0x1c, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xd8, 0x1c, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xd8, 0x1c, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xd8, + + /* U+0032 "2" */ + 0x0, 0x0, 0x0, 0x39, 0x9d, 0xd7, 0xf3, 0xfb, + 0xed, 0xc7, 0x87, 0x23, 0x0, 0x0, 0x0, 0x0, + 0x3, 0x99, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xf8, 0x6c, 0x0, 0x0, 0x0, 0x91, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0x51, 0x0, 0x27, 0xfd, 0xff, + 0xff, 0xff, 0xbe, 0x57, 0x46, 0x76, 0xed, 0xff, + 0xff, 0xff, 0xd0, 0x0, 0x80, 0xff, 0xff, 0xff, + 0xd0, 0x4, 0x0, 0x0, 0x0, 0x51, 0xff, 0xff, + 0xff, 0xff, 0xf, 0x8d, 0xcc, 0xcc, 0xcc, 0x63, + 0x0, 0x0, 0x0, 0x0, 0x11, 0xff, 0xff, 0xff, + 0xff, 0x21, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x2d, 0xff, 0xff, 0xff, 0xfe, + 0xb, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0xa7, 0xff, 0xff, 0xff, 0xc2, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x75, 0xff, 0xff, 0xff, 0xff, 0x46, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x2, 0x88, 0xff, + 0xff, 0xff, 0xff, 0x90, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x10, 0xb7, 0xff, 0xff, 0xff, + 0xff, 0x94, 0x2, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x28, 0xda, 0xff, 0xff, 0xff, 0xfd, 0x74, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3f, + 0xf1, 0xff, 0xff, 0xff, 0xe8, 0x43, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x45, 0xf6, 0xff, + 0xff, 0xff, 0xc4, 0x18, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x2f, 0xf4, 0xff, 0xff, 0xff, + 0xa2, 0x6, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0xe, 0xe0, 0xff, 0xff, 0xff, 0xa5, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x8f, 0xff, 0xff, 0xff, 0xfe, 0x6c, 0x5c, 0x5c, + 0x5c, 0x5c, 0x5c, 0x5c, 0x5c, 0x5c, 0x2c, 0xf1, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0x7c, 0xf4, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0x7c, 0xf4, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0x7c, + + /* U+0033 "3" */ + 0x0, 0x0, 0x0, 0x2, 0x53, 0xaa, 0xdd, 0xf5, + 0xfa, 0xec, 0xc7, 0x89, 0x26, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x1c, 0xca, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xfb, 0x7c, 0x0, 0x0, + 0x0, 0xd, 0xdb, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x62, 0x0, + 0x0, 0x7d, 0xff, 0xff, 0xff, 0xfe, 0x9a, 0x50, + 0x48, 0x7d, 0xf1, 0xff, 0xff, 0xff, 0xd6, 0x0, + 0x0, 0xcf, 0xff, 0xff, 0xff, 0x83, 0x0, 0x0, + 0x0, 0x0, 0x5c, 0xff, 0xff, 0xff, 0xfe, 0x6, + 0x0, 0x30, 0x43, 0x52, 0x62, 0x17, 0x0, 0x0, + 0x0, 0x0, 0x2a, 0xff, 0xff, 0xff, 0xfc, 0x4, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x77, 0xff, 0xff, 0xff, 0xbd, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x4c, 0x50, + 0x67, 0xab, 0xfd, 0xff, 0xff, 0xf1, 0x2f, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xfa, 0xac, 0x25, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xff, + 0xff, 0xff, 0xf4, 0x9c, 0x48, 0x1, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xc9, 0x1c, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x2, + 0x14, 0x4d, 0xd2, 0xff, 0xff, 0xff, 0xd2, 0x4, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x16, 0xec, 0xff, 0xff, 0xff, 0x55, + 0x0, 0x0, 0x3, 0x16, 0x27, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0xb2, 0xff, 0xff, 0xff, 0x8b, + 0x33, 0xec, 0xfe, 0xff, 0xfe, 0x16, 0x0, 0x0, + 0x0, 0x0, 0x0, 0xbc, 0xff, 0xff, 0xff, 0x8c, + 0xc, 0xf8, 0xff, 0xff, 0xff, 0x91, 0x0, 0x0, + 0x0, 0x0, 0x22, 0xf5, 0xff, 0xff, 0xff, 0x6c, + 0x0, 0xa1, 0xff, 0xff, 0xff, 0xff, 0xb5, 0x65, + 0x56, 0x7e, 0xe8, 0xff, 0xff, 0xff, 0xfc, 0x20, + 0x0, 0x18, 0xe9, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x8c, 0x0, + 0x0, 0x0, 0x28, 0xd3, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xfe, 0x91, 0x2, 0x0, + 0x0, 0x0, 0x0, 0x4, 0x57, 0xab, 0xdd, 0xf5, + 0xfb, 0xee, 0xcb, 0x8f, 0x2e, 0x0, 0x0, 0x0, + + /* U+0034 "4" */ + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x2d, 0xf9, 0xff, 0xff, 0xff, 0xc4, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x5, 0xce, 0xff, 0xff, 0xff, 0xff, 0xc4, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x81, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc4, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x32, 0xfb, 0xff, 0xe8, 0xff, 0xff, 0xff, + 0xc4, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x7, 0xd4, 0xff, 0xff, 0x72, 0xff, 0xff, + 0xff, 0xc4, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x88, 0xff, 0xff, 0xbf, 0x24, 0xff, + 0xff, 0xff, 0xc4, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x38, 0xfc, 0xff, 0xf5, 0x23, 0x27, + 0xff, 0xff, 0xff, 0xc4, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x9, 0xd9, 0xff, 0xff, 0x6f, 0x0, + 0x28, 0xff, 0xff, 0xff, 0xc4, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x8f, 0xff, 0xff, 0xc3, 0x2, + 0x0, 0x28, 0xff, 0xff, 0xff, 0xc4, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x3e, 0xfe, 0xff, 0xf6, 0x24, + 0x0, 0x0, 0x28, 0xff, 0xff, 0xff, 0xc4, 0x0, + 0x0, 0x0, 0x0, 0xb, 0xdd, 0xff, 0xff, 0x71, + 0x0, 0x0, 0x0, 0x28, 0xff, 0xff, 0xff, 0xc4, + 0x0, 0x0, 0x0, 0x0, 0x96, 0xff, 0xff, 0xc4, + 0x2, 0x0, 0x0, 0x0, 0x28, 0xff, 0xff, 0xff, + 0xc4, 0x0, 0x0, 0x0, 0x43, 0xfe, 0xff, 0xf9, + 0x32, 0xc, 0xc, 0xc, 0xc, 0x32, 0xff, 0xff, + 0xff, 0xc6, 0xc, 0xc, 0x6, 0x8c, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0x88, 0x8c, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x88, 0x8c, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x88, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x28, 0xff, 0xff, 0xff, 0xc4, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x28, 0xff, 0xff, 0xff, 0xc4, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x28, 0xff, 0xff, 0xff, 0xc4, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x28, 0xff, 0xff, 0xff, + 0xc4, 0x0, 0x0, 0x0, + + /* U+0035 "5" */ + 0x0, 0x0, 0xc9, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xa4, 0x0, + 0x0, 0x0, 0xda, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xa4, 0x0, + 0x0, 0x0, 0xeb, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xa4, 0x0, + 0x0, 0x0, 0xfb, 0xff, 0xff, 0xee, 0x8, 0x8, + 0x8, 0x8, 0x8, 0x8, 0x8, 0x8, 0x5, 0x0, + 0x0, 0xe, 0xff, 0xff, 0xff, 0xda, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x1f, 0xff, 0xff, 0xff, 0xc7, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x31, 0xff, 0xff, 0xff, 0xb3, 0x44, 0xb4, + 0xec, 0xfa, 0xe6, 0xac, 0x48, 0x0, 0x0, 0x0, + 0x0, 0x42, 0xff, 0xff, 0xff, 0xf0, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xa6, 0x7, 0x0, + 0x0, 0x53, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x98, 0x0, + 0x0, 0x64, 0xff, 0xff, 0xff, 0xff, 0xce, 0x6b, + 0x57, 0x85, 0xf4, 0xff, 0xff, 0xff, 0xfe, 0x2a, + 0x0, 0x49, 0xa4, 0xa4, 0xa4, 0x89, 0x4, 0x0, + 0x0, 0x0, 0x2e, 0xfa, 0xff, 0xff, 0xff, 0x85, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0xa2, 0xff, 0xff, 0xff, 0xbb, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x73, 0xff, 0xff, 0xff, 0xd1, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x7a, 0xff, 0xff, 0xff, 0xc9, + 0x2, 0x7e, 0x93, 0xa8, 0xbc, 0x27, 0x0, 0x0, + 0x0, 0x0, 0x0, 0xa8, 0xff, 0xff, 0xff, 0xaa, + 0x0, 0xd6, 0xff, 0xff, 0xff, 0x9f, 0x0, 0x0, + 0x0, 0x0, 0x32, 0xfc, 0xff, 0xff, 0xff, 0x65, + 0x0, 0x77, 0xff, 0xff, 0xff, 0xff, 0xad, 0x55, + 0x49, 0x7f, 0xf4, 0xff, 0xff, 0xff, 0xe7, 0xa, + 0x0, 0x9, 0xd5, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xfb, 0x46, 0x0, + 0x0, 0x0, 0x19, 0xc7, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xeb, 0x48, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x1, 0x52, 0xa9, 0xde, 0xf6, + 0xfa, 0xe8, 0xba, 0x70, 0xd, 0x0, 0x0, 0x0, + + /* U+0036 "6" */ + 0x0, 0x0, 0x0, 0x0, 0x51, 0xab, 0xe1, 0xf8, + 0xf5, 0xd6, 0x96, 0x28, 0x0, 0x0, 0x0, 0x0, + 0x0, 0xf, 0xba, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xfa, 0x5c, 0x0, 0x0, 0x0, 0x5, + 0xc5, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xfa, 0x2f, 0x0, 0x0, 0x72, 0xff, + 0xff, 0xff, 0xf4, 0x77, 0x3d, 0x56, 0xd3, 0xff, + 0xff, 0xff, 0xac, 0x0, 0x3, 0xe9, 0xff, 0xff, + 0xfe, 0x40, 0x0, 0x0, 0x0, 0x18, 0xe2, 0xcc, + 0xae, 0x88, 0x0, 0x45, 0xff, 0xff, 0xff, 0xb3, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x82, 0xff, 0xff, 0xff, 0x65, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0xaf, 0xff, 0xff, 0xff, 0x3b, 0x26, 0x9c, + 0xe1, 0xf9, 0xed, 0xbe, 0x61, 0x3, 0x0, 0x0, + 0xcb, 0xff, 0xff, 0xff, 0x6d, 0xf6, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xbb, 0xa, 0x0, 0xd8, + 0xff, 0xff, 0xff, 0xf9, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0x9b, 0x0, 0xe0, 0xff, + 0xff, 0xff, 0xff, 0xa8, 0x29, 0xb, 0x33, 0xc1, + 0xff, 0xff, 0xff, 0xfc, 0x1f, 0xd6, 0xff, 0xff, + 0xff, 0xcc, 0x2, 0x0, 0x0, 0x0, 0xf, 0xeb, + 0xff, 0xff, 0xff, 0x65, 0xc5, 0xff, 0xff, 0xff, + 0x83, 0x0, 0x0, 0x0, 0x0, 0x0, 0xaa, 0xff, + 0xff, 0xff, 0x89, 0x9e, 0xff, 0xff, 0xff, 0x83, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x95, 0xff, 0xff, + 0xff, 0x91, 0x69, 0xff, 0xff, 0xff, 0xb3, 0x0, + 0x0, 0x0, 0x0, 0x0, 0xb3, 0xff, 0xff, 0xff, + 0x7d, 0x17, 0xfc, 0xff, 0xff, 0xfd, 0x33, 0x0, + 0x0, 0x0, 0x1e, 0xf9, 0xff, 0xff, 0xff, 0x49, + 0x0, 0xa2, 0xff, 0xff, 0xff, 0xef, 0x66, 0x38, + 0x60, 0xe0, 0xff, 0xff, 0xff, 0xe5, 0x8, 0x0, + 0x15, 0xe5, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0x58, 0x0, 0x0, 0x0, + 0x24, 0xd7, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xfa, 0x6a, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x5, 0x65, 0xb8, 0xe7, 0xfa, 0xf1, 0xd1, 0x8e, + 0x23, 0x0, 0x0, 0x0, + + /* U+0037 "7" */ + 0xb4, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x5c, 0xb4, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0x5c, 0xb4, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0x5c, 0x40, 0x5c, 0x5c, + 0x5c, 0x5c, 0x5c, 0x5c, 0x5c, 0x5c, 0x5c, 0xcb, + 0xff, 0xff, 0xfc, 0x2f, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x45, 0xfe, 0xff, + 0xff, 0x8f, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x12, 0xe5, 0xff, 0xff, 0xe1, + 0xb, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0xa6, 0xff, 0xff, 0xff, 0x4b, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x50, 0xff, 0xff, 0xff, 0xab, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xd, 0xe4, + 0xff, 0xff, 0xf6, 0x1e, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x8c, 0xff, 0xff, + 0xff, 0x84, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x21, 0xf9, 0xff, 0xff, 0xf1, + 0x11, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x97, 0xff, 0xff, 0xff, 0x86, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x18, 0xf8, 0xff, 0xff, 0xfd, 0x1f, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x75, + 0xff, 0xff, 0xff, 0xb9, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xcf, 0xff, + 0xff, 0xff, 0x69, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x1c, 0xff, 0xff, 0xff, + 0xff, 0x1f, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x53, 0xff, 0xff, 0xff, 0xec, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x84, 0xff, 0xff, 0xff, 0xc0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x9b, 0xff, 0xff, 0xff, 0xa9, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0xac, 0xff, 0xff, 0xff, 0x9b, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, + + /* U+0038 "8" */ + 0x0, 0x0, 0x0, 0x9, 0x66, 0xb3, 0xe0, 0xf5, + 0xfc, 0xf0, 0xd2, 0x9e, 0x46, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x32, 0xe2, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xb8, 0xe, 0x0, + 0x0, 0x10, 0xe7, 0xff, 0xff, 0xff, 0xff, 0xf0, + 0xe0, 0xf8, 0xff, 0xff, 0xff, 0xff, 0xa6, 0x0, + 0x0, 0x65, 0xff, 0xff, 0xff, 0xfa, 0x51, 0x0, + 0x0, 0xb, 0x96, 0xff, 0xff, 0xff, 0xfc, 0x13, + 0x0, 0x87, 0xff, 0xff, 0xff, 0xb8, 0x0, 0x0, + 0x0, 0x0, 0x11, 0xff, 0xff, 0xff, 0xff, 0x34, + 0x0, 0x67, 0xff, 0xff, 0xff, 0xbd, 0x0, 0x0, + 0x0, 0x0, 0x13, 0xff, 0xff, 0xff, 0xff, 0x1c, + 0x0, 0x13, 0xea, 0xff, 0xff, 0xfd, 0x59, 0x0, + 0x0, 0xa, 0x97, 0xff, 0xff, 0xff, 0xaf, 0x0, + 0x0, 0x0, 0x39, 0xe3, 0xff, 0xff, 0xff, 0xf1, + 0xdf, 0xf7, 0xff, 0xff, 0xff, 0xaf, 0xf, 0x0, + 0x0, 0x0, 0x0, 0xc, 0x8f, 0xfc, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xe1, 0x4b, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x26, 0xca, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xfd, 0xa0, 0x9, 0x0, + 0x0, 0x17, 0xe7, 0xff, 0xff, 0xfe, 0x86, 0x21, + 0xc, 0x36, 0xbe, 0xff, 0xff, 0xff, 0xc1, 0x3, + 0x0, 0x97, 0xff, 0xff, 0xff, 0xa3, 0x0, 0x0, + 0x0, 0x0, 0xc, 0xe8, 0xff, 0xff, 0xff, 0x56, + 0x0, 0xe8, 0xff, 0xff, 0xff, 0x50, 0x0, 0x0, + 0x0, 0x0, 0x0, 0xa4, 0xff, 0xff, 0xff, 0x9f, + 0x6, 0xff, 0xff, 0xff, 0xff, 0x35, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x89, 0xff, 0xff, 0xff, 0xba, + 0x1, 0xfa, 0xff, 0xff, 0xff, 0x45, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x99, 0xff, 0xff, 0xff, 0xae, + 0x0, 0xd2, 0xff, 0xff, 0xff, 0x8d, 0x0, 0x0, + 0x0, 0x0, 0x1, 0xd7, 0xff, 0xff, 0xff, 0x84, + 0x0, 0x7c, 0xff, 0xff, 0xff, 0xfa, 0x6d, 0x9, + 0x0, 0x12, 0x9a, 0xff, 0xff, 0xff, 0xfe, 0x2f, + 0x0, 0xb, 0xd8, 0xff, 0xff, 0xff, 0xff, 0xfe, + 0xee, 0xff, 0xff, 0xff, 0xff, 0xff, 0x95, 0x0, + 0x0, 0x0, 0x1c, 0xc5, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xfe, 0x93, 0x3, 0x0, + 0x0, 0x0, 0x0, 0x2, 0x4e, 0xa5, 0xd9, 0xf3, + 0xfc, 0xef, 0xcd, 0x91, 0x2f, 0x0, 0x0, 0x0, + + /* U+0039 "9" */ + 0x0, 0x0, 0x0, 0x44, 0xa2, 0xd9, 0xf2, 0xf8, + 0xe3, 0xae, 0x55, 0x0, 0x0, 0x0, 0x0, 0x0, + 0xf, 0xb2, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xbc, 0xd, 0x0, 0x0, 0x1, 0xbc, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xbd, 0x1, 0x0, 0x56, 0xff, 0xff, + 0xff, 0xff, 0xb4, 0x4b, 0x37, 0x84, 0xfc, 0xff, + 0xff, 0xff, 0x5b, 0x0, 0xb0, 0xff, 0xff, 0xff, + 0xc3, 0x1, 0x0, 0x0, 0x0, 0x7a, 0xff, 0xff, + 0xff, 0xc6, 0x0, 0xdf, 0xff, 0xff, 0xff, 0x5e, + 0x0, 0x0, 0x0, 0x0, 0xa, 0xf8, 0xff, 0xff, + 0xff, 0x19, 0xef, 0xff, 0xff, 0xff, 0x40, 0x0, + 0x0, 0x0, 0x0, 0x0, 0xd8, 0xff, 0xff, 0xff, + 0x49, 0xe1, 0xff, 0xff, 0xff, 0x5a, 0x0, 0x0, + 0x0, 0x0, 0x0, 0xdf, 0xff, 0xff, 0xff, 0x70, + 0xb6, 0xff, 0xff, 0xff, 0xb6, 0x0, 0x0, 0x0, + 0x0, 0x33, 0xfe, 0xff, 0xff, 0xff, 0x7f, 0x65, + 0xff, 0xff, 0xff, 0xff, 0x97, 0x27, 0x16, 0x55, + 0xe3, 0xff, 0xff, 0xff, 0xff, 0x8b, 0x8, 0xda, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xf7, 0xff, 0xff, 0xff, 0x84, 0x0, 0x2b, 0xe4, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xd0, 0x95, + 0xff, 0xff, 0xff, 0x77, 0x0, 0x0, 0x11, 0x82, + 0xd3, 0xf5, 0xf1, 0xca, 0x72, 0x6, 0x9e, 0xff, + 0xff, 0xff, 0x5e, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0xcb, 0xff, 0xff, + 0xff, 0x31, 0x0, 0x0, 0x0, 0xf, 0xb, 0x0, + 0x0, 0x0, 0x0, 0x1e, 0xfd, 0xff, 0xff, 0xf0, + 0x6, 0x58, 0xcf, 0xef, 0xff, 0x97, 0x0, 0x0, + 0x0, 0x0, 0xa7, 0xff, 0xff, 0xff, 0x9d, 0x0, + 0x2f, 0xff, 0xff, 0xff, 0xff, 0x95, 0x45, 0x4c, + 0xb0, 0xff, 0xff, 0xff, 0xfa, 0x29, 0x0, 0x0, + 0xa9, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0x79, 0x0, 0x0, 0x0, 0x10, + 0xc6, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xfb, 0x7c, 0x0, 0x0, 0x0, 0x0, 0x0, 0x4, + 0x62, 0xb9, 0xe8, 0xfb, 0xf1, 0xd6, 0x91, 0x2a, + 0x0, 0x0, 0x0, 0x0, + + /* U+003A ":" */ + 0x20, 0xff, 0xff, 0xff, 0xff, 0x1c, 0x20, 0xff, + 0xff, 0xff, 0xff, 0x1c, 0x20, 0xff, 0xff, 0xff, + 0xff, 0x1c, 0x20, 0xff, 0xff, 0xff, 0xff, 0x1c, + 0x3, 0x18, 0x18, 0x18, 0x18, 0x2, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x2, 0x14, 0x14, 0x14, + 0x14, 0x2, 0x20, 0xff, 0xff, 0xff, 0xff, 0x1c, + 0x20, 0xff, 0xff, 0xff, 0xff, 0x1c, 0x20, 0xff, + 0xff, 0xff, 0xff, 0x1c, 0x20, 0xff, 0xff, 0xff, + 0xff, 0x1c, + + /* U+003B ";" */ + 0x18, 0xff, 0xff, 0xff, 0xff, 0x24, 0x18, 0xff, + 0xff, 0xff, 0xff, 0x24, 0x18, 0xff, 0xff, 0xff, + 0xff, 0x24, 0x18, 0xff, 0xff, 0xff, 0xff, 0x24, + 0x2, 0x18, 0x18, 0x18, 0x18, 0x3, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x1, 0x14, 0x14, 0x14, + 0x14, 0x2, 0x18, 0xff, 0xff, 0xff, 0xff, 0x24, + 0x18, 0xff, 0xff, 0xff, 0xff, 0x24, 0x18, 0xff, + 0xff, 0xff, 0xff, 0x24, 0x18, 0xff, 0xff, 0xff, + 0xff, 0x1c, 0x0, 0x0, 0x44, 0xff, 0xff, 0xb, + 0x0, 0x0, 0x7c, 0xff, 0xde, 0x0, 0x0, 0x5, + 0xdd, 0xff, 0x95, 0x0, 0x0, 0x73, 0xff, 0xfb, + 0x2a, 0x0, 0x4, 0x78, 0x80, 0x59, 0x0, 0x0, + + /* U+003C "<" */ + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x2a, 0x8a, 0x3b, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0xf, 0x67, 0xc8, 0xff, 0xff, 0x4c, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x2, + 0x45, 0xa6, 0xf7, 0xff, 0xff, 0xff, 0xff, 0x4c, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x23, 0x83, 0xe2, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc3, 0x26, + 0x0, 0x0, 0xc, 0x61, 0xc1, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xe8, 0x8a, 0x27, 0x0, 0x0, + 0x37, 0x9f, 0xf4, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xfc, 0xb4, 0x51, 0x5, 0x0, 0x0, 0x0, 0x0, + 0xbc, 0xff, 0xff, 0xff, 0xff, 0xff, 0xdd, 0x7b, + 0x1b, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0xbc, 0xff, 0xff, 0xf7, 0xa6, 0x42, 0x1, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0xbc, 0xff, 0xff, 0xb9, 0x46, 0x2, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0xbc, 0xff, 0xff, 0xff, 0xff, 0xe1, 0x80, 0x1f, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x78, 0xef, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, + 0xba, 0x57, 0x7, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x8, 0x59, 0xba, 0xfd, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xed, 0x92, 0x2f, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x1d, 0x7b, 0xdb, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xcd, 0x6a, 0xc, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3d, + 0x9e, 0xf3, 0xff, 0xff, 0xff, 0xff, 0xff, 0x4c, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0xb, 0x5f, 0xc0, 0xfe, 0xff, 0xff, 0x4c, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x22, 0x82, 0xe1, 0x4c, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0xa, + + /* U+003D "=" */ + 0xbc, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x4c, + 0xbc, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x4c, + 0xbc, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x4c, + 0x2f, 0x40, 0x40, 0x40, 0x40, 0x40, 0x40, 0x40, + 0x40, 0x40, 0x40, 0x40, 0x40, 0x40, 0x40, 0x13, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0xbc, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x4c, + 0xbc, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x4c, + 0xbc, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x4c, + 0x29, 0x38, 0x38, 0x38, 0x38, 0x38, 0x38, 0x38, + 0x38, 0x38, 0x38, 0x38, 0x38, 0x38, 0x38, 0x10, + + /* U+003E ">" */ + 0x84, 0x5f, 0xb, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0xbc, 0xff, 0xf3, 0x9e, 0x3d, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0xbc, 0xff, 0xff, 0xff, 0xff, 0xdb, 0x7b, 0x1d, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x70, 0xe9, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfd, + 0xb9, 0x58, 0x8, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x5, 0x53, 0xb6, 0xfd, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xef, 0x97, 0x36, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x1c, 0x7e, 0xdf, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xd5, 0x74, 0x10, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x45, + 0xa8, 0xf8, 0xff, 0xff, 0xff, 0xff, 0xff, 0x4c, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x13, 0x70, 0xd3, 0xff, 0xff, 0xff, 0x4c, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x15, 0x72, 0xec, 0xff, 0xff, 0x4c, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3, + 0x4a, 0xad, 0xfa, 0xff, 0xff, 0xff, 0xff, 0x4c, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x23, 0x84, 0xe4, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xcd, 0x2a, + 0x0, 0x0, 0x9, 0x5b, 0xbe, 0xfe, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xea, 0x8f, 0x2e, 0x0, 0x0, + 0x2f, 0x95, 0xef, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xfb, 0xb1, 0x51, 0x5, 0x0, 0x0, 0x0, 0x0, + 0xbc, 0xff, 0xff, 0xff, 0xff, 0xff, 0xd4, 0x73, + 0x17, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0xbc, 0xff, 0xff, 0xee, 0x96, 0x35, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0xb9, 0xb8, 0x57, 0x7, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0xb, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + + /* U+003F "?" */ + 0x0, 0x0, 0x0, 0x4, 0x54, 0xaa, 0xdd, 0xf4, + 0xfa, 0xeb, 0xc6, 0x89, 0x2a, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x2c, 0xd2, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xfd, 0x90, 0x3, 0x0, + 0x0, 0x27, 0xed, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x99, 0x0, + 0x0, 0xc6, 0xff, 0xff, 0xff, 0xfd, 0xa6, 0x5e, + 0x4f, 0x76, 0xe2, 0xff, 0xff, 0xff, 0xff, 0x2d, + 0x38, 0xff, 0xff, 0xff, 0xfe, 0x57, 0x0, 0x0, + 0x0, 0x0, 0x16, 0xe8, 0xff, 0xff, 0xff, 0x78, + 0x7e, 0xff, 0xff, 0xff, 0xc0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x9f, 0xff, 0xff, 0xff, 0x90, + 0x13, 0x20, 0x20, 0x20, 0x12, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0xab, 0xff, 0xff, 0xff, 0x7a, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x31, 0xfa, 0xff, 0xff, 0xff, 0x2c, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x44, 0xee, 0xff, 0xff, 0xff, 0x9a, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x4, + 0x88, 0xfe, 0xff, 0xff, 0xff, 0x99, 0x4, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x9, 0xbd, + 0xff, 0xff, 0xff, 0xec, 0x57, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xa1, 0xff, + 0xff, 0xff, 0xc9, 0x1b, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x24, 0xfe, 0xff, + 0xff, 0xe5, 0x10, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x58, 0xf0, 0xf0, + 0xf0, 0x81, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x88, 0xec, 0xec, + 0xec, 0x9a, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x94, 0xff, 0xff, + 0xff, 0xa8, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x94, 0xff, 0xff, + 0xff, 0xa8, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x94, 0xff, 0xff, + 0xff, 0xa8, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + + /* U+0040 "@" */ + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x17, 0x62, 0xa3, 0xce, 0xeb, 0xf9, 0xf6, + 0xe4, 0xce, 0x97, 0x59, 0xb, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x31, 0xaa, 0xfc, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xef, + 0x88, 0xc, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x8, 0x92, 0xfd, 0xff, 0xfe, + 0xc0, 0x76, 0x45, 0x21, 0x13, 0x15, 0x28, 0x4e, + 0x8b, 0xe4, 0xff, 0xff, 0xdc, 0x34, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x19, 0xcb, 0xff, + 0xff, 0xa2, 0x25, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x5, 0x65, 0xf1, 0xff, + 0xf0, 0x2e, 0x0, 0x0, 0x0, 0x0, 0x0, 0x12, + 0xd4, 0xff, 0xef, 0x48, 0x0, 0x0, 0x6, 0x6a, + 0xc6, 0xef, 0xf0, 0xbe, 0x41, 0x0, 0x8d, 0xff, + 0xbc, 0x22, 0xe2, 0xff, 0xe1, 0x9, 0x0, 0x0, + 0x0, 0x1, 0xb8, 0xff, 0xef, 0x2d, 0x0, 0x0, + 0x23, 0xd0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfa, + 0x45, 0xc6, 0xff, 0x84, 0x0, 0x28, 0xf7, 0xff, + 0x7c, 0x0, 0x0, 0x0, 0x67, 0xff, 0xff, 0x48, + 0x0, 0x0, 0x19, 0xdf, 0xff, 0xde, 0x52, 0x10, + 0x18, 0x75, 0xf9, 0xda, 0xf8, 0xff, 0x4c, 0x0, + 0x0, 0x85, 0xff, 0xe5, 0x1, 0x0, 0x9, 0xe7, + 0xff, 0xa1, 0x0, 0x0, 0x0, 0xb3, 0xff, 0xe1, + 0x16, 0x0, 0x0, 0x0, 0x0, 0x79, 0xff, 0xff, + 0xff, 0x14, 0x0, 0x0, 0x20, 0xff, 0xff, 0x34, + 0x0, 0x61, 0xff, 0xfc, 0x22, 0x0, 0x0, 0x41, + 0xff, 0xff, 0x46, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x19, 0xff, 0xff, 0xdc, 0x0, 0x0, 0x0, 0x0, + 0xda, 0xff, 0x60, 0x0, 0xb9, 0xff, 0xbb, 0x0, + 0x0, 0x0, 0xab, 0xff, 0xce, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x1, 0xfd, 0xff, 0xa4, 0x0, + 0x0, 0x0, 0x0, 0xc1, 0xff, 0x78, 0x3, 0xf5, + 0xff, 0x6e, 0x0, 0x0, 0x2, 0xf1, 0xff, 0x82, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1a, 0xff, + 0xff, 0x6c, 0x0, 0x0, 0x0, 0x0, 0xbb, 0xff, + 0x7b, 0x27, 0xff, 0xff, 0x3c, 0x0, 0x0, 0x29, + 0xff, 0xff, 0x49, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x50, 0xff, 0xff, 0x34, 0x0, 0x0, 0x0, + 0x0, 0xd1, 0xff, 0x69, 0x3d, 0xff, 0xff, 0x21, + 0x0, 0x0, 0x3f, 0xff, 0xff, 0x32, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x9d, 0xff, 0xfa, 0x6, + 0x0, 0x0, 0x0, 0xb, 0xfb, 0xff, 0x3a, 0x47, + 0xff, 0xff, 0x18, 0x0, 0x0, 0x47, 0xff, 0xff, + 0x2c, 0x0, 0x0, 0x0, 0x0, 0x0, 0xd, 0xef, + 0xff, 0xd2, 0x0, 0x0, 0x0, 0x0, 0x5c, 0xff, + 0xf0, 0x5, 0x35, 0xff, 0xff, 0x2b, 0x0, 0x0, + 0x34, 0xff, 0xff, 0x48, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x7f, 0xff, 0xff, 0xae, 0x0, 0x0, 0x0, + 0x3, 0xd3, 0xff, 0x8e, 0x0, 0x1c, 0xff, 0xff, + 0x4e, 0x0, 0x0, 0x9, 0xf9, 0xff, 0x9d, 0x0, + 0x0, 0x0, 0x0, 0x3d, 0xfa, 0xda, 0xff, 0x9d, + 0x0, 0x0, 0x0, 0x8a, 0xff, 0xed, 0x17, 0x0, + 0x0, 0xdd, 0xff, 0x97, 0x0, 0x0, 0x0, 0xa4, + 0xff, 0xfc, 0x76, 0x19, 0x14, 0x70, 0xf6, 0xe5, + 0x5c, 0xff, 0xd6, 0x14, 0x25, 0xa1, 0xff, 0xfc, + 0x4f, 0x0, 0x0, 0x0, 0x8d, 0xff, 0xef, 0x13, + 0x0, 0x0, 0x19, 0xe2, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xdf, 0x26, 0x1c, 0xf9, 0xff, 0xff, 0xff, + 0xff, 0xf1, 0x55, 0x0, 0x0, 0x0, 0x0, 0x1c, + 0xf5, 0xff, 0x9d, 0x0, 0x0, 0x0, 0x18, 0x96, + 0xe0, 0xf4, 0xd3, 0x7e, 0xd, 0x0, 0x0, 0x54, + 0xd5, 0xf3, 0xda, 0x8f, 0x1e, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x7c, 0xff, 0xff, 0x7b, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0xa7, + 0xff, 0xff, 0xab, 0x1a, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x3f, + 0xa0, 0x51, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x6, 0x97, 0xff, 0xff, 0xf9, 0xa4, + 0x5d, 0x27, 0x11, 0x3, 0xd, 0x1c, 0x40, 0x6a, + 0xa6, 0xea, 0xff, 0xff, 0xbc, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x4d, + 0xd2, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xc6, 0x54, 0x2, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x46, 0x93, 0xd4, 0xfa, + 0xff, 0xff, 0xff, 0xfd, 0xdb, 0xac, 0x71, 0x1e, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0xf, 0x1b, 0xf, 0x1, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, + + /* U+0041 "A" */ + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3, + 0xe5, 0xff, 0xff, 0xff, 0xff, 0x90, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x49, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xea, 0x5, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0xa9, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0x50, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x11, 0xf8, 0xff, + 0xff, 0xb2, 0xf7, 0xff, 0xff, 0xb0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x6a, 0xff, 0xff, 0xff, 0x59, 0xb1, + 0xff, 0xff, 0xfa, 0x15, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xca, + 0xff, 0xff, 0xf5, 0xc, 0x5e, 0xff, 0xff, 0xff, + 0x70, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x2b, 0xff, 0xff, 0xff, 0xaa, + 0x0, 0xf, 0xf8, 0xff, 0xff, 0xd0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x8b, 0xff, 0xff, 0xff, 0x53, 0x0, 0x0, 0xaf, + 0xff, 0xff, 0xff, 0x30, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x4, 0xe7, 0xff, 0xff, + 0xf2, 0x8, 0x0, 0x0, 0x57, 0xff, 0xff, 0xff, + 0x90, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x4c, 0xff, 0xff, 0xff, 0xa3, 0x0, 0x0, + 0x0, 0xa, 0xf4, 0xff, 0xff, 0xea, 0x5, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xac, 0xff, + 0xff, 0xff, 0x4c, 0x0, 0x0, 0x0, 0x0, 0xa6, + 0xff, 0xff, 0xff, 0x50, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x13, 0xf9, 0xff, 0xff, 0xf8, 0x3d, + 0x38, 0x38, 0x38, 0x38, 0x7b, 0xff, 0xff, 0xff, + 0xb0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x6d, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xfa, 0x15, 0x0, + 0x0, 0x0, 0x0, 0x0, 0xce, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0x70, 0x0, 0x0, 0x0, 0x0, + 0x2d, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xd0, 0x0, 0x0, 0x0, 0x0, 0x8e, 0xff, 0xff, + 0xff, 0xb8, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x13, 0xfa, 0xff, 0xff, 0xff, 0x30, 0x0, + 0x0, 0x4, 0xe9, 0xff, 0xff, 0xff, 0x5a, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xb0, + 0xff, 0xff, 0xff, 0x90, 0x0, 0x0, 0x4f, 0xff, + 0xff, 0xff, 0xf1, 0x9, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x52, 0xff, 0xff, 0xff, + 0xea, 0x5, 0x0, 0xb0, 0xff, 0xff, 0xff, 0x9d, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x6, 0xee, 0xff, 0xff, 0xff, 0x50, 0x15, + 0xfa, 0xff, 0xff, 0xff, 0x3f, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x97, + 0xff, 0xff, 0xff, 0xb0, + + /* U+0042 "B" */ + 0xfc, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xfe, 0xf3, 0xe1, 0xbb, 0x7c, 0x22, 0x0, + 0x0, 0x0, 0x0, 0xfc, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xfb, 0x84, 0x1, 0x0, 0x0, 0xfc, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x6f, 0x0, + 0x0, 0xfc, 0xff, 0xff, 0xff, 0x71, 0x2c, 0x2c, + 0x2c, 0x2c, 0x32, 0x49, 0x92, 0xfc, 0xff, 0xff, + 0xff, 0xe2, 0x0, 0x0, 0xfc, 0xff, 0xff, 0xff, + 0x54, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x81, 0xff, 0xff, 0xff, 0xff, 0x10, 0x0, 0xfc, + 0xff, 0xff, 0xff, 0x54, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x49, 0xff, 0xff, 0xff, 0xfc, + 0x7, 0x0, 0xfc, 0xff, 0xff, 0xff, 0x54, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x82, 0xff, + 0xff, 0xff, 0xca, 0x0, 0x0, 0xfc, 0xff, 0xff, + 0xff, 0x71, 0x2c, 0x2c, 0x2c, 0x2c, 0x31, 0x48, + 0x93, 0xfc, 0xff, 0xff, 0xfb, 0x40, 0x0, 0x0, + 0xfc, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xd4, 0x3e, + 0x0, 0x0, 0x0, 0xfc, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xd3, 0x74, 0x21, 0x0, 0x0, 0x0, 0xfc, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xfb, 0x8c, 0x3, + 0x0, 0xfc, 0xff, 0xff, 0xff, 0x54, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x9, 0x2c, 0x81, 0xf9, 0xff, + 0xff, 0xff, 0x87, 0x0, 0xfc, 0xff, 0xff, 0xff, + 0x54, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x67, 0xff, 0xff, 0xff, 0xf9, 0xe, 0xfc, + 0xff, 0xff, 0xff, 0x54, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x16, 0xff, 0xff, 0xff, + 0xff, 0x40, 0xfc, 0xff, 0xff, 0xff, 0x54, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x2b, + 0xff, 0xff, 0xff, 0xff, 0x47, 0xfc, 0xff, 0xff, + 0xff, 0x54, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x8f, 0xff, 0xff, 0xff, 0xff, 0x26, + 0xfc, 0xff, 0xff, 0xff, 0x74, 0x30, 0x30, 0x30, + 0x30, 0x30, 0x35, 0x54, 0xa6, 0xff, 0xff, 0xff, + 0xff, 0xd2, 0x0, 0xfc, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xf8, 0x3c, 0x0, 0xfc, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xde, 0x40, 0x0, + 0x0, 0xfc, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xfc, 0xf0, 0xd6, 0xa6, 0x59, + 0x7, 0x0, 0x0, 0x0, + + /* U+0043 "C" */ + 0x0, 0x0, 0x0, 0x0, 0x0, 0x20, 0x77, 0xb2, + 0xdd, 0xef, 0xfc, 0xf1, 0xda, 0xaf, 0x69, 0x13, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x13, + 0xa4, 0xfc, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xf3, 0x7b, 0x2, 0x0, 0x0, + 0x0, 0x0, 0x29, 0xe1, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xb2, 0x4, 0x0, 0x0, 0x11, 0xdc, 0xff, + 0xff, 0xff, 0xff, 0xef, 0xa2, 0x70, 0x62, 0x79, + 0xa7, 0xf8, 0xff, 0xff, 0xff, 0xff, 0x8d, 0x0, + 0x0, 0x90, 0xff, 0xff, 0xff, 0xff, 0xa6, 0x10, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x15, 0xb6, 0xff, + 0xff, 0xff, 0xfc, 0x25, 0x11, 0xf5, 0xff, 0xff, + 0xff, 0xba, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x2, 0xc4, 0xff, 0xfb, 0xc9, 0x48, + 0x53, 0xff, 0xff, 0xff, 0xff, 0x2f, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x2a, + 0x49, 0xd, 0x0, 0x0, 0x8f, 0xff, 0xff, 0xff, + 0xdc, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0xab, 0xff, 0xff, 0xff, 0xad, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0xbc, 0xff, 0xff, 0xff, + 0x9a, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0xb9, 0xff, 0xff, 0xff, 0x9c, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0xa5, 0xff, 0xff, 0xff, + 0xb2, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x81, 0xff, 0xff, 0xff, 0xe7, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x41, 0xff, 0xff, 0xff, + 0xff, 0x43, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x36, 0xd0, 0x79, 0x22, 0x0, + 0x6, 0xe4, 0xff, 0xff, 0xff, 0xd1, 0x8, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x8, 0xc8, + 0xff, 0xff, 0xff, 0x92, 0x0, 0x6d, 0xff, 0xff, + 0xff, 0xff, 0xc0, 0x1d, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x19, 0xbe, 0xff, 0xff, 0xff, 0xfe, 0x3c, + 0x0, 0x3, 0xbd, 0xff, 0xff, 0xff, 0xff, 0xf9, + 0xb1, 0x7b, 0x69, 0x7e, 0xa9, 0xf9, 0xff, 0xff, + 0xff, 0xff, 0x90, 0x0, 0x0, 0x0, 0x13, 0xc5, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xa8, 0x3, 0x0, + 0x0, 0x0, 0x0, 0x5, 0x81, 0xf0, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xef, + 0x70, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0xe, 0x64, 0xa4, 0xd6, 0xeb, 0xfb, 0xf5, + 0xdd, 0xaf, 0x66, 0xf, 0x0, 0x0, 0x0, 0x0, + + /* U+0044 "D" */ + 0xfc, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfd, + 0xee, 0xde, 0xb8, 0x80, 0x35, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0xfc, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xc8, 0x3b, 0x0, 0x0, 0x0, 0x0, 0xfc, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xfc, 0x78, 0x0, 0x0, + 0x0, 0xfc, 0xff, 0xff, 0xff, 0x87, 0x4c, 0x4c, + 0x4f, 0x5f, 0x8b, 0xd6, 0xff, 0xff, 0xff, 0xff, + 0xff, 0x6b, 0x0, 0x0, 0xfc, 0xff, 0xff, 0xff, + 0x54, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x5a, + 0xf2, 0xff, 0xff, 0xff, 0xf9, 0x20, 0x0, 0xfc, + 0xff, 0xff, 0xff, 0x54, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x42, 0xfc, 0xff, 0xff, 0xff, + 0x9d, 0x0, 0xfc, 0xff, 0xff, 0xff, 0x54, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xa2, + 0xff, 0xff, 0xff, 0xec, 0x2, 0xfc, 0xff, 0xff, + 0xff, 0x54, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x43, 0xff, 0xff, 0xff, 0xff, 0x2f, + 0xfc, 0xff, 0xff, 0xff, 0x54, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0xf, 0xff, 0xff, + 0xff, 0xff, 0x4c, 0xfc, 0xff, 0xff, 0xff, 0x54, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0xfa, 0xff, 0xff, 0xff, 0x60, 0xfc, 0xff, + 0xff, 0xff, 0x54, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x1, 0xfd, 0xff, 0xff, 0xff, + 0x5b, 0xfc, 0xff, 0xff, 0xff, 0x54, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x19, 0xff, + 0xff, 0xff, 0xff, 0x47, 0xfc, 0xff, 0xff, 0xff, + 0x54, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x54, 0xff, 0xff, 0xff, 0xff, 0x1d, 0xfc, + 0xff, 0xff, 0xff, 0x54, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0xb8, 0xff, 0xff, 0xff, + 0xd5, 0x0, 0xfc, 0xff, 0xff, 0xff, 0x54, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x56, 0xff, + 0xff, 0xff, 0xff, 0x73, 0x0, 0xfc, 0xff, 0xff, + 0xff, 0x54, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x5e, 0xf8, 0xff, 0xff, 0xff, 0xe5, 0x9, 0x0, + 0xfc, 0xff, 0xff, 0xff, 0x8c, 0x54, 0x54, 0x54, + 0x5f, 0x80, 0xcf, 0xff, 0xff, 0xff, 0xff, 0xfb, + 0x3e, 0x0, 0x0, 0xfc, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xf6, 0x56, 0x0, 0x0, 0x0, 0xfc, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xc1, 0x2f, 0x0, 0x0, 0x0, + 0x0, 0xfc, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xfb, 0xe8, 0xcb, 0x8c, 0x3c, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, + + /* U+0045 "E" */ + 0xfc, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0x3c, 0xfc, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0x3c, 0xfc, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0x3c, 0xfc, 0xff, 0xff, 0xff, 0x87, + 0x4c, 0x4c, 0x4c, 0x4c, 0x4c, 0x4c, 0x4c, 0x4c, + 0x4c, 0x4c, 0x4c, 0x11, 0xfc, 0xff, 0xff, 0xff, + 0x54, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0xfc, 0xff, 0xff, + 0xff, 0x54, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xfc, 0xff, + 0xff, 0xff, 0x54, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xfc, + 0xff, 0xff, 0xff, 0x54, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0xfc, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x58, + 0x0, 0xfc, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0x58, 0x0, 0xfc, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0x58, 0x0, 0xfc, 0xff, 0xff, 0xff, 0x8c, + 0x54, 0x54, 0x54, 0x54, 0x54, 0x54, 0x54, 0x54, + 0x54, 0x54, 0x1c, 0x0, 0xfc, 0xff, 0xff, 0xff, + 0x54, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0xfc, 0xff, 0xff, + 0xff, 0x54, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xfc, 0xff, + 0xff, 0xff, 0x54, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xfc, + 0xff, 0xff, 0xff, 0x54, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0xfc, 0xff, 0xff, 0xff, 0x87, 0x4c, 0x4c, 0x4c, + 0x4c, 0x4c, 0x4c, 0x4c, 0x4c, 0x4c, 0x4c, 0x4c, + 0x40, 0xfc, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xd8, 0xfc, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xd8, 0xfc, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xd8, + + /* U+0046 "F" */ + 0xfc, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x38, + 0xfc, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x38, + 0xfc, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x38, + 0xfc, 0xff, 0xff, 0xff, 0x87, 0x4c, 0x4c, 0x4c, + 0x4c, 0x4c, 0x4c, 0x4c, 0x4c, 0x4c, 0x4c, 0x10, + 0xfc, 0xff, 0xff, 0xff, 0x54, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0xfc, 0xff, 0xff, 0xff, 0x54, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0xfc, 0xff, 0xff, 0xff, 0x54, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0xfc, 0xff, 0xff, 0xff, 0x54, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0xfc, 0xff, 0xff, 0xff, 0x54, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0xfc, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xe4, 0x0, + 0xfc, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xe4, 0x0, + 0xfc, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xe4, 0x0, + 0xfc, 0xff, 0xff, 0xff, 0x8c, 0x54, 0x54, 0x54, + 0x54, 0x54, 0x54, 0x54, 0x54, 0x54, 0x4a, 0x0, + 0xfc, 0xff, 0xff, 0xff, 0x54, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0xfc, 0xff, 0xff, 0xff, 0x54, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0xfc, 0xff, 0xff, 0xff, 0x54, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0xfc, 0xff, 0xff, 0xff, 0x54, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0xfc, 0xff, 0xff, 0xff, 0x54, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0xfc, 0xff, 0xff, 0xff, 0x54, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0xfc, 0xff, 0xff, 0xff, 0x54, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + + /* U+0047 "G" */ + 0x0, 0x0, 0x0, 0x0, 0x0, 0x11, 0x68, 0xa4, + 0xd6, 0xe9, 0xfa, 0xf7, 0xe8, 0xc5, 0x91, 0x43, + 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x9, 0x8f, 0xf5, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xd4, 0x3c, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x1d, 0xd4, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xfc, 0x5d, 0x0, 0x0, 0x0, + 0xc, 0xd0, 0xff, 0xff, 0xff, 0xff, 0xf9, 0xb0, + 0x78, 0x62, 0x6e, 0x8d, 0xdb, 0xff, 0xff, 0xff, + 0xff, 0xfa, 0x35, 0x0, 0x0, 0x84, 0xff, 0xff, + 0xff, 0xff, 0xbf, 0x1d, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x5e, 0xf3, 0xff, 0xff, 0xff, 0xc4, + 0x0, 0xd, 0xf1, 0xff, 0xff, 0xff, 0xce, 0x7, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x57, 0xec, 0xad, 0x6c, 0x2b, 0x0, 0x4e, 0xff, + 0xff, 0xff, 0xff, 0x3e, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x0, + 0x0, 0x0, 0x0, 0x8c, 0xff, 0xff, 0xff, 0xe2, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0xa9, 0xff, 0xff, 0xff, 0xaf, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0xbc, 0xff, 0xff, + 0xff, 0x9a, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x84, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0x7c, 0xb9, 0xff, 0xff, 0xff, 0x9d, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x84, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x7c, 0xa6, + 0xff, 0xff, 0xff, 0xb3, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x84, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0x7c, 0x85, 0xff, 0xff, 0xff, + 0xe9, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x18, + 0x30, 0x30, 0x30, 0x30, 0x94, 0xff, 0xff, 0xff, + 0x7c, 0x47, 0xff, 0xff, 0xff, 0xff, 0x49, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x7c, 0xff, 0xff, 0xff, 0x7c, 0x9, 0xea, + 0xff, 0xff, 0xff, 0xd7, 0xb, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7c, 0xff, + 0xff, 0xff, 0x7c, 0x0, 0x78, 0xff, 0xff, 0xff, + 0xff, 0xca, 0x23, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0xd, 0x6f, 0xf0, 0xff, 0xff, 0xff, 0x7c, + 0x0, 0x7, 0xc7, 0xff, 0xff, 0xff, 0xff, 0xfb, + 0xb4, 0x78, 0x62, 0x68, 0x80, 0xb6, 0xf4, 0xff, + 0xff, 0xff, 0xff, 0xfd, 0x51, 0x0, 0x0, 0x18, + 0xcd, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xe8, + 0x4a, 0x0, 0x0, 0x0, 0x0, 0x7, 0x8b, 0xf4, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xe7, 0x74, 0xc, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x11, 0x69, 0xa7, 0xd8, + 0xeb, 0xfa, 0xef, 0xda, 0xc0, 0x85, 0x43, 0x7, + 0x0, 0x0, 0x0, 0x0, + + /* U+0048 "H" */ + 0xfc, 0xff, 0xff, 0xff, 0x54, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0xac, 0xff, 0xff, + 0xff, 0xa8, 0xfc, 0xff, 0xff, 0xff, 0x54, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xac, + 0xff, 0xff, 0xff, 0xa8, 0xfc, 0xff, 0xff, 0xff, + 0x54, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0xac, 0xff, 0xff, 0xff, 0xa8, 0xfc, 0xff, + 0xff, 0xff, 0x54, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0xac, 0xff, 0xff, 0xff, 0xa8, + 0xfc, 0xff, 0xff, 0xff, 0x54, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0xac, 0xff, 0xff, + 0xff, 0xa8, 0xfc, 0xff, 0xff, 0xff, 0x54, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xac, + 0xff, 0xff, 0xff, 0xa8, 0xfc, 0xff, 0xff, 0xff, + 0x54, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0xac, 0xff, 0xff, 0xff, 0xa8, 0xfc, 0xff, + 0xff, 0xff, 0xb2, 0x8c, 0x8c, 0x8c, 0x8c, 0x8c, + 0x8c, 0x8c, 0x8c, 0xd9, 0xff, 0xff, 0xff, 0xa8, + 0xfc, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xa8, 0xfc, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xa8, 0xfc, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xa8, 0xfc, 0xff, + 0xff, 0xff, 0x54, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0xac, 0xff, 0xff, 0xff, 0xa8, + 0xfc, 0xff, 0xff, 0xff, 0x54, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0xac, 0xff, 0xff, + 0xff, 0xa8, 0xfc, 0xff, 0xff, 0xff, 0x54, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xac, + 0xff, 0xff, 0xff, 0xa8, 0xfc, 0xff, 0xff, 0xff, + 0x54, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0xac, 0xff, 0xff, 0xff, 0xa8, 0xfc, 0xff, + 0xff, 0xff, 0x54, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0xac, 0xff, 0xff, 0xff, 0xa8, + 0xfc, 0xff, 0xff, 0xff, 0x54, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0xac, 0xff, 0xff, + 0xff, 0xa8, 0xfc, 0xff, 0xff, 0xff, 0x54, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xac, + 0xff, 0xff, 0xff, 0xa8, 0xfc, 0xff, 0xff, 0xff, + 0x54, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0xac, 0xff, 0xff, 0xff, 0xa8, 0xfc, 0xff, + 0xff, 0xff, 0x54, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0xac, 0xff, 0xff, 0xff, 0xa8, + + /* U+0049 "I" */ + 0xfc, 0xff, 0xff, 0xff, 0x54, 0xfc, 0xff, 0xff, + 0xff, 0x54, 0xfc, 0xff, 0xff, 0xff, 0x54, 0xfc, + 0xff, 0xff, 0xff, 0x54, 0xfc, 0xff, 0xff, 0xff, + 0x54, 0xfc, 0xff, 0xff, 0xff, 0x54, 0xfc, 0xff, + 0xff, 0xff, 0x54, 0xfc, 0xff, 0xff, 0xff, 0x54, + 0xfc, 0xff, 0xff, 0xff, 0x54, 0xfc, 0xff, 0xff, + 0xff, 0x54, 0xfc, 0xff, 0xff, 0xff, 0x54, 0xfc, + 0xff, 0xff, 0xff, 0x54, 0xfc, 0xff, 0xff, 0xff, + 0x54, 0xfc, 0xff, 0xff, 0xff, 0x54, 0xfc, 0xff, + 0xff, 0xff, 0x54, 0xfc, 0xff, 0xff, 0xff, 0x54, + 0xfc, 0xff, 0xff, 0xff, 0x54, 0xfc, 0xff, 0xff, + 0xff, 0x54, 0xfc, 0xff, 0xff, 0xff, 0x54, 0xfc, + 0xff, 0xff, 0xff, 0x54, + + /* U+004A "J" */ + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xcc, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xa4, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0xcc, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xa4, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0xcc, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xa4, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x49, 0x5c, 0x5c, 0x5c, 0xcc, + 0xff, 0xff, 0xff, 0xa4, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xb0, 0xff, + 0xff, 0xff, 0xa4, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0xb0, 0xff, 0xff, + 0xff, 0xa4, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0xb0, 0xff, 0xff, 0xff, + 0xa4, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0xb0, 0xff, 0xff, 0xff, 0xa4, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0xb0, 0xff, 0xff, 0xff, 0xa4, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0xb0, 0xff, 0xff, 0xff, 0xa4, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0xb0, 0xff, 0xff, 0xff, 0xa4, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xb0, + 0xff, 0xff, 0xff, 0xa4, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xb0, 0xff, + 0xff, 0xff, 0xa4, 0x0, 0x0, 0x4, 0x23, 0x34, + 0x0, 0x0, 0x0, 0x0, 0x0, 0xb3, 0xff, 0xff, + 0xff, 0xa1, 0x59, 0xdc, 0xfb, 0xff, 0xf2, 0x6, + 0x0, 0x0, 0x0, 0x0, 0xd0, 0xff, 0xff, 0xff, + 0x8f, 0x3b, 0xff, 0xff, 0xff, 0xff, 0x74, 0x0, + 0x0, 0x0, 0x30, 0xfe, 0xff, 0xff, 0xff, 0x61, + 0x1, 0xd9, 0xff, 0xff, 0xff, 0xfe, 0xa1, 0x67, + 0x81, 0xed, 0xff, 0xff, 0xff, 0xf6, 0x16, 0x0, + 0x4c, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0x7a, 0x0, 0x0, 0x0, + 0x6a, 0xf9, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xfe, 0x88, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x24, 0x89, 0xca, 0xef, 0xfc, 0xf2, 0xd5, 0x97, + 0x30, 0x0, 0x0, 0x0, + + /* U+004B "K" */ + 0xfc, 0xff, 0xff, 0xff, 0x54, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x14, 0xcf, 0xff, 0xff, + 0xff, 0xee, 0x37, 0x0, 0xfc, 0xff, 0xff, 0xff, + 0x54, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x16, + 0xd3, 0xff, 0xff, 0xff, 0xea, 0x30, 0x0, 0x0, + 0xfc, 0xff, 0xff, 0xff, 0x54, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x19, 0xd7, 0xff, 0xff, 0xff, 0xe5, + 0x29, 0x0, 0x0, 0x0, 0xfc, 0xff, 0xff, 0xff, + 0x54, 0x0, 0x0, 0x0, 0x0, 0x1c, 0xda, 0xff, + 0xff, 0xff, 0xe0, 0x23, 0x0, 0x0, 0x0, 0x0, + 0xfc, 0xff, 0xff, 0xff, 0x54, 0x0, 0x0, 0x0, + 0x1f, 0xde, 0xff, 0xff, 0xff, 0xda, 0x1d, 0x0, + 0x0, 0x0, 0x0, 0x0, 0xfc, 0xff, 0xff, 0xff, + 0x54, 0x0, 0x0, 0x23, 0xe1, 0xff, 0xff, 0xff, + 0xd4, 0x18, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0xfc, 0xff, 0xff, 0xff, 0x54, 0x0, 0x26, 0xe4, + 0xff, 0xff, 0xff, 0xcd, 0x13, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0xfc, 0xff, 0xff, 0xff, + 0x54, 0x2a, 0xe7, 0xff, 0xff, 0xff, 0xc6, 0xf, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0xfc, 0xff, 0xff, 0xff, 0x82, 0xea, 0xff, 0xff, + 0xff, 0xf9, 0x19, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0xfc, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xb2, 0x2, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0xfc, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf6, 0xff, + 0xff, 0xff, 0xff, 0x89, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0xfc, 0xff, 0xff, 0xff, + 0xff, 0xcd, 0x24, 0x92, 0xff, 0xff, 0xff, 0xff, + 0x5c, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0xfc, 0xff, 0xff, 0xff, 0xa2, 0x7, 0x0, 0x4, + 0xbf, 0xff, 0xff, 0xff, 0xf7, 0x37, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0xfc, 0xff, 0xff, 0xff, + 0x54, 0x0, 0x0, 0x0, 0x14, 0xe0, 0xff, 0xff, + 0xff, 0xe7, 0x1c, 0x0, 0x0, 0x0, 0x0, 0x0, + 0xfc, 0xff, 0xff, 0xff, 0x54, 0x0, 0x0, 0x0, + 0x0, 0x30, 0xf5, 0xff, 0xff, 0xff, 0xcd, 0x9, + 0x0, 0x0, 0x0, 0x0, 0xfc, 0xff, 0xff, 0xff, + 0x54, 0x0, 0x0, 0x0, 0x0, 0x0, 0x58, 0xff, + 0xff, 0xff, 0xff, 0xa9, 0x1, 0x0, 0x0, 0x0, + 0xfc, 0xff, 0xff, 0xff, 0x54, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x88, 0xff, 0xff, 0xff, 0xff, + 0x7f, 0x0, 0x0, 0x0, 0xfc, 0xff, 0xff, 0xff, + 0x54, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x2, + 0xb6, 0xff, 0xff, 0xff, 0xfe, 0x53, 0x0, 0x0, + 0xfc, 0xff, 0xff, 0xff, 0x54, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x10, 0xda, 0xff, 0xff, + 0xff, 0xf4, 0x30, 0x0, 0xfc, 0xff, 0xff, 0xff, + 0x54, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x29, 0xf2, 0xff, 0xff, 0xff, 0xe2, 0x17, + + /* U+004C "L" */ + 0xfc, 0xff, 0xff, 0xff, 0x54, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0xfc, 0xff, 0xff, 0xff, 0x54, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0xfc, 0xff, 0xff, 0xff, 0x54, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0xfc, 0xff, 0xff, 0xff, 0x54, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0xfc, 0xff, 0xff, 0xff, 0x54, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0xfc, 0xff, 0xff, 0xff, 0x54, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0xfc, 0xff, 0xff, 0xff, 0x54, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0xfc, 0xff, 0xff, 0xff, 0x54, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0xfc, 0xff, 0xff, 0xff, 0x54, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0xfc, 0xff, 0xff, 0xff, 0x54, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0xfc, 0xff, 0xff, 0xff, 0x54, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0xfc, 0xff, 0xff, 0xff, 0x54, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0xfc, 0xff, 0xff, 0xff, 0x54, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0xfc, 0xff, 0xff, 0xff, 0x54, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0xfc, 0xff, 0xff, 0xff, 0x54, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0xfc, 0xff, 0xff, 0xff, 0x54, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0xfc, 0xff, 0xff, 0xff, 0x87, 0x4c, 0x4c, 0x4c, + 0x4c, 0x4c, 0x4c, 0x4c, 0x4c, 0x4c, 0x4c, 0x1e, + 0xfc, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x68, + 0xfc, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x68, + 0xfc, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x68, + + /* U+004D "M" */ + 0xfc, 0xff, 0xff, 0xff, 0xff, 0xef, 0x6, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x4, 0xed, + 0xff, 0xff, 0xff, 0xff, 0xfc, 0xfc, 0xff, 0xff, + 0xff, 0xff, 0xff, 0x4a, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x44, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xfc, 0xfc, 0xff, 0xff, 0xff, 0xff, 0xff, + 0x9e, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x96, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc, 0xfc, + 0xff, 0xff, 0xf8, 0xff, 0xff, 0xed, 0x4, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x1, 0xe7, 0xff, 0xff, + 0xf8, 0xff, 0xff, 0xfc, 0xfc, 0xff, 0xff, 0xc7, + 0xfb, 0xff, 0xff, 0x47, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x3b, 0xff, 0xff, 0xf9, 0xc9, 0xff, 0xff, + 0xfc, 0xfc, 0xff, 0xff, 0xc4, 0xbf, 0xff, 0xff, + 0x9b, 0x0, 0x0, 0x0, 0x0, 0x0, 0x8e, 0xff, + 0xff, 0xbc, 0xc7, 0xff, 0xff, 0xfc, 0xfc, 0xff, + 0xff, 0xce, 0x73, 0xff, 0xff, 0xeb, 0x4, 0x0, + 0x0, 0x0, 0x0, 0xdf, 0xff, 0xff, 0x73, 0xd2, + 0xff, 0xff, 0xfc, 0xfc, 0xff, 0xff, 0xd6, 0x28, + 0xff, 0xff, 0xff, 0x44, 0x0, 0x0, 0x0, 0x33, + 0xff, 0xff, 0xff, 0x28, 0xdb, 0xff, 0xff, 0xfc, + 0xfc, 0xff, 0xff, 0xd8, 0x0, 0xdc, 0xff, 0xff, + 0x99, 0x0, 0x0, 0x0, 0x85, 0xff, 0xff, 0xdc, + 0x0, 0xdc, 0xff, 0xff, 0xfc, 0xfc, 0xff, 0xff, + 0xd8, 0x0, 0x8b, 0xff, 0xff, 0xe9, 0x3, 0x0, + 0x0, 0xd7, 0xff, 0xff, 0x8a, 0x0, 0xdc, 0xff, + 0xff, 0xfc, 0xfc, 0xff, 0xff, 0xd8, 0x0, 0x36, + 0xff, 0xff, 0xff, 0x41, 0x0, 0x2a, 0xff, 0xff, + 0xff, 0x35, 0x0, 0xdc, 0xff, 0xff, 0xfc, 0xfc, + 0xff, 0xff, 0xd8, 0x0, 0x0, 0xdf, 0xff, 0xff, + 0x94, 0x0, 0x7c, 0xff, 0xff, 0xdf, 0x0, 0x0, + 0xdc, 0xff, 0xff, 0xfc, 0xfc, 0xff, 0xff, 0xd8, + 0x0, 0x0, 0x8b, 0xff, 0xff, 0xdf, 0x0, 0xc9, + 0xff, 0xff, 0x8a, 0x0, 0x0, 0xdc, 0xff, 0xff, + 0xfc, 0xfc, 0xff, 0xff, 0xd8, 0x0, 0x0, 0x36, + 0xff, 0xff, 0xff, 0x37, 0xfd, 0xff, 0xff, 0x35, + 0x0, 0x0, 0xdc, 0xff, 0xff, 0xfc, 0xfc, 0xff, + 0xff, 0xd8, 0x0, 0x0, 0x0, 0xe0, 0xff, 0xff, + 0xc1, 0xff, 0xff, 0xdf, 0x0, 0x0, 0x0, 0xdc, + 0xff, 0xff, 0xfc, 0xfc, 0xff, 0xff, 0xd8, 0x0, + 0x0, 0x0, 0x8c, 0xff, 0xff, 0xff, 0xff, 0xff, + 0x8b, 0x0, 0x0, 0x0, 0xdc, 0xff, 0xff, 0xfc, + 0xfc, 0xff, 0xff, 0xd8, 0x0, 0x0, 0x0, 0x36, + 0xff, 0xff, 0xff, 0xff, 0xff, 0x35, 0x0, 0x0, + 0x0, 0xdc, 0xff, 0xff, 0xfc, 0xfc, 0xff, 0xff, + 0xd8, 0x0, 0x0, 0x0, 0x0, 0xe0, 0xff, 0xff, + 0xff, 0xdf, 0x0, 0x0, 0x0, 0x0, 0xdc, 0xff, + 0xff, 0xfc, 0xfc, 0xff, 0xff, 0xd8, 0x0, 0x0, + 0x0, 0x0, 0x8c, 0xff, 0xff, 0xff, 0x8b, 0x0, + 0x0, 0x0, 0x0, 0xdc, 0xff, 0xff, 0xfc, 0xfc, + 0xff, 0xff, 0xd8, 0x0, 0x0, 0x0, 0x0, 0x37, + 0xff, 0xff, 0xff, 0x36, 0x0, 0x0, 0x0, 0x0, + 0xdc, 0xff, 0xff, 0xfc, + + /* U+004E "N" */ + 0xfc, 0xff, 0xff, 0xff, 0xff, 0x3b, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x30, 0xff, 0xff, + 0xff, 0xa8, 0xfc, 0xff, 0xff, 0xff, 0xff, 0xce, + 0x2, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x30, + 0xff, 0xff, 0xff, 0xa8, 0xfc, 0xff, 0xff, 0xff, + 0xff, 0xff, 0x68, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x30, 0xff, 0xff, 0xff, 0xa8, 0xfc, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xec, 0x12, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x30, 0xff, 0xff, 0xff, 0xa8, + 0xfc, 0xff, 0xff, 0xf5, 0xff, 0xff, 0xff, 0x96, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x30, 0xff, 0xff, + 0xff, 0xa8, 0xfc, 0xff, 0xff, 0xb2, 0xdd, 0xff, + 0xff, 0xfc, 0x2f, 0x0, 0x0, 0x0, 0x0, 0x30, + 0xff, 0xff, 0xff, 0xa8, 0xfc, 0xff, 0xff, 0xc2, + 0x4f, 0xff, 0xff, 0xff, 0xc2, 0x0, 0x0, 0x0, + 0x0, 0x30, 0xff, 0xff, 0xff, 0xa8, 0xfc, 0xff, + 0xff, 0xd0, 0x0, 0xba, 0xff, 0xff, 0xff, 0x5a, + 0x0, 0x0, 0x0, 0x30, 0xff, 0xff, 0xff, 0xa8, + 0xfc, 0xff, 0xff, 0xd7, 0x0, 0x29, 0xfb, 0xff, + 0xff, 0xe5, 0xc, 0x0, 0x0, 0x30, 0xff, 0xff, + 0xff, 0xa8, 0xfc, 0xff, 0xff, 0xd8, 0x0, 0x0, + 0x8f, 0xff, 0xff, 0xff, 0x88, 0x0, 0x0, 0x30, + 0xff, 0xff, 0xff, 0xa8, 0xfc, 0xff, 0xff, 0xd8, + 0x0, 0x0, 0xf, 0xe9, 0xff, 0xff, 0xf9, 0x25, + 0x0, 0x30, 0xff, 0xff, 0xff, 0xa8, 0xfc, 0xff, + 0xff, 0xd8, 0x0, 0x0, 0x0, 0x63, 0xff, 0xff, + 0xff, 0xb5, 0x0, 0x2f, 0xff, 0xff, 0xff, 0xa8, + 0xfc, 0xff, 0xff, 0xd8, 0x0, 0x0, 0x0, 0x2, + 0xcb, 0xff, 0xff, 0xff, 0x4c, 0x28, 0xff, 0xff, + 0xff, 0xa8, 0xfc, 0xff, 0xff, 0xd8, 0x0, 0x0, + 0x0, 0x0, 0x39, 0xfe, 0xff, 0xff, 0xdc, 0x24, + 0xff, 0xff, 0xff, 0xa8, 0xfc, 0xff, 0xff, 0xd8, + 0x0, 0x0, 0x0, 0x0, 0x0, 0xa3, 0xff, 0xff, + 0xff, 0x81, 0xff, 0xff, 0xff, 0xa8, 0xfc, 0xff, + 0xff, 0xd8, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1a, + 0xf3, 0xff, 0xff, 0xf4, 0xfa, 0xff, 0xff, 0xa8, + 0xfc, 0xff, 0xff, 0xd8, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x78, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xa8, 0xfc, 0xff, 0xff, 0xd8, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x6, 0xdb, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xa8, 0xfc, 0xff, 0xff, 0xd8, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x4d, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xa8, 0xfc, 0xff, + 0xff, 0xd8, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0xb7, 0xff, 0xff, 0xff, 0xff, 0xa8, + + /* U+004F "O" */ + 0x0, 0x0, 0x0, 0x0, 0x0, 0xd, 0x64, 0xa3, + 0xd6, 0xeb, 0xfa, 0xef, 0xdd, 0xb4, 0x77, 0x22, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x3, 0x7d, 0xef, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc, 0xa6, 0x16, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x10, 0xc1, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xe5, 0x33, 0x0, + 0x0, 0x0, 0x0, 0x4, 0xbc, 0xff, 0xff, 0xff, + 0xff, 0xf8, 0xad, 0x75, 0x61, 0x6e, 0x9b, 0xea, + 0xff, 0xff, 0xff, 0xff, 0xe8, 0x1d, 0x0, 0x0, + 0x0, 0x71, 0xff, 0xff, 0xff, 0xff, 0xc3, 0x1d, + 0x0, 0x0, 0x0, 0x0, 0x0, 0xb, 0x96, 0xff, + 0xff, 0xff, 0xff, 0xb9, 0x0, 0x0, 0x8, 0xe9, + 0xff, 0xff, 0xff, 0xd3, 0x9, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x9d, 0xff, 0xff, + 0xff, 0xff, 0x3b, 0x0, 0x47, 0xff, 0xff, 0xff, + 0xff, 0x42, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x10, 0xf3, 0xff, 0xff, 0xff, + 0x93, 0x0, 0x88, 0xff, 0xff, 0xff, 0xe4, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0xa5, 0xff, 0xff, 0xff, 0xd5, 0x0, + 0xa8, 0xff, 0xff, 0xff, 0xb0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x71, 0xff, 0xff, 0xff, 0xf6, 0x0, 0xbb, 0xff, + 0xff, 0xff, 0x9a, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x5b, 0xff, + 0xff, 0xff, 0xff, 0xb, 0xb9, 0xff, 0xff, 0xff, + 0x9d, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x5e, 0xff, 0xff, 0xff, + 0xff, 0x8, 0xa5, 0xff, 0xff, 0xff, 0xb6, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x75, 0xff, 0xff, 0xff, 0xf4, 0x0, + 0x7f, 0xff, 0xff, 0xff, 0xed, 0x3, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0xac, 0xff, 0xff, 0xff, 0xca, 0x0, 0x3c, 0xff, + 0xff, 0xff, 0xff, 0x55, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x14, 0xf7, 0xff, + 0xff, 0xff, 0x82, 0x0, 0x3, 0xdd, 0xff, 0xff, + 0xff, 0xe2, 0x14, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0xa6, 0xff, 0xff, 0xff, 0xfa, + 0x22, 0x0, 0x0, 0x60, 0xff, 0xff, 0xff, 0xff, + 0xd7, 0x30, 0x0, 0x0, 0x0, 0x0, 0x0, 0x12, + 0xa2, 0xff, 0xff, 0xff, 0xff, 0x95, 0x0, 0x0, + 0x0, 0x1, 0xab, 0xff, 0xff, 0xff, 0xff, 0xfe, + 0xbf, 0x84, 0x71, 0x7d, 0xaa, 0xf2, 0xff, 0xff, + 0xff, 0xff, 0xcd, 0xa, 0x0, 0x0, 0x0, 0x0, + 0xb, 0xb5, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc8, + 0x19, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, + 0x74, 0xec, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xf0, 0x82, 0x6, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xa, + 0x60, 0xa2, 0xd6, 0xeb, 0xfb, 0xee, 0xd9, 0xa8, + 0x64, 0xf, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + + /* U+0050 "P" */ + 0xfc, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xfb, 0xec, 0xcd, 0x96, 0x39, 0x0, 0x0, + 0x0, 0xfc, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xac, + 0xe, 0x0, 0xfc, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xc1, 0x2, 0xfc, 0xff, 0xff, 0xff, 0x8c, + 0x54, 0x54, 0x54, 0x54, 0x69, 0x93, 0xf2, 0xff, + 0xff, 0xff, 0xff, 0x62, 0xfc, 0xff, 0xff, 0xff, + 0x54, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1c, + 0xea, 0xff, 0xff, 0xff, 0xbc, 0xfc, 0xff, 0xff, + 0xff, 0x54, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x86, 0xff, 0xff, 0xff, 0xe9, 0xfc, 0xff, + 0xff, 0xff, 0x54, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x67, 0xff, 0xff, 0xff, 0xf5, 0xfc, + 0xff, 0xff, 0xff, 0x54, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x8d, 0xff, 0xff, 0xff, 0xde, + 0xfc, 0xff, 0xff, 0xff, 0x54, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x21, 0xf1, 0xff, 0xff, 0xff, + 0x9e, 0xfc, 0xff, 0xff, 0xff, 0x87, 0x4c, 0x4c, + 0x4c, 0x4c, 0x5f, 0x8d, 0xf2, 0xff, 0xff, 0xff, + 0xfe, 0x32, 0xfc, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0x84, 0x0, 0xfc, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xfa, 0x78, 0x0, 0x0, 0xfc, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xfd, 0xed, 0xc8, + 0x85, 0x1d, 0x0, 0x0, 0x0, 0xfc, 0xff, 0xff, + 0xff, 0x54, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xfc, 0xff, + 0xff, 0xff, 0x54, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xfc, + 0xff, 0xff, 0xff, 0x54, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0xfc, 0xff, 0xff, 0xff, 0x54, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0xfc, 0xff, 0xff, 0xff, 0x54, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0xfc, 0xff, 0xff, 0xff, 0x54, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0xfc, 0xff, 0xff, 0xff, 0x54, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, + + /* U+0051 "Q" */ + 0x0, 0x0, 0x0, 0x0, 0x0, 0xa, 0x5f, 0xa0, + 0xd4, 0xe9, 0xfa, 0xef, 0xdc, 0xb2, 0x74, 0x1f, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x1, 0x71, 0xeb, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xfb, 0x9e, 0x11, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xa, 0xb2, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xdd, 0x2a, 0x0, + 0x0, 0x0, 0x0, 0x0, 0xaa, 0xff, 0xff, 0xff, + 0xff, 0xfa, 0xb1, 0x76, 0x61, 0x6e, 0x9e, 0xed, + 0xff, 0xff, 0xff, 0xff, 0xdf, 0x14, 0x0, 0x0, + 0x0, 0x60, 0xff, 0xff, 0xff, 0xff, 0xce, 0x24, + 0x0, 0x0, 0x0, 0x0, 0x0, 0xf, 0xa3, 0xff, + 0xff, 0xff, 0xff, 0xaa, 0x0, 0x0, 0x3, 0xdc, + 0xff, 0xff, 0xff, 0xdf, 0xf, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x1, 0xae, 0xff, 0xff, + 0xff, 0xfe, 0x2c, 0x0, 0x3b, 0xff, 0xff, 0xff, + 0xff, 0x53, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x1a, 0xfa, 0xff, 0xff, 0xff, + 0x88, 0x0, 0x7c, 0xff, 0xff, 0xff, 0xee, 0x4, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0xb3, 0xff, 0xff, 0xff, 0xca, 0x0, + 0xa3, 0xff, 0xff, 0xff, 0xb9, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x7a, 0xff, 0xff, 0xff, 0xf2, 0x0, 0xb7, 0xff, + 0xff, 0xff, 0x9f, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x60, 0xff, + 0xff, 0xff, 0xff, 0x6, 0xbe, 0xff, 0xff, 0xff, + 0x99, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x59, 0xff, 0xff, 0xff, + 0xff, 0xd, 0xae, 0xff, 0xff, 0xff, 0xab, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x69, 0xff, 0xff, 0xff, 0xfb, 0x0, + 0x94, 0xff, 0xff, 0xff, 0xd9, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x93, 0xff, 0xff, 0xff, 0xd9, 0x0, 0x5d, 0xff, + 0xff, 0xff, 0xff, 0x26, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xd7, 0xff, + 0xff, 0xff, 0x9e, 0x0, 0x18, 0xfa, 0xff, 0xff, + 0xff, 0xa0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x4b, 0xff, 0xff, 0xff, 0xff, + 0x48, 0x0, 0x0, 0xa8, 0xff, 0xff, 0xff, 0xff, + 0x60, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x20, 0xe3, 0xff, 0xff, 0xff, 0xd5, 0x2, 0x0, + 0x0, 0x21, 0xf2, 0xff, 0xff, 0xff, 0xfe, 0x95, + 0x1d, 0x0, 0x0, 0x0, 0xa, 0x61, 0xe8, 0xff, + 0xff, 0xff, 0xfd, 0x3c, 0x0, 0x0, 0x0, 0x0, + 0x54, 0xfb, 0xff, 0xff, 0xff, 0xff, 0xff, 0xdb, + 0xc5, 0xd2, 0xf8, 0xff, 0xff, 0xff, 0xff, 0xff, + 0x64, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x4d, + 0xeb, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xed, 0x4f, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x12, 0x88, + 0xe4, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xda, 0x7e, 0x11, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x2, 0x2b, + 0x56, 0xed, 0xff, 0xff, 0xff, 0xa0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x94, + 0xff, 0xff, 0xff, 0xf8, 0x34, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x23, 0xfb, 0xff, + 0xff, 0xff, 0xf1, 0x88, 0x4d, 0x3b, 0x49, 0x5, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x86, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xe, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x4, 0xa6, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xd, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x52, 0xb7, 0xec, 0xfc, 0xf1, 0xd7, + 0xac, 0x7, 0x0, 0x0, + + /* U+0052 "R" */ + 0xfc, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xfc, 0xef, 0xd2, 0xa0, 0x4c, 0x2, + 0x0, 0x0, 0x0, 0x0, 0xfc, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xca, 0x22, 0x0, 0x0, 0x0, + 0xfc, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xe3, 0x11, 0x0, 0x0, 0xfc, 0xff, 0xff, 0xff, + 0x8c, 0x54, 0x54, 0x54, 0x54, 0x54, 0x65, 0x89, + 0xe7, 0xff, 0xff, 0xff, 0xff, 0x8a, 0x0, 0x0, + 0xfc, 0xff, 0xff, 0xff, 0x54, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0xe, 0xd8, 0xff, 0xff, + 0xff, 0xd9, 0x0, 0x0, 0xfc, 0xff, 0xff, 0xff, + 0x54, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x76, 0xff, 0xff, 0xff, 0xf9, 0x0, 0x0, + 0xfc, 0xff, 0xff, 0xff, 0x54, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x6c, 0xff, 0xff, + 0xff, 0xf7, 0x0, 0x0, 0xfc, 0xff, 0xff, 0xff, + 0x54, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x1, 0xbe, 0xff, 0xff, 0xff, 0xc9, 0x0, 0x0, + 0xfc, 0xff, 0xff, 0xff, 0x54, 0x0, 0x0, 0x0, + 0x0, 0x0, 0xf, 0x37, 0xae, 0xff, 0xff, 0xff, + 0xff, 0x67, 0x0, 0x0, 0xfc, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xbc, 0x2, 0x0, 0x0, + 0xfc, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xa0, + 0xb, 0x0, 0x0, 0x0, 0xfc, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xc8, 0x29, 0x0, 0x0, 0x0, 0x0, 0x0, + 0xfc, 0xff, 0xff, 0xff, 0x8c, 0x54, 0x54, 0x54, + 0x54, 0x96, 0xff, 0xff, 0xff, 0xf9, 0x2a, 0x0, + 0x0, 0x0, 0x0, 0x0, 0xfc, 0xff, 0xff, 0xff, + 0x54, 0x0, 0x0, 0x0, 0x0, 0x6, 0xd6, 0xff, + 0xff, 0xff, 0xc8, 0x3, 0x0, 0x0, 0x0, 0x0, + 0xfc, 0xff, 0xff, 0xff, 0x54, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x3e, 0xfe, 0xff, 0xff, 0xff, 0x74, + 0x0, 0x0, 0x0, 0x0, 0xfc, 0xff, 0xff, 0xff, + 0x54, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x9d, + 0xff, 0xff, 0xff, 0xf6, 0x25, 0x0, 0x0, 0x0, + 0xfc, 0xff, 0xff, 0xff, 0x54, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x12, 0xea, 0xff, 0xff, 0xff, + 0xc2, 0x1, 0x0, 0x0, 0xfc, 0xff, 0xff, 0xff, + 0x54, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x5d, 0xff, 0xff, 0xff, 0xff, 0x6c, 0x0, 0x0, + 0xfc, 0xff, 0xff, 0xff, 0x54, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0xbc, 0xff, 0xff, + 0xff, 0xf3, 0x20, 0x0, 0xfc, 0xff, 0xff, 0xff, + 0x54, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x25, 0xf7, 0xff, 0xff, 0xff, 0xbb, 0x0, + + /* U+0053 "S" */ + 0x0, 0x0, 0x0, 0x0, 0x8, 0x5a, 0xa3, 0xd0, + 0xed, 0xf9, 0xfb, 0xf0, 0xd6, 0xad, 0x69, 0xd, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x4b, 0xe5, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xed, 0x4d, 0x0, 0x0, 0x0, 0x0, + 0x44, 0xfd, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfb, 0x3e, + 0x0, 0x0, 0x0, 0xd0, 0xff, 0xff, 0xff, 0xec, + 0x6f, 0x29, 0x12, 0x15, 0x32, 0x89, 0xfc, 0xff, + 0xff, 0xff, 0xcf, 0x0, 0x0, 0x14, 0xff, 0xff, + 0xff, 0xff, 0x45, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x65, 0xff, 0xff, 0xff, 0xff, 0x28, 0x0, + 0x25, 0xff, 0xff, 0xff, 0xff, 0x14, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x4, 0x6c, 0x50, 0x31, + 0x11, 0x0, 0x0, 0xc, 0xfe, 0xff, 0xff, 0xff, + 0x7b, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xb8, + 0xff, 0xff, 0xff, 0xff, 0xbb, 0x5e, 0x1d, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x24, 0xed, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xe3, 0xad, 0x77, 0x3a, 0x4, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x22, 0xbe, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xef, 0x96, 0x21, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x2e, 0x7c, 0xbf, 0xf7, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf4, 0x51, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x6, 0x33, 0x66, 0xa1, 0xe9, 0xff, 0xff, + 0xff, 0xff, 0xf9, 0x28, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x5, 0x6e, 0xfa, 0xff, 0xff, 0xff, 0x95, 0x0, + 0x0, 0x0, 0x0, 0x6, 0x1, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x8c, 0xff, 0xff, + 0xff, 0xc8, 0x6, 0x8b, 0xb3, 0xda, 0xfc, 0x53, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x68, 0xff, 0xff, 0xff, 0xce, 0x0, 0xd0, 0xff, + 0xff, 0xff, 0xdd, 0x22, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x8, 0xc7, 0xff, 0xff, 0xff, 0xac, + 0x0, 0x55, 0xff, 0xff, 0xff, 0xff, 0xf1, 0x9c, + 0x5c, 0x45, 0x3b, 0x4d, 0x7c, 0xdc, 0xff, 0xff, + 0xff, 0xff, 0x55, 0x0, 0x0, 0x96, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xb0, 0x0, 0x0, 0x0, + 0x0, 0x6d, 0xee, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xf9, 0x8c, 0x5, + 0x0, 0x0, 0x0, 0x0, 0x0, 0xd, 0x60, 0xa6, + 0xd3, 0xef, 0xfa, 0xfa, 0xef, 0xd6, 0xae, 0x6e, + 0x1b, 0x0, 0x0, 0x0, + + /* U+0054 "T" */ + 0xac, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xac, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xac, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x33, 0x4c, + 0x4c, 0x4c, 0x4c, 0x4c, 0x4e, 0xff, 0xff, 0xff, + 0xff, 0x84, 0x4c, 0x4c, 0x4c, 0x4c, 0x4c, 0x4c, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x4, 0xff, + 0xff, 0xff, 0xff, 0x50, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x4, 0xff, 0xff, 0xff, 0xff, 0x50, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x4, 0xff, 0xff, 0xff, 0xff, 0x50, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x4, 0xff, 0xff, 0xff, + 0xff, 0x50, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x4, 0xff, + 0xff, 0xff, 0xff, 0x50, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x4, 0xff, 0xff, 0xff, 0xff, 0x50, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x4, 0xff, 0xff, 0xff, 0xff, 0x50, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x4, 0xff, 0xff, 0xff, + 0xff, 0x50, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x4, 0xff, + 0xff, 0xff, 0xff, 0x50, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x4, 0xff, 0xff, 0xff, 0xff, 0x50, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x4, 0xff, 0xff, 0xff, 0xff, 0x50, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x4, 0xff, 0xff, 0xff, + 0xff, 0x50, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x4, 0xff, + 0xff, 0xff, 0xff, 0x50, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x4, 0xff, 0xff, 0xff, 0xff, 0x50, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x4, 0xff, 0xff, 0xff, 0xff, 0x50, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x4, 0xff, 0xff, 0xff, + 0xff, 0x50, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + + /* U+0055 "U" */ + 0x34, 0xff, 0xff, 0xff, 0xff, 0x20, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7c, 0xff, + 0xff, 0xff, 0xd4, 0x34, 0xff, 0xff, 0xff, 0xff, + 0x20, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x7c, 0xff, 0xff, 0xff, 0xd4, 0x34, 0xff, + 0xff, 0xff, 0xff, 0x20, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x7c, 0xff, 0xff, 0xff, + 0xd4, 0x34, 0xff, 0xff, 0xff, 0xff, 0x20, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7c, + 0xff, 0xff, 0xff, 0xd4, 0x34, 0xff, 0xff, 0xff, + 0xff, 0x20, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x7c, 0xff, 0xff, 0xff, 0xd4, 0x34, + 0xff, 0xff, 0xff, 0xff, 0x20, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x7c, 0xff, 0xff, + 0xff, 0xd4, 0x34, 0xff, 0xff, 0xff, 0xff, 0x20, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x7c, 0xff, 0xff, 0xff, 0xd4, 0x34, 0xff, 0xff, + 0xff, 0xff, 0x20, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x7c, 0xff, 0xff, 0xff, 0xd4, + 0x34, 0xff, 0xff, 0xff, 0xff, 0x20, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7c, 0xff, + 0xff, 0xff, 0xd4, 0x34, 0xff, 0xff, 0xff, 0xff, + 0x20, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x7c, 0xff, 0xff, 0xff, 0xd4, 0x34, 0xff, + 0xff, 0xff, 0xff, 0x20, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x7c, 0xff, 0xff, 0xff, + 0xd4, 0x34, 0xff, 0xff, 0xff, 0xff, 0x20, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7c, + 0xff, 0xff, 0xff, 0xd4, 0x2f, 0xff, 0xff, 0xff, + 0xff, 0x29, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x89, 0xff, 0xff, 0xff, 0xcb, 0x1c, + 0xff, 0xff, 0xff, 0xff, 0x4f, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0xb5, 0xff, 0xff, + 0xff, 0xb5, 0x3, 0xee, 0xff, 0xff, 0xff, 0xaa, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1e, + 0xf9, 0xff, 0xff, 0xff, 0x81, 0x0, 0xa6, 0xff, + 0xff, 0xff, 0xff, 0x67, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x16, 0xca, 0xff, 0xff, 0xff, 0xfe, 0x2f, + 0x0, 0x2d, 0xfd, 0xff, 0xff, 0xff, 0xff, 0xc6, + 0x7a, 0x60, 0x6a, 0x9b, 0xf1, 0xff, 0xff, 0xff, + 0xff, 0xa5, 0x0, 0x0, 0x0, 0x6e, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xca, 0xd, 0x0, 0x0, 0x0, + 0x0, 0x58, 0xec, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xfc, 0x94, 0xa, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0xa, 0x61, 0xa8, + 0xd9, 0xef, 0xfc, 0xf2, 0xe1, 0xb4, 0x78, 0x1b, + 0x0, 0x0, 0x0, 0x0, + + /* U+0056 "V" */ + 0x9b, 0xff, 0xff, 0xff, 0xde, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xd6, + 0xff, 0xff, 0xff, 0x9b, 0x3a, 0xff, 0xff, 0xff, + 0xff, 0x33, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x2b, 0xff, 0xff, 0xff, 0xff, 0x39, + 0x0, 0xd8, 0xff, 0xff, 0xff, 0x88, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xff, + 0xff, 0xff, 0xd8, 0x0, 0x0, 0x77, 0xff, 0xff, + 0xff, 0xdd, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0xd4, 0xff, 0xff, 0xff, 0x77, 0x0, + 0x0, 0x19, 0xfc, 0xff, 0xff, 0xff, 0x32, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x27, 0xff, 0xff, + 0xff, 0xfc, 0x1a, 0x0, 0x0, 0x0, 0xb3, 0xff, + 0xff, 0xff, 0x87, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x7c, 0xff, 0xff, 0xff, 0xb5, 0x0, 0x0, + 0x0, 0x0, 0x52, 0xff, 0xff, 0xff, 0xdc, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0xd1, 0xff, 0xff, + 0xff, 0x53, 0x0, 0x0, 0x0, 0x0, 0x5, 0xeb, + 0xff, 0xff, 0xff, 0x31, 0x0, 0x0, 0x0, 0x0, + 0x25, 0xff, 0xff, 0xff, 0xec, 0x6, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x8f, 0xff, 0xff, 0xff, 0x86, + 0x0, 0x0, 0x0, 0x0, 0x7a, 0xff, 0xff, 0xff, + 0x91, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x2d, + 0xff, 0xff, 0xff, 0xdb, 0x0, 0x0, 0x0, 0x0, + 0xce, 0xff, 0xff, 0xff, 0x30, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0xcb, 0xff, 0xff, 0xff, + 0x30, 0x0, 0x0, 0x22, 0xff, 0xff, 0xff, 0xcf, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x6a, 0xff, 0xff, 0xff, 0x85, 0x0, 0x0, 0x77, + 0xff, 0xff, 0xff, 0x6d, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x10, 0xf7, 0xff, 0xff, + 0xda, 0x0, 0x0, 0xca, 0xff, 0xff, 0xf9, 0x13, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0xa7, 0xff, 0xff, 0xff, 0x2c, 0x1a, 0xff, + 0xff, 0xff, 0xab, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x45, 0xff, 0xff, + 0xff, 0x78, 0x64, 0xff, 0xff, 0xff, 0x4a, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x2, 0xe1, 0xff, 0xff, 0xc0, 0xad, 0xff, + 0xff, 0xe5, 0x3, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x82, 0xff, + 0xff, 0xf9, 0xed, 0xff, 0xff, 0x87, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x21, 0xfe, 0xff, 0xff, 0xff, 0xff, + 0xff, 0x27, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xbf, + 0xff, 0xff, 0xff, 0xff, 0xc5, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x5d, 0xff, 0xff, 0xff, 0xff, + 0x64, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + + /* U+0057 "W" */ + 0xd6, 0xff, 0xff, 0xff, 0x85, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x53, 0xff, 0xff, 0xff, 0xff, + 0xbf, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x35, + 0xff, 0xff, 0xff, 0xff, 0x29, 0x92, 0xff, 0xff, + 0xff, 0xc1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x91, 0xff, 0xff, 0xff, 0xff, 0xf6, 0x6, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x6e, 0xff, 0xff, 0xff, + 0xe4, 0x0, 0x4e, 0xff, 0xff, 0xff, 0xf6, 0x5, + 0x0, 0x0, 0x0, 0x0, 0x0, 0xce, 0xff, 0xff, + 0xff, 0xff, 0xff, 0x3c, 0x0, 0x0, 0x0, 0x0, + 0x0, 0xa7, 0xff, 0xff, 0xff, 0xa0, 0x0, 0xe, + 0xfb, 0xff, 0xff, 0xff, 0x38, 0x0, 0x0, 0x0, + 0x0, 0xf, 0xfd, 0xff, 0xff, 0xff, 0xff, 0xff, + 0x7b, 0x0, 0x0, 0x0, 0x0, 0x0, 0xe0, 0xff, + 0xff, 0xff, 0x5c, 0x0, 0x0, 0xc6, 0xff, 0xff, + 0xff, 0x73, 0x0, 0x0, 0x0, 0x0, 0x49, 0xff, + 0xff, 0xff, 0xdd, 0xff, 0xff, 0xba, 0x0, 0x0, + 0x0, 0x0, 0x19, 0xff, 0xff, 0xff, 0xff, 0x18, + 0x0, 0x0, 0x82, 0xff, 0xff, 0xff, 0xaf, 0x0, + 0x0, 0x0, 0x0, 0x86, 0xff, 0xff, 0xe6, 0x98, + 0xff, 0xff, 0xf3, 0x4, 0x0, 0x0, 0x0, 0x52, + 0xff, 0xff, 0xff, 0xd3, 0x0, 0x0, 0x0, 0x3e, + 0xff, 0xff, 0xff, 0xe9, 0x0, 0x0, 0x0, 0x0, + 0xc3, 0xff, 0xff, 0xb2, 0x65, 0xff, 0xff, 0xff, + 0x37, 0x0, 0x0, 0x0, 0x8b, 0xff, 0xff, 0xff, + 0x8f, 0x0, 0x0, 0x0, 0x5, 0xf4, 0xff, 0xff, + 0xff, 0x26, 0x0, 0x0, 0x7, 0xf8, 0xff, 0xff, + 0x78, 0x2d, 0xff, 0xff, 0xff, 0x76, 0x0, 0x0, + 0x0, 0xc4, 0xff, 0xff, 0xff, 0x4a, 0x0, 0x0, + 0x0, 0x0, 0xb6, 0xff, 0xff, 0xff, 0x61, 0x0, + 0x0, 0x3b, 0xff, 0xff, 0xff, 0x3b, 0x2, 0xf0, + 0xff, 0xff, 0xb5, 0x0, 0x0, 0x5, 0xf7, 0xff, + 0xff, 0xfa, 0xb, 0x0, 0x0, 0x0, 0x0, 0x72, + 0xff, 0xff, 0xff, 0x9d, 0x0, 0x0, 0x77, 0xff, + 0xff, 0xf7, 0x6, 0x0, 0xb6, 0xff, 0xff, 0xf1, + 0x2, 0x0, 0x36, 0xff, 0xff, 0xff, 0xc2, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x2e, 0xff, 0xff, 0xff, + 0xd8, 0x0, 0x0, 0xb4, 0xff, 0xff, 0xc1, 0x0, + 0x0, 0x78, 0xff, 0xff, 0xff, 0x32, 0x0, 0x6f, + 0xff, 0xff, 0xff, 0x7d, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x1, 0xe9, 0xff, 0xff, 0xff, 0x14, 0x2, + 0xef, 0xff, 0xff, 0x84, 0x0, 0x0, 0x3b, 0xff, + 0xff, 0xff, 0x6a, 0x0, 0xaa, 0xff, 0xff, 0xff, + 0x39, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xa6, + 0xff, 0xff, 0xff, 0x4f, 0x2c, 0xff, 0xff, 0xff, + 0x47, 0x0, 0x0, 0x6, 0xf7, 0xff, 0xff, 0x9b, + 0x0, 0xe7, 0xff, 0xff, 0xf0, 0x3, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x62, 0xff, 0xff, 0xff, + 0x87, 0x64, 0xff, 0xff, 0xfc, 0xd, 0x0, 0x0, + 0x0, 0xc0, 0xff, 0xff, 0xcd, 0x25, 0xff, 0xff, + 0xff, 0xb0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x1e, 0xff, 0xff, 0xff, 0xbd, 0x9b, 0xff, + 0xff, 0xcc, 0x0, 0x0, 0x0, 0x0, 0x82, 0xff, + 0xff, 0xf9, 0x66, 0xff, 0xff, 0xff, 0x6c, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xda, + 0xff, 0xff, 0xf0, 0xd4, 0xff, 0xff, 0x8e, 0x0, + 0x0, 0x0, 0x0, 0x45, 0xff, 0xff, 0xff, 0xc7, + 0xff, 0xff, 0xff, 0x27, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x96, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0x50, 0x0, 0x0, 0x0, 0x0, + 0xb, 0xfb, 0xff, 0xff, 0xff, 0xff, 0xff, 0xe2, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x52, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, + 0x13, 0x0, 0x0, 0x0, 0x0, 0x0, 0xca, 0xff, + 0xff, 0xff, 0xff, 0xff, 0x9e, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x10, 0xfd, + 0xff, 0xff, 0xff, 0xff, 0xd4, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x8c, 0xff, 0xff, 0xff, 0xff, + 0xff, 0x5a, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0xca, 0xff, 0xff, 0xff, + 0xff, 0x96, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x4f, 0xff, 0xff, 0xff, 0xff, 0xfe, 0x17, 0x0, + 0x0, 0x0, 0x0, 0x0, + + /* U+0058 "X" */ + 0x2, 0xc5, 0xff, 0xff, 0xff, 0xc1, 0x1, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xb6, 0xff, + 0xff, 0xff, 0xcb, 0x3, 0x0, 0x23, 0xf4, 0xff, + 0xff, 0xff, 0x68, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x5e, 0xff, 0xff, 0xff, 0xf9, 0x2c, 0x0, + 0x0, 0x0, 0x68, 0xff, 0xff, 0xff, 0xf1, 0x1c, + 0x0, 0x0, 0x0, 0x0, 0x17, 0xed, 0xff, 0xff, + 0xff, 0x7c, 0x0, 0x0, 0x0, 0x0, 0x0, 0xb7, + 0xff, 0xff, 0xff, 0xb3, 0x0, 0x0, 0x0, 0x0, + 0xab, 0xff, 0xff, 0xff, 0xce, 0x4, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x19, 0xed, 0xff, 0xff, 0xff, + 0x5a, 0x0, 0x0, 0x51, 0xff, 0xff, 0xff, 0xfa, + 0x2f, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x57, 0xff, 0xff, 0xff, 0xeb, 0x14, 0x11, 0xe7, + 0xff, 0xff, 0xff, 0x81, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0xa6, 0xff, 0xff, + 0xff, 0xa6, 0x9f, 0xff, 0xff, 0xff, 0xd2, 0x6, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x11, 0xe4, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xfb, 0x33, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x46, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0x86, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0xc4, 0xff, 0xff, 0xff, 0xff, + 0xf9, 0xf, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x49, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0x89, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x11, 0xe5, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xfc, 0x34, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0xa5, 0xff, 0xff, + 0xff, 0xb5, 0xae, 0xff, 0xff, 0xff, 0xd1, 0x5, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x52, 0xff, 0xff, 0xff, 0xf1, 0x1c, 0x18, 0xee, + 0xff, 0xff, 0xff, 0x7e, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x15, 0xea, 0xff, 0xff, 0xff, + 0x68, 0x0, 0x0, 0x61, 0xff, 0xff, 0xff, 0xf9, + 0x2b, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xad, + 0xff, 0xff, 0xff, 0xc0, 0x1, 0x0, 0x0, 0x0, + 0xba, 0xff, 0xff, 0xff, 0xc9, 0x3, 0x0, 0x0, + 0x0, 0x0, 0x5c, 0xff, 0xff, 0xff, 0xf6, 0x24, + 0x0, 0x0, 0x0, 0x0, 0x1f, 0xf3, 0xff, 0xff, + 0xff, 0x73, 0x0, 0x0, 0x0, 0x1a, 0xee, 0xff, + 0xff, 0xff, 0x74, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x6d, 0xff, 0xff, 0xff, 0xf6, 0x24, 0x0, + 0x0, 0xb7, 0xff, 0xff, 0xff, 0xca, 0x3, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x2, 0xc4, 0xff, + 0xff, 0xff, 0xc0, 0x1, 0x65, 0xff, 0xff, 0xff, + 0xfa, 0x2d, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x27, 0xf7, 0xff, 0xff, 0xff, 0x68, + + /* U+0059 "Y" */ + 0x30, 0xfc, 0xff, 0xff, 0xff, 0x56, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x4c, 0xff, + 0xff, 0xff, 0xfe, 0x39, 0x0, 0x8d, 0xff, 0xff, + 0xff, 0xe1, 0x9, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x7, 0xdc, 0xff, 0xff, 0xff, 0x98, 0x0, + 0x0, 0xc, 0xe2, 0xff, 0xff, 0xff, 0x81, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x7c, 0xff, 0xff, + 0xff, 0xe8, 0x10, 0x0, 0x0, 0x0, 0x4e, 0xff, + 0xff, 0xff, 0xf6, 0x1f, 0x0, 0x0, 0x0, 0x0, + 0x1e, 0xf5, 0xff, 0xff, 0xff, 0x59, 0x0, 0x0, + 0x0, 0x0, 0x0, 0xaf, 0xff, 0xff, 0xff, 0xac, + 0x0, 0x0, 0x0, 0x0, 0xac, 0xff, 0xff, 0xff, + 0xba, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1c, + 0xf3, 0xff, 0xff, 0xff, 0x42, 0x0, 0x0, 0x44, + 0xff, 0xff, 0xff, 0xf7, 0x23, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x70, 0xff, 0xff, 0xff, + 0xd3, 0x3, 0x5, 0xd6, 0xff, 0xff, 0xff, 0x7b, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x3, 0xce, 0xff, 0xff, 0xff, 0x6d, 0x74, 0xff, + 0xff, 0xff, 0xd6, 0x6, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x34, 0xfd, 0xff, + 0xff, 0xee, 0xf2, 0xff, 0xff, 0xfe, 0x3e, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x92, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0x9d, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xe, 0xe5, + 0xff, 0xff, 0xff, 0xff, 0xeb, 0x13, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x56, 0xff, 0xff, 0xff, 0xff, + 0x62, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x24, + 0xff, 0xff, 0xff, 0xff, 0x30, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x24, 0xff, 0xff, 0xff, 0xff, + 0x30, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x24, + 0xff, 0xff, 0xff, 0xff, 0x30, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x24, 0xff, 0xff, 0xff, 0xff, + 0x30, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x24, + 0xff, 0xff, 0xff, 0xff, 0x30, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x24, 0xff, 0xff, 0xff, 0xff, + 0x30, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x24, + 0xff, 0xff, 0xff, 0xff, 0x30, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x24, 0xff, 0xff, 0xff, 0xff, + 0x30, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + + /* U+005A "Z" */ + 0x0, 0x0, 0xfc, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xdc, 0x0, 0x0, 0x0, 0xfc, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xdc, 0x0, 0x0, 0x0, 0xfc, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xdb, 0x0, 0x0, 0x0, + 0x5a, 0x5c, 0x5c, 0x5c, 0x5c, 0x5c, 0x5c, 0x5c, + 0x5c, 0x7d, 0xff, 0xff, 0xff, 0xff, 0x6c, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0xc, 0xd3, 0xff, 0xff, 0xff, 0x9b, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x1, 0xaf, 0xff, 0xff, 0xff, + 0xc4, 0x6, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x84, 0xff, 0xff, + 0xff, 0xe2, 0x17, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x56, 0xff, + 0xff, 0xff, 0xf6, 0x32, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x31, + 0xf5, 0xff, 0xff, 0xff, 0x58, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x16, 0xe2, 0xff, 0xff, 0xff, 0x87, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x6, 0xc4, 0xff, 0xff, 0xff, 0xb4, 0x2, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x9c, 0xff, 0xff, 0xff, 0xd7, + 0xe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x6f, 0xff, 0xff, 0xff, + 0xef, 0x25, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x44, 0xfc, 0xff, + 0xff, 0xfc, 0x46, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x23, 0xed, + 0xff, 0xff, 0xff, 0x72, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xd, + 0xd5, 0xff, 0xff, 0xff, 0xa1, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x2, 0xb3, 0xff, 0xff, 0xff, 0xf2, 0x63, 0x5c, + 0x5c, 0x5c, 0x5c, 0x5c, 0x5c, 0x5c, 0x5c, 0x5c, + 0x5c, 0x29, 0x18, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0x74, 0x18, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0x74, 0x18, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x74, + + /* U+005B "[" */ + 0x50, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xa0, 0x50, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xa0, 0x50, 0xff, 0xff, 0xff, 0xe6, 0xc4, + 0xc4, 0xc4, 0x7a, 0x50, 0xff, 0xff, 0xff, 0x94, + 0x0, 0x0, 0x0, 0x0, 0x50, 0xff, 0xff, 0xff, + 0x94, 0x0, 0x0, 0x0, 0x0, 0x50, 0xff, 0xff, + 0xff, 0x94, 0x0, 0x0, 0x0, 0x0, 0x50, 0xff, + 0xff, 0xff, 0x94, 0x0, 0x0, 0x0, 0x0, 0x50, + 0xff, 0xff, 0xff, 0x94, 0x0, 0x0, 0x0, 0x0, + 0x50, 0xff, 0xff, 0xff, 0x94, 0x0, 0x0, 0x0, + 0x0, 0x50, 0xff, 0xff, 0xff, 0x94, 0x0, 0x0, + 0x0, 0x0, 0x50, 0xff, 0xff, 0xff, 0x94, 0x0, + 0x0, 0x0, 0x0, 0x50, 0xff, 0xff, 0xff, 0x94, + 0x0, 0x0, 0x0, 0x0, 0x50, 0xff, 0xff, 0xff, + 0x94, 0x0, 0x0, 0x0, 0x0, 0x50, 0xff, 0xff, + 0xff, 0x94, 0x0, 0x0, 0x0, 0x0, 0x50, 0xff, + 0xff, 0xff, 0x94, 0x0, 0x0, 0x0, 0x0, 0x50, + 0xff, 0xff, 0xff, 0x94, 0x0, 0x0, 0x0, 0x0, + 0x50, 0xff, 0xff, 0xff, 0x94, 0x0, 0x0, 0x0, + 0x0, 0x50, 0xff, 0xff, 0xff, 0x94, 0x0, 0x0, + 0x0, 0x0, 0x50, 0xff, 0xff, 0xff, 0x94, 0x0, + 0x0, 0x0, 0x0, 0x50, 0xff, 0xff, 0xff, 0x94, + 0x0, 0x0, 0x0, 0x0, 0x50, 0xff, 0xff, 0xff, + 0x94, 0x0, 0x0, 0x0, 0x0, 0x50, 0xff, 0xff, + 0xff, 0x94, 0x0, 0x0, 0x0, 0x0, 0x50, 0xff, + 0xff, 0xff, 0x94, 0x0, 0x0, 0x0, 0x0, 0x50, + 0xff, 0xff, 0xff, 0x94, 0x0, 0x0, 0x0, 0x0, + 0x50, 0xff, 0xff, 0xff, 0x94, 0x0, 0x0, 0x0, + 0x0, 0x50, 0xff, 0xff, 0xff, 0xea, 0xcc, 0xcc, + 0xcc, 0x7f, 0x50, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xa0, 0x50, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xa0, + + /* U+005C "\\" */ + 0x9c, 0xff, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x6b, 0xff, 0xff, 0xff, 0x12, 0x0, 0x0, + 0x0, 0x0, 0x3a, 0xff, 0xff, 0xff, 0x44, 0x0, + 0x0, 0x0, 0x0, 0xb, 0xfd, 0xff, 0xff, 0x76, + 0x0, 0x0, 0x0, 0x0, 0x0, 0xd8, 0xff, 0xff, + 0xa8, 0x0, 0x0, 0x0, 0x0, 0x0, 0xa7, 0xff, + 0xff, 0xd9, 0x0, 0x0, 0x0, 0x0, 0x0, 0x76, + 0xff, 0xff, 0xfe, 0xc, 0x0, 0x0, 0x0, 0x0, + 0x45, 0xff, 0xff, 0xff, 0x3d, 0x0, 0x0, 0x0, + 0x0, 0x14, 0xff, 0xff, 0xff, 0x6f, 0x0, 0x0, + 0x0, 0x0, 0x0, 0xe3, 0xff, 0xff, 0xa1, 0x0, + 0x0, 0x0, 0x0, 0x0, 0xb2, 0xff, 0xff, 0xd3, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x82, 0xff, 0xff, + 0xfb, 0x8, 0x0, 0x0, 0x0, 0x0, 0x51, 0xff, + 0xff, 0xff, 0x36, 0x0, 0x0, 0x0, 0x0, 0x20, + 0xff, 0xff, 0xff, 0x68, 0x0, 0x0, 0x0, 0x0, + 0x0, 0xee, 0xff, 0xff, 0x9a, 0x0, 0x0, 0x0, + 0x0, 0x0, 0xbe, 0xff, 0xff, 0xcc, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x8d, 0xff, 0xff, 0xf8, 0x4, + 0x0, 0x0, 0x0, 0x0, 0x5c, 0xff, 0xff, 0xff, + 0x2f, 0x0, 0x0, 0x0, 0x0, 0x2b, 0xff, 0xff, + 0xff, 0x61, 0x0, 0x0, 0x0, 0x0, 0x3, 0xf6, + 0xff, 0xff, 0x93, 0x0, 0x0, 0x0, 0x0, 0x0, + 0xc9, 0xff, 0xff, 0xc5, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x98, 0xff, 0xff, 0xf4, 0x2, + + /* U+005D "]" */ + 0xa4, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0x50, 0xa4, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0x50, 0x7d, 0xc4, 0xc4, 0xc4, 0xe5, 0xff, + 0xff, 0xff, 0x50, 0x0, 0x0, 0x0, 0x0, 0x90, + 0xff, 0xff, 0xff, 0x50, 0x0, 0x0, 0x0, 0x0, + 0x90, 0xff, 0xff, 0xff, 0x50, 0x0, 0x0, 0x0, + 0x0, 0x90, 0xff, 0xff, 0xff, 0x50, 0x0, 0x0, + 0x0, 0x0, 0x90, 0xff, 0xff, 0xff, 0x50, 0x0, + 0x0, 0x0, 0x0, 0x90, 0xff, 0xff, 0xff, 0x50, + 0x0, 0x0, 0x0, 0x0, 0x90, 0xff, 0xff, 0xff, + 0x50, 0x0, 0x0, 0x0, 0x0, 0x90, 0xff, 0xff, + 0xff, 0x50, 0x0, 0x0, 0x0, 0x0, 0x90, 0xff, + 0xff, 0xff, 0x50, 0x0, 0x0, 0x0, 0x0, 0x90, + 0xff, 0xff, 0xff, 0x50, 0x0, 0x0, 0x0, 0x0, + 0x90, 0xff, 0xff, 0xff, 0x50, 0x0, 0x0, 0x0, + 0x0, 0x90, 0xff, 0xff, 0xff, 0x50, 0x0, 0x0, + 0x0, 0x0, 0x90, 0xff, 0xff, 0xff, 0x50, 0x0, + 0x0, 0x0, 0x0, 0x90, 0xff, 0xff, 0xff, 0x50, + 0x0, 0x0, 0x0, 0x0, 0x90, 0xff, 0xff, 0xff, + 0x50, 0x0, 0x0, 0x0, 0x0, 0x90, 0xff, 0xff, + 0xff, 0x50, 0x0, 0x0, 0x0, 0x0, 0x90, 0xff, + 0xff, 0xff, 0x50, 0x0, 0x0, 0x0, 0x0, 0x90, + 0xff, 0xff, 0xff, 0x50, 0x0, 0x0, 0x0, 0x0, + 0x90, 0xff, 0xff, 0xff, 0x50, 0x0, 0x0, 0x0, + 0x0, 0x90, 0xff, 0xff, 0xff, 0x50, 0x0, 0x0, + 0x0, 0x0, 0x90, 0xff, 0xff, 0xff, 0x50, 0x0, + 0x0, 0x0, 0x0, 0x90, 0xff, 0xff, 0xff, 0x50, + 0x0, 0x0, 0x0, 0x0, 0x90, 0xff, 0xff, 0xff, + 0x50, 0x82, 0xcc, 0xcc, 0xcc, 0xe9, 0xff, 0xff, + 0xff, 0x50, 0xa4, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0x50, 0xa4, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0x50, + + /* U+005E "^" */ + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xd3, 0xff, + 0xff, 0xff, 0xff, 0x50, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x45, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xc2, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xb6, + 0xff, 0xff, 0xa6, 0xfa, 0xff, 0xff, 0x33, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x28, + 0xfe, 0xff, 0xfd, 0x20, 0xa6, 0xff, 0xff, 0xa5, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x98, 0xff, 0xff, 0xae, 0x0, 0x36, 0xff, 0xff, + 0xfa, 0x1b, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x13, 0xf6, 0xff, 0xff, 0x3e, 0x0, 0x0, 0xc6, + 0xff, 0xff, 0x88, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x7a, 0xff, 0xff, 0xcf, 0x0, 0x0, 0x0, + 0x56, 0xff, 0xff, 0xee, 0xb, 0x0, 0x0, 0x0, + 0x0, 0x5, 0xe5, 0xff, 0xff, 0x60, 0x0, 0x0, + 0x0, 0x4, 0xe2, 0xff, 0xff, 0x6b, 0x0, 0x0, + 0x0, 0x0, 0x5c, 0xff, 0xff, 0xe9, 0x7, 0x0, + 0x0, 0x0, 0x0, 0x77, 0xff, 0xff, 0xda, 0x1, + 0x0, 0x0, 0x0, 0xcd, 0xff, 0xff, 0x81, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x11, 0xf5, 0xff, 0xff, + 0x4e, 0x0, 0x0, 0x3e, 0xff, 0xff, 0xf9, 0x18, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x98, 0xff, + 0xff, 0xbf, 0x0, 0x0, 0xaf, 0xff, 0xff, 0xa2, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x29, + 0xfe, 0xff, 0xff, 0x31, 0x22, 0xfd, 0xff, 0xff, + 0x33, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0xb8, 0xff, 0xff, 0xa3, + + /* U+005F "_" */ + 0x49, 0xf8, 0xf8, 0xf8, 0xf8, 0xf8, 0xf8, 0xf8, + 0xf8, 0xf8, 0xf8, 0xf8, 0xf8, 0xf8, 0xf8, 0xf8, + 0xf8, 0xec, 0xb, 0x28, 0x28, 0x28, 0x28, 0x28, + 0x28, 0x28, 0x28, 0x28, 0x28, 0x28, 0x28, 0x28, + 0x28, 0x28, 0x28, 0x26, + + /* U+0060 "`" */ + 0x6, 0x80, 0x80, 0x80, 0x75, 0x4, 0x0, 0x0, + 0x0, 0x1, 0x8a, 0xff, 0xff, 0xff, 0xa3, 0x1, + 0x0, 0x0, 0x0, 0x0, 0x52, 0xf2, 0xff, 0xff, + 0x8e, 0x0, 0x0, 0x0, 0x0, 0x0, 0x27, 0xd5, + 0xff, 0xff, 0x77, 0x0, 0x0, 0x0, 0x0, 0x0, + 0xb, 0xa8, 0xff, 0xff, 0x4b, + + /* U+0061 "a" */ + 0x0, 0x0, 0x0, 0x0, 0x49, 0xa3, 0xd8, 0xf4, + 0xfb, 0xed, 0xc3, 0x74, 0xe, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0xc, 0xb5, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xe0, 0x29, 0x0, + 0x0, 0x0, 0x0, 0x0, 0xa3, 0xff, 0xff, 0xff, + 0xfa, 0xba, 0xb0, 0xe8, 0xff, 0xff, 0xff, 0xdc, + 0x6, 0x0, 0x0, 0x0, 0x23, 0xfe, 0xff, 0xff, + 0xff, 0x40, 0x0, 0x0, 0xf, 0xdd, 0xff, 0xff, + 0xff, 0x59, 0x0, 0x0, 0x0, 0x29, 0x78, 0x78, + 0x78, 0x71, 0x0, 0x0, 0x0, 0x0, 0x88, 0xff, + 0xff, 0xff, 0x94, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x71, + 0xff, 0xff, 0xff, 0xa9, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x4d, 0xab, 0xdf, 0xf6, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xac, 0x0, 0x0, 0x0, + 0x5, 0xac, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xac, 0x0, 0x0, + 0x0, 0x7e, 0xff, 0xff, 0xff, 0xf6, 0x83, 0x45, + 0x35, 0x34, 0x8d, 0xff, 0xff, 0xff, 0xac, 0x0, + 0x0, 0x0, 0xe5, 0xff, 0xff, 0xff, 0x6f, 0x0, + 0x0, 0x0, 0x0, 0x7a, 0xff, 0xff, 0xff, 0xac, + 0x0, 0x0, 0x13, 0xff, 0xff, 0xff, 0xff, 0x30, + 0x0, 0x0, 0x0, 0x0, 0xb4, 0xff, 0xff, 0xff, + 0xac, 0x0, 0x0, 0x18, 0xff, 0xff, 0xff, 0xff, + 0x3f, 0x0, 0x0, 0x0, 0x39, 0xff, 0xff, 0xff, + 0xff, 0xb2, 0x0, 0x0, 0x4, 0xf4, 0xff, 0xff, + 0xff, 0xb1, 0x7, 0x0, 0x49, 0xeb, 0xfe, 0xfd, + 0xff, 0xff, 0xd8, 0x0, 0x0, 0x0, 0xa6, 0xff, + 0xff, 0xff, 0xff, 0xf4, 0xea, 0xff, 0xff, 0x89, + 0xcd, 0xff, 0xff, 0xff, 0xbf, 0x96, 0x0, 0x1c, + 0xe5, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xa5, + 0x5, 0x76, 0xff, 0xff, 0xff, 0xff, 0xe4, 0x0, + 0x0, 0x19, 0x94, 0xdf, 0xfa, 0xea, 0xbc, 0x55, + 0x0, 0x0, 0x5, 0x8c, 0xe4, 0xfb, 0xe3, 0x93, + + /* U+0062 "b" */ + 0x0, 0xe8, 0xff, 0xff, 0xff, 0x34, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0xe8, 0xff, 0xff, 0xff, 0x34, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0xe8, 0xff, 0xff, 0xff, 0x34, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0xe8, 0xff, 0xff, 0xff, + 0x34, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0xe8, 0xff, 0xff, + 0xff, 0x34, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xe8, 0xff, + 0xff, 0xff, 0x34, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xe8, + 0xff, 0xff, 0xff, 0x33, 0x1, 0x5e, 0xc0, 0xe9, + 0xf8, 0xdc, 0x90, 0x15, 0x0, 0x0, 0x0, 0x0, + 0xe8, 0xff, 0xff, 0xff, 0x33, 0xad, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xe9, 0x27, 0x0, 0x0, + 0x0, 0xe8, 0xff, 0xff, 0xff, 0xa3, 0xff, 0xf7, + 0xdb, 0xf3, 0xff, 0xff, 0xff, 0xff, 0xd4, 0x3, + 0x0, 0x0, 0xe8, 0xff, 0xff, 0xff, 0xff, 0x9e, + 0xc, 0x0, 0x7, 0x88, 0xff, 0xff, 0xff, 0xff, + 0x59, 0x0, 0x0, 0xe8, 0xff, 0xff, 0xff, 0xd4, + 0x3, 0x0, 0x0, 0x0, 0x0, 0xc8, 0xff, 0xff, + 0xff, 0xae, 0x0, 0x0, 0xe8, 0xff, 0xff, 0xff, + 0x75, 0x0, 0x0, 0x0, 0x0, 0x0, 0x71, 0xff, + 0xff, 0xff, 0xe2, 0x0, 0x0, 0xe8, 0xff, 0xff, + 0xff, 0x42, 0x0, 0x0, 0x0, 0x0, 0x0, 0x46, + 0xff, 0xff, 0xff, 0xff, 0x4, 0x0, 0xe8, 0xff, + 0xff, 0xff, 0x2d, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x35, 0xff, 0xff, 0xff, 0xff, 0x11, 0x0, 0xe8, + 0xff, 0xff, 0xff, 0x2c, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x36, 0xff, 0xff, 0xff, 0xff, 0x10, 0x0, + 0xe8, 0xff, 0xff, 0xff, 0x40, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x4a, 0xff, 0xff, 0xff, 0xfe, 0x3, + 0x0, 0xe8, 0xff, 0xff, 0xff, 0x71, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x78, 0xff, 0xff, 0xff, 0xdc, + 0x0, 0x0, 0xe8, 0xff, 0xff, 0xff, 0xce, 0x1, + 0x0, 0x0, 0x0, 0x1, 0xd0, 0xff, 0xff, 0xff, + 0xa4, 0x0, 0x0, 0xe9, 0xff, 0xff, 0xff, 0xff, + 0x92, 0x7, 0x0, 0x6, 0x8f, 0xff, 0xff, 0xff, + 0xff, 0x4b, 0x0, 0x0, 0xed, 0xff, 0xff, 0xff, + 0xc0, 0xff, 0xf1, 0xd2, 0xf0, 0xff, 0xff, 0xff, + 0xff, 0xc3, 0x0, 0x0, 0x0, 0xf2, 0xff, 0xff, + 0xff, 0x2e, 0xc5, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xdb, 0x1a, 0x0, 0x0, 0x0, 0xfd, 0xff, + 0xff, 0xff, 0xf, 0x7, 0x73, 0xcd, 0xf1, 0xf4, + 0xd2, 0x7f, 0xc, 0x0, 0x0, 0x0, + + /* U+0063 "c" */ + 0x0, 0x0, 0x0, 0x9, 0x6c, 0xb8, 0xe6, 0xf9, + 0xf2, 0xd2, 0x90, 0x26, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x37, 0xe4, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xf9, 0x73, 0x0, 0x0, 0x0, 0x2c, + 0xf5, 0xff, 0xff, 0xff, 0xf8, 0xd4, 0xeb, 0xff, + 0xff, 0xff, 0xff, 0x6e, 0x0, 0x0, 0xcd, 0xff, + 0xff, 0xff, 0xbf, 0x14, 0x0, 0x1, 0x68, 0xff, + 0xff, 0xff, 0xf7, 0x18, 0x3f, 0xff, 0xff, 0xff, + 0xf9, 0x1b, 0x0, 0x0, 0x0, 0x0, 0xb2, 0xff, + 0xff, 0xff, 0x76, 0x88, 0xff, 0xff, 0xff, 0xbd, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x23, 0x48, 0x48, + 0x48, 0x2e, 0xb7, 0xff, 0xff, 0xff, 0x91, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0xca, 0xff, 0xff, 0xff, 0x80, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0xcc, 0xff, 0xff, 0xff, 0x81, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xba, + 0xff, 0xff, 0xff, 0x95, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x8f, 0xff, + 0xff, 0xff, 0xc3, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x38, 0x8c, 0x8c, 0x8c, 0x69, 0x4b, 0xff, 0xff, + 0xff, 0xfc, 0x21, 0x0, 0x0, 0x0, 0x0, 0xa6, + 0xff, 0xff, 0xff, 0x8e, 0x2, 0xda, 0xff, 0xff, + 0xff, 0xc7, 0x18, 0x0, 0x1, 0x69, 0xff, 0xff, + 0xff, 0xfb, 0x26, 0x0, 0x3b, 0xfb, 0xff, 0xff, + 0xff, 0xfa, 0xd4, 0xeb, 0xff, 0xff, 0xff, 0xff, + 0x77, 0x0, 0x0, 0x0, 0x47, 0xed, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xf9, 0x74, 0x0, + 0x0, 0x0, 0x0, 0x0, 0xf, 0x75, 0xbe, 0xe9, + 0xfa, 0xf2, 0xce, 0x8b, 0x22, 0x0, 0x0, 0x0, + + /* U+0064 "d" */ + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0xe0, 0xff, 0xff, 0xff, 0x3c, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0xe0, 0xff, 0xff, 0xff, 0x3c, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0xe0, 0xff, 0xff, 0xff, 0x3c, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0xe0, 0xff, 0xff, 0xff, 0x3c, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0xe0, 0xff, 0xff, 0xff, 0x3c, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0xe0, 0xff, 0xff, 0xff, 0x3c, + 0x0, 0x0, 0x0, 0x52, 0xb9, 0xeb, 0xf7, 0xdd, + 0x96, 0x22, 0x0, 0xdf, 0xff, 0xff, 0xff, 0x3c, + 0x0, 0x1, 0x9c, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xf0, 0x3d, 0xdc, 0xff, 0xff, 0xff, 0x3c, + 0x0, 0x71, 0xff, 0xff, 0xff, 0xff, 0xf9, 0xcd, + 0xdc, 0xff, 0xe2, 0xe5, 0xff, 0xff, 0xff, 0x3c, + 0x9, 0xf0, 0xff, 0xff, 0xff, 0xc8, 0x17, 0x0, + 0x0, 0x43, 0xf4, 0xff, 0xff, 0xff, 0xff, 0x3c, + 0x53, 0xff, 0xff, 0xff, 0xfd, 0x24, 0x0, 0x0, + 0x0, 0x0, 0x73, 0xff, 0xff, 0xff, 0xff, 0x3c, + 0x8b, 0xff, 0xff, 0xff, 0xc8, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x17, 0xff, 0xff, 0xff, 0xff, 0x3c, + 0xaf, 0xff, 0xff, 0xff, 0x9b, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0xe8, 0xff, 0xff, 0xff, 0x3c, + 0xbd, 0xff, 0xff, 0xff, 0x89, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0xd5, 0xff, 0xff, 0xff, 0x3c, + 0xbd, 0xff, 0xff, 0xff, 0x89, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0xd7, 0xff, 0xff, 0xff, 0x3c, + 0xaf, 0xff, 0xff, 0xff, 0x9b, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0xef, 0xff, 0xff, 0xff, 0x3c, + 0x8d, 0xff, 0xff, 0xff, 0xc9, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x25, 0xff, 0xff, 0xff, 0xff, 0x3c, + 0x57, 0xff, 0xff, 0xff, 0xfd, 0x25, 0x0, 0x0, + 0x0, 0x0, 0x8d, 0xff, 0xff, 0xff, 0xff, 0x3c, + 0xd, 0xf5, 0xff, 0xff, 0xff, 0xca, 0x1a, 0x0, + 0x1, 0x61, 0xfd, 0xff, 0xff, 0xff, 0xff, 0x3c, + 0x0, 0x81, 0xff, 0xff, 0xff, 0xff, 0xfa, 0xd4, + 0xe7, 0xff, 0xd4, 0xdd, 0xff, 0xff, 0xff, 0x40, + 0x0, 0x5, 0xb5, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xe6, 0x2f, 0xce, 0xff, 0xff, 0xff, 0x47, + 0x0, 0x0, 0x2, 0x6a, 0xca, 0xf3, 0xf3, 0xd6, + 0x88, 0x18, 0x0, 0xb5, 0xff, 0xff, 0xff, 0x52, + + /* U+0065 "e" */ + 0x0, 0x0, 0x0, 0x11, 0x78, 0xc1, 0xe9, 0xfa, + 0xed, 0xc9, 0x7e, 0x11, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x4a, 0xef, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xec, 0x3c, 0x0, 0x0, 0x0, 0x3e, + 0xfc, 0xff, 0xff, 0xff, 0xc8, 0x9b, 0xbb, 0xfe, + 0xff, 0xff, 0xf4, 0x22, 0x0, 0x3, 0xdd, 0xff, + 0xff, 0xff, 0x71, 0x0, 0x0, 0x0, 0x4a, 0xfe, + 0xff, 0xff, 0xaf, 0x0, 0x4e, 0xff, 0xff, 0xff, + 0xd3, 0x1, 0x0, 0x0, 0x0, 0x0, 0xab, 0xff, + 0xff, 0xfc, 0x19, 0x91, 0xff, 0xff, 0xff, 0x99, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x6d, 0xff, 0xff, + 0xff, 0x57, 0xbb, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0x85, 0xcd, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x98, + 0xcb, 0xff, 0xff, 0xff, 0xbf, 0x80, 0x80, 0x80, + 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x52, 0xba, + 0xff, 0xff, 0xff, 0x89, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x8f, 0xff, + 0xff, 0xff, 0xb1, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x4e, 0xff, 0xff, + 0xff, 0xf4, 0x12, 0x0, 0x0, 0x0, 0x0, 0x60, + 0x8e, 0x77, 0x60, 0x1c, 0x3, 0xe0, 0xff, 0xff, + 0xff, 0xb4, 0xe, 0x0, 0x0, 0x3c, 0xf3, 0xff, + 0xff, 0xf3, 0x15, 0x0, 0x45, 0xfe, 0xff, 0xff, + 0xff, 0xf3, 0xc4, 0xd3, 0xff, 0xff, 0xff, 0xff, + 0x64, 0x0, 0x0, 0x0, 0x54, 0xf4, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xfa, 0x6f, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x15, 0x7f, 0xc6, 0xec, + 0xfc, 0xf3, 0xd0, 0x8c, 0x23, 0x0, 0x0, 0x0, + + /* U+0066 "f" */ + 0x0, 0x0, 0x0, 0x0, 0x49, 0xba, 0xed, 0xfc, + 0xf1, 0xd5, 0x9, 0x0, 0x0, 0x0, 0x5d, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xc, 0x0, 0x0, + 0x0, 0xe4, 0xff, 0xff, 0xff, 0xf8, 0xc7, 0xd2, + 0xa, 0x0, 0x0, 0x1f, 0xff, 0xff, 0xff, 0xff, + 0x37, 0x0, 0x0, 0x0, 0x0, 0x0, 0x2f, 0xff, + 0xff, 0xff, 0xf6, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x30, 0xff, 0xff, 0xff, 0xf0, 0x0, 0x0, + 0x0, 0x0, 0x7c, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xc, 0x7c, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc, + 0x5b, 0xbc, 0xc8, 0xff, 0xff, 0xff, 0xfb, 0xbc, + 0xbc, 0xbc, 0x8, 0x0, 0x0, 0x30, 0xff, 0xff, + 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x30, 0xff, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x30, 0xff, 0xff, 0xff, 0xf0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x30, 0xff, + 0xff, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x30, 0xff, 0xff, 0xff, 0xf0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x30, 0xff, 0xff, 0xff, + 0xf0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x30, + 0xff, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x30, 0xff, 0xff, 0xff, 0xf0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x30, 0xff, 0xff, + 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x30, 0xff, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x30, 0xff, 0xff, 0xff, 0xf0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x30, 0xff, + 0xff, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x30, 0xff, 0xff, 0xff, 0xf0, 0x0, 0x0, + 0x0, 0x0, + + /* U+0067 "g" */ + 0x0, 0x0, 0x0, 0x55, 0xba, 0xeb, 0xf8, 0xde, + 0x98, 0x24, 0x0, 0xa8, 0xff, 0xff, 0xff, 0x4b, + 0x0, 0x2, 0xa2, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xef, 0x3b, 0xbf, 0xff, 0xff, 0xff, 0x42, + 0x0, 0x75, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xdd, + 0xec, 0xff, 0xe0, 0xd5, 0xff, 0xff, 0xff, 0x3e, + 0x9, 0xf1, 0xff, 0xff, 0xff, 0xd1, 0x23, 0x0, + 0x1, 0x5e, 0xfc, 0xff, 0xff, 0xff, 0xff, 0x3c, + 0x53, 0xff, 0xff, 0xff, 0xfe, 0x2a, 0x0, 0x0, + 0x0, 0x0, 0x88, 0xff, 0xff, 0xff, 0xff, 0x3c, + 0x8a, 0xff, 0xff, 0xff, 0xcb, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x21, 0xff, 0xff, 0xff, 0xff, 0x3c, + 0xaf, 0xff, 0xff, 0xff, 0x9d, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0xeb, 0xff, 0xff, 0xff, 0x3c, + 0xbd, 0xff, 0xff, 0xff, 0x89, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0xd5, 0xff, 0xff, 0xff, 0x3c, + 0xbe, 0xff, 0xff, 0xff, 0x88, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0xd7, 0xff, 0xff, 0xff, 0x3c, + 0xb0, 0xff, 0xff, 0xff, 0x9b, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0xec, 0xff, 0xff, 0xff, 0x3c, + 0x8f, 0xff, 0xff, 0xff, 0xc9, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x21, 0xff, 0xff, 0xff, 0xff, 0x3c, + 0x59, 0xff, 0xff, 0xff, 0xfd, 0x27, 0x0, 0x0, + 0x0, 0x0, 0x86, 0xff, 0xff, 0xff, 0xff, 0x3c, + 0xe, 0xf6, 0xff, 0xff, 0xff, 0xcf, 0x21, 0x0, + 0x1, 0x5d, 0xfb, 0xff, 0xff, 0xff, 0xff, 0x3c, + 0x0, 0x83, 0xff, 0xff, 0xff, 0xff, 0xfd, 0xdc, + 0xeb, 0xff, 0xdb, 0xdc, 0xff, 0xff, 0xff, 0x3c, + 0x0, 0x5, 0xb6, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xe9, 0x34, 0xd7, 0xff, 0xff, 0xff, 0x3c, + 0x0, 0x0, 0x2, 0x68, 0xc9, 0xf3, 0xf4, 0xd7, + 0x8a, 0x1a, 0x0, 0xdd, 0xff, 0xff, 0xff, 0x36, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x1, 0xf8, 0xff, 0xff, 0xff, 0x22, + 0x2, 0x24, 0x3f, 0x5a, 0x76, 0xf, 0x0, 0x0, + 0x0, 0x0, 0x3e, 0xff, 0xff, 0xff, 0xed, 0x2, + 0x3, 0xea, 0xff, 0xff, 0xff, 0xa0, 0x6, 0x0, + 0x0, 0x1d, 0xcf, 0xff, 0xff, 0xff, 0x98, 0x0, + 0x0, 0x71, 0xff, 0xff, 0xff, 0xff, 0xe8, 0xb7, + 0xc7, 0xf5, 0xff, 0xff, 0xff, 0xe8, 0x1b, 0x0, + 0x0, 0x0, 0x8b, 0xfe, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xd8, 0x2e, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x2f, 0x91, 0xce, 0xf0, 0xfc, + 0xf4, 0xdf, 0xad, 0x5d, 0x7, 0x0, 0x0, 0x0, + + /* U+0068 "h" */ + 0xe8, 0xff, 0xff, 0xff, 0x34, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xe8, + 0xff, 0xff, 0xff, 0x34, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xe8, 0xff, + 0xff, 0xff, 0x34, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0xe8, 0xff, 0xff, + 0xff, 0x34, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0xe8, 0xff, 0xff, 0xff, + 0x34, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0xe8, 0xff, 0xff, 0xff, 0x34, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0xe8, 0xff, 0xff, 0xff, 0x32, 0x0, + 0x45, 0xb6, 0xe7, 0xf8, 0xde, 0x94, 0x19, 0x0, + 0x0, 0xe8, 0xff, 0xff, 0xff, 0x2d, 0x7c, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xe6, 0x23, 0x0, + 0xe8, 0xff, 0xff, 0xff, 0x6c, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xbc, 0x0, 0xe8, + 0xff, 0xff, 0xff, 0xec, 0xd5, 0x44, 0x17, 0x3e, + 0xd5, 0xff, 0xff, 0xff, 0xff, 0x21, 0xe8, 0xff, + 0xff, 0xff, 0xf4, 0x18, 0x0, 0x0, 0x0, 0x27, + 0xfe, 0xff, 0xff, 0xff, 0x58, 0xe8, 0xff, 0xff, + 0xff, 0x91, 0x0, 0x0, 0x0, 0x0, 0x0, 0xd0, + 0xff, 0xff, 0xff, 0x6f, 0xe8, 0xff, 0xff, 0xff, + 0x56, 0x0, 0x0, 0x0, 0x0, 0x0, 0xad, 0xff, + 0xff, 0xff, 0x77, 0xe8, 0xff, 0xff, 0xff, 0x39, + 0x0, 0x0, 0x0, 0x0, 0x0, 0xa4, 0xff, 0xff, + 0xff, 0x78, 0xe8, 0xff, 0xff, 0xff, 0x34, 0x0, + 0x0, 0x0, 0x0, 0x0, 0xa4, 0xff, 0xff, 0xff, + 0x78, 0xe8, 0xff, 0xff, 0xff, 0x34, 0x0, 0x0, + 0x0, 0x0, 0x0, 0xa4, 0xff, 0xff, 0xff, 0x78, + 0xe8, 0xff, 0xff, 0xff, 0x34, 0x0, 0x0, 0x0, + 0x0, 0x0, 0xa4, 0xff, 0xff, 0xff, 0x78, 0xe8, + 0xff, 0xff, 0xff, 0x34, 0x0, 0x0, 0x0, 0x0, + 0x0, 0xa4, 0xff, 0xff, 0xff, 0x78, 0xe8, 0xff, + 0xff, 0xff, 0x34, 0x0, 0x0, 0x0, 0x0, 0x0, + 0xa4, 0xff, 0xff, 0xff, 0x78, 0xe8, 0xff, 0xff, + 0xff, 0x34, 0x0, 0x0, 0x0, 0x0, 0x0, 0xa4, + 0xff, 0xff, 0xff, 0x78, 0xe8, 0xff, 0xff, 0xff, + 0x34, 0x0, 0x0, 0x0, 0x0, 0x0, 0xa4, 0xff, + 0xff, 0xff, 0x78, 0xe8, 0xff, 0xff, 0xff, 0x34, + 0x0, 0x0, 0x0, 0x0, 0x0, 0xa4, 0xff, 0xff, + 0xff, 0x78, + + /* U+0069 "i" */ + 0xe8, 0xff, 0xff, 0xff, 0x34, 0xe8, 0xff, 0xff, + 0xff, 0x34, 0xe8, 0xff, 0xff, 0xff, 0x34, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xe8, 0xff, + 0xff, 0xff, 0x34, 0xe8, 0xff, 0xff, 0xff, 0x34, + 0xe8, 0xff, 0xff, 0xff, 0x34, 0xe8, 0xff, 0xff, + 0xff, 0x34, 0xe8, 0xff, 0xff, 0xff, 0x34, 0xe8, + 0xff, 0xff, 0xff, 0x34, 0xe8, 0xff, 0xff, 0xff, + 0x34, 0xe8, 0xff, 0xff, 0xff, 0x34, 0xe8, 0xff, + 0xff, 0xff, 0x34, 0xe8, 0xff, 0xff, 0xff, 0x34, + 0xe8, 0xff, 0xff, 0xff, 0x34, 0xe8, 0xff, 0xff, + 0xff, 0x34, 0xe8, 0xff, 0xff, 0xff, 0x34, 0xe8, + 0xff, 0xff, 0xff, 0x34, 0xe8, 0xff, 0xff, 0xff, + 0x34, 0xe8, 0xff, 0xff, 0xff, 0x34, + + /* U+006A "j" */ + 0x0, 0x0, 0x0, 0xe8, 0xff, 0xff, 0xff, 0x3c, + 0x0, 0x0, 0x0, 0xe8, 0xff, 0xff, 0xff, 0x3c, + 0x0, 0x0, 0x0, 0xe8, 0xff, 0xff, 0xff, 0x3c, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0xe8, 0xff, 0xff, 0xff, 0x3c, + 0x0, 0x0, 0x0, 0xe8, 0xff, 0xff, 0xff, 0x3c, + 0x0, 0x0, 0x0, 0xe8, 0xff, 0xff, 0xff, 0x3c, + 0x0, 0x0, 0x0, 0xe8, 0xff, 0xff, 0xff, 0x3c, + 0x0, 0x0, 0x0, 0xe8, 0xff, 0xff, 0xff, 0x3c, + 0x0, 0x0, 0x0, 0xe8, 0xff, 0xff, 0xff, 0x3c, + 0x0, 0x0, 0x0, 0xe8, 0xff, 0xff, 0xff, 0x3c, + 0x0, 0x0, 0x0, 0xe8, 0xff, 0xff, 0xff, 0x3c, + 0x0, 0x0, 0x0, 0xe8, 0xff, 0xff, 0xff, 0x3c, + 0x0, 0x0, 0x0, 0xe8, 0xff, 0xff, 0xff, 0x3c, + 0x0, 0x0, 0x0, 0xe8, 0xff, 0xff, 0xff, 0x3c, + 0x0, 0x0, 0x0, 0xe8, 0xff, 0xff, 0xff, 0x3c, + 0x0, 0x0, 0x0, 0xe8, 0xff, 0xff, 0xff, 0x3c, + 0x0, 0x0, 0x0, 0xe8, 0xff, 0xff, 0xff, 0x3c, + 0x0, 0x0, 0x0, 0xe8, 0xff, 0xff, 0xff, 0x3c, + 0x0, 0x0, 0x0, 0xe8, 0xff, 0xff, 0xff, 0x3c, + 0x0, 0x0, 0x0, 0xe9, 0xff, 0xff, 0xff, 0x3c, + 0x0, 0x0, 0x1, 0xf9, 0xff, 0xff, 0xff, 0x3b, + 0x3, 0x4, 0x62, 0xff, 0xff, 0xff, 0xff, 0x2a, + 0x7c, 0xff, 0xff, 0xff, 0xff, 0xff, 0xec, 0x3, + 0x7c, 0xff, 0xff, 0xff, 0xff, 0xff, 0x6d, 0x0, + 0x6b, 0xef, 0xfc, 0xf7, 0xcd, 0x5d, 0x0, 0x0, + + /* U+006B "k" */ + 0xe8, 0xff, 0xff, 0xff, 0x34, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xe8, + 0xff, 0xff, 0xff, 0x34, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xe8, 0xff, + 0xff, 0xff, 0x34, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0xe8, 0xff, 0xff, + 0xff, 0x34, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0xe8, 0xff, 0xff, 0xff, + 0x34, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0xe8, 0xff, 0xff, 0xff, 0x34, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0xe8, 0xff, 0xff, 0xff, 0x34, 0x0, + 0x0, 0x0, 0x0, 0x8e, 0xff, 0xff, 0xff, 0xcc, + 0xc, 0xe8, 0xff, 0xff, 0xff, 0x34, 0x0, 0x0, + 0x0, 0x69, 0xff, 0xff, 0xff, 0xdd, 0x16, 0x0, + 0xe8, 0xff, 0xff, 0xff, 0x34, 0x0, 0x0, 0x49, + 0xfc, 0xff, 0xff, 0xea, 0x24, 0x0, 0x0, 0xe8, + 0xff, 0xff, 0xff, 0x34, 0x0, 0x2e, 0xf2, 0xff, + 0xff, 0xf4, 0x35, 0x0, 0x0, 0x0, 0xe8, 0xff, + 0xff, 0xff, 0x34, 0x19, 0xe2, 0xff, 0xff, 0xfb, + 0x49, 0x0, 0x0, 0x0, 0x0, 0xe8, 0xff, 0xff, + 0xff, 0x3f, 0xcd, 0xff, 0xff, 0xff, 0x60, 0x0, + 0x0, 0x0, 0x0, 0x0, 0xe8, 0xff, 0xff, 0xff, + 0xd7, 0xff, 0xff, 0xff, 0xe1, 0x5, 0x0, 0x0, + 0x0, 0x0, 0x0, 0xe8, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0x78, 0x0, 0x0, 0x0, + 0x0, 0x0, 0xe8, 0xff, 0xff, 0xff, 0xff, 0xf3, + 0xfc, 0xff, 0xff, 0xf5, 0x20, 0x0, 0x0, 0x0, + 0x0, 0xe8, 0xff, 0xff, 0xff, 0xc7, 0x23, 0x94, + 0xff, 0xff, 0xff, 0xb3, 0x0, 0x0, 0x0, 0x0, + 0xe8, 0xff, 0xff, 0xff, 0x34, 0x0, 0x12, 0xed, + 0xff, 0xff, 0xff, 0x51, 0x0, 0x0, 0x0, 0xe8, + 0xff, 0xff, 0xff, 0x34, 0x0, 0x0, 0x6a, 0xff, + 0xff, 0xff, 0xe2, 0xb, 0x0, 0x0, 0xe8, 0xff, + 0xff, 0xff, 0x34, 0x0, 0x0, 0x3, 0xd2, 0xff, + 0xff, 0xff, 0x8c, 0x0, 0x0, 0xe8, 0xff, 0xff, + 0xff, 0x34, 0x0, 0x0, 0x0, 0x40, 0xff, 0xff, + 0xff, 0xfb, 0x2d, 0x0, 0xe8, 0xff, 0xff, 0xff, + 0x34, 0x0, 0x0, 0x0, 0x0, 0xab, 0xff, 0xff, + 0xff, 0xc5, 0x1, 0xe8, 0xff, 0xff, 0xff, 0x34, + 0x0, 0x0, 0x0, 0x0, 0x1f, 0xf6, 0xff, 0xff, + 0xff, 0x65, + + /* U+006C "l" */ + 0xe8, 0xff, 0xff, 0xff, 0x34, 0xe8, 0xff, 0xff, + 0xff, 0x34, 0xe8, 0xff, 0xff, 0xff, 0x34, 0xe8, + 0xff, 0xff, 0xff, 0x34, 0xe8, 0xff, 0xff, 0xff, + 0x34, 0xe8, 0xff, 0xff, 0xff, 0x34, 0xe8, 0xff, + 0xff, 0xff, 0x34, 0xe8, 0xff, 0xff, 0xff, 0x34, + 0xe8, 0xff, 0xff, 0xff, 0x34, 0xe8, 0xff, 0xff, + 0xff, 0x34, 0xe8, 0xff, 0xff, 0xff, 0x34, 0xe8, + 0xff, 0xff, 0xff, 0x34, 0xe8, 0xff, 0xff, 0xff, + 0x34, 0xe8, 0xff, 0xff, 0xff, 0x34, 0xe8, 0xff, + 0xff, 0xff, 0x34, 0xe8, 0xff, 0xff, 0xff, 0x34, + 0xe8, 0xff, 0xff, 0xff, 0x34, 0xe8, 0xff, 0xff, + 0xff, 0x34, 0xe8, 0xff, 0xff, 0xff, 0x34, 0xe8, + 0xff, 0xff, 0xff, 0x34, 0xe8, 0xff, 0xff, 0xff, + 0x34, 0xe8, 0xff, 0xff, 0xff, 0x34, + + /* U+006D "m" */ + 0x0, 0xfe, 0xff, 0xff, 0xf0, 0x0, 0x2, 0x67, + 0xcf, 0xf4, 0xe6, 0xb3, 0x38, 0x0, 0x0, 0x0, + 0x55, 0xc3, 0xed, 0xf5, 0xcb, 0x62, 0x0, 0x0, + 0x0, 0xf4, 0xff, 0xff, 0xfd, 0x1, 0x9d, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xfa, 0x41, 0x0, 0x88, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x85, 0x0, + 0x0, 0xeb, 0xff, 0xff, 0xff, 0x62, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xd3, 0x3f, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfd, 0x27, + 0x0, 0xe8, 0xff, 0xff, 0xff, 0xe9, 0xb2, 0x29, + 0x24, 0xaf, 0xff, 0xff, 0xff, 0xff, 0xe0, 0xe1, + 0x42, 0x19, 0x75, 0xff, 0xff, 0xff, 0xff, 0x80, + 0x0, 0xe8, 0xff, 0xff, 0xff, 0xe4, 0x8, 0x0, + 0x0, 0xd, 0xf2, 0xff, 0xff, 0xff, 0xff, 0x3e, + 0x0, 0x0, 0x0, 0xb3, 0xff, 0xff, 0xff, 0xb2, + 0x0, 0xe8, 0xff, 0xff, 0xff, 0x82, 0x0, 0x0, + 0x0, 0x0, 0xb6, 0xff, 0xff, 0xff, 0xd3, 0x0, + 0x0, 0x0, 0x0, 0x6a, 0xff, 0xff, 0xff, 0xc7, + 0x0, 0xe8, 0xff, 0xff, 0xff, 0x51, 0x0, 0x0, + 0x0, 0x0, 0x98, 0xff, 0xff, 0xff, 0xa3, 0x0, + 0x0, 0x0, 0x0, 0x4c, 0xff, 0xff, 0xff, 0xcf, + 0x0, 0xe8, 0xff, 0xff, 0xff, 0x38, 0x0, 0x0, + 0x0, 0x0, 0x90, 0xff, 0xff, 0xff, 0x86, 0x0, + 0x0, 0x0, 0x0, 0x44, 0xff, 0xff, 0xff, 0xd0, + 0x0, 0xe8, 0xff, 0xff, 0xff, 0x34, 0x0, 0x0, + 0x0, 0x0, 0x90, 0xff, 0xff, 0xff, 0x84, 0x0, + 0x0, 0x0, 0x0, 0x44, 0xff, 0xff, 0xff, 0xd0, + 0x0, 0xe8, 0xff, 0xff, 0xff, 0x34, 0x0, 0x0, + 0x0, 0x0, 0x90, 0xff, 0xff, 0xff, 0x84, 0x0, + 0x0, 0x0, 0x0, 0x44, 0xff, 0xff, 0xff, 0xd0, + 0x0, 0xe8, 0xff, 0xff, 0xff, 0x34, 0x0, 0x0, + 0x0, 0x0, 0x90, 0xff, 0xff, 0xff, 0x84, 0x0, + 0x0, 0x0, 0x0, 0x44, 0xff, 0xff, 0xff, 0xd0, + 0x0, 0xe8, 0xff, 0xff, 0xff, 0x34, 0x0, 0x0, + 0x0, 0x0, 0x90, 0xff, 0xff, 0xff, 0x84, 0x0, + 0x0, 0x0, 0x0, 0x44, 0xff, 0xff, 0xff, 0xd0, + 0x0, 0xe8, 0xff, 0xff, 0xff, 0x34, 0x0, 0x0, + 0x0, 0x0, 0x90, 0xff, 0xff, 0xff, 0x84, 0x0, + 0x0, 0x0, 0x0, 0x44, 0xff, 0xff, 0xff, 0xd0, + 0x0, 0xe8, 0xff, 0xff, 0xff, 0x34, 0x0, 0x0, + 0x0, 0x0, 0x90, 0xff, 0xff, 0xff, 0x84, 0x0, + 0x0, 0x0, 0x0, 0x44, 0xff, 0xff, 0xff, 0xd0, + 0x0, 0xe8, 0xff, 0xff, 0xff, 0x34, 0x0, 0x0, + 0x0, 0x0, 0x90, 0xff, 0xff, 0xff, 0x84, 0x0, + 0x0, 0x0, 0x0, 0x44, 0xff, 0xff, 0xff, 0xd0, + 0x0, 0xe8, 0xff, 0xff, 0xff, 0x34, 0x0, 0x0, + 0x0, 0x0, 0x90, 0xff, 0xff, 0xff, 0x84, 0x0, + 0x0, 0x0, 0x0, 0x44, 0xff, 0xff, 0xff, 0xd0, + + /* U+006E "n" */ + 0x0, 0xfe, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x45, + 0xb6, 0xe7, 0xf8, 0xdd, 0x93, 0x19, 0x0, 0x0, + 0x0, 0xf4, 0xff, 0xff, 0xfd, 0x0, 0x7a, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xe5, 0x21, 0x0, + 0x0, 0xeb, 0xff, 0xff, 0xff, 0x53, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xb9, 0x0, + 0x0, 0xe8, 0xff, 0xff, 0xff, 0xe7, 0xd6, 0x45, + 0x17, 0x3e, 0xd5, 0xff, 0xff, 0xff, 0xff, 0x20, + 0x0, 0xe8, 0xff, 0xff, 0xff, 0xf5, 0x1a, 0x0, + 0x0, 0x0, 0x27, 0xfe, 0xff, 0xff, 0xff, 0x57, + 0x0, 0xe8, 0xff, 0xff, 0xff, 0x93, 0x0, 0x0, + 0x0, 0x0, 0x0, 0xd0, 0xff, 0xff, 0xff, 0x6f, + 0x0, 0xe8, 0xff, 0xff, 0xff, 0x57, 0x0, 0x0, + 0x0, 0x0, 0x0, 0xad, 0xff, 0xff, 0xff, 0x77, + 0x0, 0xe8, 0xff, 0xff, 0xff, 0x39, 0x0, 0x0, + 0x0, 0x0, 0x0, 0xa4, 0xff, 0xff, 0xff, 0x78, + 0x0, 0xe8, 0xff, 0xff, 0xff, 0x34, 0x0, 0x0, + 0x0, 0x0, 0x0, 0xa4, 0xff, 0xff, 0xff, 0x78, + 0x0, 0xe8, 0xff, 0xff, 0xff, 0x34, 0x0, 0x0, + 0x0, 0x0, 0x0, 0xa4, 0xff, 0xff, 0xff, 0x78, + 0x0, 0xe8, 0xff, 0xff, 0xff, 0x34, 0x0, 0x0, + 0x0, 0x0, 0x0, 0xa4, 0xff, 0xff, 0xff, 0x78, + 0x0, 0xe8, 0xff, 0xff, 0xff, 0x34, 0x0, 0x0, + 0x0, 0x0, 0x0, 0xa4, 0xff, 0xff, 0xff, 0x78, + 0x0, 0xe8, 0xff, 0xff, 0xff, 0x34, 0x0, 0x0, + 0x0, 0x0, 0x0, 0xa4, 0xff, 0xff, 0xff, 0x78, + 0x0, 0xe8, 0xff, 0xff, 0xff, 0x34, 0x0, 0x0, + 0x0, 0x0, 0x0, 0xa4, 0xff, 0xff, 0xff, 0x78, + 0x0, 0xe8, 0xff, 0xff, 0xff, 0x34, 0x0, 0x0, + 0x0, 0x0, 0x0, 0xa4, 0xff, 0xff, 0xff, 0x78, + 0x0, 0xe8, 0xff, 0xff, 0xff, 0x34, 0x0, 0x0, + 0x0, 0x0, 0x0, 0xa4, 0xff, 0xff, 0xff, 0x78, + + /* U+006F "o" */ + 0x0, 0x0, 0x0, 0x0, 0x49, 0x9f, 0xda, 0xf2, + 0xf9, 0xe8, 0xc1, 0x80, 0x1a, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x1d, 0xc6, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xf9, 0x72, 0x0, + 0x0, 0x0, 0x0, 0x1a, 0xe6, 0xff, 0xff, 0xff, + 0xff, 0xe1, 0xd3, 0xf7, 0xff, 0xff, 0xff, 0xff, + 0x7a, 0x0, 0x0, 0x0, 0xb9, 0xff, 0xff, 0xff, + 0xde, 0x34, 0x0, 0x0, 0xc, 0x99, 0xff, 0xff, + 0xff, 0xfd, 0x2a, 0x0, 0x35, 0xff, 0xff, 0xff, + 0xff, 0x33, 0x0, 0x0, 0x0, 0x0, 0x1, 0xcd, + 0xff, 0xff, 0xff, 0x9a, 0x0, 0x83, 0xff, 0xff, + 0xff, 0xcb, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x70, 0xff, 0xff, 0xff, 0xdf, 0x0, 0xb6, 0xff, + 0xff, 0xff, 0x96, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x41, 0xff, 0xff, 0xff, 0xff, 0xc, 0xca, + 0xff, 0xff, 0xff, 0x81, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x2d, 0xff, 0xff, 0xff, 0xff, 0x1f, + 0xcb, 0xff, 0xff, 0xff, 0x81, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x2f, 0xff, 0xff, 0xff, 0xff, + 0x1d, 0xb6, 0xff, 0xff, 0xff, 0x96, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x45, 0xff, 0xff, 0xff, + 0xff, 0xa, 0x84, 0xff, 0xff, 0xff, 0xca, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x7a, 0xff, 0xff, + 0xff, 0xd6, 0x0, 0x36, 0xff, 0xff, 0xff, 0xfe, + 0x30, 0x0, 0x0, 0x0, 0x0, 0x6, 0xdb, 0xff, + 0xff, 0xff, 0x89, 0x0, 0x0, 0xbc, 0xff, 0xff, + 0xff, 0xda, 0x2d, 0x0, 0x0, 0x15, 0xae, 0xff, + 0xff, 0xff, 0xf5, 0x19, 0x0, 0x0, 0x1d, 0xe9, + 0xff, 0xff, 0xff, 0xff, 0xdb, 0xd6, 0xfb, 0xff, + 0xff, 0xff, 0xfe, 0x58, 0x0, 0x0, 0x0, 0x0, + 0x22, 0xcf, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xee, 0x51, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x2, 0x53, 0xa8, 0xde, 0xf5, 0xf8, + 0xe6, 0xb9, 0x70, 0xe, 0x0, 0x0, 0x0, 0x0, + + /* U+0070 "p" */ + 0x0, 0xfd, 0xff, 0xff, 0xff, 0xc, 0x2, 0x62, + 0xc1, 0xea, 0xf8, 0xdb, 0x8e, 0x13, 0x0, 0x0, + 0x0, 0x0, 0xf2, 0xff, 0xff, 0xff, 0x24, 0xb5, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xe6, 0x24, + 0x0, 0x0, 0x0, 0xed, 0xff, 0xff, 0xff, 0xa9, + 0xff, 0xfa, 0xe3, 0xf8, 0xff, 0xff, 0xff, 0xff, + 0xd1, 0x3, 0x0, 0x0, 0xe8, 0xff, 0xff, 0xff, + 0xff, 0xa9, 0x12, 0x0, 0xc, 0x99, 0xff, 0xff, + 0xff, 0xff, 0x55, 0x0, 0x0, 0xe8, 0xff, 0xff, + 0xff, 0xdb, 0x5, 0x0, 0x0, 0x0, 0x2, 0xd2, + 0xff, 0xff, 0xff, 0xac, 0x0, 0x0, 0xe8, 0xff, + 0xff, 0xff, 0x7a, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x77, 0xff, 0xff, 0xff, 0xe1, 0x0, 0x0, 0xe8, + 0xff, 0xff, 0xff, 0x44, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x48, 0xff, 0xff, 0xff, 0xff, 0x3, 0x0, + 0xe8, 0xff, 0xff, 0xff, 0x2d, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x35, 0xff, 0xff, 0xff, 0xff, 0x11, + 0x0, 0xe8, 0xff, 0xff, 0xff, 0x2c, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x36, 0xff, 0xff, 0xff, 0xff, + 0x10, 0x0, 0xe8, 0xff, 0xff, 0xff, 0x40, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x4a, 0xff, 0xff, 0xff, + 0xfe, 0x2, 0x0, 0xe8, 0xff, 0xff, 0xff, 0x72, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x78, 0xff, 0xff, + 0xff, 0xdb, 0x0, 0x0, 0xe8, 0xff, 0xff, 0xff, + 0xcf, 0x1, 0x0, 0x0, 0x0, 0x1, 0xd1, 0xff, + 0xff, 0xff, 0xa4, 0x0, 0x0, 0xe8, 0xff, 0xff, + 0xff, 0xff, 0x96, 0x8, 0x0, 0x7, 0x91, 0xff, + 0xff, 0xff, 0xff, 0x49, 0x0, 0x0, 0xe8, 0xff, + 0xff, 0xff, 0xbe, 0xff, 0xf2, 0xd2, 0xf0, 0xff, + 0xff, 0xff, 0xff, 0xc0, 0x0, 0x0, 0x0, 0xe8, + 0xff, 0xff, 0xff, 0x3c, 0xc3, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xd7, 0x17, 0x0, 0x0, 0x0, + 0xe8, 0xff, 0xff, 0xff, 0x33, 0x5, 0x6f, 0xcb, + 0xf1, 0xf4, 0xd1, 0x7c, 0xa, 0x0, 0x0, 0x0, + 0x0, 0xe8, 0xff, 0xff, 0xff, 0x34, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0xe8, 0xff, 0xff, 0xff, 0x34, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0xe8, 0xff, 0xff, 0xff, 0x34, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0xe8, 0xff, 0xff, 0xff, + 0x34, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0xe8, 0xff, 0xff, + 0xff, 0x34, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xe8, 0xff, + 0xff, 0xff, 0x34, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + + /* U+0071 "q" */ + 0x0, 0x0, 0x0, 0x4d, 0xb6, 0xea, 0xf8, 0xde, + 0x98, 0x24, 0x0, 0xb9, 0xff, 0xff, 0xff, 0x4b, + 0x0, 0x0, 0x95, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xef, 0x3b, 0xcf, 0xff, 0xff, 0xff, 0x42, + 0x0, 0x6a, 0xff, 0xff, 0xff, 0xff, 0xfd, 0xdd, + 0xeb, 0xff, 0xe0, 0xe0, 0xff, 0xff, 0xff, 0x3e, + 0x7, 0xed, 0xff, 0xff, 0xff, 0xd1, 0x23, 0x0, + 0x1, 0x58, 0xfa, 0xff, 0xff, 0xff, 0xff, 0x3c, + 0x50, 0xff, 0xff, 0xff, 0xfe, 0x2a, 0x0, 0x0, + 0x0, 0x0, 0x80, 0xff, 0xff, 0xff, 0xff, 0x3c, + 0x89, 0xff, 0xff, 0xff, 0xcb, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x1d, 0xff, 0xff, 0xff, 0xff, 0x3c, + 0xae, 0xff, 0xff, 0xff, 0x9c, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0xea, 0xff, 0xff, 0xff, 0x3c, + 0xbd, 0xff, 0xff, 0xff, 0x89, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0xd5, 0xff, 0xff, 0xff, 0x3c, + 0xbd, 0xff, 0xff, 0xff, 0x88, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0xd7, 0xff, 0xff, 0xff, 0x3c, + 0xaf, 0xff, 0xff, 0xff, 0x9b, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0xee, 0xff, 0xff, 0xff, 0x3c, + 0x8d, 0xff, 0xff, 0xff, 0xc9, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x23, 0xff, 0xff, 0xff, 0xff, 0x3c, + 0x58, 0xff, 0xff, 0xff, 0xfd, 0x26, 0x0, 0x0, + 0x0, 0x0, 0x88, 0xff, 0xff, 0xff, 0xff, 0x3c, + 0xd, 0xf5, 0xff, 0xff, 0xff, 0xcb, 0x1b, 0x0, + 0x0, 0x5a, 0xfb, 0xff, 0xff, 0xff, 0xff, 0x3c, + 0x0, 0x81, 0xff, 0xff, 0xff, 0xff, 0xfb, 0xd4, + 0xe5, 0xff, 0xdf, 0xd9, 0xff, 0xff, 0xff, 0x3c, + 0x0, 0x5, 0xb5, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xeb, 0x38, 0xd4, 0xff, 0xff, 0xff, 0x3c, + 0x0, 0x0, 0x2, 0x6a, 0xca, 0xf3, 0xf3, 0xd7, + 0x8b, 0x1d, 0x0, 0xd7, 0xff, 0xff, 0xff, 0x3c, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0xd8, 0xff, 0xff, 0xff, 0x3c, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0xd8, 0xff, 0xff, 0xff, 0x3c, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0xd8, 0xff, 0xff, 0xff, 0x3c, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0xd8, 0xff, 0xff, 0xff, 0x3c, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0xd8, 0xff, 0xff, 0xff, 0x3c, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0xd8, 0xff, 0xff, 0xff, 0x3c, + + /* U+0072 "r" */ + 0x0, 0xfe, 0xff, 0xff, 0xf0, 0x0, 0x1f, 0xb5, + 0xf5, 0xff, 0x38, 0x0, 0xf4, 0xff, 0xff, 0xfc, + 0x6, 0xd7, 0xff, 0xff, 0xff, 0x38, 0x0, 0xec, + 0xff, 0xff, 0xff, 0x6d, 0xff, 0xff, 0xff, 0xff, + 0x38, 0x0, 0xe8, 0xff, 0xff, 0xff, 0xde, 0xf8, + 0x97, 0x73, 0x8b, 0x22, 0x0, 0xe8, 0xff, 0xff, + 0xff, 0xfc, 0x3c, 0x0, 0x0, 0x0, 0x0, 0x0, + 0xe8, 0xff, 0xff, 0xff, 0xa6, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0xe8, 0xff, 0xff, 0xff, 0x5e, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xe8, 0xff, + 0xff, 0xff, 0x3d, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0xe8, 0xff, 0xff, 0xff, 0x34, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0xe8, 0xff, 0xff, 0xff, + 0x34, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xe8, + 0xff, 0xff, 0xff, 0x34, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0xe8, 0xff, 0xff, 0xff, 0x34, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0xe8, 0xff, 0xff, + 0xff, 0x34, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0xe8, 0xff, 0xff, 0xff, 0x34, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0xe8, 0xff, 0xff, 0xff, 0x34, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xe8, 0xff, + 0xff, 0xff, 0x34, 0x0, 0x0, 0x0, 0x0, 0x0, + + /* U+0073 "s" */ + 0x0, 0x0, 0x1, 0x53, 0xa9, 0xdb, 0xf3, 0xfc, + 0xf0, 0xcc, 0x8b, 0x25, 0x0, 0x0, 0x0, 0x0, + 0x15, 0xc5, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xfb, 0x75, 0x0, 0x0, 0x0, 0xb8, + 0xff, 0xff, 0xff, 0xf8, 0xcd, 0xc1, 0xd7, 0xff, + 0xff, 0xff, 0xff, 0x5d, 0x0, 0x24, 0xff, 0xff, + 0xff, 0xc5, 0xe, 0x0, 0x0, 0x0, 0x35, 0xf2, + 0xff, 0xff, 0xde, 0x0, 0x48, 0xff, 0xff, 0xff, + 0x85, 0x0, 0x0, 0x0, 0x0, 0x0, 0x5f, 0x78, + 0x5e, 0x44, 0x3, 0x34, 0xff, 0xff, 0xff, 0xf1, + 0x69, 0x18, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x2, 0xda, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xdc, 0xa5, 0x68, 0x23, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x2e, 0xe7, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xcc, 0x4d, 0x0, 0x0, + 0x0, 0x0, 0x10, 0x84, 0xdc, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0x77, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x22, 0x5c, 0x90, 0xcb, + 0xfc, 0xff, 0xff, 0xff, 0xfc, 0x19, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x20, + 0xca, 0xff, 0xff, 0xff, 0x59, 0x39, 0x61, 0x87, + 0x8c, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x63, + 0xff, 0xff, 0xff, 0x6a, 0xb5, 0xff, 0xff, 0xff, + 0x64, 0x1, 0x0, 0x0, 0x0, 0xc, 0xba, 0xff, + 0xff, 0xff, 0x3f, 0x33, 0xfa, 0xff, 0xff, 0xff, + 0xe4, 0xbb, 0xb7, 0xc9, 0xf7, 0xff, 0xff, 0xff, + 0xc6, 0x1, 0x0, 0x52, 0xf2, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc1, 0x16, + 0x0, 0x0, 0x0, 0x16, 0x78, 0xbc, 0xe3, 0xf7, + 0xfd, 0xf2, 0xd5, 0xa0, 0x4b, 0x0, 0x0, 0x0, + + /* U+0074 "t" */ + 0x0, 0x0, 0x0, 0x1c, 0x80, 0x80, 0x3a, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xff, 0xff, + 0x74, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0xdd, + 0xff, 0xff, 0x74, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x3d, 0xff, 0xff, 0xff, 0x74, 0x0, 0x0, 0x0, + 0xa4, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0x74, 0xa4, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0x74, 0x78, 0xbc, 0xe6, 0xff, + 0xff, 0xff, 0xda, 0xbc, 0xbc, 0x55, 0x0, 0x0, + 0xa0, 0xff, 0xff, 0xff, 0x74, 0x0, 0x0, 0x0, + 0x0, 0x0, 0xa0, 0xff, 0xff, 0xff, 0x74, 0x0, + 0x0, 0x0, 0x0, 0x0, 0xa0, 0xff, 0xff, 0xff, + 0x74, 0x0, 0x0, 0x0, 0x0, 0x0, 0xa0, 0xff, + 0xff, 0xff, 0x74, 0x0, 0x0, 0x0, 0x0, 0x0, + 0xa0, 0xff, 0xff, 0xff, 0x74, 0x0, 0x0, 0x0, + 0x0, 0x0, 0xa0, 0xff, 0xff, 0xff, 0x74, 0x0, + 0x0, 0x0, 0x0, 0x0, 0xa0, 0xff, 0xff, 0xff, + 0x74, 0x0, 0x0, 0x0, 0x0, 0x0, 0xa0, 0xff, + 0xff, 0xff, 0x74, 0x0, 0x0, 0x0, 0x0, 0x0, + 0xa0, 0xff, 0xff, 0xff, 0x83, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x98, 0xff, 0xff, 0xff, 0xd7, 0x10, + 0x0, 0x0, 0x0, 0x0, 0x71, 0xff, 0xff, 0xff, + 0xff, 0xf4, 0xdb, 0x9a, 0x0, 0x0, 0x17, 0xed, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xa0, 0x0, 0x0, + 0x0, 0x25, 0xae, 0xe7, 0xf9, 0xe8, 0xc2, 0x5b, + + /* U+0075 "u" */ + 0x24, 0xff, 0xff, 0xff, 0xf8, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0xe0, 0xff, 0xff, 0xff, 0x3c, + 0x24, 0xff, 0xff, 0xff, 0xf8, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0xe0, 0xff, 0xff, 0xff, 0x3c, + 0x24, 0xff, 0xff, 0xff, 0xf8, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0xe0, 0xff, 0xff, 0xff, 0x3c, + 0x24, 0xff, 0xff, 0xff, 0xf8, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0xe0, 0xff, 0xff, 0xff, 0x3c, + 0x24, 0xff, 0xff, 0xff, 0xf8, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0xe0, 0xff, 0xff, 0xff, 0x3c, + 0x24, 0xff, 0xff, 0xff, 0xf8, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0xe0, 0xff, 0xff, 0xff, 0x3c, + 0x24, 0xff, 0xff, 0xff, 0xf8, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0xe0, 0xff, 0xff, 0xff, 0x3c, + 0x24, 0xff, 0xff, 0xff, 0xf8, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0xe0, 0xff, 0xff, 0xff, 0x3c, + 0x24, 0xff, 0xff, 0xff, 0xf8, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0xe5, 0xff, 0xff, 0xff, 0x3c, + 0x24, 0xff, 0xff, 0xff, 0xfe, 0x2, 0x0, 0x0, + 0x0, 0x0, 0x5, 0xfd, 0xff, 0xff, 0xff, 0x3c, + 0x1c, 0xff, 0xff, 0xff, 0xff, 0x23, 0x0, 0x0, + 0x0, 0x0, 0x3d, 0xff, 0xff, 0xff, 0xff, 0x3c, + 0x8, 0xfc, 0xff, 0xff, 0xff, 0x78, 0x0, 0x0, + 0x0, 0x0, 0xb8, 0xff, 0xff, 0xff, 0xff, 0x3c, + 0x0, 0xce, 0xff, 0xff, 0xff, 0xf7, 0x63, 0x18, + 0x2b, 0xa2, 0xfe, 0xed, 0xff, 0xff, 0xff, 0x3c, + 0x0, 0x6b, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0x9e, 0xbe, 0xff, 0xff, 0xff, 0x40, + 0x0, 0x3, 0xb7, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xc3, 0xf, 0xb0, 0xff, 0xff, 0xff, 0x45, + 0x0, 0x0, 0x5, 0x70, 0xcc, 0xf5, 0xf2, 0xce, + 0x71, 0x8, 0x0, 0x9e, 0xff, 0xff, 0xff, 0x51, + + /* U+0076 "v" */ + 0xb3, 0xff, 0xff, 0xff, 0x9f, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x3, 0xea, 0xff, 0xff, 0xff, + 0x61, 0x58, 0xff, 0xff, 0xff, 0xeb, 0x3, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x41, 0xff, 0xff, 0xff, + 0xf5, 0xd, 0xa, 0xf3, 0xff, 0xff, 0xff, 0x3d, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x93, 0xff, 0xff, + 0xff, 0xa5, 0x0, 0x0, 0xa2, 0xff, 0xff, 0xff, + 0x8c, 0x0, 0x0, 0x0, 0x0, 0x1, 0xe4, 0xff, + 0xff, 0xff, 0x47, 0x0, 0x0, 0x48, 0xff, 0xff, + 0xff, 0xdb, 0x0, 0x0, 0x0, 0x0, 0x38, 0xff, + 0xff, 0xff, 0xe6, 0x3, 0x0, 0x0, 0x4, 0xe9, + 0xff, 0xff, 0xff, 0x2a, 0x0, 0x0, 0x0, 0x8a, + 0xff, 0xff, 0xff, 0x8c, 0x0, 0x0, 0x0, 0x0, + 0x92, 0xff, 0xff, 0xff, 0x79, 0x0, 0x0, 0x0, + 0xdc, 0xff, 0xff, 0xff, 0x2e, 0x0, 0x0, 0x0, + 0x0, 0x37, 0xff, 0xff, 0xff, 0xc8, 0x0, 0x0, + 0x2c, 0xff, 0xff, 0xff, 0xd0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0xdc, 0xff, 0xff, 0xfe, 0x19, + 0x0, 0x7c, 0xff, 0xff, 0xff, 0x73, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x82, 0xff, 0xff, 0xff, + 0x63, 0x0, 0xcc, 0xff, 0xff, 0xfc, 0x18, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x27, 0xff, 0xff, + 0xff, 0xab, 0x1e, 0xff, 0xff, 0xff, 0xb7, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xcc, + 0xff, 0xff, 0xf0, 0x70, 0xff, 0xff, 0xff, 0x59, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x72, 0xff, 0xff, 0xff, 0xe4, 0xff, 0xff, 0xf2, + 0x9, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x1a, 0xfd, 0xff, 0xff, 0xff, 0xff, 0xff, + 0x9e, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0xbc, 0xff, 0xff, 0xff, 0xff, + 0xff, 0x40, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x61, 0xff, 0xff, 0xff, + 0xff, 0xe0, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, + + /* U+0077 "w" */ + 0x4, 0xf3, 0xff, 0xff, 0xe3, 0x0, 0x0, 0x0, + 0x0, 0x0, 0xae, 0xff, 0xff, 0xff, 0xf6, 0x6, + 0x0, 0x0, 0x0, 0x0, 0x84, 0xff, 0xff, 0xff, + 0x46, 0x0, 0xb6, 0xff, 0xff, 0xff, 0x19, 0x0, + 0x0, 0x0, 0x3, 0xef, 0xff, 0xff, 0xff, 0xff, + 0x3f, 0x0, 0x0, 0x0, 0x0, 0xbd, 0xff, 0xff, + 0xf9, 0xa, 0x0, 0x74, 0xff, 0xff, 0xff, 0x50, + 0x0, 0x0, 0x0, 0x37, 0xff, 0xff, 0xff, 0xff, + 0xff, 0x81, 0x0, 0x0, 0x0, 0x3, 0xf3, 0xff, + 0xff, 0xc0, 0x0, 0x0, 0x32, 0xff, 0xff, 0xff, + 0x87, 0x0, 0x0, 0x0, 0x7b, 0xff, 0xff, 0xc5, + 0xff, 0xff, 0xc4, 0x0, 0x0, 0x0, 0x2f, 0xff, + 0xff, 0xff, 0x7e, 0x0, 0x0, 0x2, 0xee, 0xff, + 0xff, 0xbd, 0x0, 0x0, 0x0, 0xbf, 0xff, 0xff, + 0x5d, 0xfd, 0xff, 0xfa, 0xb, 0x0, 0x0, 0x68, + 0xff, 0xff, 0xff, 0x3b, 0x0, 0x0, 0x0, 0xaf, + 0xff, 0xff, 0xf2, 0x2, 0x0, 0xa, 0xf8, 0xff, + 0xff, 0x18, 0xd3, 0xff, 0xff, 0x48, 0x0, 0x0, + 0xa1, 0xff, 0xff, 0xf3, 0x5, 0x0, 0x0, 0x0, + 0x6d, 0xff, 0xff, 0xff, 0x2b, 0x0, 0x47, 0xff, + 0xff, 0xdb, 0x0, 0x92, 0xff, 0xff, 0x8b, 0x0, + 0x0, 0xd9, 0xff, 0xff, 0xb5, 0x0, 0x0, 0x0, + 0x0, 0x2b, 0xff, 0xff, 0xff, 0x61, 0x0, 0x8b, + 0xff, 0xff, 0x98, 0x0, 0x51, 0xff, 0xff, 0xcd, + 0x0, 0x13, 0xff, 0xff, 0xff, 0x73, 0x0, 0x0, + 0x0, 0x0, 0x0, 0xe8, 0xff, 0xff, 0x98, 0x0, + 0xcf, 0xff, 0xff, 0x55, 0x0, 0x11, 0xfd, 0xff, + 0xfd, 0x11, 0x4b, 0xff, 0xff, 0xff, 0x30, 0x0, + 0x0, 0x0, 0x0, 0x0, 0xa8, 0xff, 0xff, 0xcf, + 0x11, 0xfe, 0xff, 0xfe, 0x14, 0x0, 0x0, 0xcd, + 0xff, 0xff, 0x51, 0x84, 0xff, 0xff, 0xeb, 0x1, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x66, 0xff, 0xff, + 0xfb, 0x50, 0xff, 0xff, 0xcf, 0x0, 0x0, 0x0, + 0x8b, 0xff, 0xff, 0x8b, 0xbc, 0xff, 0xff, 0xaa, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x24, 0xff, + 0xff, 0xff, 0xb6, 0xff, 0xff, 0x8c, 0x0, 0x0, + 0x0, 0x49, 0xff, 0xff, 0xc1, 0xf2, 0xff, 0xff, + 0x68, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0xe2, 0xff, 0xff, 0xfd, 0xff, 0xff, 0x49, 0x0, + 0x0, 0x0, 0xc, 0xfa, 0xff, 0xfd, 0xff, 0xff, + 0xff, 0x25, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0xa1, 0xff, 0xff, 0xff, 0xff, 0xfa, 0xb, + 0x0, 0x0, 0x0, 0x0, 0xc5, 0xff, 0xff, 0xff, + 0xff, 0xe2, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x5f, 0xff, 0xff, 0xff, 0xff, 0xc3, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x83, 0xff, 0xff, + 0xff, 0xff, 0x9f, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x1d, 0xff, 0xff, 0xff, 0xff, + 0x81, 0x0, 0x0, 0x0, 0x0, 0x0, 0x41, 0xff, + 0xff, 0xff, 0xff, 0x5d, 0x0, 0x0, 0x0, 0x0, + + /* U+0078 "x" */ + 0x2f, 0xf9, 0xff, 0xff, 0xfe, 0x3f, 0x0, 0x0, + 0x0, 0x0, 0x0, 0xa6, 0xff, 0xff, 0xff, 0xc4, + 0x3, 0x0, 0x72, 0xff, 0xff, 0xff, 0xda, 0x8, + 0x0, 0x0, 0x0, 0x4a, 0xff, 0xff, 0xff, 0xf0, + 0x20, 0x0, 0x0, 0x1, 0xba, 0xff, 0xff, 0xff, + 0x89, 0x0, 0x0, 0xc, 0xe1, 0xff, 0xff, 0xff, + 0x59, 0x0, 0x0, 0x0, 0x0, 0x19, 0xeb, 0xff, + 0xff, 0xfc, 0x32, 0x0, 0x92, 0xff, 0xff, 0xff, + 0xa2, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x4f, + 0xff, 0xff, 0xff, 0xce, 0x3c, 0xfd, 0xff, 0xff, + 0xdd, 0xd, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x98, 0xff, 0xff, 0xff, 0xf5, 0xff, 0xff, + 0xfb, 0x38, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0xa, 0xd7, 0xff, 0xff, 0xff, 0xff, + 0xff, 0x7c, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x37, 0xff, 0xff, 0xff, + 0xff, 0xd2, 0x2, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x8a, 0xff, 0xff, + 0xff, 0xff, 0xfa, 0x33, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xfd, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xd8, 0xa, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0xf, 0xe1, 0xff, + 0xff, 0xf8, 0xa3, 0xff, 0xff, 0xff, 0x98, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xa4, 0xff, + 0xff, 0xff, 0x7c, 0x7, 0xd8, 0xff, 0xff, 0xff, + 0x4c, 0x0, 0x0, 0x0, 0x0, 0x0, 0x57, 0xff, + 0xff, 0xff, 0xd2, 0x5, 0x0, 0x3d, 0xfe, 0xff, + 0xff, 0xe9, 0x16, 0x0, 0x0, 0x0, 0x1c, 0xee, + 0xff, 0xff, 0xfd, 0x36, 0x0, 0x0, 0x0, 0x98, + 0xff, 0xff, 0xff, 0xb4, 0x0, 0x0, 0x1, 0xbd, + 0xff, 0xff, 0xff, 0x8e, 0x0, 0x0, 0x0, 0x0, + 0xf, 0xe6, 0xff, 0xff, 0xff, 0x69, 0x0, 0x72, + 0xff, 0xff, 0xff, 0xdf, 0xb, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x52, 0xff, 0xff, 0xff, 0xf5, 0x27, + + /* U+0079 "y" */ + 0x91, 0xff, 0xff, 0xff, 0xc3, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x4, 0xef, 0xff, 0xff, 0xff, + 0x57, 0x2a, 0xff, 0xff, 0xff, 0xfe, 0x1a, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x44, 0xff, 0xff, 0xff, + 0xee, 0x7, 0x0, 0xc3, 0xff, 0xff, 0xff, 0x6f, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x94, 0xff, 0xff, + 0xff, 0x96, 0x0, 0x0, 0x5d, 0xff, 0xff, 0xff, + 0xc5, 0x0, 0x0, 0x0, 0x0, 0x0, 0xe3, 0xff, + 0xff, 0xff, 0x35, 0x0, 0x0, 0x8, 0xee, 0xff, + 0xff, 0xfe, 0x1c, 0x0, 0x0, 0x0, 0x34, 0xff, + 0xff, 0xff, 0xd4, 0x0, 0x0, 0x0, 0x0, 0x8f, + 0xff, 0xff, 0xff, 0x71, 0x0, 0x0, 0x0, 0x84, + 0xff, 0xff, 0xff, 0x74, 0x0, 0x0, 0x0, 0x0, + 0x29, 0xff, 0xff, 0xff, 0xc7, 0x0, 0x0, 0x0, + 0xd4, 0xff, 0xff, 0xfb, 0x17, 0x0, 0x0, 0x0, + 0x0, 0x0, 0xc2, 0xff, 0xff, 0xfe, 0x1e, 0x0, + 0x22, 0xff, 0xff, 0xff, 0xb3, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x5b, 0xff, 0xff, 0xff, 0x74, + 0x0, 0x6c, 0xff, 0xff, 0xff, 0x52, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x7, 0xec, 0xff, 0xff, + 0xc2, 0x0, 0xb4, 0xff, 0xff, 0xec, 0x6, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x8e, 0xff, + 0xff, 0xfb, 0x17, 0xf4, 0xff, 0xff, 0x91, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x28, + 0xff, 0xff, 0xff, 0x96, 0xff, 0xff, 0xff, 0x31, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0xc0, 0xff, 0xff, 0xfb, 0xff, 0xff, 0xd0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x5a, 0xff, 0xff, 0xff, 0xff, 0xff, + 0x6f, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x7, 0xec, 0xff, 0xff, 0xff, + 0xfa, 0x14, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x98, 0xff, 0xff, + 0xff, 0xae, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0xd6, 0xff, + 0xff, 0xff, 0x4c, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x58, 0xff, + 0xff, 0xff, 0xd7, 0x1, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x8, 0x7, 0x12, 0x5c, 0xef, + 0xff, 0xff, 0xff, 0x57, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x70, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xb9, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x70, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xd5, 0x15, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x5c, 0xea, + 0xfa, 0xf9, 0xd8, 0x83, 0xc, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + + /* U+007A "z" */ + 0x34, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0x34, 0x34, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0x34, 0x30, 0xf0, 0xf0, 0xf0, 0xf0, 0xf0, + 0xf0, 0xf5, 0xff, 0xff, 0xff, 0xff, 0x33, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x2, 0xbb, 0xff, + 0xff, 0xff, 0xc1, 0x3, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x7a, 0xff, 0xff, 0xff, 0xec, 0x1c, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x39, 0xfb, + 0xff, 0xff, 0xff, 0x4e, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x10, 0xe0, 0xff, 0xff, 0xff, 0x92, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xac, + 0xff, 0xff, 0xff, 0xd0, 0x7, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x68, 0xff, 0xff, 0xff, 0xf4, + 0x27, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x2c, + 0xf7, 0xff, 0xff, 0xff, 0x60, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0xa, 0xd5, 0xff, 0xff, 0xff, + 0xa5, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x9b, 0xff, 0xff, 0xff, 0xdc, 0xd, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x56, 0xff, 0xff, 0xff, + 0xfa, 0x34, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0xca, 0xff, 0xff, 0xff, 0xfe, 0xf8, 0xf8, + 0xf8, 0xf8, 0xf8, 0xf8, 0xf8, 0xe4, 0xcc, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xec, 0xcc, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xec, + + /* U+007B "{" */ + 0x0, 0x0, 0x0, 0x0, 0x0, 0x3d, 0xba, 0xf1, + 0xff, 0xff, 0xff, 0xc, 0x0, 0x0, 0x0, 0x0, + 0x45, 0xfc, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc, + 0x0, 0x0, 0x0, 0x0, 0xcf, 0xff, 0xff, 0xff, + 0xff, 0xe2, 0xc4, 0x9, 0x0, 0x0, 0x0, 0x11, + 0xff, 0xff, 0xff, 0xff, 0x6d, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x25, 0xff, 0xff, 0xff, 0xe2, + 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x28, + 0xff, 0xff, 0xff, 0xbb, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x28, 0xff, 0xff, 0xff, 0xb0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x28, + 0xff, 0xff, 0xff, 0xb0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x28, 0xff, 0xff, 0xff, 0xb0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x2b, + 0xff, 0xff, 0xff, 0xb0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x47, 0xff, 0xff, 0xff, 0xab, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x97, + 0xff, 0xff, 0xff, 0x8a, 0x0, 0x0, 0x0, 0x0, + 0x2, 0x19, 0x75, 0xfb, 0xff, 0xff, 0xfd, 0x2c, + 0x0, 0x0, 0x0, 0x0, 0x84, 0xff, 0xff, 0xff, + 0xff, 0xf9, 0x61, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x84, 0xff, 0xff, 0xff, 0xee, 0x4e, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x7c, 0xff, 0xff, 0xff, + 0xff, 0xff, 0x8e, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0xb, 0x66, 0xf6, 0xff, 0xff, 0xff, 0x4d, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x81, + 0xff, 0xff, 0xff, 0x9a, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x3f, 0xff, 0xff, 0xff, 0xb0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x28, + 0xff, 0xff, 0xff, 0xb0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x28, 0xff, 0xff, 0xff, 0xb0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x28, + 0xff, 0xff, 0xff, 0xb0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x28, 0xff, 0xff, 0xff, 0xb7, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x27, + 0xff, 0xff, 0xff, 0xdb, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x18, 0xff, 0xff, 0xff, 0xff, + 0x66, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0xda, 0xff, 0xff, 0xff, 0xff, 0xe7, 0xcc, 0x9, + 0x0, 0x0, 0x0, 0x0, 0x4e, 0xfd, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xc, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x41, 0xbc, 0xf3, 0xff, 0xff, 0xff, 0xc, + + /* U+007C "|" */ + 0xb8, 0xff, 0xff, 0xff, 0x20, 0xb8, 0xff, 0xff, + 0xff, 0x20, 0xb8, 0xff, 0xff, 0xff, 0x20, 0xb8, + 0xff, 0xff, 0xff, 0x20, 0xb8, 0xff, 0xff, 0xff, + 0x20, 0xb8, 0xff, 0xff, 0xff, 0x20, 0xb8, 0xff, + 0xff, 0xff, 0x20, 0xb8, 0xff, 0xff, 0xff, 0x20, + 0xb8, 0xff, 0xff, 0xff, 0x20, 0xb8, 0xff, 0xff, + 0xff, 0x20, 0xb8, 0xff, 0xff, 0xff, 0x20, 0xb8, + 0xff, 0xff, 0xff, 0x20, 0xb8, 0xff, 0xff, 0xff, + 0x20, 0xb8, 0xff, 0xff, 0xff, 0x20, 0xb8, 0xff, + 0xff, 0xff, 0x20, 0xb8, 0xff, 0xff, 0xff, 0x20, + 0xb8, 0xff, 0xff, 0xff, 0x20, 0xb8, 0xff, 0xff, + 0xff, 0x20, 0xb8, 0xff, 0xff, 0xff, 0x20, 0xb8, + 0xff, 0xff, 0xff, 0x20, 0xb8, 0xff, 0xff, 0xff, + 0x20, 0xb8, 0xff, 0xff, 0xff, 0x20, 0xb8, 0xff, + 0xff, 0xff, 0x20, 0xb8, 0xff, 0xff, 0xff, 0x20, + 0xb8, 0xff, 0xff, 0xff, 0x20, 0xb8, 0xff, 0xff, + 0xff, 0x20, 0xb8, 0xff, 0xff, 0xff, 0x20, 0xb8, + 0xff, 0xff, 0xff, 0x20, + + /* U+007D "}" */ + 0x60, 0xff, 0xff, 0xfd, 0xe6, 0x9e, 0x1a, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x60, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xe1, 0x12, 0x0, 0x0, 0x0, 0x0, + 0x49, 0xca, 0xf1, 0xff, 0xff, 0xff, 0xff, 0x7d, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xb, 0xba, + 0xff, 0xff, 0xff, 0xbc, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x39, 0xff, 0xff, 0xff, 0xd1, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x10, + 0xff, 0xff, 0xff, 0xd4, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x4, 0xff, 0xff, 0xff, 0xd4, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x4, + 0xff, 0xff, 0xff, 0xd4, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x4, 0xff, 0xff, 0xff, 0xd4, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x4, + 0xff, 0xff, 0xff, 0xd7, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x2, 0xfd, 0xff, 0xff, 0xf3, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0xde, 0xff, 0xff, 0xff, 0x47, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x7e, 0xff, 0xff, 0xff, + 0xe7, 0x59, 0x19, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x7, 0xa7, 0xff, 0xff, 0xff, 0xff, 0xff, 0x38, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x7, 0x8a, 0xff, + 0xff, 0xff, 0xff, 0x38, 0x0, 0x0, 0x0, 0x0, + 0x15, 0xcc, 0xff, 0xff, 0xff, 0xff, 0xfc, 0x33, + 0x0, 0x0, 0x0, 0x0, 0xa1, 0xff, 0xff, 0xff, + 0xd4, 0x3c, 0x4, 0x0, 0x0, 0x0, 0x0, 0x0, + 0xee, 0xff, 0xff, 0xff, 0x2d, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x4, 0xff, 0xff, 0xff, 0xea, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x4, + 0xff, 0xff, 0xff, 0xd4, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x4, 0xff, 0xff, 0xff, 0xd4, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x4, + 0xff, 0xff, 0xff, 0xd4, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0xc, 0xff, 0xff, 0xff, 0xd4, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x31, + 0xff, 0xff, 0xff, 0xd3, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0xa, 0xb3, 0xff, 0xff, 0xff, 0xc3, + 0x0, 0x0, 0x0, 0x0, 0x4c, 0xd1, 0xf4, 0xff, + 0xff, 0xff, 0xff, 0x85, 0x0, 0x0, 0x0, 0x0, + 0x60, 0xff, 0xff, 0xff, 0xff, 0xff, 0xe2, 0x14, + 0x0, 0x0, 0x0, 0x0, 0x60, 0xff, 0xff, 0xfe, + 0xe7, 0x9d, 0x19, 0x0, 0x0, 0x0, 0x0, 0x0, + + /* U+007E "~" */ + 0x3, 0x63, 0xc3, 0xf1, 0xf4, 0xd4, 0x93, 0x42, + 0x2, 0x0, 0x0, 0x0, 0x0, 0x0, 0xc, 0x28, + 0xaa, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xdf, 0x7e, 0x30, 0xa, 0x15, 0x5e, 0xdb, 0x60, + 0xcc, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x60, + 0xcb, 0xab, 0x41, 0x12, 0x1d, 0x4c, 0xa0, 0xf0, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfd, 0x48, + 0x33, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x9, + 0x5a, 0xb2, 0xe9, 0xfb, 0xeb, 0xb1, 0x3a, 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 = 133, .box_w = 0, .box_h = 0, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 0, .adv_w = 160, .box_w = 6, .box_h = 20, .ofs_x = 2, .ofs_y = 0}, + {.bitmap_index = 120, .adv_w = 228, .box_w = 12, .box_h = 8, .ofs_x = 1, .ofs_y = 12}, + {.bitmap_index = 216, .adv_w = 267, .box_w = 17, .box_h = 20, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 556, .adv_w = 267, .box_w = 17, .box_h = 25, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 981, .adv_w = 427, .box_w = 26, .box_h = 20, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 1501, .adv_w = 347, .box_w = 20, .box_h = 20, .ofs_x = 1, .ofs_y = 0}, + {.bitmap_index = 1901, .adv_w = 114, .box_w = 5, .box_h = 8, .ofs_x = 1, .ofs_y = 12}, + {.bitmap_index = 1941, .adv_w = 160, .box_w = 9, .box_h = 28, .ofs_x = 1, .ofs_y = -6}, + {.bitmap_index = 2193, .adv_w = 160, .box_w = 9, .box_h = 28, .ofs_x = 0, .ofs_y = -6}, + {.bitmap_index = 2445, .adv_w = 187, .box_w = 12, .box_h = 12, .ofs_x = 0, .ofs_y = 8}, + {.bitmap_index = 2589, .adv_w = 280, .box_w = 16, .box_h = 16, .ofs_x = 1, .ofs_y = 2}, + {.bitmap_index = 2845, .adv_w = 133, .box_w = 5, .box_h = 10, .ofs_x = 2, .ofs_y = -5}, + {.bitmap_index = 2895, .adv_w = 160, .box_w = 8, .box_h = 4, .ofs_x = 1, .ofs_y = 6}, + {.bitmap_index = 2927, .adv_w = 133, .box_w = 5, .box_h = 5, .ofs_x = 2, .ofs_y = 0}, + {.bitmap_index = 2952, .adv_w = 133, .box_w = 9, .box_h = 22, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 3150, .adv_w = 267, .box_w = 15, .box_h = 20, .ofs_x = 1, .ofs_y = 0}, + {.bitmap_index = 3450, .adv_w = 267, .box_w = 15, .box_h = 20, .ofs_x = 1, .ofs_y = 0}, + {.bitmap_index = 3750, .adv_w = 267, .box_w = 15, .box_h = 20, .ofs_x = 1, .ofs_y = 0}, + {.bitmap_index = 4050, .adv_w = 267, .box_w = 16, .box_h = 20, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 4370, .adv_w = 267, .box_w = 17, .box_h = 20, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 4710, .adv_w = 267, .box_w = 16, .box_h = 20, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 5030, .adv_w = 267, .box_w = 15, .box_h = 20, .ofs_x = 1, .ofs_y = 0}, + {.bitmap_index = 5330, .adv_w = 267, .box_w = 15, .box_h = 20, .ofs_x = 1, .ofs_y = 0}, + {.bitmap_index = 5630, .adv_w = 267, .box_w = 16, .box_h = 20, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 5950, .adv_w = 267, .box_w = 15, .box_h = 20, .ofs_x = 1, .ofs_y = 0}, + {.bitmap_index = 6250, .adv_w = 160, .box_w = 6, .box_h = 15, .ofs_x = 2, .ofs_y = 0}, + {.bitmap_index = 6340, .adv_w = 160, .box_w = 6, .box_h = 20, .ofs_x = 2, .ofs_y = -5}, + {.bitmap_index = 6460, .adv_w = 280, .box_w = 16, .box_h = 17, .ofs_x = 1, .ofs_y = 1}, + {.bitmap_index = 6732, .adv_w = 280, .box_w = 16, .box_h = 12, .ofs_x = 1, .ofs_y = 4}, + {.bitmap_index = 6924, .adv_w = 280, .box_w = 16, .box_h = 17, .ofs_x = 1, .ofs_y = 1}, + {.bitmap_index = 7196, .adv_w = 293, .box_w = 16, .box_h = 20, .ofs_x = 1, .ofs_y = 0}, + {.bitmap_index = 7516, .adv_w = 468, .box_w = 27, .box_h = 25, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 8191, .adv_w = 347, .box_w = 21, .box_h = 20, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 8611, .adv_w = 347, .box_w = 19, .box_h = 20, .ofs_x = 2, .ofs_y = 0}, + {.bitmap_index = 8991, .adv_w = 347, .box_w = 20, .box_h = 20, .ofs_x = 1, .ofs_y = 0}, + {.bitmap_index = 9391, .adv_w = 347, .box_w = 19, .box_h = 20, .ofs_x = 2, .ofs_y = 0}, + {.bitmap_index = 9771, .adv_w = 320, .box_w = 17, .box_h = 20, .ofs_x = 2, .ofs_y = 0}, + {.bitmap_index = 10111, .adv_w = 293, .box_w = 16, .box_h = 20, .ofs_x = 2, .ofs_y = 0}, + {.bitmap_index = 10431, .adv_w = 373, .box_w = 21, .box_h = 20, .ofs_x = 1, .ofs_y = 0}, + {.bitmap_index = 10851, .adv_w = 347, .box_w = 18, .box_h = 20, .ofs_x = 2, .ofs_y = 0}, + {.bitmap_index = 11211, .adv_w = 133, .box_w = 5, .box_h = 20, .ofs_x = 2, .ofs_y = 0}, + {.bitmap_index = 11311, .adv_w = 267, .box_w = 15, .box_h = 20, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 11611, .adv_w = 347, .box_w = 20, .box_h = 20, .ofs_x = 2, .ofs_y = 0}, + {.bitmap_index = 12011, .adv_w = 293, .box_w = 16, .box_h = 20, .ofs_x = 2, .ofs_y = 0}, + {.bitmap_index = 12331, .adv_w = 400, .box_w = 21, .box_h = 20, .ofs_x = 2, .ofs_y = 0}, + {.bitmap_index = 12751, .adv_w = 347, .box_w = 18, .box_h = 20, .ofs_x = 2, .ofs_y = 0}, + {.bitmap_index = 13111, .adv_w = 373, .box_w = 22, .box_h = 20, .ofs_x = 1, .ofs_y = 0}, + {.bitmap_index = 13551, .adv_w = 320, .box_w = 17, .box_h = 20, .ofs_x = 2, .ofs_y = 0}, + {.bitmap_index = 13891, .adv_w = 373, .box_w = 22, .box_h = 26, .ofs_x = 1, .ofs_y = -6}, + {.bitmap_index = 14463, .adv_w = 347, .box_w = 20, .box_h = 20, .ofs_x = 2, .ofs_y = 0}, + {.bitmap_index = 14863, .adv_w = 320, .box_w = 19, .box_h = 20, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 15243, .adv_w = 293, .box_w = 18, .box_h = 20, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 15603, .adv_w = 347, .box_w = 19, .box_h = 20, .ofs_x = 1, .ofs_y = 0}, + {.bitmap_index = 15983, .adv_w = 320, .box_w = 20, .box_h = 20, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 16383, .adv_w = 453, .box_w = 29, .box_h = 20, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 16963, .adv_w = 320, .box_w = 20, .box_h = 20, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 17363, .adv_w = 320, .box_w = 20, .box_h = 20, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 17763, .adv_w = 293, .box_w = 18, .box_h = 20, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 18123, .adv_w = 160, .box_w = 9, .box_h = 28, .ofs_x = 1, .ofs_y = -6}, + {.bitmap_index = 18375, .adv_w = 133, .box_w = 9, .box_h = 22, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 18573, .adv_w = 160, .box_w = 9, .box_h = 28, .ofs_x = 0, .ofs_y = -6}, + {.bitmap_index = 18825, .adv_w = 280, .box_w = 17, .box_h = 13, .ofs_x = 0, .ofs_y = 7}, + {.bitmap_index = 19046, .adv_w = 267, .box_w = 18, .box_h = 2, .ofs_x = -1, .ofs_y = -4}, + {.bitmap_index = 19082, .adv_w = 160, .box_w = 9, .box_h = 5, .ofs_x = 0, .ofs_y = 17}, + {.bitmap_index = 19127, .adv_w = 267, .box_w = 17, .box_h = 16, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 19399, .adv_w = 293, .box_w = 17, .box_h = 22, .ofs_x = 1, .ofs_y = 0}, + {.bitmap_index = 19773, .adv_w = 267, .box_w = 15, .box_h = 16, .ofs_x = 1, .ofs_y = 0}, + {.bitmap_index = 20013, .adv_w = 293, .box_w = 16, .box_h = 22, .ofs_x = 1, .ofs_y = 0}, + {.bitmap_index = 20365, .adv_w = 267, .box_w = 15, .box_h = 16, .ofs_x = 1, .ofs_y = 0}, + {.bitmap_index = 20605, .adv_w = 160, .box_w = 11, .box_h = 22, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 20847, .adv_w = 293, .box_w = 16, .box_h = 22, .ofs_x = 1, .ofs_y = -6}, + {.bitmap_index = 21199, .adv_w = 293, .box_w = 15, .box_h = 22, .ofs_x = 2, .ofs_y = 0}, + {.bitmap_index = 21529, .adv_w = 133, .box_w = 5, .box_h = 22, .ofs_x = 2, .ofs_y = 0}, + {.bitmap_index = 21639, .adv_w = 133, .box_w = 8, .box_h = 28, .ofs_x = -1, .ofs_y = -6}, + {.bitmap_index = 21863, .adv_w = 267, .box_w = 15, .box_h = 22, .ofs_x = 2, .ofs_y = 0}, + {.bitmap_index = 22193, .adv_w = 133, .box_w = 5, .box_h = 22, .ofs_x = 2, .ofs_y = 0}, + {.bitmap_index = 22303, .adv_w = 427, .box_w = 24, .box_h = 16, .ofs_x = 1, .ofs_y = 0}, + {.bitmap_index = 22687, .adv_w = 293, .box_w = 16, .box_h = 16, .ofs_x = 1, .ofs_y = 0}, + {.bitmap_index = 22943, .adv_w = 293, .box_w = 17, .box_h = 16, .ofs_x = 1, .ofs_y = 0}, + {.bitmap_index = 23215, .adv_w = 293, .box_w = 17, .box_h = 22, .ofs_x = 1, .ofs_y = -6}, + {.bitmap_index = 23589, .adv_w = 293, .box_w = 16, .box_h = 22, .ofs_x = 1, .ofs_y = -6}, + {.bitmap_index = 23941, .adv_w = 187, .box_w = 11, .box_h = 16, .ofs_x = 1, .ofs_y = 0}, + {.bitmap_index = 24117, .adv_w = 267, .box_w = 15, .box_h = 16, .ofs_x = 1, .ofs_y = 0}, + {.bitmap_index = 24357, .adv_w = 160, .box_w = 10, .box_h = 20, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 24557, .adv_w = 293, .box_w = 16, .box_h = 16, .ofs_x = 1, .ofs_y = 0}, + {.bitmap_index = 24813, .adv_w = 267, .box_w = 17, .box_h = 16, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 25085, .adv_w = 373, .box_w = 25, .box_h = 16, .ofs_x = -1, .ofs_y = 0}, + {.bitmap_index = 25485, .adv_w = 267, .box_w = 17, .box_h = 16, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 25757, .adv_w = 267, .box_w = 17, .box_h = 22, .ofs_x = 0, .ofs_y = -6}, + {.bitmap_index = 26131, .adv_w = 240, .box_w = 13, .box_h = 16, .ofs_x = 1, .ofs_y = 0}, + {.bitmap_index = 26339, .adv_w = 187, .box_w = 12, .box_h = 28, .ofs_x = 0, .ofs_y = -6}, + {.bitmap_index = 26675, .adv_w = 134, .box_w = 5, .box_h = 28, .ofs_x = 2, .ofs_y = -6}, + {.bitmap_index = 26815, .adv_w = 187, .box_w = 12, .box_h = 28, .ofs_x = 0, .ofs_y = -6}, + {.bitmap_index = 27151, .adv_w = 280, .box_w = 16, .box_h = 5, .ofs_x = 1, .ofs_y = 8} +}; + +/*--------------------- + * CHARACTER MAPPING + *--------------------*/ + + + +/*Collect the unicode lists and glyph_id offsets*/ +static const lv_font_fmt_txt_cmap_t cmaps[] = +{ + { + .range_start = 32, .range_length = 95, .glyph_id_start = 1, + .unicode_list = NULL, .glyph_id_ofs_list = NULL, .list_length = 0, .type = LV_FONT_FMT_TXT_CMAP_FORMAT0_TINY + } +}; + +/*----------------- + * KERNING + *----------------*/ + + +/*Pair left and right glyphs for kerning*/ +static const uint8_t kern_pair_glyph_ids[] = +{ + 1, 34, + 1, 58, + 18, 18, + 34, 1, + 34, 53, + 34, 55, + 34, 56, + 34, 58, + 34, 87, + 34, 88, + 34, 90, + 39, 13, + 39, 15, + 39, 34, + 45, 1, + 45, 53, + 45, 55, + 45, 56, + 45, 58, + 45, 90, + 49, 1, + 49, 13, + 49, 15, + 49, 34, + 51, 55, + 51, 56, + 51, 58, + 53, 13, + 53, 14, + 53, 15, + 53, 27, + 53, 28, + 53, 34, + 53, 48, + 53, 66, + 53, 68, + 53, 70, + 53, 74, + 53, 80, + 53, 83, + 53, 84, + 53, 86, + 53, 88, + 53, 90, + 55, 13, + 55, 14, + 55, 15, + 55, 27, + 55, 28, + 55, 34, + 55, 66, + 55, 70, + 55, 74, + 55, 80, + 55, 83, + 55, 86, + 55, 90, + 56, 13, + 56, 14, + 56, 15, + 56, 27, + 56, 28, + 56, 34, + 56, 66, + 56, 70, + 56, 74, + 56, 80, + 56, 83, + 56, 86, + 56, 90, + 58, 1, + 58, 13, + 58, 14, + 58, 15, + 58, 27, + 58, 28, + 58, 34, + 58, 66, + 58, 70, + 58, 74, + 58, 80, + 58, 81, + 58, 82, + 58, 86, + 58, 87, + 83, 13, + 83, 15, + 87, 13, + 87, 15, + 88, 13, + 88, 15, + 90, 13, + 90, 15 +}; + +/* Kerning between the respective left and right glyphs + * 4.4 format which needs to scaled with `kern_scale`*/ +static const int8_t kern_pair_values[] = +{ + -18, -9, -26, -18, -36, -36, -26, -44, + -18, -9, -18, -53, -53, -26, -9, -36, + -36, -26, -44, -18, -9, -62, -62, -36, + -9, -9, -18, -53, -26, -53, -53, -53, + -36, -9, -36, -36, -36, -9, -36, -26, + -36, -36, -36, -36, -44, -26, -44, -26, + -26, -36, -26, -26, -9, -36, -26, -18, + -18, -26, -10, -26, -9, -9, -26, -18, + -9, -4, -9, -9, -9, -9, -9, -53, + -26, -53, -36, -36, -44, -26, -26, -18, + -36, -26, -36, -26, -26, -26, -26, -36, + -36, -18, -18, -36, -36 +}; + +/*Collect the kern pair's data in one place*/ +static const lv_font_fmt_txt_kern_pair_t kern_pairs = +{ + .glyph_ids = kern_pair_glyph_ids, + .values = kern_pair_values, + .pair_cnt = 93, + .glyph_ids_size = 0 +}; + +/*-------------------- + * ALL CUSTOM DATA + *--------------------*/ + +#if LV_VERSION_CHECK(8, 0, 0) +/*Store all the custom data of the font*/ +static lv_font_fmt_txt_glyph_cache_t cache; +static const lv_font_fmt_txt_dsc_t font_dsc = { +#else +static lv_font_fmt_txt_dsc_t font_dsc = { +#endif + .glyph_bitmap = glyph_bitmap, + .glyph_dsc = glyph_dsc, + .cmaps = cmaps, + .kern_dsc = &kern_pairs, + .kern_scale = 16, + .cmap_num = 1, + .bpp = 8, + .kern_classes = 0, + .bitmap_format = 0, +#if LV_VERSION_CHECK(8, 0, 0) + .cache = &cache +#endif +}; + + +/*----------------- + * PUBLIC FONT + *----------------*/ + +/*Initialize a public general font descriptor*/ +#if LV_VERSION_CHECK(8, 0, 0) +const lv_font_t ui_font_font2 = { +#else +lv_font_t ui_font_font2 = { +#endif + .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 = 28, /*The maximum line height required by the font*/ + .base_line = 6, /*Baseline measured from the bottom of the line*/ +#if !(LVGL_VERSION_MAJOR == 6 && LVGL_VERSION_MINOR == 0) + .subpx = LV_FONT_SUBPX_NONE, +#endif +#if LV_VERSION_CHECK(7, 4, 0) || LVGL_VERSION_MAJOR >= 8 + .underline_position = -3, + .underline_thickness = 3, +#endif + .dsc = &font_dsc /*The custom font data. Will be accessed by `get_glyph_bitmap/dsc` */ +}; + + + +#endif /*#if UI_FONT_FONT2*/ + diff --git a/examples/indicator_matter/main/ui/ui_font_font3.c b/examples/indicator_matter/main/ui/ui_font_font3.c new file mode 100644 index 0000000..418596e --- /dev/null +++ b/examples/indicator_matter/main/ui/ui_font_font3.c @@ -0,0 +1,10128 @@ +/******************************************************************************* + * Size: 50 px + * Bpp: 8 + * Opts: --bpp 8 --size 50 --font /Users/virgil/seeed/SenseCAP_Indicator_ESP32/code/squareline_studio/sensecap_d1/assets/fonts/LibraSans-Bold.ttf -o /Users/virgil/seeed/SenseCAP_Indicator_ESP32/code/squareline_studio/sensecap_d1/assets/fonts/ui_font_font3.c --format lvgl -r 0x20-0x7f --no-compress --no-prefilter + ******************************************************************************/ + +#include "ui.h" + +#ifndef UI_FONT_FONT3 +#define UI_FONT_FONT3 1 +#endif + +#if UI_FONT_FONT3 + +/*----------------- + * BITMAPS + *----------------*/ + +/*Store the image of the glyphs*/ +static LV_ATTRIBUTE_LARGE_CONST const uint8_t glyph_bitmap[] = { + /* U+0020 " " */ + + /* U+0021 "!" */ + 0x48, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xe3, + 0x40, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xda, + 0x37, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xd2, + 0x2f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc9, + 0x26, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc0, + 0x1e, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xb8, + 0x15, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xaf, + 0xd, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xa6, + 0x4, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x9e, + 0x0, 0xfc, 0xff, 0xff, 0xff, 0xff, 0xff, 0x95, + 0x0, 0xf3, 0xff, 0xff, 0xff, 0xff, 0xff, 0x8c, + 0x0, 0xeb, 0xff, 0xff, 0xff, 0xff, 0xff, 0x84, + 0x0, 0xe2, 0xff, 0xff, 0xff, 0xff, 0xff, 0x7b, + 0x0, 0xda, 0xff, 0xff, 0xff, 0xff, 0xff, 0x73, + 0x0, 0xd1, 0xff, 0xff, 0xff, 0xff, 0xff, 0x6a, + 0x0, 0xc9, 0xff, 0xff, 0xff, 0xff, 0xff, 0x61, + 0x0, 0xc0, 0xff, 0xff, 0xff, 0xff, 0xff, 0x59, + 0x0, 0xb8, 0xff, 0xff, 0xff, 0xff, 0xff, 0x50, + 0x0, 0xb0, 0xff, 0xff, 0xff, 0xff, 0xff, 0x47, + 0x0, 0xa7, 0xff, 0xff, 0xff, 0xff, 0xff, 0x3f, + 0x0, 0x9f, 0xff, 0xff, 0xff, 0xff, 0xff, 0x36, + 0x0, 0x96, 0xff, 0xff, 0xff, 0xff, 0xff, 0x2d, + 0x0, 0x8e, 0xff, 0xff, 0xff, 0xff, 0xff, 0x25, + 0x0, 0x85, 0xff, 0xff, 0xff, 0xff, 0xff, 0x1c, + 0x0, 0xa, 0x14, 0x14, 0x14, 0x14, 0x14, 0x1, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x2f, 0xa0, 0xa0, 0xa0, 0xa0, 0xa0, 0xa0, 0x78, + 0x4c, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc0, + 0x4c, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc0, + 0x4c, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc0, + 0x4c, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc0, + 0x4c, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc0, + 0x4c, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc0, + + /* U+0022 "\"" */ + 0xad, 0xff, 0xff, 0xff, 0xff, 0xff, 0xed, 0x0, + 0x0, 0x0, 0x45, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0x60, 0xa0, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xdf, 0x0, 0x0, 0x0, 0x38, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0x52, 0x93, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xd2, 0x0, 0x0, 0x0, 0x2b, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0x43, 0x85, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xc4, 0x0, 0x0, 0x0, + 0x1e, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x35, + 0x78, 0xff, 0xff, 0xff, 0xff, 0xff, 0xb7, 0x0, + 0x0, 0x0, 0x11, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0x27, 0x6b, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xaa, 0x0, 0x0, 0x0, 0x4, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0x18, 0x5d, 0xff, 0xff, 0xff, + 0xff, 0xff, 0x9c, 0x0, 0x0, 0x0, 0x0, 0xf7, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xa, 0x50, 0xff, + 0xff, 0xff, 0xff, 0xff, 0x8f, 0x0, 0x0, 0x0, + 0x0, 0xea, 0xff, 0xff, 0xff, 0xff, 0xfb, 0x0, + 0x42, 0xff, 0xff, 0xff, 0xff, 0xff, 0x81, 0x0, + 0x0, 0x0, 0x0, 0xdd, 0xff, 0xff, 0xff, 0xff, + 0xed, 0x0, 0x35, 0xff, 0xff, 0xff, 0xff, 0xff, + 0x74, 0x0, 0x0, 0x0, 0x0, 0xd0, 0xff, 0xff, + 0xff, 0xff, 0xdf, 0x0, 0x28, 0xff, 0xff, 0xff, + 0xff, 0xff, 0x67, 0x0, 0x0, 0x0, 0x0, 0xc3, + 0xff, 0xff, 0xff, 0xff, 0xd1, 0x0, 0x1a, 0xff, + 0xff, 0xff, 0xff, 0xff, 0x59, 0x0, 0x0, 0x0, + 0x0, 0xb6, 0xff, 0xff, 0xff, 0xff, 0xc2, 0x0, + 0x8, 0x8c, 0x8c, 0x8c, 0x8c, 0x8c, 0x2b, 0x0, + 0x0, 0x0, 0x0, 0x5e, 0x8c, 0x8c, 0x8c, 0x8c, + 0x64, 0x0, + + /* U+0023 "#" */ + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x25, 0xff, 0xff, 0xff, 0x9b, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0xd9, 0xff, 0xff, + 0xf1, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x58, 0xff, 0xff, 0xff, + 0x69, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xd, + 0xfe, 0xff, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x8a, + 0xff, 0xff, 0xff, 0x38, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x3e, 0xff, 0xff, 0xff, 0x8d, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0xbd, 0xff, 0xff, 0xfc, 0xa, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x71, 0xff, 0xff, + 0xff, 0x5b, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0xee, 0xff, 0xff, + 0xd5, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0xa3, 0xff, 0xff, 0xff, 0x28, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x22, + 0xff, 0xff, 0xff, 0xa4, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0xd6, 0xff, 0xff, 0xf3, 0x2, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x54, 0xff, 0xff, 0xff, 0x73, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0xb, 0xfd, 0xff, + 0xff, 0xc3, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x87, 0xff, 0xff, + 0xff, 0x42, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x3b, 0xff, 0xff, 0xff, 0x91, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0xb9, 0xff, 0xff, 0xff, 0x11, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x6d, 0xff, 0xff, 0xff, 0x5f, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0xeb, 0xff, 0xff, 0xdf, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x9f, 0xff, + 0xff, 0xff, 0x2c, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x8d, 0x9c, 0x9c, 0x9c, 0x9c, 0xa1, 0xff, 0xff, + 0xff, 0xe6, 0x9c, 0x9c, 0x9c, 0x9c, 0x9c, 0x9c, + 0x9c, 0xe7, 0xff, 0xff, 0xff, 0x9f, 0x9c, 0x9c, + 0x9c, 0x0, 0x0, 0xe8, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0x0, 0x0, 0xe8, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x0, + 0x0, 0xe8, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x2, 0xf1, 0xff, 0xff, 0xd8, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0xa7, 0xff, 0xff, 0xff, + 0x18, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x2a, 0xff, 0xff, 0xff, 0xa0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xde, + 0xff, 0xff, 0xe2, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x60, 0xff, + 0xff, 0xff, 0x68, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x14, 0xff, 0xff, 0xff, 0xab, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x97, 0xff, 0xff, 0xff, 0x30, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x4b, 0xff, 0xff, 0xff, + 0x75, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0xcd, 0xff, 0xff, 0xf4, + 0x3, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x81, + 0xff, 0xff, 0xff, 0x3e, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x8, 0xfb, + 0xff, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0xb8, 0xff, 0xff, 0xfc, 0xb, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x3a, 0xff, 0xff, 0xff, 0x88, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0xed, 0xff, 0xff, + 0xd1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x71, 0xff, 0xff, 0xff, + 0x50, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x25, + 0xff, 0xff, 0xff, 0x9b, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x28, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xc0, 0x0, 0x28, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc0, 0x0, + 0x28, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xc0, 0x0, 0x1a, 0xac, 0xac, 0xac, 0xcb, + 0xff, 0xff, 0xff, 0xcb, 0xac, 0xac, 0xac, 0xac, + 0xac, 0xac, 0xb6, 0xff, 0xff, 0xff, 0xe7, 0xac, + 0xac, 0xac, 0xac, 0xac, 0x81, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x85, 0xff, 0xff, 0xff, 0x3b, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x45, 0xff, 0xff, + 0xff, 0x92, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0xba, 0xff, 0xff, + 0xfb, 0x9, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x7a, 0xff, 0xff, 0xff, 0x5b, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, + 0xee, 0xff, 0xff, 0xd0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0xb0, 0xff, 0xff, 0xff, 0x24, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x25, 0xff, 0xff, 0xff, 0x9a, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xe5, 0xff, + 0xff, 0xec, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x5b, 0xff, 0xff, + 0xff, 0x65, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x1b, 0xff, 0xff, 0xff, 0xb6, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x91, 0xff, 0xff, 0xff, 0x2f, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x51, 0xff, 0xff, 0xff, 0x7f, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0xc6, 0xff, 0xff, 0xf5, 0x3, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x86, 0xff, + 0xff, 0xff, 0x48, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x4, 0xf7, 0xff, + 0xff, 0xc4, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0xbc, 0xff, 0xff, 0xff, 0x12, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x31, 0xff, 0xff, 0xff, 0x8e, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x1, 0xf0, 0xff, 0xff, 0xdb, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, + + /* U+0024 "$" */ + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x48, 0xf4, 0xf4, 0x53, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x4c, 0xff, 0xff, 0x58, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x4c, 0xff, 0xff, 0x58, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x17, 0x26, + 0x6f, 0xff, 0xff, 0x88, 0x31, 0x12, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1e, 0x7c, + 0xc2, 0xf2, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xe2, 0xab, 0x56, 0x8, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0xf, 0x97, 0xfd, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xdf, 0x4a, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x18, 0xd8, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfd, 0x67, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3, 0xcd, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xfd, 0x3c, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x68, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xde, 0x96, 0x9d, 0xff, 0xff, 0xbb, + 0xd4, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xd9, 0x2, 0x0, 0x0, 0x0, 0x0, 0xcb, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xfe, 0x6e, 0x2, 0x0, + 0x4c, 0xff, 0xff, 0x58, 0x0, 0x4f, 0xed, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0x53, 0x0, 0x0, + 0x0, 0x11, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, + 0x94, 0x0, 0x0, 0x0, 0x4c, 0xff, 0xff, 0x58, + 0x0, 0x0, 0x45, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xb6, 0x0, 0x0, 0x0, 0x2c, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0x3e, 0x0, 0x0, 0x0, + 0x4c, 0xff, 0xff, 0x58, 0x0, 0x0, 0x0, 0xb3, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xf8, 0xb, 0x0, + 0x0, 0x3c, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0x2d, 0x0, 0x0, 0x0, 0x4c, 0xff, 0xff, 0x58, + 0x0, 0x0, 0x0, 0x67, 0xff, 0xf6, 0xd2, 0xac, + 0x87, 0x61, 0xf, 0x0, 0x0, 0x30, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0x4e, 0x0, 0x0, 0x0, + 0x4c, 0xff, 0xff, 0x58, 0x0, 0x0, 0x0, 0xc, + 0x1e, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0xd, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xc3, 0x6, 0x0, 0x0, 0x4c, 0xff, 0xff, 0x58, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xcd, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xcb, 0x49, 0x2, + 0x4c, 0xff, 0xff, 0x58, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x69, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xe3, 0xb6, 0xff, 0xff, 0x58, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x5, 0xc6, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xde, 0xa6, 0x60, 0x14, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x1c, 0xe7, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xfc, 0xbd, 0x60, 0xa, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x1c, 0xcb, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xee, 0x74, 0x6, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x8, 0x7e, 0xf0, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc9, + 0x1c, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0xa, 0x60, 0xb5, 0xf7, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xdb, 0x17, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x7, 0x3f, 0x98, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xb1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x4c, 0xff, 0xff, 0x7a, 0x74, 0xcc, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x3d, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x4c, 0xff, 0xff, 0x58, + 0x0, 0x0, 0x32, 0xcc, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xa0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x4c, 0xff, 0xff, 0x58, 0x0, 0x0, 0x0, 0xb, + 0xd9, 0xff, 0xff, 0xff, 0xff, 0xff, 0xde, 0x0, + 0x0, 0x0, 0x0, 0x0, 0xb, 0x39, 0x63, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x4c, 0xff, 0xff, 0x58, + 0x0, 0x0, 0x0, 0x0, 0x6e, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0x4, 0x1c, 0x7b, 0xab, 0xda, + 0xfe, 0xff, 0xff, 0x1e, 0x0, 0x0, 0x0, 0x0, + 0x4c, 0xff, 0xff, 0x58, 0x0, 0x0, 0x0, 0x0, + 0x48, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x12, + 0x20, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x6f, + 0x0, 0x0, 0x0, 0x0, 0x4c, 0xff, 0xff, 0x58, + 0x0, 0x0, 0x0, 0x0, 0x51, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xfe, 0x5, 0x0, 0xdb, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xe1, 0xa, 0x0, 0x0, 0x0, + 0x4c, 0xff, 0xff, 0x58, 0x0, 0x0, 0x0, 0x0, + 0x95, 0xff, 0xff, 0xff, 0xff, 0xff, 0xec, 0x0, + 0x0, 0x7d, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xb1, 0xa, 0x0, 0x0, 0x4c, 0xff, 0xff, 0x58, + 0x0, 0x0, 0x0, 0x3f, 0xf9, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xae, 0x0, 0x0, 0x15, 0xf6, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xdd, 0x69, 0x1c, + 0x4c, 0xff, 0xff, 0x65, 0x20, 0x4a, 0x9d, 0xfc, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x5c, 0x0, + 0x0, 0x0, 0x73, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xf8, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xd1, 0x3, 0x0, 0x0, 0x0, 0x2, 0xb5, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xf0, 0x31, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x7, 0xac, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xe6, + 0x39, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x58, 0xdc, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xf3, 0x94, 0x10, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x3e, + 0x86, 0xb9, 0xdf, 0xef, 0xfc, 0xff, 0xff, 0xfd, + 0xf0, 0xe2, 0xc4, 0x93, 0x5b, 0xb, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x4c, 0xff, 0xff, 0x58, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x4c, 0xff, 0xff, 0x58, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x4c, 0xff, 0xff, 0x58, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x4c, 0xff, 0xff, 0x58, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, + + /* U+0025 "%" */ + 0x0, 0x0, 0x0, 0x0, 0x0, 0x3, 0x3a, 0x61, + 0x76, 0x73, 0x5d, 0x2b, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xb, 0x83, + 0xef, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xdd, + 0x5a, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x6a, 0xff, 0xff, 0xff, 0xff, 0xad, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x17, 0xd6, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xa0, 0x1, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x1c, 0xf2, 0xff, 0xff, 0xff, 0xef, + 0x19, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x2, 0xcb, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0x84, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0xb2, 0xff, 0xff, + 0xff, 0xff, 0x64, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x65, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xac, 0x5e, 0x64, 0xc8, 0xff, + 0xff, 0xff, 0xff, 0xf9, 0x24, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x57, + 0xff, 0xff, 0xff, 0xff, 0xbe, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0xd0, 0xff, 0xff, 0xff, 0xff, 0x94, 0x0, 0x0, + 0x0, 0x6, 0xcc, 0xff, 0xff, 0xff, 0xff, 0x8f, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x12, 0xe9, 0xff, 0xff, 0xff, 0xf6, 0x24, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x24, 0xff, 0xff, 0xff, 0xff, 0xfd, + 0x19, 0x0, 0x0, 0x0, 0x0, 0x57, 0xff, 0xff, + 0xff, 0xff, 0xe5, 0x1, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0xa0, 0xff, 0xff, 0xff, + 0xff, 0x76, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x5c, 0xff, 0xff, + 0xff, 0xff, 0xd4, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x15, 0xff, 0xff, 0xff, 0xff, 0xff, 0x22, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x44, 0xff, + 0xff, 0xff, 0xff, 0xce, 0x4, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x87, 0xff, 0xff, 0xff, 0xff, 0xab, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0xec, 0xff, 0xff, 0xff, + 0xff, 0x4e, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0xa, 0xdd, 0xff, 0xff, 0xff, 0xfb, 0x31, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0xa4, 0xff, 0xff, 0xff, 0xff, + 0x94, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xd4, + 0xff, 0xff, 0xff, 0xff, 0x6e, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x8c, 0xff, 0xff, 0xff, 0xff, + 0x88, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xb1, 0xff, + 0xff, 0xff, 0xff, 0x87, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0xc8, 0xff, 0xff, 0xff, 0xff, 0x7b, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x34, 0xfc, 0xff, + 0xff, 0xff, 0xdb, 0x8, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0xbc, 0xff, 0xff, 0xff, 0xff, 0x81, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0xc2, 0xff, 0xff, + 0xff, 0xff, 0x87, 0x0, 0x0, 0x0, 0x0, 0x4, + 0xd0, 0xff, 0xff, 0xff, 0xfe, 0x40, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0xb6, 0xff, 0xff, 0xff, + 0xff, 0x84, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0xc5, 0xff, 0xff, 0xff, 0xff, 0x81, 0x0, 0x0, + 0x0, 0x0, 0x79, 0xff, 0xff, 0xff, 0xff, 0x9b, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xa9, + 0xff, 0xff, 0xff, 0xff, 0x8c, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0xcd, 0xff, 0xff, 0xff, 0xff, + 0x73, 0x0, 0x0, 0x0, 0x25, 0xf7, 0xff, 0xff, + 0xff, 0xe6, 0x10, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x95, 0xff, 0xff, 0xff, 0xff, 0xa1, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xe1, 0xff, + 0xff, 0xff, 0xff, 0x5e, 0x0, 0x0, 0x1, 0xc0, + 0xff, 0xff, 0xff, 0xff, 0x52, 0x0, 0x0, 0xb, + 0x4f, 0x91, 0xac, 0xbe, 0xb0, 0x96, 0x56, 0xe, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x69, 0xff, 0xff, + 0xff, 0xff, 0xc1, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x6, 0xfa, 0xff, 0xff, 0xff, 0xff, 0x31, 0x0, + 0x0, 0x66, 0xff, 0xff, 0xff, 0xff, 0xad, 0x0, + 0x0, 0x64, 0xea, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xee, 0x6b, 0x0, 0x0, 0x0, 0x0, + 0x37, 0xff, 0xff, 0xff, 0xff, 0xf1, 0x4, 0x0, + 0x0, 0x0, 0x0, 0x35, 0xff, 0xff, 0xff, 0xff, + 0xf7, 0x7, 0x0, 0x19, 0xf0, 0xff, 0xff, 0xff, + 0xef, 0x19, 0x0, 0x8a, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x8f, + 0x0, 0x0, 0x0, 0x2, 0xe4, 0xff, 0xff, 0xff, + 0xff, 0x54, 0x0, 0x0, 0x0, 0x0, 0x91, 0xff, + 0xff, 0xff, 0xff, 0xab, 0x0, 0x0, 0xae, 0xff, + 0xff, 0xff, 0xff, 0x64, 0x0, 0x56, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0x59, 0x0, 0x0, 0x0, 0x87, + 0xff, 0xff, 0xff, 0xff, 0xe6, 0x34, 0x0, 0x0, + 0x57, 0xfa, 0xff, 0xff, 0xff, 0xff, 0x49, 0x0, + 0x52, 0xff, 0xff, 0xff, 0xff, 0xbe, 0x0, 0x5, + 0xe1, 0xff, 0xff, 0xff, 0xff, 0xc8, 0x34, 0x8, + 0x2a, 0xbb, 0xff, 0xff, 0xff, 0xff, 0xe2, 0x5, + 0x0, 0x0, 0xf, 0xe9, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xe0, 0xe8, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xb9, 0x0, 0x10, 0xe6, 0xff, 0xff, 0xff, 0xf6, + 0x24, 0x0, 0x4a, 0xff, 0xff, 0xff, 0xff, 0xf2, + 0x16, 0x0, 0x0, 0x0, 0xe, 0xea, 0xff, 0xff, + 0xff, 0xff, 0x4a, 0x0, 0x0, 0x0, 0x45, 0xf8, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xdf, 0x1c, 0x0, 0x9b, 0xff, 0xff, + 0xff, 0xff, 0x76, 0x0, 0x0, 0x9c, 0xff, 0xff, + 0xff, 0xff, 0xa4, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x95, 0xff, 0xff, 0xff, 0xff, 0x9c, 0x0, 0x0, + 0x0, 0x0, 0x44, 0xe1, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xc2, 0x20, 0x0, 0x40, + 0xfe, 0xff, 0xff, 0xff, 0xce, 0x4, 0x0, 0x0, + 0xce, 0xff, 0xff, 0xff, 0xff, 0x6c, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x5d, 0xff, 0xff, 0xff, 0xff, + 0xce, 0x0, 0x0, 0x0, 0x0, 0x0, 0xa, 0x68, + 0xb7, 0xe2, 0xf7, 0xf1, 0xda, 0xa2, 0x4d, 0x0, + 0x0, 0x8, 0xda, 0xff, 0xff, 0xff, 0xfb, 0x31, + 0x0, 0x0, 0x2, 0xf7, 0xff, 0xff, 0xff, 0xff, + 0x4a, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3b, 0xff, + 0xff, 0xff, 0xff, 0xf7, 0x2, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x88, 0xff, 0xff, 0xff, + 0xff, 0x88, 0x0, 0x0, 0x0, 0x10, 0xff, 0xff, + 0xff, 0xff, 0xff, 0x35, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x26, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x30, 0xfb, + 0xff, 0xff, 0xff, 0xdb, 0x8, 0x0, 0x0, 0x0, + 0x1d, 0xff, 0xff, 0xff, 0xff, 0xff, 0x2d, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x1e, 0xff, 0xff, 0xff, + 0xff, 0xff, 0x1c, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x3, 0xcc, 0xff, 0xff, 0xff, 0xfe, 0x40, 0x0, + 0x0, 0x0, 0x0, 0x24, 0xff, 0xff, 0xff, 0xff, + 0xff, 0x29, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1a, + 0xff, 0xff, 0xff, 0xff, 0xff, 0x24, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x74, 0xff, 0xff, 0xff, 0xff, + 0x9b, 0x0, 0x0, 0x0, 0x0, 0x0, 0x19, 0xff, + 0xff, 0xff, 0xff, 0xff, 0x2f, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x20, 0xff, 0xff, 0xff, 0xff, 0xff, + 0x18, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x22, 0xf5, 0xff, + 0xff, 0xff, 0xe6, 0x10, 0x0, 0x0, 0x0, 0x0, + 0x0, 0xc, 0xff, 0xff, 0xff, 0xff, 0xff, 0x3a, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x2d, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xa, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0xbc, 0xff, 0xff, 0xff, 0xff, 0x52, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0xec, 0xff, 0xff, + 0xff, 0xff, 0x52, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x46, 0xff, 0xff, 0xff, 0xff, 0xe9, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x61, 0xff, 0xff, 0xff, 0xff, 0xad, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0xbe, 0xff, 0xff, 0xff, 0xff, 0x7c, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x72, 0xff, 0xff, 0xff, 0xff, + 0xba, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x16, 0xed, 0xff, 0xff, + 0xff, 0xef, 0x19, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x80, 0xff, 0xff, 0xff, 0xff, + 0xbf, 0x0, 0x0, 0x0, 0x0, 0x0, 0xb9, 0xff, + 0xff, 0xff, 0xff, 0x7c, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xa9, + 0xff, 0xff, 0xff, 0xff, 0x64, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x28, 0xff, + 0xff, 0xff, 0xff, 0xfe, 0x44, 0x0, 0x0, 0x0, + 0x41, 0xfe, 0xff, 0xff, 0xff, 0xfe, 0x21, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x4d, 0xff, 0xff, 0xff, 0xff, 0xbe, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0xb3, 0xff, 0xff, 0xff, 0xff, 0xf6, + 0x92, 0x67, 0x8e, 0xf5, 0xff, 0xff, 0xff, 0xff, + 0xaa, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0xe, 0xe3, 0xff, 0xff, 0xff, + 0xf6, 0x24, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x22, 0xf2, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xed, 0x1b, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x96, 0xff, + 0xff, 0xff, 0xff, 0x76, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x3c, 0xf3, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xee, 0x32, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x3b, 0xfe, 0xff, 0xff, 0xff, 0xce, 0x4, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x1e, 0xa9, 0xfa, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xf8, 0xa1, 0x18, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0xe, 0x4e, 0x6a, 0x7a, 0x6a, 0x4c, + 0xc, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + + /* U+0026 "&" */ + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x1, 0x48, 0x97, 0xcd, 0xe9, 0xf9, + 0xf4, 0xe3, 0xb8, 0x7c, 0x1c, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x38, 0xd7, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc, 0x91, 0xa, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x51, 0xfc, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xc5, 0xc, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x24, 0xf7, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0x9f, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0xa5, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xc5, 0x55, 0x2f, 0x45, 0x8f, 0xfb, 0xff, + 0xff, 0xff, 0xff, 0xfe, 0x27, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x7, 0xf4, 0xff, 0xff, 0xff, + 0xff, 0xc4, 0x4, 0x0, 0x0, 0x0, 0x0, 0x61, + 0xff, 0xff, 0xff, 0xff, 0xff, 0x77, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x35, 0xff, 0xff, 0xff, + 0xff, 0xff, 0x3e, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0xe8, 0xff, 0xff, 0xff, 0xff, 0x9e, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x4c, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xb, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0xca, 0xff, 0xff, 0xff, 0xff, 0xab, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x51, 0xff, + 0xff, 0xff, 0xff, 0xfa, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x8, 0xef, 0xff, 0xff, 0xff, 0xff, + 0x8e, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3e, + 0xff, 0xff, 0xff, 0xff, 0xff, 0x1a, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x7e, 0xff, 0xff, 0xff, 0xff, + 0xff, 0x56, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x14, 0xff, 0xff, 0xff, 0xff, 0xff, 0x56, 0x0, + 0x0, 0x0, 0x0, 0x73, 0xfe, 0xff, 0xff, 0xff, + 0xff, 0xe1, 0x4, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0xdb, 0xff, 0xff, 0xff, 0xff, 0xaa, + 0x0, 0x0, 0x2e, 0xbb, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xfb, 0x3f, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x8d, 0xff, 0xff, 0xff, 0xff, + 0xfa, 0x4b, 0xad, 0xfe, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xfc, 0x61, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x32, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xf1, 0x4c, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xc3, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xb2, 0x1e, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0xf, 0x82, 0xf2, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xcd, 0x45, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x5b, 0xeb, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xcf, + 0x52, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x18, 0x7b, 0x25, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0xa, 0xaa, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0x75, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x63, 0xff, 0xff, 0xcd, 0x76, 0x20, 0x0, + 0x0, 0x0, 0x0, 0x0, 0xe, 0xcb, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xf2, 0x18, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0xad, 0xff, 0xff, 0xff, 0xff, 0xe5, + 0x0, 0x0, 0x0, 0x0, 0x2, 0xbb, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xec, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xa9, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0xf, 0xf7, 0xff, 0xff, 0xff, 0xff, + 0x96, 0x0, 0x0, 0x0, 0x0, 0x6c, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xef, 0x5d, 0x10, 0xe9, + 0xff, 0xff, 0xff, 0xff, 0xff, 0x54, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x67, 0xff, 0xff, 0xff, 0xff, + 0xff, 0x44, 0x0, 0x0, 0x0, 0x7, 0xe9, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xe9, 0x29, 0x0, 0x0, + 0x62, 0xff, 0xff, 0xff, 0xff, 0xff, 0xeb, 0x1a, + 0x0, 0x0, 0x0, 0x0, 0xd0, 0xff, 0xff, 0xff, + 0xff, 0xe2, 0x3, 0x0, 0x0, 0x0, 0x53, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0x46, 0x0, 0x0, + 0x0, 0x1, 0xc3, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xc0, 0x3, 0x0, 0x0, 0x4c, 0xff, 0xff, 0xff, + 0xff, 0xff, 0x7e, 0x0, 0x0, 0x0, 0x0, 0x93, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xc7, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x24, 0xf5, 0xff, 0xff, 0xff, + 0xff, 0xff, 0x87, 0x0, 0x1, 0xcb, 0xff, 0xff, + 0xff, 0xff, 0xfa, 0x1a, 0x0, 0x0, 0x0, 0x0, + 0xb8, 0xff, 0xff, 0xff, 0xff, 0xff, 0x82, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x6d, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0x5c, 0x64, 0xff, 0xff, + 0xff, 0xff, 0xff, 0x99, 0x0, 0x0, 0x0, 0x0, + 0x0, 0xc7, 0xff, 0xff, 0xff, 0xff, 0xff, 0x6c, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xb0, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xf8, 0xed, 0xff, + 0xff, 0xff, 0xff, 0xfa, 0x1f, 0x0, 0x0, 0x0, + 0x0, 0x0, 0xb7, 0xff, 0xff, 0xff, 0xff, 0xff, + 0x7d, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x11, 0xdf, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0x92, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x9f, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xb8, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x2f, 0xf3, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xe9, 0xf, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x65, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xfd, 0x30, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x4f, 0xfd, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0x91, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x1a, 0xfd, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xdd, 0x20, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x4c, 0xf2, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x9c, + 0x1a, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x9b, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf0, 0x80, + 0x2e, 0x6, 0x1, 0x16, 0x54, 0xb9, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xfc, 0xc4, 0xa3, 0xaa, 0xc9, 0x85, 0x0, + 0x17, 0xe5, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xfd, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x8c, + 0x0, 0x0, 0x2b, 0xec, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xee, 0xbb, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0x8c, 0x0, 0x0, 0x0, 0x1c, 0xb8, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xfc, 0xa0, 0x15, 0x0, 0x62, + 0xf0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0x8c, 0x0, 0x0, 0x0, 0x0, 0x0, 0x40, + 0xa6, 0xf1, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xda, 0x84, 0x1e, 0x0, 0x0, 0x0, + 0x0, 0xe, 0x76, 0xd9, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0x8a, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x2, 0x29, 0x56, 0x69, 0x78, 0x77, + 0x65, 0x4d, 0x17, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x1e, 0x54, 0x6d, + 0x7a, 0x69, 0x3d, 0x5, + + /* U+0027 "'" */ + 0x51, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x45, + 0x44, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x37, + 0x37, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x2a, + 0x2a, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x1d, + 0x1d, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x10, + 0x10, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x3, + 0x3, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf6, 0x0, + 0x0, 0xf6, 0xff, 0xff, 0xff, 0xff, 0xe9, 0x0, + 0x0, 0xe9, 0xff, 0xff, 0xff, 0xff, 0xdc, 0x0, + 0x0, 0xdc, 0xff, 0xff, 0xff, 0xff, 0xcf, 0x0, + 0x0, 0xcf, 0xff, 0xff, 0xff, 0xff, 0xc2, 0x0, + 0x0, 0xc2, 0xff, 0xff, 0xff, 0xff, 0xb5, 0x0, + 0x0, 0x64, 0x8c, 0x8c, 0x8c, 0x8c, 0x5d, 0x0, + + /* U+0028 "(" */ + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x94, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x46, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x3e, 0xfe, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xa2, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x8, 0xdb, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xec, 0x14, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x79, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0x69, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x16, 0xf2, 0xff, 0xff, 0xff, 0xff, 0xff, 0xd4, + 0x3, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x93, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x4a, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x15, 0xf6, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xce, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x83, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0x55, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x5, 0xea, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xe2, 0x2, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x4e, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0x87, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0xab, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x29, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x6, 0xf3, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xd9, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0x93, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x82, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0x4e, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0xb5, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0x18, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0xe3, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xe8, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0xf, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xb9, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x2d, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x99, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x47, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0x7e, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x5f, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0x63, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x6c, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0x55, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x74, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0x4c, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x7c, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0x43, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x7c, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0x44, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x74, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x4c, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x6c, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x54, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x5e, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0x62, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x45, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0x7c, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x2b, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0x96, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0xd, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xb5, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0xe0, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xe3, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0xb2, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0x11, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x7e, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0x47, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x3b, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x8b, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x4, + 0xf1, 0xff, 0xff, 0xff, 0xff, 0xff, 0xd1, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xa5, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x23, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x48, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0x81, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x3, 0xe5, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xdf, 0x2, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x7a, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0x55, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x10, 0xf3, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xcc, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x8a, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0x49, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x11, 0xee, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xd2, 0x2, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x72, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0x64, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x6, 0xd7, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xe8, 0x11, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x3b, 0xfd, 0xff, 0xff, 0xff, 0xff, + 0xff, 0x9f, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x93, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0x45, + + /* U+0029 ")" */ + 0xa0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0x3c, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x11, + 0xe6, 0xff, 0xff, 0xff, 0xff, 0xff, 0xd8, 0x7, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x4f, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x85, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xb9, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xf8, 0x20, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x2c, 0xfc, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xa8, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x9d, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xfe, 0x33, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x26, 0xfd, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xab, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0xae, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xfd, 0x23, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x40, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0x8f, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x1, 0xe0, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xe9, 0x4, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x83, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0x4d, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x33, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0x9c, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x1, 0xea, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xe1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0xa6, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0x25, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x70, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x59, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x40, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x88, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x12, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xb5, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xf2, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xd3, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0xd6, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xed, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0xbb, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0x6, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0xae, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0x12, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0xa5, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0x1b, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x9c, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0x23, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x9d, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x23, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xa6, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x1a, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xae, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0x12, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0xbd, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xfe, 0x6, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0xd9, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xeb, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0xf4, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xd1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x16, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xb3, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x45, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x85, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x75, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x56, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xac, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0x22, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x3, 0xef, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xde, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x38, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0x99, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x8c, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0x48, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x3, 0xe6, 0xff, 0xff, 0xff, 0xff, 0xff, 0xe6, + 0x3, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x48, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x8b, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xb9, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xfb, 0x20, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x2f, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xa6, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0xa8, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xfe, 0x2f, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x36, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xa2, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0xc2, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf7, 0x1e, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x58, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0x81, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x13, 0xea, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xd6, 0x7, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0xa2, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xfe, 0x3b, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, + + /* U+002A "*" */ + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xc3, + 0xff, 0xff, 0xff, 0xff, 0x6b, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0xb2, 0xff, 0xff, 0xff, 0xff, + 0x59, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xa1, + 0xff, 0xff, 0xff, 0xff, 0x48, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x90, 0xff, 0xff, 0xff, 0xff, + 0x37, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x48, 0x89, 0x1d, 0x0, 0x0, 0x0, 0x7e, + 0xff, 0xff, 0xff, 0xff, 0x25, 0x0, 0x0, 0x1, + 0x49, 0xa0, 0x0, 0x0, 0x0, 0xa9, 0xff, 0xfb, + 0xa8, 0x39, 0x0, 0x6d, 0xff, 0xff, 0xff, 0xff, + 0x14, 0x8, 0x65, 0xd6, 0xff, 0xff, 0x35, 0x0, + 0xb, 0xf5, 0xff, 0xff, 0xff, 0xff, 0xc9, 0xa3, + 0xff, 0xff, 0xff, 0xff, 0x85, 0xea, 0xff, 0xff, + 0xff, 0xff, 0x8d, 0x0, 0x57, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xe3, 0x1, + 0xae, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0x3d, 0x13, 0x51, 0x90, 0xcf, + 0xfd, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xef, 0xb3, 0x74, 0x35, 0x3, + 0x0, 0x0, 0x0, 0x0, 0x10, 0x54, 0xf5, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xb1, 0x30, 0x2, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x1, 0xa8, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xf6, 0x37, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x90, 0xff, 0xff, 0xff, + 0xff, 0xda, 0xfe, 0xff, 0xff, 0xff, 0xea, 0x22, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x77, + 0xff, 0xff, 0xff, 0xff, 0xfd, 0x34, 0x9f, 0xff, + 0xff, 0xff, 0xff, 0xd9, 0x12, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x5e, 0xff, 0xff, 0xff, 0xff, 0xff, + 0x9b, 0x0, 0x19, 0xf3, 0xff, 0xff, 0xff, 0xff, + 0xc3, 0x7, 0x0, 0x0, 0x0, 0x25, 0xfa, 0xff, + 0xff, 0xff, 0xff, 0xef, 0x15, 0x0, 0x0, 0x78, + 0xff, 0xff, 0xff, 0xff, 0xff, 0x8f, 0x0, 0x0, + 0x0, 0x0, 0x42, 0xde, 0xff, 0xff, 0xff, 0x6d, + 0x0, 0x0, 0x0, 0x7, 0xde, 0xff, 0xff, 0xfe, + 0x96, 0xc, 0x0, 0x0, 0x0, 0x0, 0x0, 0xb, + 0x92, 0xfd, 0xd2, 0x3, 0x0, 0x0, 0x0, 0x0, + 0x52, 0xff, 0xdb, 0x3f, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x3b, 0x38, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x69, 0x9, 0x0, + 0x0, 0x0, 0x0, 0x0, + + /* U+002B "+" */ + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x11, 0x70, 0x70, 0x70, 0x70, 0x70, 0x26, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x28, 0xff, 0xff, 0xff, 0xff, + 0xff, 0x58, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x28, 0xff, 0xff, + 0xff, 0xff, 0xff, 0x58, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x28, + 0xff, 0xff, 0xff, 0xff, 0xff, 0x58, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x28, 0xff, 0xff, 0xff, 0xff, 0xff, 0x58, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x28, 0xff, 0xff, 0xff, 0xff, + 0xff, 0x58, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x28, 0xff, 0xff, + 0xff, 0xff, 0xff, 0x58, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x28, + 0xff, 0xff, 0xff, 0xff, 0xff, 0x58, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x28, 0xff, 0xff, 0xff, 0xff, 0xff, 0x58, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x28, 0xff, 0xff, 0xff, 0xff, + 0xff, 0x58, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x6c, 0x78, 0x78, 0x78, + 0x78, 0x78, 0x78, 0x78, 0x78, 0x8d, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xa6, 0x78, 0x78, 0x78, 0x78, + 0x78, 0x78, 0x78, 0x78, 0x78, 0x12, 0xe8, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x28, + 0xe8, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0x28, 0xe8, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0x28, 0xe8, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0x28, 0xe8, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x28, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x28, 0xff, 0xff, 0xff, 0xff, 0xff, 0x58, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x28, 0xff, 0xff, 0xff, 0xff, + 0xff, 0x58, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x28, 0xff, 0xff, + 0xff, 0xff, 0xff, 0x58, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x28, + 0xff, 0xff, 0xff, 0xff, 0xff, 0x58, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x28, 0xff, 0xff, 0xff, 0xff, 0xff, 0x58, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x28, 0xff, 0xff, 0xff, 0xff, + 0xff, 0x58, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x28, 0xff, 0xff, + 0xff, 0xff, 0xff, 0x58, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x28, + 0xff, 0xff, 0xff, 0xff, 0xff, 0x58, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x28, 0xff, 0xff, 0xff, 0xff, 0xff, 0x58, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x28, 0xff, 0xff, 0xff, 0xff, + 0xff, 0x58, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, + + /* U+002C "," */ + 0x3c, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x41, + 0x80, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x8c, + 0x80, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x8c, + 0x80, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x8c, + 0x80, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x8c, + 0x80, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x8c, + 0x80, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x89, + 0x80, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x7d, + 0x0, 0x0, 0x0, 0x67, 0xff, 0xff, 0xff, 0x6e, + 0x0, 0x0, 0x0, 0x84, 0xff, 0xff, 0xff, 0x56, + 0x0, 0x0, 0x0, 0xbf, 0xff, 0xff, 0xff, 0x27, + 0x0, 0x0, 0x16, 0xfc, 0xff, 0xff, 0xf2, 0x2, + 0x0, 0x0, 0x7b, 0xff, 0xff, 0xff, 0xa1, 0x0, + 0x0, 0xe, 0xee, 0xff, 0xff, 0xff, 0x43, 0x0, + 0x0, 0x8f, 0xff, 0xff, 0xff, 0xc5, 0x0, 0x0, + 0x41, 0xfe, 0xff, 0xff, 0xfe, 0x34, 0x0, 0x0, + + /* U+002D "-" */ + 0xb, 0xf8, 0xf8, 0xf8, 0xf8, 0xf8, 0xf8, 0xf8, + 0xf8, 0xf8, 0xf8, 0xf8, 0xf8, 0xa2, 0xc, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xa8, 0xc, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xa8, 0xc, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xa8, + 0xc, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xa8, 0xc, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xa8, + + /* U+002E "." */ + 0x47, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x36, + 0x98, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x74, + 0x98, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x74, + 0x98, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x74, + 0x98, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x74, + 0x98, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x74, + 0x98, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x74, + 0x98, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x74, + + /* U+002F "/" */ + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x80, + 0xff, 0xff, 0xff, 0xff, 0xff, 0x50, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0xb1, 0xff, 0xff, + 0xff, 0xff, 0xff, 0x20, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0xe1, 0xff, 0xff, 0xff, 0xff, + 0xef, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x12, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x42, 0xff, + 0xff, 0xff, 0xff, 0xff, 0x90, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x73, 0xff, 0xff, 0xff, + 0xff, 0xff, 0x61, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0xa3, 0xff, 0xff, 0xff, 0xff, 0xff, + 0x31, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0xd3, 0xff, 0xff, 0xff, 0xff, 0xfa, 0x6, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x8, 0xfb, 0xff, + 0xff, 0xff, 0xff, 0xd1, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x34, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xa1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x65, 0xff, 0xff, 0xff, 0xff, 0xff, 0x72, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x95, + 0xff, 0xff, 0xff, 0xff, 0xff, 0x42, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0xc6, 0xff, 0xff, + 0xff, 0xff, 0xff, 0x12, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x2, 0xf3, 0xff, 0xff, 0xff, 0xff, + 0xe2, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x26, 0xff, 0xff, 0xff, 0xff, 0xff, 0xb2, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x57, 0xff, + 0xff, 0xff, 0xff, 0xff, 0x83, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x87, 0xff, 0xff, 0xff, + 0xff, 0xff, 0x53, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0xb8, 0xff, 0xff, 0xff, 0xff, 0xff, + 0x23, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0xe8, 0xff, 0xff, 0xff, 0xff, 0xf2, 0x1, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x19, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xc4, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x49, 0xff, 0xff, 0xff, 0xff, + 0xff, 0x94, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x79, 0xff, 0xff, 0xff, 0xff, 0xff, 0x64, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xaa, + 0xff, 0xff, 0xff, 0xff, 0xff, 0x34, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0xda, 0xff, 0xff, + 0xff, 0xff, 0xfc, 0x8, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0xc, 0xfe, 0xff, 0xff, 0xff, 0xff, + 0xd5, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x3b, 0xff, 0xff, 0xff, 0xff, 0xff, 0xa5, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x6c, 0xff, + 0xff, 0xff, 0xff, 0xff, 0x75, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x9c, 0xff, 0xff, 0xff, + 0xff, 0xff, 0x45, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0xcc, 0xff, 0xff, 0xff, 0xff, 0xff, + 0x15, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x4, + 0xf8, 0xff, 0xff, 0xff, 0xff, 0xe6, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x2d, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xb6, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x5e, 0xff, 0xff, 0xff, 0xff, + 0xff, 0x86, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x8e, 0xff, 0xff, 0xff, 0xff, 0xff, 0x56, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xbf, + 0xff, 0xff, 0xff, 0xff, 0xff, 0x27, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0xee, 0xff, 0xff, + 0xff, 0xff, 0xf4, 0x2, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x1f, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xc7, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x50, 0xff, 0xff, 0xff, 0xff, 0xff, 0x97, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3a, 0x80, + 0x80, 0x80, 0x80, 0x80, 0x39, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, + + /* U+0030 "0" */ + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x16, 0x4a, 0x6b, 0x7a, 0x79, 0x69, 0x45, 0xf, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x3, 0x61, 0xcb, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfb, + 0xb7, 0x42, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x27, 0xd0, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xa2, 0x9, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x2f, 0xec, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xc1, 0x9, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x11, 0xe1, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0x9a, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x95, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xfe, 0xe9, 0xed, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0x3c, 0x0, 0x0, + 0x0, 0x1a, 0xfa, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xfe, 0x83, 0x13, 0x0, 0x0, 0x24, 0xb0, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xbd, 0x0, 0x0, + 0x0, 0x7d, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0x7f, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3, 0xc1, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x29, 0x0, + 0x0, 0xd2, 0xff, 0xff, 0xff, 0xff, 0xff, 0xea, + 0x9, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3c, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x7f, 0x0, + 0x17, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x9d, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, + 0xe8, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc8, 0x0, + 0x50, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x5c, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0xa9, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfb, 0xa, + 0x7e, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x35, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x84, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x34, + 0xa5, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x12, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x62, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x5e, + 0xc2, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfb, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x4d, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x7c, + 0xd9, 0xff, 0xff, 0xff, 0xff, 0xff, 0xee, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x3f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x96, + 0xea, 0xff, 0xff, 0xff, 0xff, 0xff, 0xe3, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x34, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xa7, + 0xf6, 0xff, 0xff, 0xff, 0xff, 0xff, 0xdc, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x2d, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xb4, + 0xfb, 0xff, 0xff, 0xff, 0xff, 0xff, 0xd9, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x2b, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xba, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xd8, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x29, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xbe, + 0xfb, 0xff, 0xff, 0xff, 0xff, 0xff, 0xda, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x2b, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xba, + 0xf5, 0xff, 0xff, 0xff, 0xff, 0xff, 0xdd, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x2e, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xb3, + 0xe7, 0xff, 0xff, 0xff, 0xff, 0xff, 0xe5, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x36, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xa4, + 0xd4, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf1, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x44, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x91, + 0xb9, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0x3, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x54, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x75, + 0x99, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x19, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x6d, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x55, + 0x6d, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x3d, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x93, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x28, + 0x3a, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x66, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0xbd, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf1, 0x3, + 0x5, 0xf4, 0xff, 0xff, 0xff, 0xff, 0xff, 0xa8, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xa, + 0xf8, 0xff, 0xff, 0xff, 0xff, 0xff, 0xb3, 0x0, + 0x0, 0xad, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf0, + 0xe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x5c, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x65, 0x0, + 0x0, 0x51, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0x8d, 0x0, 0x0, 0x0, 0x0, 0x0, 0x10, 0xdc, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xf6, 0x11, 0x0, + 0x0, 0x3, 0xdd, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0x90, 0x1e, 0x0, 0x4, 0x40, 0xce, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0x97, 0x0, 0x0, + 0x0, 0x0, 0x57, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xf6, 0xfc, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xf4, 0x19, 0x0, 0x0, + 0x0, 0x0, 0x0, 0xae, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0x64, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0xd, 0xca, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0x8c, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0xd, 0xab, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xf8, 0x71, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x49, 0xbe, + 0xfd, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf3, + 0x9b, 0x23, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x14, 0x4b, 0x6d, 0x7b, 0x78, 0x63, 0x3a, 0x6, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + + /* U+0031 "1" */ + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x12, + 0xa3, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x8c, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x51, 0xe8, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x8c, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x15, 0xa8, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x8c, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x56, 0xea, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x8c, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x17, 0xad, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x8c, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x4a, 0xed, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x8c, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x98, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xb4, + 0x75, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x8c, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x98, 0xff, 0xff, 0xff, 0xff, 0xe8, 0x57, 0x0, + 0x58, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x8c, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x98, 0xff, 0xff, 0xff, 0x9d, 0x11, 0x0, 0x0, + 0x58, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x8c, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x98, 0xff, 0xda, 0x41, 0x0, 0x0, 0x0, 0x0, + 0x58, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x8c, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x93, 0x86, 0x8, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x58, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x8c, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x9, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x58, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x8c, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x58, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x8c, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x58, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x8c, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x58, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x8c, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x58, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x8c, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x58, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x8c, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x58, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x8c, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x58, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x8c, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x58, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x8c, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x58, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x8c, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x58, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x8c, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x58, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x8c, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x58, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x8c, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x58, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x8c, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x58, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x8c, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x58, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x8c, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x58, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x8c, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x58, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x8c, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x1b, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, + 0x6d, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x9a, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0xd, + 0xd8, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x68, + 0xd8, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x68, + 0xd8, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x68, + 0xd8, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x68, + 0xd8, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x68, + + /* U+0032 "2" */ + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x1, 0x29, 0x58, 0x6a, 0x7a, 0x74, 0x64, 0x4d, + 0x1b, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x2c, + 0x97, 0xee, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xe4, 0x88, 0x21, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x8, 0x8f, + 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xfa, 0x7d, 0x4, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xb, 0xc5, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xb1, 0x3, 0x0, 0x0, 0x0, 0x0, 0x0, 0xb6, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0x92, 0x0, 0x0, 0x0, 0x0, 0x5b, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xfd, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xfc, 0x2b, 0x0, 0x0, 0x1, + 0xe0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xee, + 0x6a, 0x1b, 0x1, 0x5, 0x33, 0xa3, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0x9b, 0x0, 0x0, + 0x40, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf5, + 0x2c, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x8d, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xe3, 0x0, + 0x0, 0x8f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0x8c, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x10, 0xf8, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0x18, 0x0, 0xc0, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0x31, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0xcb, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0x2d, 0x0, 0x8f, 0xa0, 0xa0, 0xa0, 0xa0, + 0xa0, 0x9e, 0x3, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0xb9, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0x38, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0xd1, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0x21, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x1d, 0xfe, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xfd, 0x8, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x96, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xbe, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x41, 0xfd, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0x67, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x25, 0xeb, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xe0, 0x8, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x23, 0xe3, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x55, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x30, 0xe8, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x9e, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x4b, 0xf2, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc8, 0x8, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x6e, 0xfd, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xcd, 0x10, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x2, 0x92, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc0, 0x11, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x6, 0xab, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xa1, 0x6, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x9, 0xb9, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc, 0x72, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x8, 0xba, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xed, 0x44, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x3, 0xb2, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xd5, 0x22, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x98, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xba, 0xf, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x67, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xab, 0x5, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x2a, 0xf7, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xb1, 0x3, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0xc9, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xd6, 0xd, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x61, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x48, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x4, 0xe0, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfa, 0xac, + 0xac, 0xac, 0xac, 0xac, 0xac, 0xac, 0xac, 0xac, + 0xac, 0xac, 0xac, 0xac, 0xac, 0xac, 0x89, 0x3c, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xcc, + 0x40, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xcc, 0x40, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xcc, 0x40, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xcc, 0x40, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xcc, + + /* U+0033 "3" */ + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x4, 0x30, 0x5a, 0x6c, 0x7b, 0x72, 0x63, 0x49, + 0x16, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x42, + 0xaa, 0xf5, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xdc, 0x7e, 0x1b, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1e, 0xb7, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xf5, 0x71, 0x2, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x31, 0xec, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xa1, 0x2, 0x0, 0x0, 0x0, 0x0, 0x22, 0xee, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0x84, 0x0, 0x0, 0x0, 0x1, 0xbe, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xfc, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xf9, 0x25, 0x0, 0x0, 0x47, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xd7, + 0x58, 0x12, 0x0, 0xd, 0x4c, 0xcd, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0x89, 0x0, 0x0, + 0xab, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc9, + 0xb, 0x0, 0x0, 0x0, 0x0, 0x0, 0x8, 0xc8, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xd4, 0x0, + 0x1, 0xf1, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, + 0x2a, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x3c, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf8, + 0x0, 0x24, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xcb, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x2, 0xf2, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0x10, 0x5, 0x23, 0x36, 0x49, 0x5c, 0x70, + 0x83, 0x5e, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0xdd, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xa, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0xec, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xed, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x2b, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xaf, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x2, 0xb3, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0x4a, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x22, 0xb0, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xb4, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x94, 0x94, 0x97, 0xa7, 0xd1, 0xfe, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xc9, 0x12, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xfb, 0x8e, 0xa, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xfd, 0xca, 0x7f, 0x1c, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xf8, 0xc5, 0x96, 0x49, 0x5, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xe1, + 0x5b, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0x97, 0x1, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x2, 0xe, 0x2d, 0x65, 0xc6, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0x7f, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x70, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xfb, 0x22, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0xa1, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x8c, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x3c, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xd0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x14, + 0x5, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x15, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xef, 0x70, 0xa2, 0xb9, 0xd0, 0xe6, 0xfb, + 0xff, 0x46, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x18, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xf8, 0xa6, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0x8a, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x3b, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xe4, 0x74, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xeb, 0x10, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x8e, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xc9, 0x22, 0xfe, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xb6, 0xa, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x3e, 0xf8, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0x88, 0x0, 0xbc, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xda, + 0x6b, 0x2c, 0x14, 0x1b, 0x42, 0x95, 0xfa, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x39, 0x0, + 0x30, 0xfb, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xb6, 0x0, + 0x0, 0x0, 0x7b, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xed, 0x25, + 0x0, 0x0, 0x0, 0x0, 0x82, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf1, 0x37, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x4c, 0xe2, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xbc, 0x1f, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x9, 0x5f, 0xbf, 0xfa, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xef, 0xa4, 0x3f, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x7, 0x37, 0x5d, 0x6c, + 0x7a, 0x75, 0x66, 0x53, 0x26, 0x1, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, + + /* U+0034 "4" */ + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x17, 0xee, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf4, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0xa9, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xf4, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x4c, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf4, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0xc, 0xe2, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xf4, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x92, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf4, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x37, + 0xfd, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xf4, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x5, 0xd2, 0xff, 0xff, 0xff, 0xff, + 0xfb, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf4, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7b, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xa6, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xf4, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x26, 0xf7, 0xff, 0xff, 0xff, 0xff, 0xae, + 0x7b, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf4, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x1, 0xc0, 0xff, 0xff, + 0xff, 0xff, 0xf5, 0x1f, 0x8b, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xf4, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x64, 0xff, 0xff, 0xff, 0xff, 0xff, 0x77, 0x0, + 0x95, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf4, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x18, 0xef, 0xff, 0xff, 0xff, + 0xff, 0xcd, 0x4, 0x0, 0x97, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xf4, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xaa, + 0xff, 0xff, 0xff, 0xff, 0xfa, 0x2f, 0x0, 0x0, + 0x98, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf4, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x4d, 0xff, 0xff, 0xff, 0xff, 0xff, + 0x81, 0x0, 0x0, 0x0, 0x98, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xf4, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0xd, 0xe3, 0xff, + 0xff, 0xff, 0xff, 0xd3, 0x6, 0x0, 0x0, 0x0, + 0x98, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf4, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x93, 0xff, 0xff, 0xff, 0xff, 0xfc, 0x34, + 0x0, 0x0, 0x0, 0x0, 0x98, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xf4, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x38, 0xfd, 0xff, 0xff, + 0xff, 0xff, 0x89, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x98, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf4, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x5, + 0xd3, 0xff, 0xff, 0xff, 0xff, 0xd8, 0x8, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x98, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xf4, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x7c, 0xff, 0xff, 0xff, 0xff, + 0xfd, 0x3b, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x98, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf4, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x27, 0xf8, + 0xff, 0xff, 0xff, 0xff, 0x91, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x98, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xf4, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x1, 0xc1, 0xff, 0xff, 0xff, 0xff, 0xdd, + 0xb, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x98, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf4, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x65, 0xff, 0xff, + 0xff, 0xff, 0xfe, 0x42, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x98, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xf4, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x16, 0xef, 0xff, 0xff, 0xff, 0xff, 0xac, 0x1c, + 0x1c, 0x1c, 0x1c, 0x1c, 0x1c, 0x1c, 0x1c, 0x1c, + 0xa3, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf5, 0x1c, + 0x1c, 0x1c, 0x1c, 0xf, 0x40, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x8c, + 0x40, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0x8c, 0x40, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x8c, + 0x40, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0x8c, 0x40, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x8c, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x98, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf4, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x98, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xf4, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x98, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf4, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x98, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xf4, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x98, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf4, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x98, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xf4, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x98, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf4, 0x0, + 0x0, 0x0, 0x0, 0x0, + + /* U+0035 "5" */ + 0x0, 0x0, 0x48, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x68, + 0x0, 0x0, 0x0, 0x0, 0x58, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0x68, 0x0, 0x0, 0x0, 0x0, 0x67, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0x68, 0x0, 0x0, 0x0, 0x0, + 0x77, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0x68, 0x0, 0x0, + 0x0, 0x0, 0x86, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x68, + 0x0, 0x0, 0x0, 0x0, 0x96, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xef, 0x1c, 0x1c, 0x1c, 0x1c, 0x1c, + 0x1c, 0x1c, 0x1c, 0x1c, 0x1c, 0x1c, 0x1c, 0x1c, + 0x1c, 0xb, 0x0, 0x0, 0x0, 0x0, 0xa5, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xde, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0xb5, 0xff, 0xff, 0xff, 0xff, 0xff, 0xce, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0xc5, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xbf, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0xd4, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xb0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xe4, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xa0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0xf3, 0xff, 0xff, 0xff, 0xff, 0xff, 0x91, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x3, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0x81, 0x0, 0x20, 0x83, 0xc4, 0xe8, 0xfa, 0xec, + 0xd6, 0xa5, 0x5b, 0xd, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x12, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0x7b, 0x94, 0xfc, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xec, 0x74, 0x4, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x22, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xf9, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xbd, 0x11, 0x0, 0x0, 0x0, 0x0, 0x32, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xca, 0x6, 0x0, 0x0, + 0x0, 0x41, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x91, + 0x0, 0x0, 0x0, 0x51, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xfb, 0xbe, 0x9b, 0x9e, + 0xc6, 0xfd, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xfb, 0x1f, 0x0, 0x0, 0x60, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xa3, 0x16, 0x0, + 0x0, 0x0, 0x0, 0x28, 0xc9, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0x8e, 0x0, 0x0, 0x55, + 0xc8, 0xc8, 0xc8, 0xc8, 0xc8, 0xc8, 0x80, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xc, 0xd8, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xdb, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x4a, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0x1b, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x1, 0xec, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0x42, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xbd, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0x55, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0xac, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x62, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0xb8, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0x51, 0x0, 0x0, 0x0, 0x0, 0x2, 0x13, + 0x28, 0x18, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0xda, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0x3c, 0x42, 0xbf, 0xd4, 0xe9, + 0xfc, 0xff, 0xff, 0xa1, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x20, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xfd, 0x14, 0x2e, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xf5, 0x16, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x98, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xcc, 0x0, + 0x2, 0xe8, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xb7, 0x6, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x60, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0x7a, 0x0, 0x0, 0x80, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xd8, 0x61, 0x20, 0x4, 0x8, + 0x3a, 0xa3, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xec, 0xe, 0x0, 0x0, 0x14, 0xeb, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xfd, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0x69, 0x0, 0x0, 0x0, 0x0, + 0x50, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0x9a, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x63, 0xfc, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0x9a, 0x5, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x41, 0xd7, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xea, 0x5f, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x5, 0x5c, 0xbc, 0xfb, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xfc, 0xcb, 0x6d, 0x9, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x9, 0x38, + 0x5f, 0x6f, 0x7c, 0x71, 0x5e, 0x45, 0xe, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + + /* U+0036 "6" */ + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x25, 0x54, 0x71, 0x7c, 0x71, 0x60, + 0x35, 0x7, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0xd, 0x79, 0xdd, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xf4, 0x9f, 0x2a, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x49, 0xe7, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xfa, 0x78, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x69, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0x84, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x54, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0x48, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x1b, 0xf2, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xf2, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xdb, 0x3, 0x0, 0x0, 0x0, + 0x0, 0xa7, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xed, 0x68, 0xc, 0x0, 0x12, 0x7a, 0xf7, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0x55, 0x0, 0x0, + 0x0, 0x27, 0xfd, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xee, 0x2b, 0x0, 0x0, 0x0, 0x0, 0x0, 0x60, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xb0, 0x0, + 0x0, 0x0, 0x8d, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0x5d, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0xd1, 0xff, 0xff, 0xff, 0xfc, 0xdc, 0xac, + 0x0, 0x0, 0x0, 0xe5, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xda, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x4e, 0x79, 0x52, 0x2a, 0x6, 0x0, + 0x0, 0x0, 0x0, 0x2e, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0x76, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x6a, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0x32, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x9c, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xf4, 0x2, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xc5, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xd2, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x7, 0x9, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xe6, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xb3, 0x0, 0x0, + 0x12, 0x69, 0xc1, 0xeb, 0xff, 0xff, 0xf3, 0xd0, + 0x8b, 0x30, 0x0, 0x0, 0x0, 0x0, 0x0, 0x2, + 0xfd, 0xff, 0xff, 0xff, 0xff, 0xff, 0x9f, 0x0, + 0x55, 0xed, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xfe, 0xa7, 0x12, 0x0, 0x0, 0x0, + 0x12, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x96, + 0x72, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xd9, 0x20, 0x0, + 0x0, 0x1d, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xcb, 0xfc, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xd0, + 0x7, 0x0, 0x24, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0x87, 0x0, 0x26, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xfe, 0x9d, 0x37, 0xc, + 0xa, 0x31, 0x8f, 0xfb, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xf1, 0xe, 0x22, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0x61, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x4f, 0xfe, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0x62, 0x18, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xac, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x9e, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xa0, 0x6, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x48, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3b, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xd4, 0x0, + 0xee, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x19, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x8, 0xfd, 0xff, 0xff, 0xff, 0xff, 0xff, 0xe9, + 0x0, 0xcc, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0x11, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0xef, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xf9, 0x0, 0xa0, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0x22, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0xf0, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xf2, 0x0, 0x6a, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0x50, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x8, 0xfd, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xdf, 0x0, 0x27, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0x9d, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x39, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xc5, 0x0, 0x0, 0xd6, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xf5, 0x1c, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x95, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0x89, 0x0, 0x0, 0x72, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xbe, 0x6, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x36, 0xfa, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0x48, 0x0, 0x0, + 0xd, 0xec, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xc8, 0x38, 0x0, 0x0, 0xb, 0x65, 0xef, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xda, 0x2, 0x0, + 0x0, 0x0, 0x64, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xf1, 0xe3, 0xfa, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x60, 0x0, + 0x0, 0x0, 0x0, 0x0, 0xab, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xab, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x9, 0xb8, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc3, 0xd, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x5, + 0x88, 0xfc, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xfd, 0x94, 0x5, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x28, 0x9b, 0xf1, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xed, 0xa0, 0x28, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x3, 0x34, 0x5e, + 0x75, 0x7c, 0x6c, 0x59, 0x30, 0x1, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, + + /* U+0037 "7" */ + 0xd8, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x98, + 0xd8, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x98, + 0xd8, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x98, + 0xd8, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x98, + 0xd8, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x98, + 0x91, 0xac, 0xac, 0xac, 0xac, 0xac, 0xac, 0xac, + 0xac, 0xac, 0xac, 0xac, 0xac, 0xac, 0xac, 0xac, + 0xac, 0xf4, 0xff, 0xff, 0xff, 0xff, 0xff, 0x81, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x51, 0xff, 0xff, 0xff, 0xff, 0xff, 0xe8, 0xf, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x15, + 0xe9, 0xff, 0xff, 0xff, 0xff, 0xff, 0x5d, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xaa, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xc1, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x54, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xfc, 0x2d, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x12, 0xe8, 0xff, + 0xff, 0xff, 0xff, 0xff, 0x92, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x9e, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xea, 0x10, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x3f, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0x63, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x4, 0xd5, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xd1, 0x2, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x73, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0x47, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x18, 0xf2, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xba, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x99, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0x34, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x28, 0xfc, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xb9, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0xa9, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0x3f, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x26, 0xfd, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc6, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x98, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x5c, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xf, + 0xf4, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf0, 0x9, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x6c, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x97, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xc9, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x39, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x23, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xeb, 0x2, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x71, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xa4, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xbc, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0x5a, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x5, 0xf5, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0x1d, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x36, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xef, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x63, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xc4, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x8b, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0x98, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0xa8, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0x7d, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0xbf, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0x6f, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0xcd, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0x61, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0xd4, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0x53, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + + /* U+0038 "8" */ + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x6, 0x32, 0x5a, 0x6b, 0x7a, 0x75, 0x67, 0x53, + 0x25, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3, + 0x51, 0xb6, 0xf9, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xf0, 0x9f, 0x3b, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x2b, 0xc9, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xaa, 0x17, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x3a, 0xf4, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xde, 0x1d, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x1b, 0xf0, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xd5, 0x5, + 0x0, 0x0, 0x0, 0x0, 0xa4, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xcf, 0x78, 0x57, 0x5c, + 0x88, 0xe6, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0x74, 0x0, 0x0, 0x0, 0x11, 0xfb, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0x94, 0x1, 0x0, + 0x0, 0x0, 0x0, 0xe, 0xc2, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xdb, 0x0, 0x0, 0x0, 0x58, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xe2, 0x5, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x24, 0xfe, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x26, 0x0, + 0x0, 0x7c, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0x94, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0xd2, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0x4a, 0x0, 0x0, 0x91, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0x71, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0xb2, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0x60, 0x0, 0x0, 0x8a, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0x6d, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0xad, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0x59, 0x0, 0x0, 0x66, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x85, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xc1, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x36, 0x0, + 0x0, 0x22, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xc3, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x6, 0xf0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xec, + 0x4, 0x0, 0x0, 0x0, 0xb5, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0x3f, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x65, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0x82, 0x0, 0x0, 0x0, 0x0, 0x24, 0xf4, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xef, 0x5b, 0x6, + 0x0, 0x0, 0xa, 0x6c, 0xf7, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xda, 0xa, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x48, 0xf7, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xf5, 0xd7, 0xd9, 0xf9, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xe3, 0x23, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x2e, 0xc7, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xfc, 0xa4, 0x14, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x4d, 0xd8, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xb9, 0x2f, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x36, 0xb5, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc, + 0xae, 0x30, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x78, 0xfc, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xfb, 0x71, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x76, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xe5, 0x6b, 0x22, 0x6, 0xd, 0x32, 0x85, + 0xf5, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x6c, + 0x0, 0x0, 0x0, 0x32, 0xfb, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xdd, 0x19, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x30, 0xf3, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xf8, 0x26, 0x0, 0x0, 0xaf, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0x4a, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x76, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0x98, 0x0, 0xd, 0xfc, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xea, 0x1, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x19, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xe9, 0x0, + 0x43, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xbc, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0xeb, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0x1f, 0x5c, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xab, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0xdc, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0x35, 0x60, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xb3, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xe5, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0x36, 0x4b, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xd1, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x6, + 0xfa, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x20, + 0x2e, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfb, + 0x13, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x38, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xfa, 0x8, 0x1, 0xe8, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0x80, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0xa1, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xbd, 0x0, 0x0, 0x96, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xfa, 0x5d, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x6a, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0x6a, 0x0, 0x0, 0x1b, + 0xf5, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xcd, 0x83, 0x65, 0x64, 0x82, 0xcf, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xdc, 0x6, 0x0, + 0x0, 0x0, 0x69, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf9, 0x41, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x7a, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf9, + 0x52, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x45, 0xe0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xcd, 0x2c, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x7, 0x59, 0xbc, 0xf8, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf3, + 0xaf, 0x49, 0x2, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x5, 0x32, 0x59, 0x6a, 0x79, 0x78, 0x68, 0x57, + 0x2c, 0x2, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, + + /* U+0039 "9" */ + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x1, 0x2c, 0x56, 0x68, 0x7a, 0x76, 0x62, 0x3b, + 0x7, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x2e, + 0xa3, 0xec, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xf5, 0xa4, 0x2f, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xd, 0xa7, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xfd, 0x8c, 0x5, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xd7, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xb5, + 0x7, 0x0, 0x0, 0x0, 0x0, 0x0, 0xa, 0xd0, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0x9c, 0x0, 0x0, 0x0, 0x0, 0x0, 0x93, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xf8, 0xe3, 0xf6, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0x4b, 0x0, 0x0, 0x0, 0x1b, + 0xf8, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xe8, + 0x58, 0x6, 0x0, 0x3, 0x4c, 0xde, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xd5, 0x1, 0x0, 0x0, + 0x81, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf2, + 0x28, 0x0, 0x0, 0x0, 0x0, 0x0, 0x18, 0xe1, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x4b, 0x0, + 0x0, 0xc5, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0x77, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x4e, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xaa, + 0x0, 0x7, 0xfa, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xfe, 0x16, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0xdd, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xf1, 0x4, 0x1e, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xdb, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x94, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0x38, 0x31, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xbf, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x68, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0x6b, 0x3a, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xb7, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x56, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0x95, 0x2b, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xc5, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x52, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xb6, 0x18, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xed, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x6c, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xce, 0x0, + 0xec, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x35, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0xac, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xe0, + 0x0, 0xb3, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xa9, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x27, 0xfb, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xeb, 0x0, 0x66, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0x63, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x1a, 0xd5, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xf1, 0x0, 0xb, 0xf0, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xa2, 0x44, 0x26, 0x37, + 0x7b, 0xec, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xf0, 0x0, 0x0, 0x79, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xea, 0x0, 0x0, 0x4, 0xca, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xe5, 0xde, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xdf, 0x0, 0x0, 0x0, + 0x14, 0xce, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xf3, 0x3a, 0xde, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xcd, 0x0, 0x0, + 0x0, 0x0, 0xe, 0x96, 0xfd, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xc6, 0x2b, 0x0, + 0xeb, 0xff, 0xff, 0xff, 0xff, 0xff, 0xb6, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x28, 0x80, 0xc7, + 0xe6, 0xfa, 0xf3, 0xd2, 0x97, 0x3f, 0x0, 0x0, + 0xa, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x95, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x2c, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0x6f, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x64, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0x3d, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0xa8, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xf8, 0xa, 0x0, 0x0, 0x0, 0x0, 0x11, + 0x35, 0x59, 0x6f, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x15, 0xf7, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xb9, 0x0, 0x0, 0x60, 0xc9, 0xed, + 0xff, 0xff, 0xff, 0xff, 0x35, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x8d, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0x61, 0x0, 0x0, 0x4e, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xc6, 0x7, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x4e, 0xfd, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xed, 0xc, 0x0, 0x0, 0x8, + 0xec, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc5, + 0x3d, 0x7, 0x0, 0x1e, 0x87, 0xfc, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0x7b, 0x0, 0x0, 0x0, + 0x0, 0x7d, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xfd, 0xf6, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xd9, 0x8, 0x0, 0x0, + 0x0, 0x0, 0xc, 0xdb, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xf4, 0x2f, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x33, 0xf1, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xf4, 0x41, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x32, 0xdd, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xd0, 0x2a, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x8, 0x73, 0xd3, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xfe, 0xc8, 0x5e, 0x2, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x1b, 0x4c, 0x6a, 0x78, + 0x7b, 0x6d, 0x4b, 0x16, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, + + /* U+003A ":" */ + 0x34, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xd8, + 0x34, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xd8, + 0x34, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xd8, + 0x34, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xd8, + 0x34, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xd8, + 0x34, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xd8, + 0x30, 0xf0, 0xf0, 0xf0, 0xf0, 0xf0, 0xf0, 0xca, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x2d, 0xe0, 0xe0, 0xe0, 0xe0, 0xe0, 0xe0, 0xbd, + 0x34, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xd8, + 0x34, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xd8, + 0x34, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xd8, + 0x34, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xd8, + 0x34, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xd8, + 0x34, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xd8, + + /* U+003B ";" */ + 0x28, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xe8, + 0x28, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xe8, + 0x28, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xe8, + 0x28, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xe8, + 0x28, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xe8, + 0x28, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xe8, + 0x25, 0xf0, 0xf0, 0xf0, 0xf0, 0xf0, 0xf0, 0xd9, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x23, 0xe0, 0xe0, 0xe0, 0xe0, 0xe0, 0xe0, 0xcb, + 0x28, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xe8, + 0x28, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xe8, + 0x28, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xe8, + 0x28, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xe8, + 0x28, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xe5, + 0x28, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xd9, + 0x0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xff, 0xca, + 0x0, 0x0, 0x0, 0x2d, 0xff, 0xff, 0xff, 0xb2, + 0x0, 0x0, 0x0, 0x6c, 0xff, 0xff, 0xff, 0x83, + 0x0, 0x0, 0x0, 0xbe, 0xff, 0xff, 0xff, 0x50, + 0x0, 0x0, 0x2e, 0xfe, 0xff, 0xff, 0xf2, 0xa, + 0x0, 0x0, 0xab, 0xff, 0xff, 0xff, 0x9e, 0x0, + 0x0, 0x43, 0xff, 0xff, 0xff, 0xf9, 0x26, 0x0, + 0xc, 0xdf, 0xff, 0xff, 0xff, 0x8a, 0x0, 0x0, + + /* U+003C "<" */ + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x3, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x1a, 0x79, 0xda, 0x28, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x6, + 0x53, 0xb5, 0xfc, 0xff, 0xff, 0x28, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x2d, + 0x8f, 0xeb, 0xff, 0xff, 0xff, 0xff, 0xff, 0x28, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x10, 0x69, + 0xcb, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0x28, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x43, 0xa5, + 0xf7, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0x28, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x1f, 0x7f, 0xdf, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xfe, 0xba, 0x14, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x8, 0x59, 0xbb, 0xfe, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xe3, 0x83, 0x20, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x34, 0x95, 0xef, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xfb, 0xb0, 0x4c, 0x3, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x14, 0x70, 0xd1, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xdb, 0x79, 0x18, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x9f, 0xf9, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xf8, 0xa6, 0x42, 0x1, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xe8, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xd3, 0x6f, 0x12, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0xe8, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xf3, 0x9d, 0x38, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0xe8, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xca, 0x65, 0xc, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0xe8, 0xff, 0xff, 0xff, + 0xfd, 0x7c, 0x3, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xe8, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xe6, 0x86, 0x23, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0xe8, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xfe, 0xbd, 0x59, 0x7, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0xe8, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xed, 0x91, 0x2d, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x7b, 0xe3, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xc9, 0x65, 0xd, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x2, + 0x48, 0xaa, 0xf8, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf4, 0x9d, + 0x39, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x12, 0x6e, 0xcf, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xd5, 0x71, 0x14, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x31, 0x93, 0xed, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf9, + 0xa9, 0x45, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x7, 0x57, 0xb9, + 0xfd, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xdf, 0x1a, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x1c, 0x7c, 0xdc, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x28, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x40, + 0xa2, 0xf5, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0x28, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0xd, 0x65, 0xc7, 0xff, 0xff, + 0xff, 0xff, 0xff, 0x28, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x29, 0x8b, 0xe8, 0xff, 0xff, 0x28, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x4, 0x4e, 0xb0, 0x24, + + /* U+003D "=" */ + 0xe8, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0x28, 0xe8, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0x28, 0xe8, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0x28, 0xe8, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x28, + 0xe8, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0x28, 0x6c, 0x78, 0x78, 0x78, 0x78, 0x78, + 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, + 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, + 0x78, 0x78, 0x78, 0x12, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x61, 0x6c, 0x6c, 0x6c, 0x6c, 0x6c, + 0x6c, 0x6c, 0x6c, 0x6c, 0x6c, 0x6c, 0x6c, 0x6c, + 0x6c, 0x6c, 0x6c, 0x6c, 0x6c, 0x6c, 0x6c, 0x6c, + 0x6c, 0x6c, 0x6c, 0x10, 0xe8, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0x28, 0xe8, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x28, + 0xe8, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0x28, 0xe8, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0x28, 0xe8, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0x28, + + /* U+003E ">" */ + 0x3, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0xd5, 0x91, 0x2f, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0xe8, 0xff, 0xff, 0xcd, + 0x6b, 0x11, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xe8, 0xff, + 0xff, 0xff, 0xff, 0xf8, 0xa7, 0x46, 0x2, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0xe8, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xe1, 0x82, 0x21, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0xe8, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xfe, 0xbe, 0x5b, 0x9, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x96, 0xf6, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xf0, 0x97, 0x35, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xf, + 0x6a, 0xce, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xd3, 0x72, + 0x15, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x33, 0x97, 0xf1, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xfa, 0xae, 0x4c, 0x3, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0xa, 0x60, 0xc5, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xe6, + 0x88, 0x26, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x29, 0x8e, 0xeb, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xc4, 0x15, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x6, 0x57, 0xbb, 0xfe, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x28, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x21, 0x84, + 0xe4, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0x28, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x3, 0x4d, 0xb1, 0xfb, 0xff, 0xff, + 0xff, 0xff, 0xff, 0x28, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x4e, + 0xef, 0xff, 0xff, 0xff, 0xff, 0x28, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x11, 0x6d, + 0xd1, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x28, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x41, 0xa5, + 0xf7, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0x28, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x19, 0x79, 0xdb, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0x28, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x3, 0x4c, 0xb1, 0xfb, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xf2, 0x9c, 0xf, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x22, 0x85, 0xe5, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xc2, 0x60, 0xb, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x7, 0x59, 0xbd, 0xfe, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xe4, 0x86, 0x24, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x2c, 0x90, 0xed, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xf9, 0xab, 0x49, 0x3, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0xb9, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xd0, 0x6f, 0x13, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xe8, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xee, 0x94, 0x32, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0xe8, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfd, + 0xba, 0x58, 0x7, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0xe8, 0xff, 0xff, 0xff, 0xff, 0xdd, + 0x7d, 0x1d, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0xe8, 0xff, 0xf5, 0xa3, + 0x41, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xb1, 0x67, + 0xe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + + /* U+003F "?" */ + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x12, 0x47, 0x61, 0x72, 0x7a, 0x6c, 0x5c, + 0x3b, 0xa, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x13, 0x76, 0xd5, 0xfe, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xfc, 0xcc, 0x6c, 0x10, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x2, 0x73, 0xf6, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xf1, 0x67, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0xd, 0xc0, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xae, 0x5, 0x0, 0x0, + 0x0, 0x0, 0xc, 0xc5, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xaa, + 0x0, 0x0, 0x0, 0x0, 0x97, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0x56, 0x0, 0x0, 0x3b, 0xfe, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xfd, 0xa4, 0x45, + 0x15, 0x9, 0x1b, 0x51, 0xbb, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xde, 0x0, 0x0, 0xaf, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf1, 0x41, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7f, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x33, + 0x17, 0xfb, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0x48, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0xc5, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0x74, 0x58, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xb9, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x69, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0x8f, 0x8d, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0x66, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x47, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xa2, 0x28, 0x3c, + 0x3c, 0x3c, 0x3c, 0x3c, 0x3c, 0x10, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x52, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x98, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x90, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0x71, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x1a, 0xf1, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0x2c, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0xc, 0xc8, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xc4, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x15, 0xc8, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xfb, 0x33, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x35, 0xe0, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x64, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x6e, + 0xfa, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc, + 0x65, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3, + 0x9b, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xea, 0x42, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x9d, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xc1, 0x1a, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x69, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0x8b, 0x3, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x14, 0xf2, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0x65, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x7a, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0x86, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xc9, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xe8, 0x8, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x2, 0xf9, 0xff, 0xff, 0xff, 0xff, 0xff, 0x97, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x8, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, + 0x7c, 0x37, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x2f, 0xa0, 0xa0, 0xa0, 0xa0, 0xa0, + 0xa0, 0x78, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x4c, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x4c, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xc0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x4c, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x4c, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x4c, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x4c, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xc0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + + /* U+0040 "@" */ + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x1d, 0x46, 0x57, 0x66, + 0x74, 0x6f, 0x65, 0x4f, 0x31, 0xa, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x21, 0x75, 0xbd, 0xed, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xfc, 0xd1, 0x8d, 0x3e, 0x1, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x3, 0x5a, 0xcb, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xd9, 0x6b, 0x6, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x5a, 0xd9, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xdf, + 0x4b, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x1a, 0xb4, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xdd, 0x97, 0x69, 0x3a, 0x21, 0x12, + 0x4, 0x8, 0x15, 0x33, 0x5d, 0x95, 0xe1, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0x96, 0x4, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x49, 0xee, 0xff, + 0xff, 0xff, 0xff, 0xf3, 0x8c, 0x30, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x43, 0xbd, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xbb, 0x9, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x5f, 0xfb, 0xff, 0xff, 0xff, 0xf9, 0x83, 0x12, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x38, 0xd9, 0xff, 0xff, 0xff, 0xff, 0xb8, + 0x4, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x6c, 0xff, 0xff, 0xff, 0xff, + 0xd1, 0x2e, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xd, 0xa9, + 0xff, 0xff, 0xff, 0xff, 0x8a, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x4c, 0xfd, + 0xff, 0xff, 0xff, 0xb0, 0x8, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x9d, 0xff, 0xff, 0xff, + 0xfe, 0x38, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x2c, 0xf3, 0xff, 0xff, 0xff, 0xa2, 0x3, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x5, 0xbc, 0xff, 0xff, 0xff, 0xca, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x3, 0xce, 0xff, 0xff, + 0xff, 0xbe, 0x4, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x7, 0x5c, 0xab, 0xde, 0xf7, 0xf8, + 0xdd, 0xa0, 0x36, 0x0, 0x0, 0x0, 0x2d, 0x64, + 0x64, 0x64, 0x23, 0x0, 0x0, 0x14, 0xf1, 0xff, + 0xff, 0xff, 0x43, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x76, 0xff, 0xff, 0xff, 0xe1, 0x14, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x53, 0xe6, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x8a, + 0x0, 0x0, 0xa2, 0xff, 0xff, 0xff, 0x32, 0x0, + 0x0, 0x0, 0x7e, 0xff, 0xff, 0xff, 0xab, 0x0, + 0x0, 0x0, 0x0, 0x1b, 0xf6, 0xff, 0xff, 0xff, + 0x4b, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x9, + 0xa6, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0x7a, 0x0, 0xe2, 0xff, + 0xff, 0xf3, 0x3, 0x0, 0x0, 0x0, 0xc, 0xec, + 0xff, 0xff, 0xf6, 0xb, 0x0, 0x0, 0x0, 0x8c, + 0xff, 0xff, 0xff, 0xb2, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x8, 0xba, 0xff, 0xff, 0xff, 0xff, + 0xd8, 0x8a, 0x68, 0x6e, 0x9f, 0xf4, 0xff, 0xff, + 0xf9, 0x44, 0xff, 0xff, 0xff, 0xbb, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x96, 0xff, 0xff, 0xff, 0x45, + 0x0, 0x0, 0x10, 0xf2, 0xff, 0xff, 0xff, 0x2b, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xb0, 0xff, + 0xff, 0xff, 0xf1, 0x5e, 0x1, 0x0, 0x0, 0x0, + 0x0, 0x18, 0xc2, 0xff, 0xff, 0xea, 0xff, 0xff, + 0xff, 0x80, 0x0, 0x0, 0x0, 0x0, 0x0, 0x4d, + 0xff, 0xff, 0xff, 0x7e, 0x0, 0x0, 0x71, 0xff, + 0xff, 0xff, 0xba, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x61, 0xff, 0xff, 0xff, 0xee, 0x30, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xe, 0xdb, + 0xff, 0xff, 0xff, 0xff, 0xff, 0x44, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x15, 0xff, 0xff, 0xff, 0xa3, + 0x0, 0x0, 0xc5, 0xff, 0xff, 0xff, 0x4c, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x17, 0xef, 0xff, 0xff, + 0xff, 0x4e, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x5c, 0xff, 0xff, 0xff, 0xff, + 0xfc, 0xc, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0xf2, 0xff, 0xff, 0xc1, 0x0, 0x17, 0xfd, 0xff, + 0xff, 0xf2, 0x6, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x83, 0xff, 0xff, 0xff, 0xbd, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x13, + 0xff, 0xff, 0xff, 0xff, 0xce, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0xe0, 0xff, 0xff, 0xce, + 0x0, 0x60, 0xff, 0xff, 0xff, 0xad, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x7, 0xea, 0xff, 0xff, 0xff, + 0x40, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0xf9, 0xff, 0xff, 0xff, + 0x92, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0xda, 0xff, 0xff, 0xd4, 0x0, 0x92, 0xff, 0xff, + 0xff, 0x68, 0x0, 0x0, 0x0, 0x0, 0x0, 0x53, + 0xff, 0xff, 0xff, 0xd4, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x8, + 0xff, 0xff, 0xff, 0xff, 0x57, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0xe5, 0xff, 0xff, 0xc6, + 0x0, 0xc0, 0xff, 0xff, 0xff, 0x3b, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x94, 0xff, 0xff, 0xff, 0x8f, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x25, 0xff, 0xff, 0xff, 0xff, + 0x1b, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0xf2, 0xff, 0xff, 0xb7, 0x0, 0xed, 0xff, 0xff, + 0xff, 0xf, 0x0, 0x0, 0x0, 0x0, 0x0, 0xd2, + 0xff, 0xff, 0xff, 0x4b, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x5c, + 0xff, 0xff, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x15, 0xff, 0xff, 0xff, 0xa4, + 0x4, 0xff, 0xff, 0xff, 0xef, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x1, 0xfc, 0xff, 0xff, 0xff, 0x1d, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x96, 0xff, 0xff, 0xff, 0xa4, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x47, + 0xff, 0xff, 0xff, 0x71, 0x12, 0xff, 0xff, 0xff, + 0xe1, 0x0, 0x0, 0x0, 0x0, 0x0, 0xe, 0xff, + 0xff, 0xff, 0xff, 0x7, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x2, 0xe7, + 0xff, 0xff, 0xff, 0x6d, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x83, 0xff, 0xff, 0xff, 0x37, + 0x20, 0xff, 0xff, 0xff, 0xd3, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x1f, 0xff, 0xff, 0xff, 0xf2, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x42, 0xff, 0xff, 0xff, 0xff, 0x3a, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xd9, + 0xff, 0xff, 0xf3, 0x5, 0x24, 0xff, 0xff, 0xff, + 0xd0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x20, 0xff, + 0xff, 0xff, 0xee, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xb3, 0xff, + 0xff, 0xff, 0xfe, 0xd, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x39, 0xff, 0xff, 0xff, 0x9a, 0x0, + 0x1d, 0xff, 0xff, 0xff, 0xda, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x11, 0xff, 0xff, 0xff, 0xfc, 0x6, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x35, 0xff, 0xff, 0xff, 0xff, 0xe1, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xb9, 0xff, + 0xff, 0xff, 0x33, 0x0, 0xd, 0xff, 0xff, 0xff, + 0xf0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0xf1, + 0xff, 0xff, 0xff, 0x36, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x7, 0xce, 0xff, 0xff, + 0xff, 0xff, 0xbf, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x4c, 0xff, 0xff, 0xff, 0xc0, 0x0, 0x0, + 0x0, 0xee, 0xff, 0xff, 0xff, 0x11, 0x0, 0x0, + 0x0, 0x0, 0x0, 0xbd, 0xff, 0xff, 0xff, 0x90, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x99, 0xff, 0xff, 0xdb, 0xff, 0xff, 0xac, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x1f, 0xed, 0xff, 0xff, + 0xfa, 0x2b, 0x0, 0x0, 0x0, 0xc6, 0xff, 0xff, + 0xff, 0x44, 0x0, 0x0, 0x0, 0x0, 0x0, 0x6e, + 0xff, 0xff, 0xff, 0xf9, 0x35, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x5, 0xa0, 0xff, 0xff, 0xd6, 0x83, + 0xff, 0xff, 0xc4, 0x0, 0x0, 0x0, 0x0, 0x2a, + 0xe2, 0xff, 0xff, 0xff, 0x85, 0x0, 0x0, 0x0, + 0x0, 0x8e, 0xff, 0xff, 0xff, 0x84, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x10, 0xf0, 0xff, 0xff, 0xff, + 0xf1, 0x76, 0x22, 0x6, 0x15, 0x5b, 0xd4, 0xff, + 0xff, 0xf6, 0x2e, 0x84, 0xff, 0xff, 0xfe, 0x5e, + 0xb, 0x2a, 0x86, 0xf5, 0xff, 0xff, 0xff, 0xac, + 0x2, 0x0, 0x0, 0x0, 0x0, 0x4b, 0xff, 0xff, + 0xff, 0xd7, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x5f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xf6, 0x45, 0x0, 0x5b, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xb8, 0x7, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x6, 0xef, 0xff, 0xff, 0xff, 0x4b, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x7a, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xd9, + 0x30, 0x0, 0x0, 0xa, 0xe2, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xfc, 0x7d, 0x2, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x91, 0xff, + 0xff, 0xff, 0xca, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x3d, 0xc0, 0xfd, 0xff, 0xff, 0xff, + 0xff, 0xe3, 0x76, 0x7, 0x0, 0x0, 0x0, 0x0, + 0x2a, 0xcf, 0xff, 0xff, 0xff, 0xff, 0xf9, 0xac, + 0x31, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x21, 0xfb, 0xff, 0xff, 0xff, 0x55, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x13, 0x42, 0x57, 0x54, 0x2e, 0x1, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x2f, 0x56, + 0x59, 0x3f, 0xd, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x90, + 0xff, 0xff, 0xff, 0xf1, 0x27, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x10, 0xe3, 0xff, 0xff, 0xff, + 0xd7, 0x11, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x2, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x3e, 0xfc, 0xff, 0xff, 0xff, 0xdb, 0x2b, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x3, 0x5f, 0xdd, 0x21, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x64, 0xff, 0xff, + 0xff, 0xff, 0xf3, 0x60, 0x3, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xc, 0x69, + 0xdc, 0xff, 0xff, 0x94, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x6c, 0xfd, 0xff, 0xff, 0xff, 0xff, + 0xd8, 0x5c, 0x4, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x6, + 0x49, 0x9d, 0xf3, 0xff, 0xff, 0xff, 0xff, 0xf6, + 0x15, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x50, + 0xef, 0xff, 0xff, 0xff, 0xff, 0xff, 0xec, 0xa0, + 0x65, 0x38, 0x18, 0x9, 0x2, 0x8, 0x16, 0x31, + 0x54, 0x82, 0xbb, 0xf5, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xfc, 0x99, 0x13, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x1e, 0xb6, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xf9, 0x9f, 0x27, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x48, 0xc3, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xdd, 0x7c, + 0x1a, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x30, 0x88, 0xd5, 0xfe, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf2, 0xbc, + 0x7d, 0x31, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x11, + 0x41, 0x63, 0x7d, 0x88, 0x8d, 0x87, 0x7b, 0x64, + 0x48, 0x21, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, + + /* U+0041 "A" */ + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x62, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0x79, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xbe, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xd4, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1c, + 0xfd, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0x30, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x76, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0x8b, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0xd1, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xe4, 0x2, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x2c, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xfe, 0xf7, 0xff, 0xff, 0xff, 0xff, + 0xff, 0x42, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x89, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xce, 0xb2, 0xff, 0xff, + 0xff, 0xff, 0xff, 0x9e, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, + 0xe2, 0xff, 0xff, 0xff, 0xff, 0xff, 0x80, 0x65, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xf1, 0x8, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x40, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0x30, 0x17, 0xfd, 0xff, 0xff, 0xff, 0xff, 0xff, + 0x54, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x9c, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xd9, 0x0, 0x0, 0xc4, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xb0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x7, 0xf0, 0xff, 0xff, + 0xff, 0xff, 0xff, 0x82, 0x0, 0x0, 0x73, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xf9, 0x11, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x54, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0x2b, 0x0, 0x0, + 0x1e, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0x67, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0xb0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xd5, 0x0, + 0x0, 0x0, 0x0, 0xc5, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xc2, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x11, 0xf9, 0xff, 0xff, 0xff, 0xff, 0xff, + 0x7e, 0x0, 0x0, 0x0, 0x0, 0x6d, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xfe, 0x1f, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x67, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0x27, 0x0, 0x0, 0x0, 0x0, 0x18, + 0xfd, 0xff, 0xff, 0xff, 0xff, 0xff, 0x79, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0xc3, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xd0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0xbe, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xd4, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x20, 0xfe, + 0xff, 0xff, 0xff, 0xff, 0xff, 0x79, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x66, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0x30, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x7a, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x23, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x13, 0xfb, + 0xff, 0xff, 0xff, 0xff, 0xff, 0x8b, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0xd5, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xcc, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0xb7, 0xff, 0xff, 0xff, 0xff, 0xff, 0xe4, + 0x2, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x32, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0x75, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x5f, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0x42, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x8e, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0x88, 0x6c, 0x6c, 0x6c, + 0x6c, 0x6c, 0x6c, 0x6c, 0x6c, 0x7a, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0x9e, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x2, 0xe6, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf1, 0x8, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x45, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0x54, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0xa1, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xb0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x9, 0xf2, 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, 0x11, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x59, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0x67, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xb4, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x54, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x3c, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xc2, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x14, 0xfb, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf3, + 0x9, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0xe3, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xfe, 0x1f, 0x0, 0x0, + 0x0, 0x0, 0x6c, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xa7, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x8e, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x79, + 0x0, 0x0, 0x0, 0x0, 0xc8, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0x50, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x37, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xd4, 0x0, 0x0, 0x0, 0x23, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xf1, 0x7, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0xdf, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0x30, 0x0, 0x0, 0x7f, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xa3, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x89, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x8b, 0x0, + 0x0, 0xda, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0x4c, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x32, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xe4, 0x2, 0x37, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xef, 0x6, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0xdb, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0x42, 0x92, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0x9f, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x84, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0x9e, + + /* U+0042 "B" */ + 0xa8, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xfb, 0xee, 0xe2, 0xc9, 0xa0, 0x74, 0x2a, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xa8, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xd7, 0x5f, + 0x2, 0x0, 0x0, 0x0, 0x0, 0x0, 0xa8, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xcb, + 0x19, 0x0, 0x0, 0x0, 0x0, 0xa8, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xde, + 0x17, 0x0, 0x0, 0x0, 0xa8, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xab, + 0x0, 0x0, 0x0, 0xa8, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xb5, 0x5c, 0x5c, 0x5c, 0x5c, 0x5c, + 0x5c, 0x5c, 0x5c, 0x66, 0x7f, 0xb4, 0xf9, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x2d, + 0x0, 0x0, 0xa8, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0x8c, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x1e, 0xc3, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x80, 0x0, + 0x0, 0xa8, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0x8c, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x10, 0xeb, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xb1, 0x0, 0x0, + 0xa8, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x8c, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x98, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xca, 0x0, 0x0, 0xa8, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x8c, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x72, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xcf, 0x0, 0x0, 0xa8, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0x8c, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x72, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xb9, 0x0, 0x0, 0xa8, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0x8c, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x9a, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0x85, 0x0, 0x0, 0xa8, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0x8c, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x12, 0xee, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0x2e, 0x0, 0x0, 0xa8, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0x8c, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1c, 0xc5, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xaf, 0x0, + 0x0, 0x0, 0xa8, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xb7, 0x60, 0x60, 0x60, 0x60, 0x60, 0x60, + 0x60, 0x60, 0x68, 0x7f, 0xb3, 0xf9, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xdd, 0x18, 0x0, 0x0, + 0x0, 0xa8, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xc4, 0x1d, 0x0, 0x0, 0x0, 0x0, + 0xa8, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfa, 0xbc, + 0x55, 0x2, 0x0, 0x0, 0x0, 0x0, 0x0, 0xa8, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xe7, 0xb0, 0x7a, + 0x2a, 0x0, 0x0, 0x0, 0x0, 0x0, 0xa8, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xc0, 0x38, 0x0, 0x0, 0x0, 0xa8, 0xff, 0xff, + 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, 0x70, 0x0, 0x0, 0xa8, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0x8c, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0xa, 0x1c, 0x44, + 0x89, 0xec, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0x5c, 0x0, 0xa8, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0x8c, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0xe, 0xb7, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xec, 0xe, 0xa8, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0x8c, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0xd, 0xe6, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0x67, 0xa8, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0x8c, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x91, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xa8, + 0xa8, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x8c, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x6f, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc6, 0xa8, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x8c, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7a, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xd0, 0xa8, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0x8c, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0xb3, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xb9, 0xa8, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0x8c, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x34, 0xfc, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0x98, 0xa8, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0x8c, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x4d, 0xea, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0x48, 0xa8, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xb7, 0x60, 0x60, 0x60, 0x60, 0x60, + 0x60, 0x60, 0x60, 0x60, 0x66, 0x74, 0x9a, 0xdc, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xdf, 0x4, 0xa8, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x44, + 0x0, 0xa8, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xfe, 0x6e, 0x0, 0x0, + 0xa8, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xe9, 0x54, 0x0, 0x0, 0x0, 0xa8, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xe5, + 0x84, 0xe, 0x0, 0x0, 0x0, 0x0, 0xa8, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, + 0xf3, 0xe6, 0xd4, 0xab, 0x7d, 0x3f, 0x2, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, + + /* U+0043 "C" */ + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x13, 0x3f, 0x5c, 0x70, + 0x7a, 0x7a, 0x6c, 0x5e, 0x40, 0x13, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x3f, 0x94, 0xdd, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xe3, + 0x95, 0x40, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x4d, 0xd2, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xcd, 0x48, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x13, 0xb0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x9e, 0x8, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x20, 0xdc, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xca, 0xd, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x16, 0xe0, 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, 0x5, 0x0, 0x0, 0x0, 0x0, + 0x1, 0xc1, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xfc, 0xc2, 0x79, 0x4e, 0x38, 0x2d, + 0x3d, 0x66, 0xa5, 0xf5, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0x81, 0x0, 0x0, 0x0, + 0x0, 0x6b, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xb9, 0x2b, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x11, 0x8f, 0xfd, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xf8, 0x25, 0x0, + 0x0, 0xb, 0xe9, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0x8f, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x48, + 0xf6, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x9d, + 0x0, 0x0, 0x69, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xa3, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x50, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xf5, 0x10, 0x0, 0xca, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xeb, 0x13, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0xaa, 0xff, 0xff, 0xff, 0xed, + 0xa9, 0x62, 0xd, 0x19, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0x80, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x37, 0xc9, 0x81, 0x39, + 0x3, 0x0, 0x0, 0x0, 0x5a, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xfe, 0x21, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x8b, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xd5, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xb4, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xa5, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xd0, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x78, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0xe4, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x66, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0xee, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0x57, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0xf2, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0x4f, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0xea, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0x5c, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0xde, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0x6a, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0xc4, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0x84, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xa4, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xb6, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x75, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xe9, 0x1, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x3d, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0x3f, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x96, 0x79, 0x1a, 0x0, 0x0, 0x0, + 0x0, 0x4, 0xf0, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xa1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x28, 0xfe, 0xff, 0xfc, 0xb5, 0x53, + 0x6, 0x0, 0x0, 0x9d, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xfb, 0x31, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0xb6, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xeb, 0x67, 0x0, 0x36, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xce, 0xa, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x69, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0x46, 0x0, 0x0, 0xb8, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc1, 0xc, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x5b, 0xfb, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xc9, 0x0, 0x0, 0x0, 0x2b, + 0xf9, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xde, 0x53, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x14, 0x99, 0xfe, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xfb, 0x34, 0x0, 0x0, 0x0, + 0x0, 0x75, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xe1, 0x96, 0x61, 0x4b, 0x3c, + 0x49, 0x6d, 0xac, 0xf8, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0x82, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0xa0, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xae, 0x3, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x2, 0x9a, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xb6, 0x7, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x64, + 0xf3, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xfd, 0x82, 0x2, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x19, 0x9b, 0xf8, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xbb, 0x34, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x16, 0x6f, 0xc0, 0xf7, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xe0, 0x8e, 0x35, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x5, 0x30, 0x52, 0x6c, 0x78, 0x7d, 0x70, 0x62, + 0x44, 0x14, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, + + /* U+0044 "D" */ + 0xa8, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xf9, 0xf1, 0xde, + 0xc3, 0x9d, 0x6d, 0x2d, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0xa8, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xe3, 0x85, 0x1e, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0xa8, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf9, 0x94, + 0xf, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0xa8, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xe4, 0x3c, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0xa8, 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, 0x57, 0x0, 0x0, 0x0, 0x0, 0x0, + 0xa8, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xcd, + 0x90, 0x90, 0x90, 0x90, 0x91, 0xa0, 0xb3, 0xd4, + 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xfb, 0x4a, 0x0, 0x0, 0x0, 0x0, + 0xa8, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x8c, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x15, 0x5e, 0xd5, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xee, 0x1f, 0x0, 0x0, 0x0, + 0xa8, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x8c, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x1, 0x68, 0xf9, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xb1, 0x0, 0x0, 0x0, + 0xa8, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x8c, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x3d, 0xf6, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0x3b, 0x0, 0x0, + 0xa8, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x8c, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x61, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xac, 0x0, 0x0, + 0xa8, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x8c, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xb9, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xf8, 0xd, 0x0, + 0xa8, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x8c, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x46, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x52, 0x0, + 0xa8, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x8c, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xe5, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x8a, 0x0, + 0xa8, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x8c, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xab, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xb9, 0x0, + 0xa8, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x8c, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x74, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xd8, 0x0, + 0xa8, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x8c, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x5d, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xef, 0x0, + 0xa8, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x8c, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x4c, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf8, 0x0, + 0xa8, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x8c, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x45, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfd, 0x0, + 0xa8, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x8c, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x55, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf6, 0x0, + 0xa8, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x8c, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x65, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xe7, 0x0, + 0xa8, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x8c, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x8d, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xca, 0x0, + 0xa8, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x8c, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xc3, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xa3, 0x0, + 0xa8, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x8c, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xe, 0xf6, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x6c, 0x0, + 0xa8, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x8c, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x6c, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x25, 0x0, + 0xa8, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x8c, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x7, 0xd9, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xd0, 0x0, 0x0, + 0xa8, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x8c, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x87, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0x5b, 0x0, 0x0, + 0xa8, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x8c, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x58, 0xfc, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xdc, 0x3, 0x0, 0x0, + 0xa8, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x8c, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x2, 0x6d, 0xfd, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0x5e, 0x0, 0x0, 0x0, + 0xa8, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x8c, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0xa, 0x51, 0xcb, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xa6, 0x0, 0x0, 0x0, 0x0, + 0xa8, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xd2, + 0x9c, 0x9c, 0x9c, 0x9c, 0x9c, 0x9d, 0xaf, 0xc7, + 0xf6, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xd7, 0xc, 0x0, 0x0, 0x0, 0x0, + 0xa8, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xe1, 0x24, 0x0, 0x0, 0x0, 0x0, 0x0, + 0xa8, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xca, 0x1d, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0xa8, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf7, 0x80, + 0x6, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0xa8, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xee, 0x8e, 0x1d, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0xa8, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfd, 0xf3, + 0xde, 0xbb, 0x88, 0x48, 0x5, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + + /* U+0045 "E" */ + 0xa8, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0x68, 0x0, 0xa8, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0x68, 0x0, 0xa8, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0x68, 0x0, 0xa8, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0x68, 0x0, 0xa8, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x68, + 0x0, 0xa8, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xcd, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, + 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, + 0x90, 0x90, 0x90, 0x90, 0x3a, 0x0, 0xa8, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0x8c, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0xa8, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0x8c, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0xa8, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x8c, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0xa8, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0x8c, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0xa8, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0x8c, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xa8, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x8c, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0xa8, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0x8c, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0xa8, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0x8c, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xa8, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0x8c, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0xa8, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xe8, 0x0, 0x0, 0x0, + 0xa8, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xe8, 0x0, 0x0, 0x0, 0xa8, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xe8, 0x0, + 0x0, 0x0, 0xa8, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xe8, 0x0, 0x0, 0x0, 0xa8, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xe8, 0x0, 0x0, 0x0, 0xa8, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xd2, 0x9c, 0x9c, 0x9c, 0x9c, + 0x9c, 0x9c, 0x9c, 0x9c, 0x9c, 0x9c, 0x9c, 0x9c, + 0x9c, 0x9c, 0x9c, 0x9c, 0x9c, 0x8d, 0x0, 0x0, + 0x0, 0xa8, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0x8c, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xa8, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0x8c, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0xa8, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0x8c, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0xa8, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x8c, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0xa8, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0x8c, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0xa8, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0x8c, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xa8, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x8c, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0xa8, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0x8c, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0xa8, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xcd, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, + 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, + 0x90, 0x90, 0x90, 0x90, 0x90, 0x3a, 0xa8, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0x68, 0xa8, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x68, + 0xa8, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0x68, 0xa8, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0x68, 0xa8, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x68, + + /* U+0046 "F" */ + 0xa8, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xb4, 0xa8, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xb4, 0xa8, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xb4, 0xa8, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xb4, + 0xa8, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xb4, 0xa8, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xcd, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, + 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, + 0x90, 0x90, 0x90, 0x65, 0xa8, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0x8c, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xa8, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0x8c, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0xa8, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x8c, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0xa8, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0x8c, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0xa8, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0x8c, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xa8, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0x8c, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0xa8, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x8c, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0xa8, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0x8c, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0xa8, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0x8c, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xa8, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0x8c, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0xa8, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x8c, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0xa8, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0x28, 0xa8, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0x28, 0xa8, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x28, + 0xa8, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0x28, 0xa8, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0x28, 0xa8, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xd4, 0xa0, 0xa0, 0xa0, 0xa0, + 0xa0, 0xa0, 0xa0, 0xa0, 0xa0, 0xa0, 0xa0, 0xa0, + 0xa0, 0xa0, 0xa0, 0xa0, 0xa0, 0x19, 0xa8, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0x8c, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0xa8, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x8c, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0xa8, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0x8c, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0xa8, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0x8c, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xa8, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0x8c, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0xa8, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x8c, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0xa8, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0x8c, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0xa8, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0x8c, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xa8, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0x8c, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0xa8, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x8c, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0xa8, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0x8c, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0xa8, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0x8c, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + + /* U+0047 "G" */ + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x4, 0x2d, 0x4e, 0x68, + 0x75, 0x7d, 0x74, 0x67, 0x58, 0x32, 0xb, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x1e, 0x78, 0xc2, 0xf8, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xfe, 0xd3, 0x85, 0x32, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x2a, 0xad, 0xfc, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xbc, 0x3d, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x4, 0x83, 0xfc, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xfe, 0x8d, 0x6, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0xe, 0xbc, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xbe, 0x9, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x8, 0xc5, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xb7, 0x2, 0x0, 0x0, 0x0, 0x0, 0x0, 0xa2, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xda, 0x92, 0x57, 0x41, 0x2d, 0x35, 0x4f, + 0x82, 0xd2, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0x73, 0x0, 0x0, 0x0, 0x0, + 0x51, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xda, 0x51, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x46, 0xd7, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xf7, 0x1f, 0x0, + 0x0, 0x4, 0xdb, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xbc, 0xb, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xa, + 0xb2, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0x90, 0x0, 0x0, 0x5a, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xc9, 0x7, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x6, 0xca, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xfa, 0xaf, 0x0, 0x0, 0xbf, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xf8, 0x2a, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x2a, 0xfd, 0xff, + 0xf2, 0xaa, 0x5b, 0x10, 0x0, 0x0, 0x12, 0xfc, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x98, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x69, 0x49, 0x7, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x54, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0x34, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x87, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xe1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0xb2, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xad, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xce, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0x7c, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0xe3, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x67, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0xed, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0x58, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x13, 0x60, 0x60, 0x60, + 0x60, 0x60, 0x60, 0x60, 0x60, 0x60, 0x60, 0x60, + 0x60, 0x60, 0x60, 0x4c, 0xf2, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0x4f, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x34, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xcc, 0xea, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0x5d, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x34, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xcc, + 0xdf, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x6c, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x34, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xcc, 0xc6, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0x87, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x34, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xcc, 0xa8, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xbb, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x34, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xcc, 0x7b, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xee, 0x2, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0xcc, 0xff, 0xff, 0xff, 0xff, 0xff, 0xcc, + 0x45, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0x4a, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0xcc, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xcc, 0x8, 0xf6, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xb0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0xcc, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xcc, 0x0, 0xaa, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0x43, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xcc, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xcc, 0x0, 0x45, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xe0, + 0x14, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0xcf, 0xff, 0xff, 0xff, 0xff, 0xff, 0xcc, + 0x0, 0x0, 0xc8, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xd5, 0x1a, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x14, 0xa1, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xcc, 0x0, 0x0, 0x39, 0xfd, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xea, 0x69, 0x3, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x2b, 0x95, 0xf2, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xcc, 0x0, 0x0, 0x0, 0x87, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xe7, 0x9d, 0x5e, 0x45, 0x32, 0x3c, 0x52, + 0x6c, 0xa3, 0xde, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xa4, 0x0, 0x0, + 0x0, 0x2, 0xb1, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xa4, 0x5, + 0x0, 0x0, 0x0, 0x0, 0x6, 0xac, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf4, 0x65, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, + 0x77, 0xf9, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfd, 0xa1, + 0x1e, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x23, 0xa8, 0xfc, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf1, 0x93, + 0x27, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1d, + 0x77, 0xc5, 0xf9, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xfd, 0xd4, 0x98, 0x4b, + 0x7, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x6, 0x31, 0x52, 0x6c, + 0x77, 0x7d, 0x76, 0x6b, 0x54, 0x34, 0xd, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, + + /* U+0048 "H" */ + 0xa8, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x8c, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x74, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xc0, 0xa8, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0x8c, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x74, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xc0, 0xa8, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0x8c, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x74, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xc0, 0xa8, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0x8c, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x74, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc0, + 0xa8, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x8c, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x74, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xc0, 0xa8, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0x8c, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x74, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xc0, 0xa8, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0x8c, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x74, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xc0, 0xa8, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0x8c, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x74, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc0, + 0xa8, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x8c, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x74, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xc0, 0xa8, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0x8c, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x74, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xc0, 0xa8, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0x8c, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x74, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xc0, 0xa8, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0x8c, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x74, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc0, + 0xa8, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x8c, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x74, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xc0, 0xa8, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0x8c, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x74, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xc0, 0xa8, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xfc, 0xf8, 0xf8, 0xf8, 0xf8, + 0xf8, 0xf8, 0xf8, 0xf8, 0xf8, 0xf8, 0xf8, 0xf8, + 0xf8, 0xf8, 0xfb, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xc0, 0xa8, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc0, + 0xa8, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xc0, 0xa8, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xc0, 0xa8, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xc0, 0xa8, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc0, + 0xa8, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x8c, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x74, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xc0, 0xa8, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0x8c, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x74, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xc0, 0xa8, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0x8c, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x74, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xc0, 0xa8, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0x8c, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x74, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc0, + 0xa8, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x8c, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x74, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xc0, 0xa8, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0x8c, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x74, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xc0, 0xa8, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0x8c, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x74, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xc0, 0xa8, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0x8c, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x74, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc0, + 0xa8, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x8c, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x74, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xc0, 0xa8, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0x8c, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x74, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xc0, 0xa8, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0x8c, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x74, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xc0, 0xa8, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0x8c, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x74, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc0, + 0xa8, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x8c, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x74, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xc0, 0xa8, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0x8c, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x74, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xc0, 0xa8, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0x8c, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x74, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xc0, + + /* U+0049 "I" */ + 0xa8, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x8c, + 0xa8, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x8c, + 0xa8, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x8c, + 0xa8, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x8c, + 0xa8, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x8c, + 0xa8, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x8c, + 0xa8, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x8c, + 0xa8, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x8c, + 0xa8, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x8c, + 0xa8, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x8c, + 0xa8, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x8c, + 0xa8, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x8c, + 0xa8, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x8c, + 0xa8, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x8c, + 0xa8, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x8c, + 0xa8, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x8c, + 0xa8, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x8c, + 0xa8, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x8c, + 0xa8, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x8c, + 0xa8, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x8c, + 0xa8, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x8c, + 0xa8, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x8c, + 0xa8, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x8c, + 0xa8, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x8c, + 0xa8, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x8c, + 0xa8, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x8c, + 0xa8, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x8c, + 0xa8, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x8c, + 0xa8, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x8c, + 0xa8, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x8c, + 0xa8, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x8c, + 0xa8, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x8c, + 0xa8, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x8c, + 0xa8, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x8c, + 0xa8, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x8c, + + /* U+004A "J" */ + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0xa8, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0x68, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0xa8, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0x68, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0xa8, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0x68, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0xa8, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0x68, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xa8, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0x68, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x70, + 0xac, 0xac, 0xac, 0xac, 0xac, 0xac, 0xee, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0x68, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xcc, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x68, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0xcc, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x68, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0xcc, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0x68, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0xcc, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0x68, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0xcc, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0x68, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0xcc, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0x68, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0xcc, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0x68, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xcc, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0x68, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xcc, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x68, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0xcc, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x68, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0xcc, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0x68, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0xcc, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0x68, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0xcc, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0x68, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0xcc, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0x68, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0xcc, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0x68, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xcc, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0x68, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xcc, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x68, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0xcc, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x67, + 0x0, 0x0, 0x0, 0x0, 0xa, 0x2f, 0x55, 0x76, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0xd1, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0x5c, 0x18, 0x94, 0xbb, 0xe1, 0xfe, 0xff, 0xff, + 0xff, 0x1f, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0xe3, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0x49, 0x9, 0xfa, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0x6b, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x13, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0x31, 0x0, 0xc5, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xd7, 0x3, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x6c, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xf3, 0x4, 0x0, 0x72, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0x90, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x22, 0xeb, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xb9, 0x0, 0x0, 0x13, 0xf8, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xbf, + 0x59, 0x33, 0x3b, 0x78, 0xec, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0x53, 0x0, 0x0, 0x0, + 0x8a, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xd5, 0x2, 0x0, 0x0, + 0x0, 0xa, 0xde, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xf6, 0x30, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x25, 0xe6, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xf8, 0x54, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x20, 0xbd, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xdd, 0x34, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x4d, 0xb1, 0xf9, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xfc, 0xca, 0x60, 0x4, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x6, 0x33, 0x5d, 0x6d, 0x7b, + 0x73, 0x61, 0x46, 0xe, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, + + /* U+004B "K" */ + 0xa8, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x8c, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x70, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xda, 0x1a, + 0x0, 0xa8, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0x8c, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x6b, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xdb, 0x1a, + 0x0, 0x0, 0xa8, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0x8c, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x65, 0xfe, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xdb, 0x1b, + 0x0, 0x0, 0x0, 0xa8, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0x8c, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x60, 0xfe, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xdc, 0x1c, + 0x0, 0x0, 0x0, 0x0, 0xa8, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0x8c, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x5b, 0xfd, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xdd, 0x1d, + 0x0, 0x0, 0x0, 0x0, 0x0, 0xa8, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0x8c, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x56, 0xfc, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xde, 0x1e, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xa8, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0x8c, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x51, 0xfb, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xdf, 0x1e, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xa8, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x8c, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x4c, 0xfa, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xe0, 0x1f, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0xa8, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x8c, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x47, 0xf8, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xe0, 0x20, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0xa8, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0x8c, 0x0, 0x0, 0x0, 0x0, 0x0, 0x43, 0xf7, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xe1, 0x21, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0xa8, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0x8c, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xf5, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xe2, 0x22, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0xa8, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0x8c, 0x0, 0x0, 0x0, 0x3b, 0xf3, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xe3, 0x23, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0xa8, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0x8c, 0x0, 0x0, 0x36, 0xf1, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xe4, 0x24, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0xa8, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0x8c, 0x0, 0x32, 0xef, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xe4, 0x24, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xa8, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0x8c, 0x2f, 0xed, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xef, 0x25, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xa8, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xb5, 0xeb, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, + 0x4e, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0xa8, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xf0, 0x26, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0xa8, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xd4, 0xb, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0xa8, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xa9, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0xa8, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xdd, 0x33, 0xbf, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x73, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0xa8, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xb4, 0x10, 0x0, + 0x17, 0xe6, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xfc, 0x40, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0xa8, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xfd, 0x7d, 0x1, 0x0, + 0x0, 0x0, 0x3d, 0xfb, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xe9, 0x1c, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xa8, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0x94, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x74, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xc8, 0x6, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xa8, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x8c, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xae, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x99, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0xa8, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x8c, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xf, + 0xdb, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0x62, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0xa8, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0x8c, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x2f, 0xf6, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xf8, 0x34, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0xa8, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0x8c, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x61, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xe1, 0x14, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0xa8, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0x8c, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x9c, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xbc, 0x3, 0x0, + 0x0, 0x0, 0x0, 0x0, 0xa8, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0x8c, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x8, 0xcf, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x89, + 0x0, 0x0, 0x0, 0x0, 0x0, 0xa8, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0x8c, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x22, 0xef, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0x53, 0x0, 0x0, 0x0, 0x0, 0xa8, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0x8c, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x4f, 0xfe, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xf3, 0x29, 0x0, 0x0, 0x0, 0xa8, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x8c, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x89, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xd8, 0xd, 0x0, 0x0, + 0xa8, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x8c, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x3, 0xc0, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xae, 0x0, + 0x0, 0xa8, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0x8c, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x18, + 0xe7, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0x79, 0x0, 0xa8, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0x8c, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x3e, 0xfc, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xfd, 0x45, + + /* U+004C "L" */ + 0xa8, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x8c, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0xa8, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0x8c, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0xa8, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0x8c, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xa8, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0x8c, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0xa8, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x8c, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0xa8, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0x8c, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0xa8, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0x8c, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xa8, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0x8c, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0xa8, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x8c, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0xa8, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0x8c, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0xa8, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0x8c, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xa8, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0x8c, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0xa8, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x8c, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0xa8, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0x8c, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0xa8, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0x8c, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xa8, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0x8c, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0xa8, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x8c, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0xa8, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0x8c, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0xa8, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0x8c, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xa8, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0x8c, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0xa8, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x8c, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0xa8, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0x8c, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0xa8, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0x8c, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xa8, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0x8c, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0xa8, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x8c, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0xa8, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0x8c, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0xa8, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0x8c, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xa8, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0x8c, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0xa8, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x8c, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0xa8, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xcd, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, + 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, + 0x90, 0x90, 0x90, 0x90, 0xa8, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xa8, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xa8, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xa8, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xa8, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + + /* U+004D "M" */ + 0xa8, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0x28, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x73, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0x4c, 0xa8, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x78, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0xc2, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x4c, + 0xa8, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xc8, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x13, 0xfc, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0x4c, 0xa8, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0x1a, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x5f, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x4c, + 0xa8, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0x69, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0xad, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0x4c, 0xa8, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xba, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x7, 0xf4, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x4c, + 0xa8, 0xff, 0xff, 0xff, 0xff, 0xff, 0xea, 0xff, + 0xff, 0xff, 0xff, 0xfa, 0x10, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x4a, + 0xff, 0xff, 0xff, 0xff, 0xfd, 0xed, 0xff, 0xff, + 0xff, 0xff, 0xff, 0x4c, 0xa8, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xb1, 0xff, 0xff, 0xff, 0xff, 0xff, + 0x5b, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x99, 0xff, 0xff, 0xff, 0xff, + 0xcc, 0xe5, 0xff, 0xff, 0xff, 0xff, 0xff, 0x4c, + 0xa8, 0xff, 0xff, 0xff, 0xff, 0xff, 0x91, 0xe4, + 0xff, 0xff, 0xff, 0xff, 0xab, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0xe6, + 0xff, 0xff, 0xff, 0xff, 0x89, 0xef, 0xff, 0xff, + 0xff, 0xff, 0xff, 0x4c, 0xa8, 0xff, 0xff, 0xff, + 0xff, 0xff, 0x9c, 0x9e, 0xff, 0xff, 0xff, 0xff, + 0xf3, 0x8, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x36, 0xff, 0xff, 0xff, 0xff, 0xff, + 0x44, 0xf8, 0xff, 0xff, 0xff, 0xff, 0xff, 0x4c, + 0xa8, 0xff, 0xff, 0xff, 0xff, 0xff, 0xa7, 0x56, + 0xff, 0xff, 0xff, 0xff, 0xff, 0x4c, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x84, 0xff, + 0xff, 0xff, 0xff, 0xf6, 0x9, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0x4c, 0xa8, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xb1, 0x12, 0xfd, 0xff, 0xff, 0xff, + 0xff, 0x9d, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0xd3, 0xff, 0xff, 0xff, 0xff, 0xb9, + 0x9, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x4c, + 0xa8, 0xff, 0xff, 0xff, 0xff, 0xff, 0xb9, 0x0, + 0xc8, 0xff, 0xff, 0xff, 0xff, 0xea, 0x2, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x21, 0xff, 0xff, + 0xff, 0xff, 0xff, 0x73, 0x16, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0x4c, 0xa8, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xbe, 0x0, 0x81, 0xff, 0xff, 0xff, + 0xff, 0xff, 0x3e, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x6f, 0xff, 0xff, 0xff, 0xff, 0xff, 0x2b, + 0x18, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x4c, + 0xa8, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc0, 0x0, + 0x39, 0xff, 0xff, 0xff, 0xff, 0xff, 0x8e, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0xbe, 0xff, 0xff, + 0xff, 0xff, 0xe0, 0x0, 0x18, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0x4c, 0xa8, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xc0, 0x0, 0x3, 0xed, 0xff, 0xff, + 0xff, 0xff, 0xde, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x11, 0xfb, 0xff, 0xff, 0xff, 0xff, 0x94, 0x0, + 0x18, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x4c, + 0xa8, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc0, 0x0, + 0x0, 0xa0, 0xff, 0xff, 0xff, 0xff, 0xff, 0x2f, + 0x0, 0x0, 0x0, 0x0, 0x5b, 0xff, 0xff, 0xff, + 0xff, 0xff, 0x43, 0x0, 0x18, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0x4c, 0xa8, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xc0, 0x0, 0x0, 0x4f, 0xff, 0xff, + 0xff, 0xff, 0xff, 0x80, 0x0, 0x0, 0x0, 0x0, + 0xa9, 0xff, 0xff, 0xff, 0xff, 0xee, 0x4, 0x0, + 0x18, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x4c, + 0xa8, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc0, 0x0, + 0x0, 0x9, 0xf4, 0xff, 0xff, 0xff, 0xff, 0xd0, + 0x0, 0x0, 0x0, 0x6, 0xf1, 0xff, 0xff, 0xff, + 0xff, 0xa1, 0x0, 0x0, 0x18, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0x4c, 0xa8, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xc0, 0x0, 0x0, 0x0, 0xac, 0xff, + 0xff, 0xff, 0xff, 0xff, 0x21, 0x0, 0x0, 0x46, + 0xff, 0xff, 0xff, 0xff, 0xff, 0x50, 0x0, 0x0, + 0x18, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x4c, + 0xa8, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc0, 0x0, + 0x0, 0x0, 0x5b, 0xff, 0xff, 0xff, 0xff, 0xff, + 0x6c, 0x0, 0x0, 0x93, 0xff, 0xff, 0xff, 0xff, + 0xf5, 0x9, 0x0, 0x0, 0x18, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0x4c, 0xa8, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xc0, 0x0, 0x0, 0x0, 0xf, 0xfa, + 0xff, 0xff, 0xff, 0xff, 0xb4, 0x0, 0x0, 0xdc, + 0xff, 0xff, 0xff, 0xff, 0xae, 0x0, 0x0, 0x0, + 0x18, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x4c, + 0xa8, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc0, 0x0, + 0x0, 0x0, 0x0, 0xb8, 0xff, 0xff, 0xff, 0xff, + 0xf1, 0x2, 0x24, 0xff, 0xff, 0xff, 0xff, 0xff, + 0x5d, 0x0, 0x0, 0x0, 0x18, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0x4c, 0xa8, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x67, + 0xff, 0xff, 0xff, 0xff, 0xff, 0x32, 0x6b, 0xff, + 0xff, 0xff, 0xff, 0xfb, 0x11, 0x0, 0x0, 0x0, + 0x18, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x4c, + 0xa8, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc0, 0x0, + 0x0, 0x0, 0x0, 0x18, 0xfe, 0xff, 0xff, 0xff, + 0xff, 0x71, 0xb3, 0xff, 0xff, 0xff, 0xff, 0xbb, + 0x0, 0x0, 0x0, 0x0, 0x18, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0x4c, 0xa8, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0xc5, 0xff, 0xff, 0xff, 0xff, 0xb5, 0xf4, 0xff, + 0xff, 0xff, 0xff, 0x6a, 0x0, 0x0, 0x0, 0x0, + 0x18, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x4c, + 0xa8, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x73, 0xff, 0xff, 0xff, + 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xfe, 0x1a, + 0x0, 0x0, 0x0, 0x0, 0x18, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0x4c, 0xa8, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x22, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xc7, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x18, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x4c, + 0xa8, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0xd1, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x76, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x18, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0x4c, 0xa8, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x7f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0x25, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x18, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x4c, + 0xa8, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x2e, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xd4, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x18, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0x4c, 0xa8, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0xdc, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0x83, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x18, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x4c, + 0xa8, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x8b, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0x32, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x18, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0x4c, 0xa8, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x3a, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xe0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x18, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x4c, + 0xa8, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x2, 0xe7, + 0xff, 0xff, 0xff, 0xff, 0x90, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x18, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0x4c, + + /* U+004E "N" */ + 0xa8, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xd0, 0x2, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xa8, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xc0, 0xa8, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x63, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0xa8, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xc0, 0xa8, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xe6, 0xb, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0xa8, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xc0, 0xa8, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0x82, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0xa8, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc0, + 0xa8, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xf5, 0x1c, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xa8, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xc0, 0xa8, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xa2, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0xa8, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xc0, 0xa8, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, + 0x33, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0xa8, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xc0, 0xa8, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0xa8, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc0, + 0xa8, 0xff, 0xff, 0xff, 0xff, 0xff, 0xca, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0x51, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xa8, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xc0, 0xa8, 0xff, + 0xff, 0xff, 0xff, 0xff, 0x79, 0xdd, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xda, 0x5, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0xa8, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xc0, 0xa8, 0xff, 0xff, 0xff, + 0xff, 0xff, 0x8b, 0x55, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0x70, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0xa8, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xc0, 0xa8, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xa0, 0x0, 0xc6, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xee, 0x12, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0xa8, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc0, + 0xa8, 0xff, 0xff, 0xff, 0xff, 0xff, 0xb0, 0x0, + 0x38, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x8f, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xa8, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xc0, 0xa8, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xba, 0x0, 0x0, 0xaa, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xfa, 0x24, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0xa8, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xc0, 0xa8, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xbf, 0x0, 0x0, 0x22, 0xf9, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xaf, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0xa8, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xc0, 0xa8, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xc0, 0x0, 0x0, 0x0, 0x8d, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0x3e, 0x0, 0x0, 0x0, 0x0, + 0x0, 0xa8, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc0, + 0xa8, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc0, 0x0, + 0x0, 0x0, 0x11, 0xed, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xcc, 0x1, 0x0, 0x0, 0x0, 0x0, 0xa8, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xc0, 0xa8, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xc0, 0x0, 0x0, 0x0, + 0x0, 0x70, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0x5e, 0x0, 0x0, 0x0, 0x0, 0xa8, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xc0, 0xa8, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x5, + 0xdc, 0xff, 0xff, 0xff, 0xff, 0xff, 0xe3, 0x9, + 0x0, 0x0, 0x0, 0xa8, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xc0, 0xa8, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xc0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x53, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0x7d, 0x0, 0x0, + 0x0, 0xa8, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc0, + 0xa8, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0xc4, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xf3, 0x19, 0x0, 0x0, 0xa6, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xc0, 0xa8, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xc0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x38, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0x9c, 0x0, 0x0, 0x9e, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xc0, 0xa8, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0xa8, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xfd, 0x2e, 0x0, 0x95, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xc0, 0xa8, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xc0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x21, 0xf8, 0xff, 0xff, 0xff, 0xff, 0xff, 0xbb, + 0x0, 0x8b, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc0, + 0xa8, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x8b, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x4b, 0x76, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xc0, 0xa8, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xc0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x10, 0xec, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xd6, 0x61, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xc0, 0xa8, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x6f, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xb0, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xc0, 0xa8, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xc0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x5, 0xda, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc0, + 0xa8, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x52, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xc0, 0xa8, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xc0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0xc3, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xc0, 0xa8, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x36, 0xfe, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xc0, 0xa8, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xc0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0xa7, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc0, + 0xa8, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x20, 0xf8, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xc0, 0xa8, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xc0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x8a, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xc0, 0xa8, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0xf, 0xeb, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xc0, + + /* U+004F "O" */ + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x5, 0x2f, 0x51, 0x6b, + 0x77, 0x7d, 0x75, 0x67, 0x4a, 0x26, 0x1, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x15, 0x70, 0xbf, 0xf7, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xf0, 0xb1, 0x60, 0xa, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x17, 0x99, 0xf8, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xed, + 0x7f, 0xa, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x5d, + 0xf1, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xe1, 0x3c, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x1, 0x8f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xfc, 0x64, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x96, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0x66, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x71, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xd8, + 0x8b, 0x53, 0x3d, 0x2e, 0x41, 0x5b, 0x9c, 0xe8, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xfb, 0x42, 0x0, 0x0, 0x0, 0x0, 0x0, 0x2e, + 0xf9, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xdd, 0x50, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x5, 0x75, 0xf2, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xe3, 0x10, 0x0, 0x0, + 0x0, 0x0, 0xbe, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xc4, 0xe, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x2b, + 0xe7, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0x8c, 0x0, 0x0, 0x0, 0x3f, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xd2, 0xb, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x28, 0xf5, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xf8, 0x16, 0x0, 0x0, 0xa8, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc, 0x34, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x72, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x79, + 0x0, 0x9, 0xf6, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xa2, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x2, 0xe0, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xd2, 0x0, 0x49, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0x3c, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7d, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x1c, 0x80, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xe6, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x27, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0x53, 0xad, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xb0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x1, 0xf0, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0x82, 0xcc, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0x7e, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0xbf, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xa1, + 0xe3, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x68, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0xa9, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xb9, 0xed, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0x58, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x99, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xc3, 0xf1, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0x50, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x90, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xc9, 0xea, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0x5d, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x9d, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xc2, 0xdd, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0x6c, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xac, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xb6, 0xc3, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x8c, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0xc7, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0x99, 0xa1, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x3, 0xf6, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0x74, 0x71, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xf3, 0x7, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x2f, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x3f, + 0x35, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0x5a, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x88, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xf4, 0x8, 0x1, 0xe8, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xc2, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x5, 0xe6, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xac, 0x0, 0x0, 0x8e, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x5c, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7e, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x47, + 0x0, 0x0, 0x26, 0xfd, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xec, 0x24, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x35, 0xf9, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xd4, 0x1, 0x0, 0x0, 0x0, 0xa0, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xe5, 0x28, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x39, 0xf0, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0x4c, 0x0, 0x0, 0x0, + 0x0, 0x19, 0xed, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xf5, 0x7a, 0x8, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x10, 0x8e, 0xfa, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xab, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x53, 0xfe, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf3, + 0xaa, 0x6f, 0x57, 0x49, 0x5d, 0x77, 0xb8, 0xf8, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xdd, 0x13, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x7a, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xe9, 0x27, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x77, 0xfe, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xde, 0x26, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x4a, 0xe9, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xa9, 0x10, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x10, 0x8d, 0xf4, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc8, + 0x45, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x10, 0x6a, 0xbc, 0xf6, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xdd, + 0x93, 0x39, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x4, 0x2f, 0x52, 0x6d, 0x78, 0x7d, 0x74, 0x63, + 0x43, 0x18, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + + /* U+0050 "P" */ + 0xa8, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xf4, 0xe4, 0xd3, 0xa7, 0x70, 0x2e, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0xa8, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xc6, 0x52, 0x0, 0x0, 0x0, + 0x0, 0x0, 0xa8, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xa9, 0x12, 0x0, 0x0, 0x0, 0xa8, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xce, 0xd, 0x0, 0x0, 0xa8, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xb8, 0x0, + 0x0, 0xa8, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xd2, 0x9c, 0x9c, 0x9c, 0x9c, 0x9c, 0x9c, 0x9c, + 0xa4, 0xb8, 0xe8, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0x4f, 0x0, 0xa8, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0x8c, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x40, 0xce, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xcf, 0x0, 0xa8, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0x8c, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7, 0xc4, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x1d, + 0xa8, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x8c, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x2c, 0xfe, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0x62, 0xa8, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0x8c, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0xd2, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0x83, 0xa8, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0x8c, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xa8, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x98, 0xa8, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x8c, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x9d, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xa0, 0xa8, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0x8c, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0xaf, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0x8b, 0xa8, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0x8c, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xe0, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0x72, 0xa8, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0x8c, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x3f, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0x35, 0xa8, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0x8c, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xe, 0xd4, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xe9, 0x1, + 0xa8, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x8c, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x40, 0xd6, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0x81, 0x0, 0xa8, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xcf, 0x94, 0x94, 0x94, + 0x94, 0x94, 0x94, 0x94, 0x99, 0xad, 0xe1, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xec, + 0xe, 0x0, 0xa8, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xfd, 0x4e, 0x0, 0x0, 0xa8, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, + 0x6f, 0x0, 0x0, 0x0, 0xa8, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xef, 0x4d, 0x0, 0x0, 0x0, + 0x0, 0xa8, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf5, 0x8f, + 0x19, 0x0, 0x0, 0x0, 0x0, 0x0, 0xa8, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf7, 0xe4, + 0xcf, 0x9d, 0x59, 0x12, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0xa8, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0x8c, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0xa8, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x8c, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0xa8, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0x8c, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0xa8, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0x8c, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xa8, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x8c, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0xa8, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0x8c, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0xa8, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0x8c, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xa8, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0x8c, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0xa8, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0x8c, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0xa8, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x8c, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0xa8, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0x8c, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0xa8, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0x8c, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + + /* U+0051 "Q" */ + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x5, 0x30, 0x51, 0x6b, + 0x77, 0x7d, 0x75, 0x68, 0x4b, 0x27, 0x1, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x18, 0x73, 0xc2, 0xf8, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xf1, 0xb3, 0x63, 0xc, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x1c, 0x9f, 0xfa, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf0, + 0x85, 0xd, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x67, + 0xf5, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xe6, 0x45, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x3, 0x9c, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xfe, 0x71, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x1, 0xa4, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0x74, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x81, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xd5, + 0x8a, 0x53, 0x3d, 0x2e, 0x41, 0x5a, 0x9b, 0xe6, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xfe, 0x4f, 0x0, 0x0, 0x0, 0x0, 0x0, 0x39, + 0xfc, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xd9, 0x4c, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x4, 0x70, 0xef, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xeb, 0x17, 0x0, 0x0, + 0x0, 0x1, 0xcc, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xbd, 0xb, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x26, + 0xe3, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0x99, 0x0, 0x0, 0x0, 0x4d, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xcb, 0x8, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x22, 0xf1, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xfc, 0x1f, 0x0, 0x0, 0xb6, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf9, 0x2b, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x66, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x85, + 0x0, 0x10, 0xfa, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0x98, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0xd8, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xdb, 0x0, 0x53, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0x31, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x72, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x24, 0x88, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xde, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x1e, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0x5b, 0xb4, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xa8, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0xe9, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0x88, 0xd1, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0x78, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0xb9, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xa6, + 0xe6, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x65, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0xa6, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xbc, 0xef, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0x55, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x96, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xc5, 0xed, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0x52, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x92, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xc5, 0xdd, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0x62, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0xa1, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xb4, 0xcd, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0x73, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xb0, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xa3, 0xbb, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x9e, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0xd5, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0x8c, 0x8f, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xd6, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0xb, 0xfd, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0x59, 0x57, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xfe, 0x1d, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x45, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x22, + 0x1f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0x82, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0xa7, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xe5, 0x0, 0x0, 0xd1, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xe9, 0x10, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x1c, 0xf8, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0x87, 0x0, 0x0, 0x68, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x9e, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xb5, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0x24, + 0x0, 0x0, 0xc, 0xf2, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0x6f, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x7d, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xaf, 0x0, 0x0, 0x0, 0x0, 0x73, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x83, + 0x6, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x9, 0x8f, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xf5, 0x1f, 0x0, 0x0, 0x0, + 0x0, 0x2, 0xc5, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xd8, 0x5e, 0x11, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x18, 0x67, 0xe1, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x74, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x25, 0xec, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xfb, 0xd0, 0xb8, 0xa9, 0xbd, 0xd6, 0xfe, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0x9f, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x2d, 0xea, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xb1, 0x4, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x2b, 0xda, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xfd, 0x80, 0x2, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x7, 0x82, 0xf9, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xca, 0x41, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x20, 0x81, + 0xde, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xf7, 0xb6, 0x4a, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x1, 0x35, 0x66, 0x93, 0xcb, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x5b, + 0x9, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x11, 0xf9, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0x73, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xaf, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xed, 0x19, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x48, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xcb, 0x15, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0xcd, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xeb, 0x7e, 0x34, + 0xe, 0x3, 0xd, 0x23, 0x19, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x44, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x71, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x99, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0x6f, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7, + 0xbc, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0x6d, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0xa, 0x9e, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0x6a, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x41, 0xb5, 0xfa, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xfe, 0xe0, 0x4e, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0xa, 0x40, 0x5a, + 0x68, 0x5d, 0x4d, 0x36, 0xc, 0x0, 0x0, 0x0, + 0x0, 0x0, + + /* U+0052 "R" */ + 0xa8, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xfe, 0xf1, 0xe2, 0xce, 0x9f, 0x6c, 0x23, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0xa8, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xfe, 0xbe, 0x47, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0xa8, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xa2, 0xd, 0x0, 0x0, + 0x0, 0x0, 0x0, 0xa8, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc0, 0x9, + 0x0, 0x0, 0x0, 0x0, 0xa8, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xa1, 0x0, 0x0, 0x0, 0x0, 0xa8, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xd2, 0x9c, 0x9c, 0x9c, + 0x9c, 0x9c, 0x9c, 0x9c, 0x9c, 0x9c, 0xa6, 0xbd, + 0xee, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xfe, 0x37, 0x0, 0x0, 0x0, 0xa8, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0x8c, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x3, 0x50, 0xde, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xa7, 0x0, 0x0, 0x0, 0xa8, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x8c, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x17, 0xe0, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xed, 0x3, 0x0, 0x0, + 0xa8, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x8c, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x5c, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x29, 0x0, + 0x0, 0xa8, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0x8c, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xf, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x40, + 0x0, 0x0, 0xa8, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0x8c, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0xf0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0x52, 0x0, 0x0, 0xa8, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0x8c, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0xf5, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0x46, 0x0, 0x0, 0xa8, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0x8c, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x1d, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0x2c, 0x0, 0x0, 0xa8, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0x8c, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x76, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xf1, 0x2, 0x0, 0x0, 0xa8, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0x8c, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x28, 0xf0, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xa4, 0x0, 0x0, 0x0, 0xa8, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x8c, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x6, 0x61, 0xed, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xfe, 0x36, 0x0, 0x0, 0x0, + 0xa8, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xd4, + 0xa0, 0xa0, 0xa0, 0xa0, 0xa0, 0xa0, 0xa0, 0xa0, + 0xa0, 0xa8, 0xc0, 0xf2, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0x9c, 0x0, 0x0, 0x0, + 0x0, 0xa8, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xcc, 0xc, 0x0, 0x0, + 0x0, 0x0, 0xa8, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xc1, 0x15, 0x0, 0x0, + 0x0, 0x0, 0x0, 0xa8, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xee, 0x76, 0x4, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0xa8, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xf6, 0x5b, 0xc, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0xa8, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0x61, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xa8, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0x8c, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xb1, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xee, 0x17, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xa8, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x8c, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1f, + 0xf5, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xab, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0xa8, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x8c, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x76, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0x50, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0xa8, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0x8c, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x5, 0xd3, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xe5, 0xf, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0xa8, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0x8c, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x3c, 0xfe, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0x9b, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0xa8, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0x8c, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x9e, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x41, 0x0, + 0x0, 0x0, 0x0, 0x0, 0xa8, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0x8c, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x13, + 0xec, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xdb, + 0x9, 0x0, 0x0, 0x0, 0x0, 0xa8, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0x8c, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x63, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0x8a, 0x0, 0x0, 0x0, 0x0, 0xa8, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0x8c, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x1, 0xc4, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xfc, 0x33, 0x0, 0x0, 0x0, 0xa8, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x8c, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x2c, 0xfb, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xd0, 0x4, 0x0, 0x0, + 0xa8, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x8c, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x8a, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x7a, 0x0, + 0x0, 0xa8, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0x8c, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xb, + 0xe1, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf8, + 0x27, 0x0, 0xa8, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0x8c, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x4f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xc3, 0x1, + + /* U+0053 "S" */ + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x4, 0x28, 0x51, 0x63, 0x6f, 0x7b, + 0x78, 0x6d, 0x62, 0x45, 0x21, 0x3, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1b, 0x6f, + 0xc4, 0xf9, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xf2, 0xaf, 0x60, 0x6, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x10, 0x8d, 0xf9, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xe1, 0x57, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x27, 0xe0, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x8c, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1f, + 0xeb, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x74, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xb8, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xee, + 0xc2, 0xa8, 0x9f, 0xa7, 0xc0, 0xee, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc, 0x29, + 0x0, 0x0, 0x0, 0x0, 0x3b, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xca, 0x44, 0x3, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x3, 0x4b, 0xd5, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xa4, 0x0, + 0x0, 0x0, 0x0, 0x90, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xc4, 0x7, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0xd, 0xca, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xfa, 0xd, 0x0, + 0x0, 0x0, 0xc8, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0x43, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x26, 0xfc, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0x4e, 0x0, 0x0, + 0x0, 0xe1, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0x14, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0xb5, 0xfd, 0xe1, + 0xbe, 0x9a, 0x77, 0x54, 0x1b, 0x0, 0x0, 0x0, + 0xf0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x25, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x10, 0x7, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xe3, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x77, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xbf, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xf6, 0x4d, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x80, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xa8, 0x39, + 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x1f, 0xfb, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xe8, + 0xa4, 0x63, 0x28, 0x1, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x7b, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xed, 0xb2, 0x75, 0x34, 0x2, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x2, 0xb1, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xee, 0xa5, 0x52, + 0x7, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x4, 0x97, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xe9, + 0x71, 0x8, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x45, 0xc8, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xd6, 0x27, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x2e, 0x81, 0xcd, + 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xf0, 0x2b, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x16, + 0x59, 0x9a, 0xd4, 0xfd, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xdf, 0xb, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0xd, 0x44, 0x81, 0xc8, 0xfd, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0x78, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x1d, 0x8c, 0xf6, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xe0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x26, 0xdd, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x25, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x2f, 0xfc, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x4b, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x14, 0x16, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xbf, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0x5f, 0xe, 0x3c, + 0x67, 0x93, 0xbe, 0xe9, 0xff, 0xa4, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0xa1, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0x58, 0x60, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xf5, 0x1a, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0xc0, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0x40, 0x13, 0xfc, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xb0, 0x1, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x28, 0xfc, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0x1c, 0x0, 0xad, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xa9, 0xf, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x25, 0xd8, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xcb, 0x0, 0x0, 0x29, 0xfc, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xf0, 0x90, 0x46, 0x18, + 0x0, 0x0, 0x0, 0x2, 0x1e, 0x4f, 0x9f, 0xf9, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x6c, + 0x0, 0x0, 0x0, 0x7d, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfb, + 0xef, 0xf2, 0xfc, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xcd, 0x3, 0x0, + 0x0, 0x0, 0x0, 0xa3, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xe8, 0x2a, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x1, 0x7d, 0xfd, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xdb, 0x24, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x35, 0xb8, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf2, 0x79, + 0x8, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x2f, 0x81, 0xcf, 0xfc, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xec, 0xae, 0x59, 0xc, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7, 0x2f, + 0x55, 0x66, 0x72, 0x7c, 0x76, 0x69, 0x5c, 0x43, + 0x18, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, + + /* U+0054 "T" */ + 0x74, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x74, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0x74, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0x74, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0x74, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x41, 0x90, + 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, + 0x90, 0xb6, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xee, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, + 0x90, 0x90, 0x90, 0x90, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x58, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xd8, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x58, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xd8, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x58, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xd8, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x58, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xd8, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x58, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xd8, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x58, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xd8, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x58, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xd8, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x58, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xd8, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x58, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xd8, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x58, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xd8, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x58, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xd8, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x58, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xd8, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x58, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xd8, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x58, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xd8, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x58, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xd8, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x58, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xd8, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x58, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xd8, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x58, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xd8, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x58, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xd8, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x58, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xd8, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x58, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xd8, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x58, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xd8, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x58, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xd8, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x58, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xd8, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x58, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xd8, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x58, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xd8, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x58, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xd8, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x58, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xd8, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x58, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xd8, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, + + /* U+0055 "U" */ + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x34, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x28, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x34, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x28, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xc, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0x34, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x28, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xc, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0x34, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x28, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xc, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0x34, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x28, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xc, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0x34, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x28, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xc, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0x34, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x28, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xc, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0x34, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x28, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x34, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x28, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x34, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x28, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xc, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0x34, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x28, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xc, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0x34, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x28, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xc, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0x34, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x28, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xc, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0x34, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x28, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xc, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0x34, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x28, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xc, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0x34, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x28, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x34, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x28, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x34, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x28, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xc, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0x34, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x28, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xc, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0x34, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x28, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xc, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0x34, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x28, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xc, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0x37, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x2e, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0x9, 0xf4, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0x46, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x3f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf7, + 0x0, 0xe1, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0x5f, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x5e, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xe3, 0x0, + 0xcd, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x94, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x96, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xcc, 0x0, 0xa3, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xe2, 0x3, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x6, 0xe8, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0x93, 0x0, 0x61, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x5b, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x6c, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0x4e, 0x0, 0x1d, 0xfe, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xed, 0x21, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x32, 0xf6, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xf2, 0xd, 0x0, 0x0, 0xab, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xe7, 0x42, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x5c, + 0xf3, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0x81, 0x0, 0x0, 0x0, 0x2c, 0xfe, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc2, 0x75, + 0x45, 0x32, 0x38, 0x4d, 0x85, 0xd6, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xec, 0xf, + 0x0, 0x0, 0x0, 0x0, 0x83, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xfa, 0x43, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x1, 0xaa, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xfe, 0x5f, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x6, 0x8e, 0xfe, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xe6, 0x45, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x49, 0xd1, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xf6, 0x99, 0x14, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x41, 0xa5, 0xe2, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xf4, 0xc0, 0x75, 0x12, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1b, + 0x49, 0x5c, 0x6d, 0x7b, 0x72, 0x61, 0x51, 0x31, + 0x3, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, + + /* U+0056 "V" */ + 0x7a, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf6, + 0xa, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x9c, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xd1, 0x1f, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0x51, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x2, 0xea, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0x74, 0x0, 0xc0, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xa2, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x3d, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xfd, 0x1a, 0x0, 0x63, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xee, 0x4, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x8d, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xbb, 0x0, 0x0, 0xf, 0xf7, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0x44, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0xdd, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0x5f, 0x0, 0x0, 0x0, 0xa9, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x95, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x2e, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xf5, 0xc, 0x0, 0x0, 0x0, + 0x4c, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xe5, + 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x7e, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xa6, 0x0, 0x0, 0x0, + 0x0, 0x4, 0xea, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0x37, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xcf, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0x49, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x92, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0x88, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xe8, 0x3, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x35, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xd9, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x6f, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x90, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xd8, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0x2a, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0xbf, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x33, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7c, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x7b, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x13, 0xfc, 0xff, 0xff, 0xff, 0xff, 0xff, 0xd6, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x20, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xcc, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x60, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0x7a, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0xc2, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0x1e, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0xb0, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xfe, 0x1f, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x65, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0x6e, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0xa, 0xf6, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xc1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x10, 0xf8, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xbf, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x51, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0x64, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xab, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xfc, 0x14, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0xa1, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xf8, 0xf, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x4e, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x61, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x4, 0xed, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xab, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x5, 0xec, 0xff, 0xff, 0xff, 0xff, 0xff, 0xb2, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x42, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0x4f, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x94, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xf7, 0xb, 0x0, 0x0, 0x0, 0x0, 0x92, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xec, 0x5, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x37, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0x54, 0x0, 0x0, 0x0, 0x0, 0xe1, + 0xff, 0xff, 0xff, 0xff, 0xff, 0x96, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0xda, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xa5, 0x0, 0x0, 0x0, 0x33, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x39, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7d, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xf0, 0x5, 0x0, 0x0, + 0x81, 0xff, 0xff, 0xff, 0xff, 0xff, 0xdb, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x21, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x42, 0x0, + 0x0, 0xca, 0xff, 0xff, 0xff, 0xff, 0xff, 0x80, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0xc4, 0xff, 0xff, 0xff, 0xff, 0xff, 0x8b, + 0x0, 0x13, 0xfd, 0xff, 0xff, 0xff, 0xff, 0xff, + 0x24, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x67, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xd2, 0x0, 0x58, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xc7, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x11, 0xf9, 0xff, 0xff, 0xff, + 0xff, 0xff, 0x18, 0x9f, 0xff, 0xff, 0xff, 0xff, + 0xff, 0x6a, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0xad, 0xff, 0xff, + 0xff, 0xff, 0xff, 0x5a, 0xe1, 0xff, 0xff, 0xff, + 0xff, 0xfa, 0x13, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x50, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xb6, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xb1, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x6, + 0xed, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0x54, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x96, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xf0, 0x7, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x39, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0x9b, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0xdb, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0x3f, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xe0, 0x1, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x23, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x86, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, + + /* U+0057 "W" */ + 0xd4, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x74, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x75, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xd1, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x43, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfa, 0xc, + 0x93, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xac, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0xb0, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xfd, 0xf, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7a, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc5, 0x0, + 0x52, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xe5, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0xea, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0x49, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xb0, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x84, 0x0, + 0x13, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0x1e, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x26, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0x84, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xe6, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x43, 0x0, + 0x0, 0xd0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0x56, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x60, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xc0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1d, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xf9, 0x9, 0x0, + 0x0, 0x90, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0x8f, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x9b, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xf6, 0x5, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x54, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xc1, 0x0, 0x0, + 0x0, 0x4f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xc8, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0xd5, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0x37, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x8a, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0x80, 0x0, 0x0, + 0x0, 0x11, 0xfd, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xf9, 0x7, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x11, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xe7, + 0xff, 0xff, 0xff, 0xff, 0xff, 0x73, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xc0, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0x3f, 0x0, 0x0, + 0x0, 0x0, 0xcd, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0x39, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x49, 0xff, 0xff, 0xff, 0xff, 0xff, 0x8e, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xaf, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x2, 0xf3, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xf6, 0x6, 0x0, 0x0, + 0x0, 0x0, 0x8c, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0x72, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x84, 0xff, 0xff, 0xff, 0xff, 0xff, 0x35, + 0xfb, 0xff, 0xff, 0xff, 0xff, 0xea, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x2d, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xbc, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x4c, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xaa, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0xbe, 0xff, 0xff, 0xff, 0xff, 0xf9, 0x5, + 0xd5, 0xff, 0xff, 0xff, 0xff, 0xff, 0x26, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x64, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0x7b, 0x0, 0x0, 0x0, + 0x0, 0x0, 0xe, 0xfc, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xe3, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x3, 0xf4, 0xff, 0xff, 0xff, 0xff, 0xcf, 0x0, + 0xa3, 0xff, 0xff, 0xff, 0xff, 0xff, 0x62, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x9a, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0x3a, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0xca, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0x1c, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x32, 0xff, 0xff, 0xff, 0xff, 0xff, 0x99, 0x0, + 0x6e, 0xff, 0xff, 0xff, 0xff, 0xff, 0x9e, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0xd0, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xf4, 0x5, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x89, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0x54, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x6c, 0xff, 0xff, 0xff, 0xff, 0xff, 0x5d, 0x0, + 0x38, 0xff, 0xff, 0xff, 0xff, 0xff, 0xd9, 0x0, + 0x0, 0x0, 0x0, 0x0, 0xa, 0xfc, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xb8, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x48, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0x8d, 0x0, 0x0, 0x0, 0x0, 0x0, + 0xa5, 0xff, 0xff, 0xff, 0xff, 0xff, 0x24, 0x0, + 0x7, 0xf9, 0xff, 0xff, 0xff, 0xff, 0xff, 0x15, + 0x0, 0x0, 0x0, 0x0, 0x3d, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0x77, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0xc, 0xfb, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xc6, 0x0, 0x0, 0x0, 0x0, 0x0, + 0xde, 0xff, 0xff, 0xff, 0xff, 0xe8, 0x0, 0x0, + 0x0, 0xc8, 0xff, 0xff, 0xff, 0xff, 0xff, 0x51, + 0x0, 0x0, 0x0, 0x0, 0x74, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0x35, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0xc7, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xf8, 0x6, 0x0, 0x0, 0x0, 0x17, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xaf, 0x0, 0x0, + 0x0, 0x8d, 0xff, 0xff, 0xff, 0xff, 0xff, 0x8c, + 0x0, 0x0, 0x0, 0x0, 0xaa, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xf1, 0x3, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x86, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0x37, 0x0, 0x0, 0x0, 0x50, + 0xff, 0xff, 0xff, 0xff, 0xff, 0x75, 0x0, 0x0, + 0x0, 0x52, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc8, + 0x0, 0x0, 0x0, 0x0, 0xe0, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xb3, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x45, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0x70, 0x0, 0x0, 0x0, 0x89, + 0xff, 0xff, 0xff, 0xff, 0xff, 0x3c, 0x0, 0x0, + 0x0, 0x17, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfa, + 0x9, 0x0, 0x0, 0x17, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0x72, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0xa, 0xf9, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xa9, 0x0, 0x0, 0x0, 0xc3, + 0xff, 0xff, 0xff, 0xff, 0xf9, 0x8, 0x0, 0x0, + 0x0, 0x0, 0xdc, 0xff, 0xff, 0xff, 0xff, 0xff, + 0x3d, 0x0, 0x0, 0x4d, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0x31, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0xc4, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xe1, 0x0, 0x0, 0x5, 0xf6, + 0xff, 0xff, 0xff, 0xff, 0xc8, 0x0, 0x0, 0x0, + 0x0, 0x0, 0xa2, 0xff, 0xff, 0xff, 0xff, 0xff, + 0x70, 0x0, 0x0, 0x88, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xee, 0x2, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x83, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0x1a, 0x0, 0x35, 0xff, + 0xff, 0xff, 0xff, 0xff, 0x8e, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x67, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xa0, 0x0, 0x0, 0xc2, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xaf, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x42, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0x52, 0x0, 0x6a, 0xff, + 0xff, 0xff, 0xff, 0xff, 0x54, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x2c, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xcf, 0x0, 0x5, 0xf6, 0xff, 0xff, 0xff, 0xff, + 0xff, 0x6d, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x8, 0xf8, 0xff, + 0xff, 0xff, 0xff, 0xff, 0x87, 0x0, 0x9e, 0xff, + 0xff, 0xff, 0xff, 0xff, 0x1a, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x1, 0xef, 0xff, 0xff, 0xff, 0xff, + 0xf8, 0x4, 0x37, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0x2c, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xc0, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xbb, 0x0, 0xd2, 0xff, + 0xff, 0xff, 0xff, 0xdf, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0xb6, 0xff, 0xff, 0xff, 0xff, + 0xff, 0x2b, 0x71, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xea, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x80, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xed, 0xa, 0xfc, 0xff, + 0xff, 0xff, 0xff, 0xa4, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x7b, 0xff, 0xff, 0xff, 0xff, + 0xff, 0x58, 0xa9, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xaa, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0x5c, 0xff, 0xff, + 0xff, 0xff, 0xff, 0x69, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x40, 0xff, 0xff, 0xff, 0xff, + 0xff, 0x84, 0xe0, 0xff, 0xff, 0xff, 0xff, 0xff, + 0x69, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7, 0xf7, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xc3, 0xff, 0xff, + 0xff, 0xff, 0xff, 0x2e, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0xa, 0xfb, 0xff, 0xff, 0xff, + 0xff, 0xc7, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0x28, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xbd, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xf1, 0x2, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0xcb, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xe6, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7c, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xb9, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x90, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xa5, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3c, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0x7e, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x55, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x64, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x6, + 0xf5, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0x42, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x1a, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x23, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0xba, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xfc, 0xb, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0xdf, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xe2, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x79, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xcc, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0xa4, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xa1, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x38, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0x91, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x69, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x60, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + + /* U+0058 "X" */ + 0x0, 0x3a, 0xfd, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0x5b, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xf, + 0xe7, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x97, + 0x0, 0x0, 0x0, 0x90, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xe8, 0x10, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x96, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xe6, + 0xf, 0x0, 0x0, 0x0, 0xa, 0xdd, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0x98, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x36, 0xfd, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0x54, 0x0, 0x0, 0x0, 0x0, 0x0, 0x41, 0xfe, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xfd, 0x38, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x3, 0xce, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xb2, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x98, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xd0, + 0x4, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x71, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xf3, 0x1d, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0xd, 0xe2, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0x73, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x1b, 0xf3, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0x6f, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x47, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xf4, 0x1e, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0xad, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xcb, 0x3, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x9f, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xb1, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x4b, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xfc, 0x31, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x10, 0xe6, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x4f, 0x0, + 0x0, 0x0, 0xa, 0xdf, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0x8b, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x4f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xe2, + 0xb, 0x0, 0x0, 0x88, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xdf, 0xa, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0xa7, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0x8c, 0x0, 0x2b, 0xfa, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0x48, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x14, 0xea, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xfb, 0x30, 0xc3, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xa7, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x56, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xeb, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xee, 0x17, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xae, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0x64, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x18, 0xee, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xc1, 0x1, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x5e, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xf9, 0x28, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0xd2, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0x9d, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x41, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xef, 0x17, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x9, 0xdc, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xa5, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x8b, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0x44, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x33, 0xfc, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xdb, 0x8, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x4, 0xd0, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0x84, 0xef, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0x82, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7b, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xcb, 0x2, 0x68, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf9, 0x28, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x27, 0xf8, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc, 0x32, 0x0, + 0x2, 0xc7, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xc0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0xc3, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x90, 0x0, + 0x0, 0x0, 0x2f, 0xfb, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0x60, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x6a, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xe4, 0xd, + 0x0, 0x0, 0x0, 0x0, 0x8c, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xeb, 0x13, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1d, + 0xf2, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x52, + 0x0, 0x0, 0x0, 0x0, 0x0, 0xb, 0xe1, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0x9e, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0xb5, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xb3, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x4e, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0x3e, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x5a, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf5, + 0x1f, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0xb0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xd6, 0x6, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x14, 0xeb, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0x75, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x1d, 0xf4, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0x7c, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0xa5, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xd2, 0x4, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x72, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xf7, 0x23, 0x0, 0x0, 0x0, + 0x0, 0x4a, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xfe, 0x39, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x3, 0xd0, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xba, 0x0, 0x0, + 0x0, 0xd, 0xe2, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0x98, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x37, + 0xfd, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x59, + 0x0, 0x0, 0x94, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xe8, 0x10, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x96, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xe8, 0x10, 0x3b, 0xfe, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0x5b, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0xf, 0xe7, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0x98, + + /* U+0059 "Y" */ + 0x5, 0xd7, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xaf, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x48, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0x40, 0x0, 0x45, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0x3d, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x3, 0xd5, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xa8, 0x0, 0x0, 0x0, 0xad, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xca, 0x1, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x69, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xf4, 0x1b, 0x0, 0x0, 0x0, 0x1f, 0xf6, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0x5b, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0xf, 0xea, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0x78, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7d, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xe0, 0x8, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x8a, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xd9, 0x6, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x8, 0xdd, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0x78, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x21, 0xf8, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0x48, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x4e, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xf1, 0x15, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0xab, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xb1, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0xb6, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0x96, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x3b, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xf7, 0x21, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x25, 0xf9, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xfb, 0x28, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x1, 0xca, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0x81, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x86, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xb3, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x5c, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xdf, 0x9, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0xb, 0xe2, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0x42, 0x0, 0x0, 0x0, 0x9, 0xe2, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0x51, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x56, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xce, 0x2, 0x0, 0x0, 0x7c, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xb9, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0xbe, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0x5f, 0x0, 0x19, 0xf3, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xfa, 0x27, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x2b, 0xfb, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xe4, 0xa, 0x9d, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0x8a, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x8f, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xa7, 0xfd, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xe5, 0xc, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0xe, 0xe8, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x5a, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x5f, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc1, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x1, 0xc6, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc, 0x2e, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x32, 0xfd, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x93, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x98, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xea, + 0x10, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x13, 0xf5, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0x6c, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0xe8, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0x4c, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0xe8, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0x4c, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0xe8, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0x4c, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0xe8, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0x4c, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xe8, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0x4c, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xe8, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x4c, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0xe8, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x4c, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0xe8, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0x4c, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0xe8, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0x4c, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0xe8, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0x4c, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0xe8, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0x4c, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0xe8, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0x4c, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xe8, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0x4c, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xe8, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x4c, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, + + /* U+005A "Z" */ + 0x0, 0x0, 0xa8, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0x18, 0x0, 0x0, 0x0, 0xa8, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0x18, 0x0, 0x0, 0x0, 0xa8, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0x18, 0x0, 0x0, + 0x0, 0xa8, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0x18, 0x0, 0x0, 0x0, 0xa8, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x18, + 0x0, 0x0, 0x0, 0x70, 0xac, 0xac, 0xac, 0xac, + 0xac, 0xac, 0xac, 0xac, 0xac, 0xac, 0xac, 0xac, + 0xac, 0xac, 0xac, 0xb0, 0xfe, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xb7, 0x1, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x8b, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xe1, + 0x13, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x50, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xf9, 0x37, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x23, 0xf0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0x6d, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x9, 0xd0, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xa9, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x9e, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xd9, 0xd, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x62, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xf5, 0x2c, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x30, 0xf7, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0x5e, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0xf, 0xdc, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0x9a, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0xaf, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xce, 0x8, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x75, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xf0, 0x22, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x3d, 0xfb, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0x50, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x17, 0xe6, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x8b, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x3, 0xbf, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xc3, 0x4, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x88, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xe9, 0x1a, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x4d, 0xfe, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xfd, 0x43, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x21, + 0xef, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x7c, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x7, 0xcd, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xb6, 0x1, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x9a, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xe1, + 0x12, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x5f, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xf9, 0x37, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x2d, 0xf6, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0x6d, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0xe, 0xda, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xa8, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0xac, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xd8, 0xd, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x72, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xf5, 0x2c, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x39, 0xfb, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xe0, 0xac, 0xac, 0xac, 0xac, 0xac, 0xac, + 0xac, 0xac, 0xac, 0xac, 0xac, 0xac, 0xac, 0xac, + 0xac, 0xac, 0xac, 0xac, 0xac, 0x10, 0x80, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0x18, 0x80, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x18, + 0x80, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0x18, 0x80, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0x18, 0x80, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x18, + + /* U+005B "[" */ + 0x34, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc, 0x34, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xc, 0x34, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xc, 0x34, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xc, 0x34, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xc4, 0xac, 0xac, 0xac, 0xac, + 0xac, 0xac, 0x8, 0x34, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0x4c, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x34, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0x4c, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x34, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0x4c, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x34, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x4c, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x34, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x4c, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x34, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0x4c, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x34, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0x4c, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x34, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0x4c, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x34, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0x4c, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x34, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0x4c, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x34, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0x4c, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x34, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x4c, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x34, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x4c, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x34, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0x4c, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x34, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0x4c, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x34, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0x4c, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x34, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0x4c, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x34, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0x4c, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x34, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0x4c, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x34, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x4c, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x34, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x4c, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x34, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0x4c, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x34, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0x4c, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x34, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0x4c, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x34, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0x4c, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x34, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0x4c, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x34, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0x4c, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x34, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x4c, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x34, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x4c, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x34, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0x4c, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x34, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0x4c, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x34, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0x4c, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x34, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0x4c, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x34, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0x4c, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x34, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0x4c, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x34, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x4c, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x34, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xcd, 0xb8, + 0xb8, 0xb8, 0xb8, 0xb8, 0xb8, 0x8, 0x34, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xc, 0x34, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xc, 0x34, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xc, 0x34, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xc, + + /* U+005C "\\" */ + 0x68, 0xff, 0xff, 0xff, 0xff, 0xff, 0x64, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x39, 0xff, + 0xff, 0xff, 0xff, 0xff, 0x94, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0xb, 0xfd, 0xff, 0xff, + 0xff, 0xff, 0xc5, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0xd9, 0xff, 0xff, 0xff, 0xff, + 0xf4, 0x2, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0xa9, 0xff, 0xff, 0xff, 0xff, 0xff, 0x27, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7a, + 0xff, 0xff, 0xff, 0xff, 0xff, 0x58, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x4a, 0xff, 0xff, + 0xff, 0xff, 0xff, 0x89, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x1a, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xb9, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0xe9, 0xff, 0xff, 0xff, 0xff, 0xea, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0xba, 0xff, 0xff, 0xff, 0xff, 0xff, 0x1b, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x8b, 0xff, + 0xff, 0xff, 0xff, 0xff, 0x4c, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x5b, 0xff, 0xff, 0xff, + 0xff, 0xff, 0x7d, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x2b, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xae, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x3, 0xf7, 0xff, 0xff, 0xff, 0xff, 0xdf, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xcb, + 0xff, 0xff, 0xff, 0xff, 0xff, 0x10, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x9c, 0xff, 0xff, + 0xff, 0xff, 0xff, 0x40, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x6c, 0xff, 0xff, 0xff, 0xff, + 0xff, 0x71, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x3c, 0xff, 0xff, 0xff, 0xff, 0xff, 0xa2, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xd, + 0xfe, 0xff, 0xff, 0xff, 0xff, 0xd3, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xdd, 0xff, + 0xff, 0xff, 0xff, 0xfb, 0x8, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0xad, 0xff, 0xff, 0xff, + 0xff, 0xff, 0x35, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x7d, 0xff, 0xff, 0xff, 0xff, 0xff, + 0x65, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x4d, 0xff, 0xff, 0xff, 0xff, 0xff, 0x96, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1d, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xc7, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0xed, 0xff, 0xff, + 0xff, 0xff, 0xf5, 0x2, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0xbe, 0xff, 0xff, 0xff, 0xff, + 0xff, 0x29, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x8e, 0xff, 0xff, 0xff, 0xff, 0xff, 0x5a, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x5e, + 0xff, 0xff, 0xff, 0xff, 0xff, 0x8b, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x2e, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xbb, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x5, 0xf9, 0xff, 0xff, 0xff, + 0xff, 0xec, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0xcf, 0xff, 0xff, 0xff, 0xff, 0xff, + 0x1d, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x9f, 0xff, 0xff, 0xff, 0xff, 0xff, 0x4e, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x6f, 0xff, + 0xff, 0xff, 0xff, 0xff, 0x7f, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x40, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xb0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x10, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xe1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0xe0, 0xff, 0xff, 0xff, 0xff, 0xff, 0x11, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xb0, + 0xff, 0xff, 0xff, 0xff, 0xff, 0x42, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x46, 0x80, 0x80, + 0x80, 0x80, 0x80, 0x33, + + /* U+005D "]" */ + 0x68, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xd8, 0x68, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xd8, 0x68, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xd8, 0x68, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xd8, + 0x45, 0xac, 0xac, 0xac, 0xac, 0xac, 0xac, 0xdd, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xd8, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x98, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xd8, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x98, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xd8, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x98, 0xff, 0xff, 0xff, 0xff, 0xff, 0xd8, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x98, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xd8, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x98, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xd8, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x98, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xd8, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x98, 0xff, 0xff, 0xff, 0xff, 0xff, 0xd8, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x98, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xd8, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x98, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xd8, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x98, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xd8, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x98, 0xff, 0xff, 0xff, 0xff, 0xff, 0xd8, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x98, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xd8, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x98, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xd8, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x98, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xd8, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x98, 0xff, 0xff, 0xff, 0xff, 0xff, 0xd8, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x98, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xd8, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x98, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xd8, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x98, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xd8, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x98, 0xff, 0xff, 0xff, 0xff, 0xff, 0xd8, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x98, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xd8, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x98, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xd8, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x98, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xd8, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x98, 0xff, 0xff, 0xff, 0xff, 0xff, 0xd8, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x98, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xd8, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x98, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xd8, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x98, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xd8, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x98, 0xff, 0xff, 0xff, 0xff, 0xff, 0xd8, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x98, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xd8, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x98, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xd8, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x98, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xd8, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x98, 0xff, 0xff, 0xff, 0xff, 0xff, 0xd8, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x98, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xd8, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x98, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xd8, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x98, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xd8, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x98, 0xff, 0xff, 0xff, 0xff, 0xff, 0xd8, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x98, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xd8, 0x4a, 0xb8, + 0xb8, 0xb8, 0xb8, 0xb8, 0xb8, 0xe2, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xd8, 0x68, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xd8, 0x68, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xd8, + 0x68, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xd8, 0x68, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xd8, + + /* U+005E "^" */ + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x90, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xb7, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0xd, 0xf1, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0x28, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x6e, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0x96, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x2, 0xdb, 0xff, 0xff, 0xff, + 0xff, 0xe7, 0xff, 0xff, 0xff, 0xff, 0xf4, 0x11, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x4d, + 0xff, 0xff, 0xff, 0xff, 0xfd, 0x36, 0xf6, 0xff, + 0xff, 0xff, 0xff, 0x76, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0xbc, 0xff, 0xff, 0xff, 0xff, + 0xb4, 0x0, 0x9b, 0xff, 0xff, 0xff, 0xff, 0xe1, + 0x3, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x2c, 0xff, + 0xff, 0xff, 0xff, 0xff, 0x46, 0x0, 0x2d, 0xff, + 0xff, 0xff, 0xff, 0xff, 0x55, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x9b, 0xff, 0xff, 0xff, 0xff, 0xd8, + 0x1, 0x0, 0x0, 0xbf, 0xff, 0xff, 0xff, 0xff, + 0xc5, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x13, 0xf6, 0xff, + 0xff, 0xff, 0xff, 0x6c, 0x0, 0x0, 0x0, 0x51, + 0xff, 0xff, 0xff, 0xff, 0xff, 0x34, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x79, 0xff, 0xff, 0xff, 0xff, 0xf1, 0xc, + 0x0, 0x0, 0x0, 0x3, 0xdf, 0xff, 0xff, 0xff, + 0xff, 0xa4, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x4, 0xe3, 0xff, 0xff, + 0xff, 0xff, 0x91, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x74, 0xff, 0xff, 0xff, 0xff, 0xfa, 0x19, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x58, 0xff, 0xff, 0xff, 0xff, 0xfe, 0x25, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x10, 0xf5, 0xff, 0xff, + 0xff, 0xff, 0x83, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0xc7, 0xff, 0xff, 0xff, + 0xff, 0xb6, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x98, 0xff, 0xff, 0xff, 0xff, 0xea, 0x8, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x36, + 0xff, 0xff, 0xff, 0xff, 0xff, 0x49, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x2a, 0xff, 0xff, + 0xff, 0xff, 0xff, 0x62, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0xa6, 0xff, 0xff, 0xff, 0xff, + 0xda, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0xbb, 0xff, 0xff, 0xff, 0xff, 0xd1, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1a, 0xfa, + 0xff, 0xff, 0xff, 0xff, 0x6e, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x4d, 0xff, + 0xff, 0xff, 0xff, 0xff, 0x42, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x84, 0xff, 0xff, 0xff, 0xff, 0xf2, + 0xe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x2, 0xdc, 0xff, 0xff, 0xff, 0xff, + 0xb1, 0x0, 0x0, 0x0, 0x0, 0x8, 0xeb, 0xff, + 0xff, 0xff, 0xff, 0x93, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x70, + 0xff, 0xff, 0xff, 0xff, 0xfd, 0x23, 0x0, 0x0, + 0x0, 0x63, 0xff, 0xff, 0xff, 0xff, 0xfe, 0x27, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0xe, 0xf3, 0xff, 0xff, 0xff, + 0xff, 0x91, 0x0, 0x0, 0x0, 0xd2, 0xff, 0xff, + 0xff, 0xff, 0xb9, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x94, 0xff, 0xff, 0xff, 0xff, 0xf2, 0xe, 0x0, + 0x41, 0xff, 0xff, 0xff, 0xff, 0xff, 0x4b, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x27, 0xfe, 0xff, 0xff, + 0xff, 0xff, 0x70, 0x0, 0xb0, 0xff, 0xff, 0xff, + 0xff, 0xdc, 0x2, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0xb7, 0xff, 0xff, 0xff, 0xff, 0xdd, 0x2, + + /* U+005F "_" */ + 0x74, 0xe8, 0xe8, 0xe8, 0xe8, 0xe8, 0xe8, 0xe8, + 0xe8, 0xe8, 0xe8, 0xe8, 0xe8, 0xe8, 0xe8, 0xe8, + 0xe8, 0xe8, 0xe8, 0xe8, 0xe8, 0xe8, 0xe8, 0xe8, + 0xe8, 0xe8, 0xe8, 0xe8, 0xe8, 0x3a, 0x80, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0x40, + + /* U+0060 "`" */ + 0x68, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0x55, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x19, 0xcb, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xf6, 0x37, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x9, 0xaa, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xe8, 0x1f, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x1, 0x80, 0xfe, 0xff, + 0xff, 0xff, 0xff, 0xd3, 0xe, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x56, 0xf6, 0xff, 0xff, + 0xff, 0xff, 0xb7, 0x3, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x34, 0xe5, 0xff, 0xff, 0xff, + 0xff, 0x94, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x1a, 0xcb, 0xff, 0xff, 0xff, 0xff, + 0x6f, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x9, 0xa9, 0xff, 0xff, 0xff, 0xfd, 0x9, + + /* U+0061 "a" */ + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x6, 0x2d, 0x57, 0x6b, 0x79, 0x77, 0x66, 0x4e, + 0x19, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x47, 0xaa, 0xf5, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xd9, 0x72, 0xe, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x1b, 0xbd, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xe1, 0x40, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x27, + 0xe5, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xfa, 0x45, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0xa, 0xd4, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xfc, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xf2, 0x18, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x73, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xf0, 0x63, 0x13, + 0x0, 0xa, 0x4c, 0xdc, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0x96, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0xe1, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0x57, 0x0, 0x0, 0x0, 0x0, 0x0, 0x23, + 0xf8, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf0, 0x4, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x28, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xf0, 0x4, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0xb0, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0x38, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x12, 0x3c, 0x3c, 0x3c, 0x3c, 0x3c, 0x3c, + 0x31, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x7e, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x58, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x6b, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0x6d, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x68, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x74, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x21, 0x77, 0xac, 0xd8, 0xeb, 0xf9, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0x74, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x21, 0xb4, 0xfe, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x74, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x41, 0xf4, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0x74, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x26, 0xf3, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xee, 0xc7, 0xb8, 0xb4, 0xb4, 0xb4, + 0xd2, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x74, + 0x0, 0x0, 0x0, 0x0, 0x0, 0xb1, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xe6, 0x50, 0x2, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x68, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0x74, 0x0, 0x0, 0x0, 0x0, + 0x16, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, + 0x34, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x71, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x74, + 0x0, 0x0, 0x0, 0x0, 0x59, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xc8, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x91, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0x74, 0x0, 0x0, 0x0, 0x0, + 0x77, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xa2, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0xd6, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x74, + 0x0, 0x0, 0x0, 0x0, 0x87, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xab, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x47, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0x75, 0x0, 0x0, 0x0, 0x0, + 0x79, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xd6, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x13, 0xe0, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x82, + 0x0, 0x0, 0x0, 0x0, 0x59, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0x5b, 0x0, 0x0, 0x0, + 0x0, 0x27, 0xd4, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xac, 0x0, 0x0, 0x0, 0x0, + 0x1a, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xfd, 0x9a, 0x5e, 0x64, 0xa4, 0xf9, 0xff, 0xff, + 0xfa, 0xb4, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf7, + 0x44, 0x0, 0x2, 0x2, 0x0, 0xb3, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0x7e, 0x57, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xf2, 0xfc, 0x28, + 0x0, 0x29, 0xf3, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xab, + 0x1, 0x12, 0xf8, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0x28, 0x0, 0x0, 0x49, 0xf2, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0x95, 0x3, 0x0, 0x0, 0x8d, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x28, + 0x0, 0x0, 0x0, 0x26, 0xaa, 0xfd, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xfe, 0xc0, 0x42, 0x0, 0x0, + 0x0, 0x0, 0x6, 0xa0, 0xfe, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xde, 0x1b, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x11, 0x4c, 0x6c, 0x7c, 0x73, 0x54, 0x1b, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x25, 0x64, 0x7b, 0x76, 0x5d, 0x29, 0x0, 0x0, + + /* U+0062 "b" */ + 0x80, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x58, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x80, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0x58, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x80, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0x58, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x80, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0x58, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x80, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x58, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x80, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0x58, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x80, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0x58, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x80, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0x58, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x80, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x58, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x80, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0x58, 0x0, 0x0, 0x0, 0x0, 0xe, 0x45, + 0x6b, 0x7a, 0x6d, 0x54, 0x1e, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x80, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0x56, 0x0, 0x0, 0x27, 0xa7, + 0xf8, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xc7, + 0x44, 0x0, 0x0, 0x0, 0x0, 0x0, 0x80, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0x50, 0x0, 0x5f, + 0xf7, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0x93, 0x1, 0x0, 0x0, 0x0, + 0x80, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x4b, + 0x59, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x8e, 0x0, + 0x0, 0x0, 0x80, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0x62, 0xf3, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0x4a, 0x0, 0x0, 0x80, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xdd, 0xff, 0xff, 0xd6, 0x78, + 0x50, 0x53, 0x7f, 0xe0, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xd7, 0x4, 0x0, 0x80, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x94, + 0x4, 0x0, 0x0, 0x0, 0x0, 0xc, 0xb4, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x4b, 0x0, + 0x80, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xbb, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0xd, 0xe5, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xa2, 0x0, 0x80, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0x33, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x75, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xec, 0x0, 0x80, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xd7, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x25, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0x1a, 0x80, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0x95, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0xed, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x46, + 0x80, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x6c, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0xca, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0x5f, 0x80, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0x51, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0xb7, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0x6d, 0x80, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0x46, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xac, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0x7a, 0x80, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0x44, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0xae, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x77, + 0x80, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x4f, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0xb9, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0x6a, 0x80, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0x66, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0xd1, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0x5c, 0x80, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0x8e, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0xf4, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0x3d, 0x80, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xce, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x32, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf, + 0x80, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0x27, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x85, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xde, 0x0, 0x80, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xaa, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x15, 0xef, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0x8e, 0x0, 0x81, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0x7e, 0x1, 0x0, + 0x0, 0x0, 0x0, 0xf, 0xc0, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0x34, 0x0, 0x82, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xf7, 0xff, 0xff, + 0xc6, 0x68, 0x42, 0x48, 0x7a, 0xe2, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xbc, 0x0, 0x0, + 0x87, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x80, + 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfb, 0x2b, + 0x0, 0x0, 0x8e, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0x3b, 0x86, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0x62, 0x0, 0x0, 0x0, 0x99, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0x2c, 0x1, 0x8d, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xf7, 0x68, 0x0, 0x0, 0x0, 0x0, 0xaa, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xfe, 0x11, 0x0, 0x0, + 0x46, 0xc7, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xf6, 0xab, 0x24, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x20, 0x57, 0x75, 0x7a, + 0x65, 0x49, 0xb, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, + + /* U+0063 "c" */ + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x2, 0x33, 0x55, 0x69, 0x7a, 0x70, 0x5f, + 0x34, 0x5, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x3a, 0xab, 0xee, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xf6, 0xa6, 0x3b, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x1a, 0xb4, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xa5, 0x14, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x2f, 0xe4, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xda, 0x1e, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x1f, 0xef, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xdc, 0xd, + 0x0, 0x0, 0x0, 0x0, 0x4, 0xc6, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xfc, 0xa0, 0x54, 0x3d, + 0x51, 0x94, 0xf6, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xa2, 0x0, 0x0, 0x0, 0x0, 0x64, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xf7, 0x41, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x2f, 0xf4, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xfe, 0x2b, 0x0, 0x0, 0x0, + 0xd4, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x71, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x67, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x9a, 0x0, + 0x0, 0x3c, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xec, 0x9, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0xc, 0xf8, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xe6, 0x0, 0x0, 0x7b, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xa5, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x54, 0x68, 0x68, 0x68, + 0x68, 0x68, 0x68, 0xa, 0x0, 0xb5, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0x6d, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xdf, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x49, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0xf0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0x35, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x2, 0xfe, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0x2b, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x6, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0x2e, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xf5, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x38, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0xe3, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0x50, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0xc3, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0x75, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x88, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xb1, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x8b, 0xdc, + 0xdc, 0xdc, 0xdc, 0xdc, 0xdc, 0x36, 0x0, 0x4c, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf3, 0xf, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0xdc, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfd, 0xd, + 0x0, 0x5, 0xe5, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0x82, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x4d, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xbd, 0x0, 0x0, 0x0, 0x7a, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xfc, 0x4f, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x2d, 0xe9, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0x4c, 0x0, 0x0, 0x0, 0xc, 0xdb, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xa8, + 0x57, 0x3d, 0x50, 0x97, 0xf7, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xb5, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x32, 0xf8, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xe1, 0x18, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x45, 0xf0, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xdd, 0x1f, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x2a, + 0xc8, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x9d, 0xf, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x4c, 0xb7, 0xf5, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xee, 0x9a, 0x2d, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x6, + 0x3b, 0x59, 0x6d, 0x7b, 0x6e, 0x5a, 0x2d, 0x1, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + + /* U+0064 "d" */ + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0xcc, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xc, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0xcc, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xc, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xcc, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xc, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0xcc, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0xcc, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xc, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0xcc, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xc, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xcc, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xc, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0xcc, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0xcc, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xc, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x25, 0x56, 0x6e, 0x7a, 0x6a, 0x42, 0x8, + 0x0, 0x0, 0x0, 0x0, 0xcc, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xc, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x60, 0xd2, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xf4, 0x96, 0x17, 0x0, 0x0, 0xca, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xc, 0x0, 0x0, + 0x0, 0x11, 0xbd, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xeb, 0x3c, 0x0, + 0xc7, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc, + 0x0, 0x0, 0xc, 0xc8, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xf4, 0x2c, 0xc5, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xc, 0x0, 0x0, 0x9c, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xcf, 0xc4, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xc, 0x0, 0x36, 0xfe, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xa7, 0x51, + 0x33, 0x43, 0x80, 0xe8, 0xff, 0xff, 0xfb, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xc, 0x0, 0xab, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfd, 0x53, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x15, 0xcd, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc, + 0xf, 0xf7, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0x87, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x1e, 0xf6, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xc, 0x55, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xf7, 0x13, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x92, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xc, 0x86, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xb9, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x3d, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xc, 0xb5, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0x7d, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x4, + 0xfb, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc, + 0xd2, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x58, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0xd9, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xc, 0xe0, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0x43, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0xc4, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xc, 0xed, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0x39, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xb8, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xc, 0xed, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0x39, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0xbc, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc, + 0xe0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x43, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0xc7, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xc, 0xd3, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0x58, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0xe5, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xc, 0xb8, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0x7d, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x10, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xc, 0x8b, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xb8, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x57, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc, + 0x5c, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf7, + 0x12, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0xb6, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xc, 0x15, 0xfc, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0x88, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x43, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xc, 0x0, 0xbb, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xfd, 0x55, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x33, 0xeb, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xd, 0x0, 0x49, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xac, 0x59, 0x3e, 0x52, 0x9b, 0xf9, 0xff, 0xff, + 0xf1, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x11, + 0x0, 0x0, 0xb9, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xb3, 0xbd, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0x15, 0x0, 0x0, 0x1b, 0xe2, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xe6, 0x19, 0xb2, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0x1e, 0x0, 0x0, 0x0, 0x29, + 0xdc, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xdb, 0x26, 0x0, 0x9c, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0x2b, 0x0, 0x0, + 0x0, 0x0, 0xa, 0x89, 0xeb, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xe7, 0x7e, 0xa, 0x0, 0x0, + 0x7a, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x39, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x4, 0x40, + 0x62, 0x79, 0x76, 0x5f, 0x32, 0x1, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, + + /* U+0065 "e" */ + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x8, 0x3e, 0x5a, 0x6d, 0x7a, 0x68, 0x52, + 0x27, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x1, 0x55, 0xbd, 0xf7, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xdc, 0x87, 0x10, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x34, 0xd2, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xeb, + 0x5b, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x53, 0xf6, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xfe, 0x6e, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x3e, 0xfc, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xe7, 0xda, 0xf4, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x53, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x12, 0xe4, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xa3, 0x22, 0x0, 0x0, + 0x4, 0x4d, 0xdd, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xe6, 0xf, 0x0, 0x0, 0x0, 0x0, 0x84, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0x93, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x16, 0xe3, 0xff, 0xff, + 0xff, 0xff, 0xff, 0x84, 0x0, 0x0, 0x0, 0x8, + 0xeb, 0xff, 0xff, 0xff, 0xff, 0xff, 0xe8, 0x8, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x57, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xe2, 0x2, 0x0, + 0x0, 0x51, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0x8f, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x4, 0xf0, 0xff, 0xff, 0xff, 0xff, 0xff, + 0x43, 0x0, 0x0, 0x8d, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0x56, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0xb7, 0xff, 0xff, 0xff, + 0xff, 0xff, 0x7f, 0x0, 0x0, 0xc6, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0x64, 0x34, 0x34, 0x34, + 0x34, 0x34, 0x34, 0x34, 0x34, 0x34, 0xad, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xb0, 0x0, 0x0, 0xe5, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xde, 0x0, + 0x0, 0xf5, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xf4, 0x0, 0x5, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0x2, 0x3, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0x10, 0x0, 0xf3, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x2d, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0xe3, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0x39, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0xc0, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0x59, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x89, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0x88, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x4f, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xd7, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x2d, 0x24, 0xf, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x8, 0xec, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0x50, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x21, 0xfb, 0xff, 0xff, 0xf8, 0xe3, 0xcd, + 0x65, 0x0, 0x0, 0x0, 0x89, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xeb, 0x2a, 0x0, 0x0, 0x0, + 0x0, 0x0, 0xa, 0xc0, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xfd, 0x25, 0x0, 0x0, 0x0, 0x16, 0xe9, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf6, 0x89, + 0x3c, 0x22, 0x35, 0x69, 0xd9, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0x92, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x49, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xd2, 0xb, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x62, 0xfa, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xd7, 0x18, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x41, + 0xdc, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xa3, 0xd, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x4, 0x63, 0xc5, 0xfb, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xf0, 0xa2, 0x32, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xd, + 0x44, 0x5d, 0x71, 0x7c, 0x70, 0x5b, 0x30, 0x5, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + + /* U+0066 "f" */ + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3, + 0x51, 0xa5, 0xda, 0xf1, 0xfb, 0xf0, 0xe0, 0xc1, + 0x7b, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x23, + 0xcd, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x13, + 0xdf, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x8c, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x0, + 0x1, 0xec, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xfc, 0xbf, 0xa1, 0xb4, 0x9c, 0x0, 0x0, 0x0, + 0x0, 0x27, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xf9, 0x35, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x40, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xb3, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x4b, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0x90, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x4c, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0x8c, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x4c, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0x8c, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x28, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xc0, 0x28, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xc0, 0x28, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xc0, 0x28, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xc0, 0x18, 0x9c, + 0x9c, 0x9c, 0xb9, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xd2, 0x9c, 0x9c, 0x9c, 0x9c, 0x75, 0x0, + 0x0, 0x0, 0x0, 0x4c, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0x8c, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x4c, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0x8c, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x4c, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0x8c, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x4c, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0x8c, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x4c, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x8c, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x4c, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x8c, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x4c, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0x8c, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x4c, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0x8c, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x4c, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0x8c, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x4c, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0x8c, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x4c, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0x8c, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x4c, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0x8c, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x4c, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x8c, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x4c, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x8c, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x4c, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0x8c, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x4c, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0x8c, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x4c, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0x8c, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x4c, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0x8c, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x4c, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0x8c, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x4c, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0x8c, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x4c, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x8c, 0x0, + 0x0, 0x0, 0x0, 0x0, + + /* U+0067 "g" */ + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x27, + 0x56, 0x6e, 0x7b, 0x6b, 0x44, 0xb, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x2, 0x6b, + 0xd7, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf6, + 0x9a, 0x1a, 0x0, 0x0, 0x65, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0x2e, 0x0, 0x0, 0x0, 0x19, + 0xcb, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xec, 0x3c, 0x0, 0x82, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0x23, 0x0, 0x0, + 0x15, 0xd6, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf3, 0x29, + 0x96, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x18, + 0x0, 0x0, 0xb0, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xcb, 0xa3, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0x13, 0x0, 0x47, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xbe, 0x6a, 0x4c, 0x5a, + 0x9a, 0xf5, 0xff, 0xff, 0xf1, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0x10, 0x0, 0xb9, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xfe, 0x65, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x29, 0xe1, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xc, 0x17, 0xfc, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x8d, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x32, 0xfd, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc, + 0x5e, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf7, + 0x13, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0xa3, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xc, 0x8e, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xb6, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x46, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xc, 0xbc, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0x7b, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x7, 0xfc, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xc, 0xd5, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0x55, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0xd9, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc, + 0xe3, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x41, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0xc3, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xc, 0xef, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0x37, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0xb7, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xc, 0xeb, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0x3b, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xbe, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xc, 0xde, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0x46, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0xcc, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc, + 0xcf, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x64, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0xef, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xc, 0xad, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0x90, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x21, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xc, 0x7f, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xd6, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x70, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xc, 0x4a, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x3f, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x5, 0xde, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc, + 0x6, 0xef, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xd3, 0xc, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x8e, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xc, 0x0, 0x9b, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xce, 0x38, 0x0, 0x0, 0x0, + 0x1d, 0x9f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xc, 0x0, 0x1f, 0xf6, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xe5, + 0xca, 0xda, 0xfd, 0xff, 0xff, 0xf3, 0xcf, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xc, 0x0, 0x0, + 0x79, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x6f, + 0xbb, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc, + 0x0, 0x0, 0x0, 0x99, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0x99, 0x0, 0xbf, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xc, 0x0, 0x0, 0x0, 0x2, 0x70, 0xf4, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xf2, 0x6d, 0x0, 0x0, 0xc0, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xb, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x19, 0x71, 0xbf, 0xe1, 0xf8, 0xf7, 0xe1, + 0xb4, 0x6d, 0x10, 0x0, 0x0, 0x0, 0xc9, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xfd, 0x2, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0xdc, 0xff, 0xff, 0xff, 0xff, 0xff, 0xec, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0xc, 0xfd, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xd2, 0x0, 0x0, 0x0, 0x0, 0x12, 0x2d, 0x48, + 0x63, 0x7e, 0x12, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x5b, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0x95, 0x0, 0x0, 0xa1, 0xf7, 0xff, + 0xff, 0xff, 0xff, 0xff, 0x86, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x8, 0xd8, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0x50, 0x0, 0x0, 0x6d, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0x76, + 0x6, 0x0, 0x0, 0x0, 0x0, 0x1d, 0xbe, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xda, 0x4, 0x0, + 0x0, 0xa, 0xe5, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xe7, 0xa8, 0x8c, 0x92, 0xbb, 0xf9, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x54, + 0x0, 0x0, 0x0, 0x0, 0x43, 0xfa, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0x86, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x4d, + 0xee, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xfa, 0x7c, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x1d, 0x9b, 0xf9, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xfc, 0xb0, 0x31, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x12, 0x5c, + 0x9c, 0xc6, 0xe6, 0xf4, 0xfd, 0xf2, 0xe2, 0xcd, + 0x9c, 0x67, 0x1b, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, + + /* U+0068 "h" */ + 0x80, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x58, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x80, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0x58, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x80, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0x58, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x80, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0x58, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x80, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0x58, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x80, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0x58, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x80, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0x58, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x80, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x58, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x80, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x58, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x80, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0x58, 0x0, 0x0, 0x0, 0x0, 0x6, 0x3d, 0x69, + 0x7a, 0x70, 0x5a, 0x22, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x80, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0x55, 0x0, 0x0, 0xd, 0x85, 0xed, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xd3, 0x52, 0x0, + 0x0, 0x0, 0x0, 0x80, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0x51, 0x0, 0x26, 0xda, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0x98, 0x3, 0x0, 0x0, 0x80, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0x4c, 0x1b, 0xe3, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0x87, 0x0, 0x0, 0x80, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0x41, 0xbc, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xfd, 0x30, 0x0, 0x80, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0x88, 0xff, 0xff, + 0xff, 0xe1, 0xb7, 0xbb, 0xed, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0x9d, 0x0, 0x80, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf4, 0xff, + 0xe6, 0x4b, 0x1, 0x0, 0x0, 0x4, 0x79, 0xfe, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf2, 0x2, + 0x80, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xee, 0x28, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x89, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0x2a, 0x80, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0x69, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0xf, 0xf7, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0x53, 0x80, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xed, 0x6, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0xb8, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0x64, 0x80, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xa6, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x8a, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0x72, 0x80, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0x76, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x74, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0x74, 0x80, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0x61, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x69, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0x74, 0x80, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0x58, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x68, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x74, 0x80, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x58, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x68, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x74, + 0x80, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x58, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x68, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0x74, 0x80, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0x58, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x68, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0x74, 0x80, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0x58, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x68, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0x74, 0x80, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0x58, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x68, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0x74, 0x80, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0x58, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x68, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0x74, 0x80, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0x58, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x68, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0x74, 0x80, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0x58, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x68, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x74, 0x80, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x58, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x68, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x74, + 0x80, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x58, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x68, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0x74, 0x80, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0x58, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x68, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0x74, 0x80, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0x58, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x68, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0x74, 0x80, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0x58, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x68, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0x74, + + /* U+0069 "i" */ + 0x80, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x58, + 0x80, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x58, + 0x80, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x58, + 0x80, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x58, + 0x80, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x58, + 0x8, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x5, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x80, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x58, + 0x80, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x58, + 0x80, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x58, + 0x80, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x58, + 0x80, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x58, + 0x80, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x58, + 0x80, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x58, + 0x80, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x58, + 0x80, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x58, + 0x80, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x58, + 0x80, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x58, + 0x80, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x58, + 0x80, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x58, + 0x80, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x58, + 0x80, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x58, + 0x80, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x58, + 0x80, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x58, + 0x80, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x58, + 0x80, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x58, + 0x80, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x58, + 0x80, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x58, + 0x80, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x58, + 0x80, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x58, + 0x80, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x58, + 0x80, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x58, + 0x80, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x58, + + /* U+006A "j" */ + 0x0, 0x0, 0x0, 0x0, 0x80, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0x68, 0x0, 0x0, 0x0, 0x0, + 0x80, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x68, + 0x0, 0x0, 0x0, 0x0, 0x80, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0x68, 0x0, 0x0, 0x0, 0x0, + 0x80, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x68, + 0x0, 0x0, 0x0, 0x0, 0x80, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0x68, 0x0, 0x0, 0x0, 0x0, + 0x8, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x6, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x80, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0x68, 0x0, 0x0, 0x0, 0x0, + 0x80, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x68, + 0x0, 0x0, 0x0, 0x0, 0x80, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0x68, 0x0, 0x0, 0x0, 0x0, + 0x80, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x68, + 0x0, 0x0, 0x0, 0x0, 0x80, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0x68, 0x0, 0x0, 0x0, 0x0, + 0x80, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x68, + 0x0, 0x0, 0x0, 0x0, 0x80, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0x68, 0x0, 0x0, 0x0, 0x0, + 0x80, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x68, + 0x0, 0x0, 0x0, 0x0, 0x80, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0x68, 0x0, 0x0, 0x0, 0x0, + 0x80, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x68, + 0x0, 0x0, 0x0, 0x0, 0x80, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0x68, 0x0, 0x0, 0x0, 0x0, + 0x80, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x68, + 0x0, 0x0, 0x0, 0x0, 0x80, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0x68, 0x0, 0x0, 0x0, 0x0, + 0x80, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x68, + 0x0, 0x0, 0x0, 0x0, 0x80, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0x68, 0x0, 0x0, 0x0, 0x0, + 0x80, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x68, + 0x0, 0x0, 0x0, 0x0, 0x80, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0x68, 0x0, 0x0, 0x0, 0x0, + 0x80, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x68, + 0x0, 0x0, 0x0, 0x0, 0x80, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0x68, 0x0, 0x0, 0x0, 0x0, + 0x80, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x68, + 0x0, 0x0, 0x0, 0x0, 0x80, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0x68, 0x0, 0x0, 0x0, 0x0, + 0x80, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x68, + 0x0, 0x0, 0x0, 0x0, 0x80, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0x68, 0x0, 0x0, 0x0, 0x0, + 0x80, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x68, + 0x0, 0x0, 0x0, 0x0, 0x80, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0x68, 0x0, 0x0, 0x0, 0x0, + 0x80, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x68, + 0x0, 0x0, 0x0, 0x0, 0x80, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0x68, 0x0, 0x0, 0x0, 0x0, + 0x83, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x68, + 0x0, 0x0, 0x0, 0x0, 0x92, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0x67, 0x0, 0x0, 0x0, 0x0, + 0xc1, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x5d, + 0x0, 0x0, 0x1, 0x5d, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0x45, 0xc2, 0xe7, 0xf6, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfd, 0x10, + 0xcc, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xaf, 0x0, 0xcc, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xf3, 0x28, 0x0, + 0xcc, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xec, 0x41, 0x0, 0x0, 0xa0, 0xde, 0xef, 0xf9, + 0xfb, 0xeb, 0xc3, 0x79, 0x11, 0x0, 0x0, 0x0, + + /* U+006B "k" */ + 0x80, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x58, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x80, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0x58, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x80, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0x58, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x80, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0x58, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x80, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0x58, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x80, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0x58, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x80, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0x58, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x80, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x58, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x80, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x58, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x80, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0x58, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x80, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0x58, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x1, 0xa3, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xae, 0x3, 0x80, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0x58, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x86, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xbf, 0x7, 0x0, 0x80, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0x58, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x67, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xcd, 0xe, 0x0, 0x0, 0x80, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0x58, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x4c, 0xfc, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xda, 0x16, 0x0, 0x0, 0x0, 0x80, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0x58, 0x0, 0x0, + 0x0, 0x0, 0x35, 0xf5, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xe5, 0x20, 0x0, 0x0, 0x0, 0x0, 0x80, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x58, 0x0, + 0x0, 0x0, 0x22, 0xe9, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xee, 0x2c, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x80, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x58, + 0x0, 0x0, 0x13, 0xd9, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xf5, 0x3a, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x80, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0x58, 0x0, 0x9, 0xc6, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xfa, 0x49, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x80, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0x58, 0x2, 0xad, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xfe, 0x5b, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x80, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0x58, 0x91, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0x6e, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x80, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xc3, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xf7, 0x1d, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x80, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xb2, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x80, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x54, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x80, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xe6, + 0xf, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x80, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xc4, 0xa0, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0x97, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x80, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xf8, 0x76, 0x2, 0xd, 0xe5, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xfe, 0x3a, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x80, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0x63, 0x0, 0x0, 0x0, 0x59, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xd4, 0x5, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x80, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0x58, 0x0, 0x0, 0x0, 0x0, 0xbf, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x7b, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x80, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0x58, 0x0, 0x0, 0x0, 0x0, + 0x2b, 0xfb, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf7, + 0x25, 0x0, 0x0, 0x0, 0x0, 0x80, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0x58, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x8d, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xbd, 0x0, 0x0, 0x0, 0x0, 0x80, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0x58, 0x0, 0x0, + 0x0, 0x0, 0x0, 0xd, 0xe6, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0x5f, 0x0, 0x0, 0x0, 0x80, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x58, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x5a, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xec, 0x14, 0x0, 0x0, + 0x80, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x58, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xc0, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xa2, 0x0, + 0x0, 0x80, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0x58, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x2c, 0xfb, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0x44, 0x0, 0x80, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0x58, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x8e, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xdc, 0x8, 0x80, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0x58, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0xe, 0xe6, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0x87, + + /* U+006C "l" */ + 0x80, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x58, + 0x80, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x58, + 0x80, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x58, + 0x80, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x58, + 0x80, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x58, + 0x80, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x58, + 0x80, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x58, + 0x80, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x58, + 0x80, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x58, + 0x80, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x58, + 0x80, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x58, + 0x80, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x58, + 0x80, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x58, + 0x80, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x58, + 0x80, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x58, + 0x80, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x58, + 0x80, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x58, + 0x80, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x58, + 0x80, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x58, + 0x80, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x58, + 0x80, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x58, + 0x80, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x58, + 0x80, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x58, + 0x80, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x58, + 0x80, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x58, + 0x80, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x58, + 0x80, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x58, + 0x80, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x58, + 0x80, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x58, + 0x80, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x58, + 0x80, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x58, + 0x80, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x58, + 0x80, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x58, + 0x80, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x58, + 0x80, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x58, + 0x80, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x58, + + /* U+006D "m" */ + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x24, 0x5d, 0x77, 0x76, + 0x5f, 0x29, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x13, 0x4d, 0x70, 0x7a, 0x68, + 0x43, 0x6, 0x0, 0x0, 0x0, 0x0, 0x0, 0xae, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xe2, 0x0, 0x0, + 0x0, 0x31, 0xc1, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xcd, 0x3f, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x1a, 0xa3, 0xfa, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xf1, 0x7c, 0x7, 0x0, 0x0, 0x0, 0xa0, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xf2, 0x0, 0x0, 0x53, + 0xf8, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xfd, 0x60, 0x0, 0x0, 0x0, 0x2d, 0xe7, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xbd, 0xa, 0x0, 0x0, 0x93, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xfe, 0x1, 0x36, 0xf8, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xf9, 0x2e, 0x0, 0x13, 0xe2, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0x9c, 0x0, 0x0, 0x88, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0x15, 0xd3, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xb0, 0x0, 0x9f, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xfe, 0x33, 0x0, 0x84, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0x7f, 0xff, 0xff, 0xf6, 0xbe, 0xb9, + 0xf1, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xfc, 0x3c, 0xfe, 0xff, 0xff, 0xda, 0xb4, 0xd2, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0x96, 0x0, 0x81, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xf2, 0xff, 0xb4, 0x13, 0x0, 0x0, 0xc, + 0xae, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xe9, 0xff, 0xf5, 0x55, 0x0, 0x0, 0x0, 0x46, + 0xf4, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xe4, + 0x0, 0x80, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xcd, 0x7, 0x0, 0x0, 0x0, 0x0, 0xa, + 0xe2, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0x57, 0x0, 0x0, 0x0, 0x0, 0x0, 0x6c, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x15, + 0x80, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0x3f, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7c, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc4, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x8, 0xf4, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x3a, 0x80, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xdc, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x39, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x63, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xb9, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0x49, 0x80, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0x9a, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x12, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0x22, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x92, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0x55, 0x80, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0x71, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0xfe, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xf6, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x7f, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0x58, 0x80, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0x5f, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0xf5, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xdf, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x75, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0x58, 0x80, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0x58, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0xf4, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xd8, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x74, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0x58, 0x80, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0x58, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0xf4, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xd8, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x74, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0x58, 0x80, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0x58, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0xf4, 0xff, 0xff, 0xff, 0xff, 0xff, 0xd8, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x74, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x58, + 0x80, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x58, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0xf4, 0xff, 0xff, 0xff, 0xff, 0xff, 0xd8, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x74, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x58, 0x80, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x58, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xf4, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xd8, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x74, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0x58, 0x80, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0x58, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xf4, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xd8, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x74, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0x58, 0x80, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0x58, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0xf4, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xd8, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x74, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0x58, 0x80, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0x58, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0xf4, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xd8, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x74, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0x58, 0x80, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0x58, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0xf4, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xd8, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x74, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0x58, 0x80, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0x58, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0xf4, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xd8, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x74, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0x58, 0x80, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0x58, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0xf4, 0xff, 0xff, 0xff, 0xff, 0xff, 0xd8, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x74, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x58, + 0x80, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x58, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0xf4, 0xff, 0xff, 0xff, 0xff, 0xff, 0xd8, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x74, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x58, 0x80, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x58, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xf4, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xd8, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x74, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0x58, 0x80, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0x58, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xf4, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xd8, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x74, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0x58, + + /* U+006E "n" */ + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x6, 0x3d, 0x69, 0x7a, + 0x70, 0x5a, 0x21, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0xae, 0xff, 0xff, 0xff, 0xff, 0xff, 0xe2, + 0x0, 0x0, 0x0, 0xd, 0x85, 0xed, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xd2, 0x51, 0x0, 0x0, + 0x0, 0x0, 0xa0, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xf2, 0x0, 0x0, 0x26, 0xda, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x95, + 0x2, 0x0, 0x0, 0x93, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xfe, 0x1, 0x1a, 0xe3, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0x84, 0x0, 0x0, 0x88, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0x11, 0xba, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xfc, 0x2e, 0x0, 0x84, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0x73, 0xff, 0xff, 0xff, + 0xe1, 0xb7, 0xbb, 0xed, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0x9b, 0x0, 0x81, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xf1, 0xff, 0xe7, + 0x4d, 0x1, 0x0, 0x0, 0x5, 0x7a, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xf1, 0x2, 0x80, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf0, + 0x29, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x8b, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x29, + 0x80, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0x6c, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x10, 0xf8, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0x53, 0x80, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xef, 0x7, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0xb9, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0x63, 0x80, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xa7, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x8b, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0x71, 0x80, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0x77, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x74, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0x74, 0x80, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0x61, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x69, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0x74, 0x80, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0x58, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x68, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0x74, 0x80, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0x58, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x68, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x74, 0x80, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x58, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x68, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x74, + 0x80, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x58, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x68, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0x74, 0x80, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0x58, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x68, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0x74, 0x80, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0x58, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x68, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0x74, 0x80, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0x58, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x68, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0x74, 0x80, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0x58, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x68, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0x74, 0x80, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0x58, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x68, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0x74, 0x80, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0x58, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x68, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x74, 0x80, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x58, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x68, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x74, + 0x80, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x58, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x68, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0x74, 0x80, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0x58, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x68, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0x74, 0x80, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0x58, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x68, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0x74, + + /* U+006F "o" */ + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0xf, 0x44, 0x5b, 0x6f, 0x7a, 0x69, + 0x57, 0x3c, 0x8, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0xd, 0x76, 0xc8, 0xfc, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf9, 0xc4, + 0x6c, 0x9, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x2, 0x75, 0xed, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xe9, 0x66, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x10, 0xb5, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0x9e, 0x7, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x9, 0xcd, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xa2, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xa1, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xdc, + 0x7f, 0x4e, 0x3e, 0x53, 0x92, 0xf0, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0x67, 0x0, 0x0, + 0x0, 0x0, 0x46, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0x96, 0x7, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x19, 0xc9, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xee, 0xb, 0x0, 0x0, 0x0, 0xc1, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xb0, 0x1, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x13, 0xec, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x6f, 0x0, + 0x0, 0x2e, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xfd, 0x22, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x76, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xd2, 0x0, 0x0, 0x73, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xc0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x20, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0x10, + 0x0, 0xb3, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0x7c, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0xe4, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0x4a, 0x0, 0xdc, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0x52, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0xbd, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x6c, + 0x0, 0xf0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0x39, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0xa8, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0x7e, 0x4, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0x2d, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x9d, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x8f, + 0x3, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0x2e, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x9f, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0x8d, 0x0, 0xef, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0x39, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0xac, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x7a, + 0x0, 0xdc, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0x53, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0xc6, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0x67, 0x0, 0xb2, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0x7d, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0xef, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x3d, + 0x0, 0x73, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xc0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x36, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xf6, 0x6, 0x0, 0x2f, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xfc, 0x20, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x96, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xb9, 0x0, + 0x0, 0x0, 0xc2, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xab, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x2f, 0xfb, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0x4b, 0x0, 0x0, 0x0, 0x49, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x89, 0x3, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x32, 0xe5, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xd0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0xa4, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xd2, 0x71, 0x47, 0x41, 0x5e, + 0xa8, 0xfc, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xf7, 0x33, 0x0, 0x0, 0x0, 0x0, 0x0, 0xa, + 0xd2, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0x61, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x13, 0xbf, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf7, 0x5d, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x4, 0x86, 0xf5, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xc7, 0x32, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x15, + 0x85, 0xd4, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xed, 0xad, 0x44, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x18, 0x4b, + 0x60, 0x73, 0x79, 0x66, 0x53, 0x2f, 0x1, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + + /* U+0070 "p" */ + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x10, 0x47, 0x6c, 0x7b, + 0x6d, 0x54, 0x1c, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0xaa, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xfe, 0xc, 0x0, 0x0, 0x2f, 0xae, 0xfa, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xfe, 0xc4, 0x40, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x98, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0x25, 0x0, 0x6f, 0xfa, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xfe, 0x8c, 0x0, 0x0, 0x0, 0x0, 0x8d, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0x31, 0x6b, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0x86, 0x0, 0x0, 0x0, + 0x87, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x62, + 0xfa, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x42, + 0x0, 0x0, 0x82, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xe9, 0xff, 0xff, 0xe1, 0x84, 0x5b, 0x61, + 0x92, 0xed, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xd2, 0x3, 0x0, 0x80, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xa5, 0x9, 0x0, + 0x0, 0x0, 0x0, 0x18, 0xc9, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0x46, 0x0, 0x80, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc8, 0x5, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x18, 0xf0, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x9f, 0x0, + 0x80, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0x3f, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x84, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xe9, 0x0, 0x80, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xde, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x2f, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0x18, 0x80, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0x99, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xf1, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0x45, 0x80, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0x6f, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0xcd, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x5f, + 0x80, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x52, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0xb7, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0x6c, 0x80, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0x46, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0xac, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0x7a, 0x80, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0x44, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xae, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0x77, 0x80, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0x50, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0xb9, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x69, + 0x80, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x67, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0xd1, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0x5b, 0x80, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0x90, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x1, 0xf4, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0x3d, 0x80, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xd1, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x34, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xf, 0x80, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x2b, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x87, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xde, 0x0, + 0x80, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xb2, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x17, 0xf0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0x8e, 0x0, 0x80, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0x86, 0x2, 0x0, 0x0, 0x0, + 0x0, 0x12, 0xc4, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0x32, 0x0, 0x80, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xf5, 0xff, 0xff, 0xc9, 0x68, + 0x42, 0x49, 0x7e, 0xe5, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xbc, 0x0, 0x0, 0x80, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0x83, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xfa, 0x29, 0x0, 0x0, + 0x80, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x4f, + 0x87, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0x5f, 0x0, + 0x0, 0x0, 0x80, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0x54, 0x0, 0x89, 0xfe, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf5, 0x62, + 0x0, 0x0, 0x0, 0x0, 0x80, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0x56, 0x0, 0x0, 0x40, 0xc1, + 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf5, 0xa7, + 0x21, 0x0, 0x0, 0x0, 0x0, 0x0, 0x80, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0x57, 0x0, 0x0, + 0x0, 0x0, 0x1c, 0x55, 0x74, 0x7a, 0x64, 0x47, + 0xa, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x80, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x58, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x80, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0x58, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x80, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0x58, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x80, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0x58, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x80, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x58, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x80, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0x58, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x80, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0x58, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x80, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0x58, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x80, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x58, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, + + /* U+0071 "q" */ + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x21, + 0x53, 0x6c, 0x7b, 0x6b, 0x44, 0xb, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x56, + 0xcd, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf6, + 0x9a, 0x1a, 0x0, 0x0, 0x80, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0x2e, 0x0, 0x0, 0x0, 0xc, + 0xb4, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xec, 0x3c, 0x0, 0xa1, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0x23, 0x0, 0x0, + 0x9, 0xbf, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf3, 0x29, + 0xb4, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x18, + 0x0, 0x0, 0x92, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xcb, 0xbe, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0x13, 0x0, 0x30, 0xfc, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xc0, 0x6a, 0x4c, 0x5a, + 0x99, 0xf4, 0xff, 0xff, 0xf8, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0x10, 0x0, 0xa6, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0x6b, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x27, 0xdf, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xc, 0xc, 0xf5, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x96, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x30, 0xfc, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc, + 0x52, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfa, + 0x19, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0xa3, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xc, 0x84, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xbd, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x47, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xc, 0xb3, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0x80, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x8, 0xfd, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xc, 0xd2, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0x5a, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0xdc, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc, + 0xe0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x43, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0xc5, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xc, 0xed, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0x39, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0xb9, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xc, 0xee, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0x38, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xbc, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xc, 0xe1, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0x43, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0xc7, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc, + 0xd3, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x58, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0xe4, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xc, 0xb8, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0x7e, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xc, 0x8b, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xb9, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x54, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xc, 0x5d, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xf8, 0x14, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xb3, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc, + 0x15, 0xfc, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0x8c, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x3f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xc, 0x0, 0xbb, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xfe, 0x5b, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x2d, 0xe8, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xc, 0x0, 0x4a, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xb1, 0x5b, + 0x3f, 0x50, 0x96, 0xf6, 0xff, 0xff, 0xf0, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xc, 0x0, 0x0, + 0xb9, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xca, + 0xaf, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc, + 0x0, 0x0, 0x1b, 0xe2, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xf0, 0x26, 0xb5, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xc, 0x0, 0x0, 0x0, 0x29, 0xdc, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xe3, 0x32, 0x0, 0xbb, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xc, 0x0, 0x0, 0x0, 0x0, + 0xa, 0x89, 0xeb, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xea, 0x85, 0xf, 0x0, 0x0, 0xbf, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xc, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x4, 0x40, 0x62, 0x79, + 0x76, 0x60, 0x34, 0x2, 0x0, 0x0, 0x0, 0x0, + 0xc0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0xc0, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xc, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0xc0, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xc, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xc0, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xc, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0xc0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0xc0, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xc, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0xc0, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xc, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xc0, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xc, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0xc0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0xc0, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xc, + + /* U+0072 "r" */ + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x27, 0x65, 0x79, 0x6b, 0x2a, + 0xae, 0xff, 0xff, 0xff, 0xff, 0xff, 0xe3, 0x0, + 0x0, 0xf, 0xac, 0xff, 0xff, 0xff, 0xff, 0xb4, + 0xa1, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf2, 0x0, + 0x4, 0xbf, 0xff, 0xff, 0xff, 0xff, 0xff, 0xb4, + 0x94, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfd, 0x0, + 0x6b, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xb4, + 0x8b, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x11, + 0xe3, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xb4, + 0x84, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x6d, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xb4, + 0x82, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xda, + 0xff, 0xff, 0xcc, 0x6f, 0x4c, 0x50, 0x68, 0x63, + 0x80, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0x83, 0x2, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x80, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xab, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x80, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0x25, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x80, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xcd, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x80, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x96, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x80, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x70, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x80, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x61, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x80, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x58, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x80, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x58, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x80, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x58, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x80, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x58, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x80, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x58, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x80, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x58, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x80, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x58, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x80, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x58, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x80, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x58, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x80, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x58, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x80, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x58, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x80, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x58, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x80, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x58, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + + /* U+0073 "s" */ + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x9, 0x33, 0x5b, 0x6b, 0x79, 0x79, 0x6b, 0x55, + 0x2a, 0x4, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x5, 0x63, + 0xbc, 0xfc, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xef, 0xa1, 0x37, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x42, 0xdb, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xab, 0x10, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x56, 0xfa, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xdc, 0x19, 0x0, 0x0, 0x0, 0x0, 0x23, 0xf5, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xcb, 0x4, 0x0, 0x0, 0x0, 0xa1, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xad, 0x5b, + 0x34, 0x24, 0x25, 0x38, 0x67, 0xce, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0x66, 0x0, 0x0, 0x4, + 0xf1, 0xff, 0xff, 0xff, 0xff, 0xff, 0x7b, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7, 0xbf, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xd1, 0x0, 0x0, + 0x1d, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x22, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x38, 0xff, 0xff, 0xfa, 0xe2, 0xc8, 0xad, 0xa, + 0x0, 0x2f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0x46, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x2f, 0x16, 0x1, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x1c, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xde, 0x2d, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0xe4, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xc7, 0x82, 0x4b, 0x14, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x7c, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xdc, 0xa3, 0x64, 0x25, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x8, 0xc1, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xd6, 0x82, + 0x19, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0xe, 0xba, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xf7, 0x8a, 0x6, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x5e, 0xde, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xc6, 0xc, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x3f, 0x8f, + 0xd4, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xa2, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x13, 0x4c, 0x81, 0xb4, 0xeb, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, + 0x22, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x2e, 0x89, 0xf4, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0x78, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x2a, 0xf1, 0xff, 0xff, 0xff, + 0xff, 0xff, 0x9f, 0x0, 0x0, 0x0, 0x0, 0x1b, + 0x42, 0x58, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x9e, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xb8, 0x16, 0xa8, 0xce, 0xf4, + 0xff, 0xff, 0xfe, 0x23, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xa0, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xa2, 0x1, 0xe0, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xba, 0x8, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x20, 0xef, + 0xff, 0xff, 0xff, 0xff, 0xff, 0x72, 0x0, 0x72, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xd8, 0x6f, + 0x37, 0x1d, 0x13, 0x14, 0x22, 0x44, 0x86, 0xed, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xfb, 0x19, 0x0, + 0x5, 0xd3, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x7b, 0x0, + 0x0, 0x0, 0x1e, 0xe3, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x9d, 0x3, + 0x0, 0x0, 0x0, 0x0, 0x16, 0xb5, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xec, 0x6a, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x37, + 0x9f, 0xe6, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xfe, 0xc6, 0x71, 0x10, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x20, 0x45, 0x64, 0x71, 0x7b, + 0x79, 0x6c, 0x5c, 0x36, 0xb, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, + + /* U+0074 "t" */ + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x50, 0x80, + 0x80, 0x80, 0x60, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xe0, + 0xff, 0xff, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x36, + 0xff, 0xff, 0xff, 0xff, 0xc0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x8b, 0xff, 0xff, 0xff, 0xff, 0xc0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0xdf, 0xff, 0xff, 0xff, 0xff, 0xc0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x35, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x8a, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xc0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x68, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc0, 0x0, + 0x68, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc0, + 0x0, 0x68, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xc0, 0x0, 0x68, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xc0, 0x0, 0x3f, 0x9c, 0x9c, 0xa0, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xe7, 0x9c, 0x9c, + 0x9c, 0x9c, 0x75, 0x0, 0x0, 0x0, 0x0, 0xc, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0xc, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0xc, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xc0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0xc, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0xc, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0xc, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0xc, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xc0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xc, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xc0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xc, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0xc, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0xc, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xc0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0xc, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0xc, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0xc, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xcc, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0xc, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xed, 0x2, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x4, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x5b, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0xed, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf9, + 0x88, 0x51, 0x54, 0x7f, 0x7, 0x0, 0x0, 0x0, + 0x0, 0xb6, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xc, 0x0, 0x0, + 0x0, 0x0, 0x55, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc, 0x0, + 0x0, 0x0, 0x0, 0x1, 0xb1, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x6, 0x8b, 0xf7, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf8, 0xc5, + 0x7, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x11, 0x50, 0x73, 0x7a, 0x6a, 0x58, 0x3a, 0x7, + 0x0, 0x0, + + /* U+0075 "u" */ + 0xe8, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf4, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0xcc, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xc, 0xe8, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf4, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0xcc, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xc, 0xe8, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xf4, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0xcc, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xc, 0xe8, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xf4, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0xcc, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xc, 0xe8, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xf4, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0xcc, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xc, 0xe8, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xf4, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xcc, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xc, 0xe8, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xf4, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xcc, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc, 0xe8, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xf4, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0xcc, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc, + 0xe8, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf4, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0xcc, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xc, 0xe8, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf4, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0xcc, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xc, 0xe8, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xf4, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0xcc, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xc, 0xe8, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xf4, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0xcc, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xc, 0xe8, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xf4, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0xcc, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xc, 0xe8, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xf4, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xcc, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xc, 0xe8, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xf5, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xd6, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc, 0xe8, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xfd, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0xea, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc, + 0xe6, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x15, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x1a, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xc, 0xd9, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0x43, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x69, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xc, 0xc9, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0x92, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x5, 0xd7, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xc, 0xa1, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xf5, 0x1f, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x88, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xc, 0x6a, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xd8, 0x30, 0x0, 0x0, + 0x0, 0x10, 0x93, 0xff, 0xff, 0xf3, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xd, 0x19, 0xfb, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xd1, + 0xb2, 0xc3, 0xf8, 0xff, 0xff, 0xde, 0x9a, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0x10, 0x0, 0xa6, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x4d, 0x8a, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x14, 0x0, + 0x17, 0xeb, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x8e, 0x0, + 0x7c, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x1b, + 0x0, 0x0, 0x31, 0xe7, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x90, 0x1, + 0x0, 0x6a, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0x29, 0x0, 0x0, 0x0, 0x17, 0x94, 0xf5, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xca, 0x48, 0x0, + 0x0, 0x0, 0x56, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0x38, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7, + 0x42, 0x67, 0x79, 0x75, 0x5a, 0x23, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, + + /* U+0076 "v" */ + 0x9d, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x9c, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0xc3, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0x68, 0x40, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xea, 0x2, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1a, + 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf7, 0x10, + 0x1, 0xe1, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0x3e, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x6e, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xa8, 0x0, 0x0, 0x86, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0x8f, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xc3, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x48, 0x0, + 0x0, 0x29, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xdf, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x1a, 0xfe, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xe5, 0x3, 0x0, 0x0, 0x0, 0xcc, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0x31, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x6d, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0x88, 0x0, 0x0, + 0x0, 0x0, 0x6f, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0x82, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0xc1, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0x28, 0x0, 0x0, 0x0, 0x0, 0x16, 0xfb, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xd3, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x18, 0xfd, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xc8, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0xb5, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0x24, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x6b, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0x68, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x58, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x75, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0xbe, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xf7, 0x10, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x9, 0xf2, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xc6, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x14, 0xfc, 0xff, 0xff, 0xff, 0xff, 0xff, 0xa8, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x9e, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0x19, + 0x0, 0x0, 0x0, 0x0, 0x64, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0x48, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x41, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0x68, 0x0, 0x0, 0x0, 0x0, + 0xb7, 0xff, 0xff, 0xff, 0xff, 0xff, 0xe5, 0x3, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x1, 0xe1, 0xff, 0xff, 0xff, 0xff, 0xff, 0xb9, + 0x0, 0x0, 0x0, 0xf, 0xfa, 0xff, 0xff, 0xff, + 0xff, 0xff, 0x88, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x86, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xfa, 0xf, 0x0, 0x0, 0x5d, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x28, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x29, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0x56, 0x0, 0x0, 0xaf, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xc8, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xcc, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xa1, 0x0, 0xc, 0xf7, + 0xff, 0xff, 0xff, 0xff, 0xff, 0x68, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x6f, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xe9, 0x1, 0x55, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xf7, 0x10, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x16, 0xfb, + 0xff, 0xff, 0xff, 0xff, 0xff, 0x35, 0xa4, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xa8, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0xb5, 0xff, 0xff, 0xff, 0xff, + 0xff, 0x81, 0xec, 0xff, 0xff, 0xff, 0xff, 0xff, + 0x48, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x58, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xec, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xe5, 0x3, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x9, 0xf2, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x88, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x9e, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0x28, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x41, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc8, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x1, 0xe2, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0x68, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x87, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xf7, 0x10, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + + /* U+0077 "w" */ + 0xb, 0xfa, 0xff, 0xff, 0xff, 0xff, 0xff, 0x68, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x63, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0x3a, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x75, 0xff, 0xff, 0xff, 0xff, 0xff, 0xdd, + 0x0, 0xc3, 0xff, 0xff, 0xff, 0xff, 0xff, 0xa0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0xa9, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0x7e, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0xb0, 0xff, 0xff, 0xff, 0xff, 0xff, 0x99, + 0x0, 0x7f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xd8, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x2, + 0xec, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xc2, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0xe9, 0xff, 0xff, 0xff, 0xff, 0xff, 0x54, + 0x0, 0x3c, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, + 0x11, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x34, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xfa, 0xb, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x25, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfd, 0x12, + 0x0, 0x5, 0xf3, 0xff, 0xff, 0xff, 0xff, 0xff, + 0x48, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7a, + 0xff, 0xff, 0xff, 0xff, 0xfd, 0xff, 0xff, 0xff, + 0xff, 0x4a, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x5f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xcb, 0x0, + 0x0, 0x0, 0xb5, 0xff, 0xff, 0xff, 0xff, 0xff, + 0x81, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xc0, + 0xff, 0xff, 0xff, 0xff, 0xb3, 0xff, 0xff, 0xff, + 0xff, 0x8e, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x9a, 0xff, 0xff, 0xff, 0xff, 0xff, 0x87, 0x0, + 0x0, 0x0, 0x71, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xb9, 0x0, 0x0, 0x0, 0x0, 0x0, 0xb, 0xf9, + 0xff, 0xff, 0xff, 0xfd, 0x49, 0xff, 0xff, 0xff, + 0xff, 0xd2, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0xd4, 0xff, 0xff, 0xff, 0xff, 0xff, 0x42, 0x0, + 0x0, 0x0, 0x2e, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xef, 0x1, 0x0, 0x0, 0x0, 0x0, 0x4b, 0xff, + 0xff, 0xff, 0xff, 0xd2, 0x9, 0xfb, 0xff, 0xff, + 0xff, 0xfe, 0x17, 0x0, 0x0, 0x0, 0x0, 0x10, + 0xfe, 0xff, 0xff, 0xff, 0xff, 0xf6, 0x7, 0x0, + 0x0, 0x0, 0x1, 0xe9, 0xff, 0xff, 0xff, 0xff, + 0xff, 0x29, 0x0, 0x0, 0x0, 0x0, 0x91, 0xff, + 0xff, 0xff, 0xff, 0x97, 0x0, 0xce, 0xff, 0xff, + 0xff, 0xff, 0x5b, 0x0, 0x0, 0x0, 0x0, 0x49, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xb9, 0x0, 0x0, + 0x0, 0x0, 0x0, 0xa7, 0xff, 0xff, 0xff, 0xff, + 0xff, 0x62, 0x0, 0x0, 0x0, 0x0, 0xd6, 0xff, + 0xff, 0xff, 0xff, 0x5c, 0x0, 0x91, 0xff, 0xff, + 0xff, 0xff, 0x9f, 0x0, 0x0, 0x0, 0x0, 0x84, + 0xff, 0xff, 0xff, 0xff, 0xff, 0x75, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x63, 0xff, 0xff, 0xff, 0xff, + 0xff, 0x9a, 0x0, 0x0, 0x0, 0x1c, 0xff, 0xff, + 0xff, 0xff, 0xff, 0x1e, 0x0, 0x4f, 0xff, 0xff, + 0xff, 0xff, 0xe2, 0x0, 0x0, 0x0, 0x0, 0xbe, + 0xff, 0xff, 0xff, 0xff, 0xff, 0x30, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x20, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xd2, 0x0, 0x0, 0x0, 0x62, 0xff, 0xff, + 0xff, 0xff, 0xd9, 0x0, 0x0, 0xf, 0xfc, 0xff, + 0xff, 0xff, 0xff, 0x27, 0x0, 0x0, 0x4, 0xf4, + 0xff, 0xff, 0xff, 0xff, 0xea, 0x1, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0xdc, 0xff, 0xff, 0xff, + 0xff, 0xfd, 0xd, 0x0, 0x0, 0xa8, 0xff, 0xff, + 0xff, 0xff, 0x94, 0x0, 0x0, 0x0, 0xc8, 0xff, + 0xff, 0xff, 0xff, 0x6b, 0x0, 0x0, 0x33, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xa8, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x98, 0xff, 0xff, 0xff, + 0xff, 0xff, 0x43, 0x0, 0x1, 0xeb, 0xff, 0xff, + 0xff, 0xff, 0x4f, 0x0, 0x0, 0x0, 0x85, 0xff, + 0xff, 0xff, 0xff, 0xaf, 0x0, 0x0, 0x6e, 0xff, + 0xff, 0xff, 0xff, 0xff, 0x63, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x55, 0xff, 0xff, 0xff, + 0xff, 0xff, 0x7b, 0x0, 0x33, 0xff, 0xff, 0xff, + 0xff, 0xfb, 0xe, 0x0, 0x0, 0x0, 0x41, 0xff, + 0xff, 0xff, 0xff, 0xef, 0x3, 0x0, 0xa8, 0xff, + 0xff, 0xff, 0xff, 0xff, 0x1f, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x13, 0xfe, 0xff, 0xff, + 0xff, 0xff, 0xb3, 0x0, 0x74, 0xff, 0xff, 0xff, + 0xff, 0xc6, 0x0, 0x0, 0x0, 0x0, 0x7, 0xf5, + 0xff, 0xff, 0xff, 0xff, 0x37, 0x0, 0xe3, 0xff, + 0xff, 0xff, 0xff, 0xda, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0xce, 0xff, 0xff, + 0xff, 0xff, 0xea, 0x0, 0xab, 0xff, 0xff, 0xff, + 0xff, 0x81, 0x0, 0x0, 0x0, 0x0, 0x0, 0xb9, + 0xff, 0xff, 0xff, 0xff, 0x73, 0x1d, 0xff, 0xff, + 0xff, 0xff, 0xff, 0x96, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x8a, 0xff, 0xff, + 0xff, 0xff, 0xff, 0x24, 0xe2, 0xff, 0xff, 0xff, + 0xff, 0x3c, 0x0, 0x0, 0x0, 0x0, 0x0, 0x75, + 0xff, 0xff, 0xff, 0xff, 0xa9, 0x56, 0xff, 0xff, + 0xff, 0xff, 0xff, 0x51, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x47, 0xff, 0xff, + 0xff, 0xff, 0xff, 0x72, 0xff, 0xff, 0xff, 0xff, + 0xf2, 0x4, 0x0, 0x0, 0x0, 0x0, 0x0, 0x31, + 0xff, 0xff, 0xff, 0xff, 0xde, 0x8d, 0xff, 0xff, + 0xff, 0xff, 0xfc, 0x10, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0xa, 0xf9, 0xff, + 0xff, 0xff, 0xff, 0xda, 0xff, 0xff, 0xff, 0xff, + 0xb2, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, + 0xeb, 0xff, 0xff, 0xff, 0xff, 0xd9, 0xff, 0xff, + 0xff, 0xff, 0xc8, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xc0, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0x6e, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0xaa, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0x84, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7c, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0x29, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x66, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0x3f, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x39, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xe4, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x22, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xf4, 0x6, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3, 0xf1, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x9f, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0xde, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xb6, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xb2, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x5a, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x9a, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0x72, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x6e, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0x17, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x56, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0x2e, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + + /* U+0078 "x" */ + 0x7, 0xcf, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0x88, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x8, 0xd8, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0x89, 0x0, 0x0, 0x26, 0xf4, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xfc, 0x35, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x89, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xc8, 0x4, 0x0, + 0x0, 0x0, 0x5f, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xd4, 0x6, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x35, 0xfc, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xf0, 0x20, 0x0, 0x0, 0x0, 0x0, 0x0, 0xa4, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x85, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x6, 0xd3, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0x54, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0xd, 0xdb, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xfb, 0x32, 0x0, 0x0, 0x0, 0x0, + 0x83, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x97, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x33, 0xf9, 0xff, 0xff, 0xff, 0xff, 0xff, 0xd1, + 0x5, 0x0, 0x0, 0x30, 0xfb, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xd2, 0x8, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x71, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0x81, 0x0, 0x4, 0xcf, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xf5, 0x29, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x1, 0xb5, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xfa, 0x30, 0x7d, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0x62, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x14, 0xe5, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xd9, 0xf9, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xa5, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x41, 0xfd, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xdb, + 0xd, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x83, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xf9, 0x33, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x3, 0xc4, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x70, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x2f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xe0, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0xac, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x6c, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x65, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xf7, 0x2d, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x27, 0xf5, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xd4, + 0x9, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x6, 0xce, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xe6, 0xfd, 0xff, + 0xff, 0xff, 0xff, 0xff, 0x97, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x8d, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xfe, 0x40, 0x90, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0x50, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x46, 0xfe, 0xff, + 0xff, 0xff, 0xff, 0xff, 0x96, 0x0, 0xb, 0xdd, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xec, 0x1b, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x15, 0xe7, 0xff, 0xff, 0xff, 0xff, 0xff, 0xe1, + 0xd, 0x0, 0x0, 0x42, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xbe, 0x2, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0xb4, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0x46, 0x0, 0x0, 0x0, 0x0, + 0x9a, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x7a, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x6d, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x9d, 0x0, + 0x0, 0x0, 0x0, 0x0, 0xe, 0xe3, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xfb, 0x37, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x2d, 0xf7, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xe5, 0xf, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x4b, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xde, 0xe, 0x0, 0x0, 0x0, 0x8, 0xd4, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0x4c, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xa3, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xa5, 0x0, 0x0, + 0x0, 0x95, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xa4, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x13, 0xe8, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0x5e, 0x0, 0x4d, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xe8, 0x13, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x54, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf3, 0x24, + + /* U+0079 "y" */ + 0x64, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xd4, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0xd1, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0x5a, 0xb, 0xf0, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0x2c, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x24, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xef, 0x8, + 0x0, 0x92, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0x84, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x76, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0x95, 0x0, 0x0, 0x2a, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xdb, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xc8, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x33, 0x0, + 0x0, 0x0, 0xc0, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0x34, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x1b, 0xfe, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xd0, 0x0, 0x0, 0x0, 0x0, 0x57, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0x8c, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x6c, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0x6e, 0x0, 0x0, + 0x0, 0x0, 0x5, 0xe9, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xe2, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0xbe, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xf9, 0x13, 0x0, 0x0, 0x0, 0x0, 0x0, 0x86, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x3c, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x14, 0xfc, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xa9, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x20, 0xfd, 0xff, 0xff, 0xff, + 0xff, 0xff, 0x94, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x63, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0x47, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0xb4, 0xff, 0xff, 0xff, 0xff, 0xff, 0xe8, 0x3, + 0x0, 0x0, 0x0, 0x0, 0x0, 0xb5, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xe2, 0x2, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x4b, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0x45, 0x0, 0x0, 0x0, 0x0, + 0xd, 0xf8, 0xff, 0xff, 0xff, 0xff, 0xff, 0x82, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x2, 0xe0, 0xff, 0xff, 0xff, 0xff, 0xff, 0x9d, + 0x0, 0x0, 0x0, 0x0, 0x59, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xfe, 0x21, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x79, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xef, 0x7, 0x0, 0x0, 0x0, + 0xa7, 0xff, 0xff, 0xff, 0xff, 0xff, 0xbd, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x16, 0xfa, 0xff, 0xff, 0xff, 0xff, 0xff, + 0x51, 0x0, 0x0, 0x3, 0xee, 0xff, 0xff, 0xff, + 0xff, 0xff, 0x5b, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xa8, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xa3, 0x0, 0x0, 0x3b, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xef, 0x8, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x3f, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xee, 0x4, 0x0, 0x85, 0xff, 0xff, 0xff, 0xff, + 0xff, 0x96, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xd5, + 0xff, 0xff, 0xff, 0xff, 0xff, 0x3f, 0x0, 0xcf, + 0xff, 0xff, 0xff, 0xff, 0xff, 0x33, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x6d, 0xff, 0xff, 0xff, 0xff, + 0xff, 0x8b, 0x18, 0xfe, 0xff, 0xff, 0xff, 0xff, + 0xd1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xf, + 0xf5, 0xff, 0xff, 0xff, 0xff, 0xd4, 0x5d, 0xff, + 0xff, 0xff, 0xff, 0xff, 0x6e, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x9c, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xbe, 0xff, 0xff, 0xff, 0xff, 0xf9, + 0x13, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x33, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xaa, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0xca, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x47, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x61, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xe2, 0x2, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x9, 0xee, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x82, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x8f, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xfe, 0x21, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x43, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xbd, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x98, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0x5b, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x17, 0xf6, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xe9, 0x8, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x96, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0x7a, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x4f, 0xfe, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xee, 0x10, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x13, 0x25, 0x16, 0x20, 0x45, 0x95, + 0xfc, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x6f, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x68, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xd0, 0x4, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x68, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xf4, 0x28, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x68, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xf6, 0x43, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x68, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xd9, 0x33, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x47, 0xc7, + 0xe6, 0xf3, 0xfc, 0xf6, 0xe0, 0xab, 0x59, 0x4, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + + /* U+007A "z" */ + 0x0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0x0, 0x0, 0x0, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x0, 0x0, + 0x0, 0xf4, 0xf4, 0xf4, 0xf4, 0xf4, 0xf4, 0xf4, + 0xf4, 0xf4, 0xf4, 0xf4, 0xfa, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x14, 0xe3, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0x8b, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x2, 0xba, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc2, 0x4, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x82, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xe8, 0x19, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x48, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xfc, 0x40, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1e, 0xec, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x78, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x6, 0xc9, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xb2, 0x1, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x95, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xde, 0x11, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x5a, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xf8, 0x32, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x2a, 0xf4, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0x66, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0xc, 0xd7, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xa2, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xa8, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xd3, 0xa, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x6e, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xf2, 0x26, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x38, 0xfa, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0x55, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x14, 0xe3, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0x90, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x2, 0xba, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xc6, 0x5, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x82, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xec, + 0x20, 0x4, 0x4, 0x4, 0x4, 0x4, 0x4, 0x4, + 0x4, 0x4, 0x4, 0x4, 0x4, 0x0, 0xfe, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0x34, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0x34, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x34, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0x34, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0x34, + + /* U+007B "{" */ + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x15, 0x7d, 0xc3, 0xeb, 0xfc, 0xff, 0xff, + 0xff, 0xff, 0x68, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x55, 0xf2, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0x68, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x48, 0xfc, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0x68, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3, + 0xdc, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0x68, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x3f, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xdd, 0xb6, 0xac, 0x45, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x78, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xf2, 0x4c, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x8f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x68, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x98, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xfc, 0xc, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x98, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xdb, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x98, 0xff, 0xff, 0xff, 0xff, 0xff, 0xcd, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x98, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xcc, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x98, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xcc, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x98, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xcc, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x98, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xcc, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x98, 0xff, 0xff, 0xff, 0xff, 0xff, 0xcc, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0xa4, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xcc, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xc9, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xc9, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x1f, 0xfc, 0xff, 0xff, 0xff, 0xff, 0xff, 0xb5, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x5, 0xb5, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0x7a, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x12, 0x52, 0xca, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xf1, 0x16, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x30, 0xf6, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfb, 0x50, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x34, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xd5, 0x3e, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x34, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xf4, 0x71, 0x1, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x34, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc5, 0x28, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x34, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xf1, 0x33, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0xc, 0x2b, 0x71, 0xe4, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xdd, 0x8, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x14, 0xd4, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0x62, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x37, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xa9, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0xd9, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xc6, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0xab, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xcc, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x9a, 0xff, 0xff, 0xff, 0xff, 0xff, 0xcc, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x98, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xcc, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x98, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xcc, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x98, 0xff, 0xff, 0xff, 0xff, 0xff, 0xcc, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x98, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xcc, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x98, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xcc, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x98, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xd0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x98, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xe2, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x96, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0x14, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x88, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0x76, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x69, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xf7, 0x5b, 0x1, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x29, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xe9, 0xc1, 0xb8, 0x4a, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0xbe, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0x68, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x28, 0xf2, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0x68, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x37, 0xe4, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x68, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0xb, 0x6f, 0xbe, 0xea, 0xfc, 0xff, 0xff, 0xff, + 0xff, 0x68, + + /* U+007C "|" */ + 0x34, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x34, + 0x34, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x34, + 0x34, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x34, + 0x34, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x34, + 0x34, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x34, + 0x34, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x34, + 0x34, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x34, + 0x34, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x34, + 0x34, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x34, + 0x34, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x34, + 0x34, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x34, + 0x34, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x34, + 0x34, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x34, + 0x34, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x34, + 0x34, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x34, + 0x34, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x34, + 0x34, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x34, + 0x34, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x34, + 0x34, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x34, + 0x34, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x34, + 0x34, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x34, + 0x34, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x34, + 0x34, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x34, + 0x34, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x34, + 0x34, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x34, + 0x34, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x34, + 0x34, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x34, + 0x34, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x34, + 0x34, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x34, + 0x34, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x34, + 0x34, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x34, + 0x34, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x34, + 0x34, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x34, + 0x34, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x34, + 0x34, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x34, + 0x34, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x34, + 0x34, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x34, + 0x34, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x34, + 0x34, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x34, + 0x34, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x34, + 0x34, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x34, + 0x34, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x34, + 0x34, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x34, + 0x34, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x34, + 0x34, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x34, + 0x34, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x34, + 0x34, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x34, + 0x1a, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x1a, + + /* U+007D "}" */ + 0xf4, 0xff, 0xff, 0xff, 0xff, 0xf4, 0xdc, 0xa5, + 0x48, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0xf4, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xb6, 0x11, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0xf4, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xbe, 0x2, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xf4, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0x57, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0xa3, 0xaf, 0xc6, 0xf8, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xb4, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x16, 0xb6, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xec, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0xd, 0xea, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, + 0x3, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x96, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xb, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x69, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xc, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x5a, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x58, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xc, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x58, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xc, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x58, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xc, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x58, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x58, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xc, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x58, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0x17, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x56, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0x3e, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x43, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x93, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0xf, 0xf9, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xf9, 0x3c, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x97, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xf8, 0x86, 0x2d, 0x2, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xd, 0xce, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xfc, 0xa9, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0xe, 0x9b, 0xfb, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xb4, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x2e, 0xc7, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xb4, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x4, 0x81, 0xf5, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xb4, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x2, 0xae, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xb4, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x72, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, + 0xa4, 0x45, 0x15, 0x4, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x4, 0xea, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0x5c, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x36, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xab, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x52, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0x4d, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x58, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x1e, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x58, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x58, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xc, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x58, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xc, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x58, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x58, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xc, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x58, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xc, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x5d, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xc, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x6f, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0xa1, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xa, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x14, 0xf1, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xfa, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x1f, 0xc3, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xdc, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0xaf, 0xba, 0xd2, 0xfd, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0x9c, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0xf4, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x30, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xf4, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0x8b, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0xf4, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xfe, 0x8a, 0x2, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0xf4, 0xff, 0xff, 0xff, 0xff, 0xf3, + 0xd7, 0x98, 0x2e, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, + + /* U+007E "~" */ + 0x0, 0x0, 0x3e, 0x93, 0xcd, 0xeb, 0xfb, 0xf2, + 0xd3, 0xa6, 0x69, 0x1f, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x5, 0x15, 0x37, 0xcd, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xce, 0x76, + 0x1f, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x34, 0xcd, 0x4c, 0xfd, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xca, 0x7d, 0x43, 0x20, 0x1a, + 0x31, 0x68, 0xb9, 0xff, 0xff, 0x4c, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x4c, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0x4c, 0xff, 0xff, 0xdf, 0x87, 0x49, 0x2f, + 0x26, 0x3d, 0x6a, 0xaa, 0xef, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0x4c, 0xeb, 0x60, 0x3, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x5, 0x48, + 0x9d, 0xec, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xf6, 0x7d, 0x6, 0x15, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x4, 0x45, 0x8f, 0xc6, 0xe9, + 0xfa, 0xf5, 0xe5, 0xb9, 0x76, 0x14, 0x0, 0x0 +}; + + +/*--------------------- + * GLYPH DESCRIPTION + *--------------------*/ + +static const lv_font_fmt_txt_glyph_dsc_t glyph_dsc[] = { + {.bitmap_index = 0, .adv_w = 0, .box_w = 0, .box_h = 0, .ofs_x = 0, .ofs_y = 0} /* id = 0 reserved */, + {.bitmap_index = 0, .adv_w = 222, .box_w = 0, .box_h = 0, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 0, .adv_w = 266, .box_w = 8, .box_h = 35, .ofs_x = 4, .ofs_y = 0}, + {.bitmap_index = 280, .adv_w = 379, .box_w = 18, .box_h = 13, .ofs_x = 3, .ofs_y = 22}, + {.bitmap_index = 514, .adv_w = 445, .box_w = 27, .box_h = 35, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 1459, .adv_w = 445, .box_w = 28, .box_h = 41, .ofs_x = 0, .ofs_y = -4}, + {.bitmap_index = 2607, .adv_w = 711, .box_w = 43, .box_h = 37, .ofs_x = 1, .ofs_y = -1}, + {.bitmap_index = 4198, .adv_w = 578, .box_w = 33, .box_h = 36, .ofs_x = 2, .ofs_y = -1}, + {.bitmap_index = 5386, .adv_w = 190, .box_w = 8, .box_h = 13, .ofs_x = 2, .ofs_y = 22}, + {.bitmap_index = 5490, .adv_w = 266, .box_w = 15, .box_h = 46, .ofs_x = 2, .ofs_y = -10}, + {.bitmap_index = 6180, .adv_w = 266, .box_w = 15, .box_h = 46, .ofs_x = 0, .ofs_y = -10}, + {.bitmap_index = 6870, .adv_w = 311, .box_w = 20, .box_h = 19, .ofs_x = 0, .ofs_y = 16}, + {.bitmap_index = 7250, .adv_w = 467, .box_w = 26, .box_h = 26, .ofs_x = 2, .ofs_y = 4}, + {.bitmap_index = 7926, .adv_w = 222, .box_w = 8, .box_h = 16, .ofs_x = 3, .ofs_y = -8}, + {.bitmap_index = 8054, .adv_w = 266, .box_w = 14, .box_h = 6, .ofs_x = 1, .ofs_y = 10}, + {.bitmap_index = 8138, .adv_w = 222, .box_w = 8, .box_h = 8, .ofs_x = 3, .ofs_y = 0}, + {.bitmap_index = 8202, .adv_w = 222, .box_w = 14, .box_h = 38, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 8734, .adv_w = 445, .box_w = 24, .box_h = 37, .ofs_x = 2, .ofs_y = -1}, + {.bitmap_index = 9622, .adv_w = 445, .box_w = 24, .box_h = 35, .ofs_x = 3, .ofs_y = 0}, + {.bitmap_index = 10462, .adv_w = 445, .box_w = 25, .box_h = 36, .ofs_x = 1, .ofs_y = 0}, + {.bitmap_index = 11362, .adv_w = 445, .box_w = 25, .box_h = 37, .ofs_x = 1, .ofs_y = -1}, + {.bitmap_index = 12287, .adv_w = 445, .box_w = 28, .box_h = 35, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 13267, .adv_w = 445, .box_w = 26, .box_h = 36, .ofs_x = 1, .ofs_y = -1}, + {.bitmap_index = 14203, .adv_w = 445, .box_w = 25, .box_h = 37, .ofs_x = 1, .ofs_y = -1}, + {.bitmap_index = 15128, .adv_w = 445, .box_w = 24, .box_h = 35, .ofs_x = 2, .ofs_y = 0}, + {.bitmap_index = 15968, .adv_w = 445, .box_w = 26, .box_h = 37, .ofs_x = 1, .ofs_y = -1}, + {.bitmap_index = 16930, .adv_w = 445, .box_w = 25, .box_h = 37, .ofs_x = 1, .ofs_y = -1}, + {.bitmap_index = 17855, .adv_w = 266, .box_w = 8, .box_h = 25, .ofs_x = 4, .ofs_y = 0}, + {.bitmap_index = 18055, .adv_w = 266, .box_w = 8, .box_h = 33, .ofs_x = 4, .ofs_y = -8}, + {.bitmap_index = 18319, .adv_w = 467, .box_w = 26, .box_h = 28, .ofs_x = 2, .ofs_y = 3}, + {.bitmap_index = 19047, .adv_w = 467, .box_w = 26, .box_h = 19, .ofs_x = 2, .ofs_y = 7}, + {.bitmap_index = 19541, .adv_w = 467, .box_w = 26, .box_h = 28, .ofs_x = 2, .ofs_y = 3}, + {.bitmap_index = 20269, .adv_w = 489, .box_w = 26, .box_h = 36, .ofs_x = 2, .ofs_y = 0}, + {.bitmap_index = 21205, .adv_w = 780, .box_w = 44, .box_h = 45, .ofs_x = 2, .ofs_y = -9}, + {.bitmap_index = 23185, .adv_w = 578, .box_w = 34, .box_h = 35, .ofs_x = 1, .ofs_y = 0}, + {.bitmap_index = 24375, .adv_w = 578, .box_w = 31, .box_h = 35, .ofs_x = 3, .ofs_y = 0}, + {.bitmap_index = 25460, .adv_w = 578, .box_w = 33, .box_h = 37, .ofs_x = 2, .ofs_y = -1}, + {.bitmap_index = 26681, .adv_w = 578, .box_w = 32, .box_h = 35, .ofs_x = 3, .ofs_y = 0}, + {.bitmap_index = 27801, .adv_w = 534, .box_w = 29, .box_h = 35, .ofs_x = 3, .ofs_y = 0}, + {.bitmap_index = 28816, .adv_w = 489, .box_w = 26, .box_h = 35, .ofs_x = 3, .ofs_y = 0}, + {.bitmap_index = 29726, .adv_w = 622, .box_w = 34, .box_h = 37, .ofs_x = 2, .ofs_y = -1}, + {.bitmap_index = 30984, .adv_w = 578, .box_w = 30, .box_h = 35, .ofs_x = 3, .ofs_y = 0}, + {.bitmap_index = 32034, .adv_w = 222, .box_w = 8, .box_h = 35, .ofs_x = 3, .ofs_y = 0}, + {.bitmap_index = 32314, .adv_w = 445, .box_w = 25, .box_h = 36, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 33214, .adv_w = 578, .box_w = 33, .box_h = 35, .ofs_x = 3, .ofs_y = 0}, + {.bitmap_index = 34369, .adv_w = 489, .box_w = 26, .box_h = 35, .ofs_x = 3, .ofs_y = 0}, + {.bitmap_index = 35279, .adv_w = 666, .box_w = 36, .box_h = 35, .ofs_x = 3, .ofs_y = 0}, + {.bitmap_index = 36539, .adv_w = 578, .box_w = 30, .box_h = 35, .ofs_x = 3, .ofs_y = 0}, + {.bitmap_index = 37589, .adv_w = 622, .box_w = 35, .box_h = 37, .ofs_x = 2, .ofs_y = -1}, + {.bitmap_index = 38884, .adv_w = 534, .box_w = 29, .box_h = 35, .ofs_x = 3, .ofs_y = 0}, + {.bitmap_index = 39899, .adv_w = 622, .box_w = 35, .box_h = 46, .ofs_x = 2, .ofs_y = -10}, + {.bitmap_index = 41509, .adv_w = 578, .box_w = 33, .box_h = 35, .ofs_x = 3, .ofs_y = 0}, + {.bitmap_index = 42664, .adv_w = 534, .box_w = 31, .box_h = 37, .ofs_x = 1, .ofs_y = -1}, + {.bitmap_index = 43811, .adv_w = 489, .box_w = 30, .box_h = 35, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 44861, .adv_w = 578, .box_w = 31, .box_h = 36, .ofs_x = 3, .ofs_y = -1}, + {.bitmap_index = 45977, .adv_w = 534, .box_w = 33, .box_h = 35, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 47132, .adv_w = 755, .box_w = 48, .box_h = 35, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 48812, .adv_w = 534, .box_w = 33, .box_h = 35, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 49967, .adv_w = 534, .box_w = 33, .box_h = 35, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 51122, .adv_w = 489, .box_w = 29, .box_h = 35, .ofs_x = 1, .ofs_y = 0}, + {.bitmap_index = 52137, .adv_w = 266, .box_w = 15, .box_h = 46, .ofs_x = 2, .ofs_y = -10}, + {.bitmap_index = 52827, .adv_w = 222, .box_w = 14, .box_h = 38, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 53359, .adv_w = 266, .box_w = 14, .box_h = 46, .ofs_x = 0, .ofs_y = -10}, + {.bitmap_index = 54003, .adv_w = 467, .box_w = 28, .box_h = 22, .ofs_x = 1, .ofs_y = 13}, + {.bitmap_index = 54619, .adv_w = 445, .box_w = 30, .box_h = 2, .ofs_x = -1, .ofs_y = -6}, + {.bitmap_index = 54679, .adv_w = 266, .box_w = 14, .box_h = 8, .ofs_x = 1, .ofs_y = 29}, + {.bitmap_index = 54791, .adv_w = 445, .box_w = 28, .box_h = 28, .ofs_x = 1, .ofs_y = -1}, + {.bitmap_index = 55575, .adv_w = 489, .box_w = 26, .box_h = 37, .ofs_x = 3, .ofs_y = -1}, + {.bitmap_index = 56537, .adv_w = 445, .box_w = 26, .box_h = 28, .ofs_x = 1, .ofs_y = -1}, + {.bitmap_index = 57265, .adv_w = 489, .box_w = 26, .box_h = 37, .ofs_x = 2, .ofs_y = -1}, + {.bitmap_index = 58227, .adv_w = 445, .box_w = 26, .box_h = 28, .ofs_x = 1, .ofs_y = -1}, + {.bitmap_index = 58955, .adv_w = 266, .box_w = 17, .box_h = 36, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 59567, .adv_w = 489, .box_w = 26, .box_h = 37, .ofs_x = 2, .ofs_y = -10}, + {.bitmap_index = 60529, .adv_w = 489, .box_w = 25, .box_h = 36, .ofs_x = 3, .ofs_y = 0}, + {.bitmap_index = 61429, .adv_w = 222, .box_w = 8, .box_h = 36, .ofs_x = 3, .ofs_y = 0}, + {.bitmap_index = 61717, .adv_w = 222, .box_w = 12, .box_h = 46, .ofs_x = -1, .ofs_y = -10}, + {.bitmap_index = 62269, .adv_w = 445, .box_w = 25, .box_h = 36, .ofs_x = 3, .ofs_y = 0}, + {.bitmap_index = 63169, .adv_w = 222, .box_w = 8, .box_h = 36, .ofs_x = 3, .ofs_y = 0}, + {.bitmap_index = 63457, .adv_w = 711, .box_w = 39, .box_h = 27, .ofs_x = 3, .ofs_y = 0}, + {.bitmap_index = 64510, .adv_w = 489, .box_w = 25, .box_h = 27, .ofs_x = 3, .ofs_y = 0}, + {.bitmap_index = 65185, .adv_w = 489, .box_w = 28, .box_h = 28, .ofs_x = 1, .ofs_y = -1}, + {.bitmap_index = 65969, .adv_w = 489, .box_w = 26, .box_h = 37, .ofs_x = 3, .ofs_y = -10}, + {.bitmap_index = 66931, .adv_w = 489, .box_w = 26, .box_h = 37, .ofs_x = 2, .ofs_y = -10}, + {.bitmap_index = 67893, .adv_w = 311, .box_w = 16, .box_h = 27, .ofs_x = 3, .ofs_y = 0}, + {.bitmap_index = 68325, .adv_w = 445, .box_w = 25, .box_h = 28, .ofs_x = 1, .ofs_y = -1}, + {.bitmap_index = 69025, .adv_w = 266, .box_w = 17, .box_h = 34, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 69603, .adv_w = 489, .box_w = 25, .box_h = 27, .ofs_x = 3, .ofs_y = -1}, + {.bitmap_index = 70278, .adv_w = 445, .box_w = 28, .box_h = 26, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 71006, .adv_w = 622, .box_w = 40, .box_h = 26, .ofs_x = -1, .ofs_y = 0}, + {.bitmap_index = 72046, .adv_w = 445, .box_w = 28, .box_h = 26, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 72774, .adv_w = 445, .box_w = 28, .box_h = 36, .ofs_x = 0, .ofs_y = -10}, + {.bitmap_index = 73782, .adv_w = 400, .box_w = 22, .box_h = 26, .ofs_x = 2, .ofs_y = 0}, + {.bitmap_index = 74354, .adv_w = 311, .box_w = 19, .box_h = 46, .ofs_x = 0, .ofs_y = -10}, + {.bitmap_index = 75228, .adv_w = 224, .box_w = 8, .box_h = 48, .ofs_x = 3, .ofs_y = -12}, + {.bitmap_index = 75612, .adv_w = 311, .box_w = 18, .box_h = 46, .ofs_x = 1, .ofs_y = -10}, + {.bitmap_index = 76440, .adv_w = 467, .box_w = 26, .box_h = 8, .ofs_x = 2, .ofs_y = 13} +}; + +/*--------------------- + * CHARACTER MAPPING + *--------------------*/ + + + +/*Collect the unicode lists and glyph_id offsets*/ +static const lv_font_fmt_txt_cmap_t cmaps[] = +{ + { + .range_start = 32, .range_length = 95, .glyph_id_start = 1, + .unicode_list = NULL, .glyph_id_ofs_list = NULL, .list_length = 0, .type = LV_FONT_FMT_TXT_CMAP_FORMAT0_TINY + } +}; + +/*----------------- + * KERNING + *----------------*/ + + +/*Pair left and right glyphs for kerning*/ +static const uint8_t kern_pair_glyph_ids[] = +{ + 1, 34, + 1, 58, + 18, 18, + 34, 1, + 34, 53, + 34, 55, + 34, 56, + 34, 58, + 34, 87, + 34, 88, + 34, 90, + 39, 13, + 39, 15, + 39, 34, + 45, 1, + 45, 53, + 45, 55, + 45, 56, + 45, 58, + 45, 90, + 49, 1, + 49, 13, + 49, 15, + 49, 34, + 51, 55, + 51, 56, + 51, 58, + 53, 13, + 53, 14, + 53, 15, + 53, 27, + 53, 28, + 53, 34, + 53, 48, + 53, 66, + 53, 68, + 53, 70, + 53, 74, + 53, 80, + 53, 83, + 53, 84, + 53, 86, + 53, 88, + 53, 90, + 55, 13, + 55, 14, + 55, 15, + 55, 27, + 55, 28, + 55, 34, + 55, 66, + 55, 70, + 55, 74, + 55, 80, + 55, 83, + 55, 86, + 55, 90, + 56, 13, + 56, 14, + 56, 15, + 56, 27, + 56, 28, + 56, 34, + 56, 66, + 56, 70, + 56, 74, + 56, 80, + 56, 83, + 56, 86, + 56, 90, + 58, 1, + 58, 13, + 58, 14, + 58, 15, + 58, 27, + 58, 28, + 58, 34, + 58, 66, + 58, 70, + 58, 74, + 58, 80, + 58, 81, + 58, 82, + 58, 86, + 58, 87, + 83, 13, + 83, 15, + 87, 13, + 87, 15, + 88, 13, + 88, 15, + 90, 13, + 90, 15 +}; + +/* Kerning between the respective left and right glyphs + * 4.4 format which needs to scaled with `kern_scale`*/ +static const int8_t kern_pair_values[] = +{ + -30, -14, -44, -30, -59, -59, -44, -74, + -30, -14, -30, -89, -89, -44, -14, -59, + -59, -44, -74, -30, -14, -103, -103, -59, + -14, -14, -30, -89, -44, -89, -89, -89, + -59, -14, -59, -59, -59, -14, -59, -44, + -59, -59, -59, -59, -74, -44, -74, -44, + -44, -59, -44, -44, -14, -59, -44, -30, + -30, -44, -16, -44, -14, -14, -44, -30, + -14, -7, -14, -14, -14, -14, -14, -89, + -44, -89, -59, -59, -74, -44, -44, -30, + -59, -44, -59, -44, -44, -44, -44, -59, + -59, -30, -30, -59, -59 +}; + +/*Collect the kern pair's data in one place*/ +static const lv_font_fmt_txt_kern_pair_t kern_pairs = +{ + .glyph_ids = kern_pair_glyph_ids, + .values = kern_pair_values, + .pair_cnt = 93, + .glyph_ids_size = 0 +}; + +/*-------------------- + * ALL CUSTOM DATA + *--------------------*/ + +#if LV_VERSION_CHECK(8, 0, 0) +/*Store all the custom data of the font*/ +static lv_font_fmt_txt_glyph_cache_t cache; +static const lv_font_fmt_txt_dsc_t font_dsc = { +#else +static lv_font_fmt_txt_dsc_t font_dsc = { +#endif + .glyph_bitmap = glyph_bitmap, + .glyph_dsc = glyph_dsc, + .cmaps = cmaps, + .kern_dsc = &kern_pairs, + .kern_scale = 16, + .cmap_num = 1, + .bpp = 8, + .kern_classes = 0, + .bitmap_format = 0, +#if LV_VERSION_CHECK(8, 0, 0) + .cache = &cache +#endif +}; + + +/*----------------- + * PUBLIC FONT + *----------------*/ + +/*Initialize a public general font descriptor*/ +#if LV_VERSION_CHECK(8, 0, 0) +const lv_font_t ui_font_font3 = { +#else +lv_font_t ui_font_font3 = { +#endif + .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 = 49, /*The maximum line height required by the font*/ + .base_line = 12, /*Baseline measured from the bottom of the line*/ +#if !(LVGL_VERSION_MAJOR == 6 && LVGL_VERSION_MINOR == 0) + .subpx = LV_FONT_SUBPX_NONE, +#endif +#if LV_VERSION_CHECK(7, 4, 0) || LVGL_VERSION_MAJOR >= 8 + .underline_position = -5, + .underline_thickness = 5, +#endif + .dsc = &font_dsc /*The custom font data. Will be accessed by `get_glyph_bitmap/dsc` */ +}; + + + +#endif /*#if UI_FONT_FONT3*/ + diff --git a/examples/indicator_matter/main/ui/ui_font_font4.c b/examples/indicator_matter/main/ui/ui_font_font4.c new file mode 100644 index 0000000..6e26e6e --- /dev/null +++ b/examples/indicator_matter/main/ui/ui_font_font4.c @@ -0,0 +1,9720 @@ +/******************************************************************************* + * Size: 140 px + * Bpp: 8 + * Opts: --bpp 8 --size 140 --font /Users/virgil/seeed/SenseCAP_Indicator_ESP32/code/squareline_studio/sensecap_indicator_time/assets/Montserrat-SemiBold.ttf -o /Users/virgil/seeed/SenseCAP_Indicator_ESP32/code/squareline_studio/sensecap_indicator_time/assets/ui_font_font4.c --format lvgl -r 0x30-0x39 --no-compress --no-prefilter + ******************************************************************************/ + +#include "ui.h" + +#ifndef UI_FONT_FONT4 +#define UI_FONT_FONT4 1 +#endif + +#if UI_FONT_FONT4 + +/*----------------- + * BITMAPS + *----------------*/ + +/*Store the image of the glyphs*/ +static LV_ATTRIBUTE_LARGE_CONST const uint8_t glyph_bitmap[] = { + /* U+0030 "0" */ + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x22, 0x50, 0x7c, 0xa3, 0xbd, 0xd7, 0xea, 0xf3, + 0xfb, 0xfc, 0xf3, 0xeb, 0xd9, 0xc0, 0xa6, 0x80, + 0x54, 0x27, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x11, + 0x5f, 0xa6, 0xe5, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xea, 0xac, 0x67, + 0x17, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x5, + 0x54, 0xb8, 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, 0xfd, 0xc1, 0x5f, 0x8, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0xe, 0x7b, 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, 0xee, 0x89, 0x16, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x8, 0x7b, 0xee, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf5, 0x8b, + 0x10, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x4f, 0xde, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xea, 0x63, 0x1, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x11, 0xa8, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xc0, 0x1e, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3e, 0xe4, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xf1, 0x58, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x67, 0xfa, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0x89, 0x2, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x8d, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xb2, 0x8, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x2, 0x9a, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xbd, 0xb, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x9b, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xc1, 0x8, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x83, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xaf, 0x3, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x62, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0x93, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x33, 0xf7, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0x5d, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xf, 0xdf, + 0xff, 0xff, 0xff, 0xff, 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, 0xf0, 0xee, 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, 0xf6, 0x2c, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0xa0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xed, 0xa4, 0x63, 0x38, 0xf, 0x0, + 0x0, 0x0, 0x0, 0xc, 0x32, 0x5d, 0x97, 0xe3, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xcd, 0x4, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x4c, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xbf, 0x4c, 0x3, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x39, 0xaa, 0xfc, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0x7f, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0xa, 0xe2, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xd4, 0x3d, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x25, 0xb9, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfa, + 0x26, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x82, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0x84, 0x5, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x5d, 0xf6, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xb5, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x1e, 0xf7, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf4, + 0x51, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x30, 0xe0, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x49, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x9a, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xf6, 0x41, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xe0, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xcc, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1f, + 0xfa, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xfb, 0x46, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x22, 0xe8, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x4d, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x96, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x72, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xfb, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xc9, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0xf, 0xf4, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xad, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x76, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0x37, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x71, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xef, 0x17, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x3, 0xcd, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xa4, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0xd9, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0x69, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x35, 0xfd, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xf9, 0x13, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x35, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xdb, + 0x3, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0xa9, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x68, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x8f, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0x63, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x2e, + 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xc3, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0xe5, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xe6, 0x5, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0xb6, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0x1b, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x30, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x8b, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x55, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0x64, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7a, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0x2c, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x7, 0xee, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xae, 0x0, 0x0, 0x0, + 0x0, 0x0, 0xc1, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xd3, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x9d, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf2, + 0x3, 0x0, 0x0, 0x0, 0x5, 0xf7, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x8c, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x55, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0x32, 0x0, 0x0, 0x0, 0x36, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0x45, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x11, 0xfc, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x6c, 0x0, + 0x0, 0x0, 0x6f, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xfa, 0x8, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xcb, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xa6, 0x0, 0x0, 0x0, 0xa0, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xce, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x97, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xd6, 0x0, 0x0, 0x0, + 0xcb, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0x9b, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x65, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfa, + 0x5, 0x0, 0x1, 0xf4, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0x69, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x32, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0x2b, 0x0, 0x1e, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0x42, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0xc, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x53, 0x0, + 0x3c, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0x21, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xeb, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0x72, 0x0, 0x5a, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xfb, 0x3, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0xc9, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0x8f, 0x0, 0x77, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xe0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0xaa, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xad, + 0x0, 0x8d, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xcc, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x96, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xc3, 0x0, 0x9e, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xb9, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x83, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xd4, 0x0, 0xb0, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xa7, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x71, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xe6, 0x0, 0xc0, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0x97, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x60, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xf6, 0x0, 0xc8, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x91, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x5a, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0x0, + 0xcd, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0x8b, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x54, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0x4, 0xd3, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0x85, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x4e, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xa, 0xd7, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0x81, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x49, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xe, 0xd3, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0x85, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x4e, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xa, 0xcd, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x8b, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x54, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x4, 0xc8, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0x91, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x5a, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xfe, 0x0, 0xc0, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0x97, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x60, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xf6, 0x0, 0xb0, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xa7, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x71, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xe6, 0x0, + 0x9e, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xb9, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x83, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xd4, 0x0, 0x8d, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xcc, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x96, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xc3, 0x0, 0x77, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xe0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0xa9, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xad, + 0x0, 0x5a, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xfb, 0x3, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0xc9, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0x90, 0x0, 0x3c, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x20, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0xea, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0x72, 0x0, 0x1e, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0x42, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0xc, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0x53, 0x0, 0x1, 0xf4, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0x69, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x32, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0x2b, 0x0, 0x0, 0xcb, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0x9b, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x65, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xfb, 0x5, 0x0, + 0x0, 0xa0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xcd, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x97, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xd6, 0x0, 0x0, 0x0, 0x70, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf9, 0x8, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0xca, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xa6, 0x0, 0x0, 0x0, 0x37, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0x45, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x11, 0xfc, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x6c, 0x0, + 0x0, 0x0, 0x5, 0xf7, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0x8b, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x55, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0x32, 0x0, 0x0, 0x0, 0x0, 0xc1, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xd3, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x9c, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xf2, 0x3, 0x0, 0x0, 0x0, + 0x0, 0x7a, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0x2b, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x7, 0xee, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xae, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x31, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x8a, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x54, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0x65, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, + 0xe5, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xe5, 0x5, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0xb4, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xfe, 0x1c, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x91, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x62, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x2d, 0xfe, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc4, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x36, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xda, 0x2, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xa7, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0x6a, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0xda, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0x66, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x32, 0xfd, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xfa, 0x14, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x73, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xee, 0x16, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x2, 0xcb, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xa6, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x11, 0xf5, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xaa, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x73, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0x39, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x98, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0x6f, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3c, + 0xfb, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xcb, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x21, + 0xfa, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xfa, 0x43, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x20, 0xe6, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x4f, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x9c, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf5, + 0x3e, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x1e, 0xdf, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xce, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xf7, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xf3, 0x4e, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x2e, 0xdf, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0x4b, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x84, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, + 0x80, 0x4, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x5a, + 0xf4, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xb7, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0xb, 0xe4, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xd2, 0x3b, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x24, 0xb7, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfa, + 0x28, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x4f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xbc, 0x4a, 0x2, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x37, 0xa7, 0xfb, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0x81, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0xa2, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xeb, 0xa2, + 0x62, 0x36, 0xe, 0x0, 0x0, 0x0, 0x0, 0xa, + 0x30, 0x5b, 0x96, 0xe1, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xcf, 0x5, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x10, 0xe1, 0xff, 0xff, 0xff, 0xff, 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, 0xef, + 0xed, 0xfa, 0xff, 0xff, 0xff, 0xff, 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, 0x2d, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x34, 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, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0x5f, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x64, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0x95, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x86, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xb2, 0x3, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x9e, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc4, + 0x9, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x2, 0x9d, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xbf, 0xc, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, + 0x90, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xb4, 0x9, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x6b, 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, 0x8e, 0x3, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x41, 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, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf2, 0x5c, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x13, 0xad, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xc3, 0x21, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x53, 0xe1, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 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, 0x68, 0x2, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0xa, 0x7f, 0xf0, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 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, 0x8f, 0x12, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x10, 0x7f, 0xe9, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xf0, 0x8d, 0x18, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x6, + 0x58, 0xbb, 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, 0xfd, 0xc3, 0x62, 0xa, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x12, 0x61, 0xa8, + 0xe6, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xeb, 0xae, 0x68, 0x18, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x23, 0x52, 0x7e, 0xa5, + 0xbf, 0xd9, 0xeb, 0xf4, 0xfc, 0xfc, 0xf5, 0xec, + 0xdb, 0xc2, 0xa7, 0x82, 0x56, 0x28, 0x1, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + + /* U+0031 "1" */ + 0x4d, 0x58, 0x58, 0x58, 0x58, 0x58, 0x58, 0x58, + 0x58, 0x58, 0x58, 0x58, 0x58, 0x58, 0x58, 0x58, + 0x58, 0x58, 0x58, 0x58, 0x58, 0x58, 0x58, 0x58, + 0x58, 0x58, 0x58, 0x58, 0x58, 0x58, 0x58, 0x58, + 0x58, 0x58, 0x58, 0x58, 0x58, 0x58, 0x58, 0x4, + 0xe0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc, + 0xe0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc, + 0xe0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc, + 0xe0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc, + 0xe0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc, + 0xe0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc, + 0xe0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc, + 0xe0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc, + 0xe0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc, + 0xe0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc, + 0xe0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc, + 0xe0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc, + 0xe0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc, + 0xe0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc, + 0xe0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x28, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x28, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x28, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x28, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x28, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x28, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x28, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x28, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x28, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x28, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x28, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x28, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x28, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x28, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x28, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x28, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x28, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x28, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x28, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x28, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x28, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x28, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x28, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x28, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x28, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x28, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x28, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x28, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x28, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x28, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x28, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x28, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x28, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x28, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x28, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x28, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x28, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x28, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x28, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x28, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x28, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x28, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x28, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x28, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x28, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x28, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x28, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x28, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x28, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x28, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x28, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x28, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x28, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x28, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x28, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x28, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x28, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x28, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x28, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x28, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x28, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x28, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x28, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x28, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x28, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x28, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x28, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x28, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x28, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x28, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x28, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x28, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x28, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x28, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x28, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x28, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x28, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x28, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x28, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x28, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x28, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x28, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x28, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc, + + /* U+0032 "2" */ + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x1a, 0x45, 0x66, 0x85, 0xa1, + 0xb4, 0xc6, 0xd5, 0xdc, 0xe2, 0xe5, 0xde, 0xd6, + 0xce, 0xc1, 0xa9, 0x91, 0x78, 0x55, 0x29, 0x4, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0xc, 0x4a, 0x84, 0xbe, 0xee, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xf8, 0xcd, 0x8e, 0x4e, + 0x10, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x1e, 0x73, 0xbe, + 0xfa, 0xff, 0xff, 0xff, 0xff, 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, 0xb9, 0x60, + 0xe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xb, + 0x64, 0xc4, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 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, 0x9b, 0x28, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x18, 0x8f, 0xf1, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xfe, 0xb1, 0x29, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x14, 0x8b, 0xf6, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 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, 0x91, 0x10, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0xd, 0x85, 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, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xe4, 0x41, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x41, 0xe0, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xfd, 0x87, 0x2, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xa, + 0x92, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xaf, + 0x9, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x30, 0xda, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xc5, 0x10, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x44, + 0xf2, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xc0, 0x7, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x5c, 0xfa, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xac, 0x2, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x74, + 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 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, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x63, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 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, 0x2f, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x42, + 0xfa, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xcd, 0x1, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x27, 0xef, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0x58, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x95, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xf2, 0xb6, 0x8b, 0x67, 0x43, + 0x26, 0x1b, 0xf, 0x4, 0x5, 0xc, 0x1a, 0x30, + 0x4e, 0x75, 0xa7, 0xe1, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xdc, 0x3, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x7d, 0xfd, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xd8, 0x7b, 0x36, + 0x3, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x2e, 0x85, 0xe9, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0x4c, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x45, 0xeb, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc, + 0xa0, 0x39, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x7, 0x72, 0xef, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xb0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x1d, 0xc8, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xfe, 0xa9, 0x26, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1c, + 0xc2, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xfb, 0x11, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x6, 0x94, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xe0, 0x3f, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x6, 0xab, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0x51, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x5a, + 0xf4, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xa2, 0xe, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x6, 0xc0, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0x94, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x2b, 0xd8, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x7c, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x1c, 0xf0, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xce, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0xd, 0xab, 0xff, 0xff, 0xff, + 0xff, 0xfc, 0x62, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x78, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xf3, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x72, 0xfb, 0xff, 0xff, 0x67, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0xd, 0xf5, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0x1a, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x3c, 0xe5, 0x87, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0xa7, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0x37, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x12, 0x1, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x64, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0x44, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x34, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x51, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x13, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0x58, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x4, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0x4c, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x2, 0xfe, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x3e, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x11, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0x31, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x23, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0x1c, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x4f, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xf3, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7e, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xca, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0xc2, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xa0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x14, 0xfc, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0x6b, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x69, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0x22, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0xd6, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xda, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x47, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0x91, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x1, 0xcb, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x33, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x65, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xca, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x1c, 0xef, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x61, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3, + 0xbe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xea, 0x9, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x87, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0x71, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x5a, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xdc, 0x7, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x3e, 0xf8, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0x49, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x2f, 0xf0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xa4, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x29, 0xea, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xe3, 0x10, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x28, 0xe6, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xfb, 0x3d, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x2b, 0xe8, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0x75, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x32, 0xec, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xa6, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x3a, 0xf0, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xc8, 0x8, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x43, 0xf4, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xdb, 0x16, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x4b, 0xf7, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xe7, 0x22, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x55, 0xfa, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xed, 0x2e, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x5e, 0xfc, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xf0, 0x33, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x69, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf0, 0x38, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x74, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xee, 0x34, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x80, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xea, 0x30, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x8c, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xe5, 0x29, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, + 0x96, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xe0, 0x23, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x3, 0xa1, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xda, 0x1d, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x5, + 0xab, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xd3, 0x18, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x8, 0xb4, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xcc, 0x13, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xb, + 0xbd, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc4, 0xf, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0xf, 0xc5, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xbd, 0xb, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x14, + 0xcd, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xb4, 0x8, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x18, 0xd4, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xab, 0x5, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1e, + 0xdb, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xa1, 0x3, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x24, 0xe1, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0x97, 0x1, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x2b, + 0xe7, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x8d, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x32, 0xec, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0x82, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3a, + 0xf0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x76, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x42, 0xf4, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xfe, 0x6b, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x4b, + 0xf7, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xfd, 0x61, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x55, 0xfa, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xfb, 0x57, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x5e, + 0xfc, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xf8, 0x4e, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x69, 0xfe, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xf5, 0x45, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x74, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xf1, 0x3d, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x7f, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xed, 0x35, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x8b, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xe9, 0x2d, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x1, 0x96, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xe3, 0x27, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3, 0xa1, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xde, 0x21, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x5, 0xab, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0x97, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, + 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, + 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, + 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, + 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, + 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, + 0x11, 0x0, 0x0, 0x0, 0x0, 0x0, 0x8, 0xb4, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 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, 0x0, 0x0, + 0x0, 0x0, 0xb, 0xbd, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 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, 0x0, 0x0, 0x0, 0x7, 0xc5, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 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, + 0x0, 0x0, 0x0, 0x18, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 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, 0x0, 0x0, 0x0, + 0x18, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 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, 0x0, 0x0, 0x0, 0x18, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 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, 0x0, + 0x0, 0x0, 0x18, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 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, 0x0, 0x0, 0x0, 0x18, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 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, 0x0, 0x0, 0x0, 0x18, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 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, 0x0, 0x0, + 0x0, 0x18, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 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, 0x0, 0x0, 0x0, 0x18, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 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, + 0x0, 0x0, 0x0, 0x18, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 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, 0x0, 0x0, 0x0, + 0x18, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 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, 0x0, 0x0, 0x0, 0x18, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 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, 0x0, + 0x0, 0x0, 0x18, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 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, + + /* U+0033 "3" */ + 0x0, 0x0, 0x0, 0x0, 0x18, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xb0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x18, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xb0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x18, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xb0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x18, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xb0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x18, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xb0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x18, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xb0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x18, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xb0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x18, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xb0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x18, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xb0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x18, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xb0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x18, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xb0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x18, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xb0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x18, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x73, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x18, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xa3, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x18, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xc5, 0x7, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x8, 0x58, 0x58, 0x58, 0x58, 0x58, 0x58, 0x58, + 0x58, 0x58, 0x58, 0x58, 0x58, 0x58, 0x58, 0x58, + 0x58, 0x58, 0x58, 0x58, 0x58, 0x58, 0x58, 0x58, + 0x58, 0x58, 0x58, 0x58, 0x58, 0x58, 0x58, 0x58, + 0x58, 0x58, 0x58, 0x58, 0x58, 0x58, 0x58, 0x58, + 0x58, 0x58, 0x58, 0x58, 0x5a, 0xe4, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xe0, 0x16, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x8c, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xf3, 0x2d, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x62, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfd, 0x4d, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3d, 0xf9, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0x74, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x22, 0xeb, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0x9d, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0xe, 0xd5, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xc2, 0x6, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3, + 0xb6, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xdd, 0x14, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x90, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf1, 0x2a, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x66, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xfc, 0x48, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x41, 0xfa, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0x6f, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x24, 0xed, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0x99, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x10, + 0xd8, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xbd, 0x4, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x4, 0xba, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xda, 0x11, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x95, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xef, 0x27, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x6b, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xfb, 0x44, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x44, 0xfb, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0x69, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x27, + 0xef, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0x93, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x12, 0xda, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xb9, 0x3, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x5, 0xbe, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xd7, 0xf, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x99, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xec, 0x23, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x70, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfa, + 0x3f, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x48, + 0xfc, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0x64, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x2a, 0xf1, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x8e, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x14, 0xdd, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xb4, 0x2, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x6, 0xc1, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xd3, 0xd, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x9d, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfd, + 0x52, 0xb, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x73, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xe2, 0xb4, + 0x7a, 0x41, 0xa, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0xd8, 0xff, 0xff, 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, 0xb3, + 0x64, 0x14, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xd8, + 0xff, 0xff, 0xff, 0xff, 0xff, 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, 0xa8, 0x43, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0xd8, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xcb, 0x4a, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xd8, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xc1, 0x29, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0xd8, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 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, + 0x7f, 0x3, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xd8, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xbc, 0x14, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0xd8, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xe0, 0x24, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xd8, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xe6, + 0x2b, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0xd8, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xe7, 0x1d, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xd8, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xd1, 0xc, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0xd8, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xa3, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xd8, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0x55, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x6c, 0x80, 0x80, 0x80, 0x80, + 0x80, 0x80, 0x80, 0x80, 0x82, 0x89, 0x8f, 0x9f, + 0xb2, 0xca, 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, 0xe9, + 0xd, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x12, + 0x44, 0x7a, 0xc1, 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, 0x86, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x13, + 0x6f, 0xd7, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xf7, 0x15, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x2, 0x5b, 0xe6, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0x7d, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x10, 0xac, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xe6, 0x3, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x1, 0x8b, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x3f, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x96, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0x91, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x6, 0xcb, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xd6, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x35, + 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xfe, 0xf, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0xb5, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x43, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x52, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0x67, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0xd, 0xfb, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x87, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0xd5, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xa1, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0xb0, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xac, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0xa0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xb6, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x9d, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xb7, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0xaa, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xaf, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0xcb, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xa0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x5, 0xf4, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0x87, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x40, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x69, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1e, + 0x3e, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x9e, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0x3e, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0xa3, 0xfc, 0x77, 0x1, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x1d, 0xf7, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfd, 0x10, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x32, 0xfe, + 0xff, 0xff, 0xb5, 0x1a, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xab, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xd1, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0xbd, 0xff, 0xff, 0xff, 0xff, 0xf2, + 0x70, 0x3, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x68, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x8e, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x4b, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xd0, 0x4a, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x53, 0xfb, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0x3d, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x3, 0xd5, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xcb, 0x4e, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x6d, 0xfb, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xe2, 0x2, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x65, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xd7, 0x73, 0x16, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x18, 0xad, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0x80, 0x0, 0x0, 0x0, 0x0, 0x0, 0xb, + 0xe6, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfa, + 0xad, 0x57, 0xf, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x10, 0x7f, 0xf1, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xf7, 0x18, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x80, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfb, 0xbf, + 0x73, 0x37, 0x8, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x6, 0x46, 0x9d, + 0xf5, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0x95, 0x0, 0x0, 0x0, 0x0, 0x0, 0x18, 0xf4, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfa, 0xcd, + 0x99, 0x74, 0x55, 0x35, 0x16, 0x8, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x3, 0x17, 0x31, 0x57, 0x81, + 0xba, 0xf2, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xf3, 0x18, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x9a, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xfd, 0xf3, 0xea, 0xed, 0xf3, 0xfe, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x79, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x2a, 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, 0xce, 0x4, 0x0, 0x0, 0x0, 0x0, + 0x0, 0xb4, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xf5, 0x2c, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x41, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0x59, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0xa5, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0x7c, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x7, 0x8e, 0xfe, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x8a, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x43, 0xe3, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 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, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x10, + 0x8e, 0xfa, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xf5, 0x58, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x25, 0xb0, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xd3, + 0x2d, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x3f, 0xba, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xfa, 0x88, 0x7, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x2e, 0xa2, 0xfa, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 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, 0x29, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1b, + 0x7d, 0xd7, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc2, 0x40, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x33, 0x8e, + 0xe5, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 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, + 0xa4, 0x36, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x1, 0x32, 0x77, 0xbc, + 0xf7, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 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, 0xb9, 0x63, 0xf, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x8, 0x43, 0x78, 0xa8, + 0xd8, 0xfd, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xf7, 0xc4, 0x8b, 0x4d, 0xb, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0xb, 0x37, 0x58, + 0x74, 0x90, 0xad, 0xc8, 0xd7, 0xe0, 0xe9, 0xf3, + 0xfc, 0xfd, 0xf8, 0xf3, 0xe8, 0xd8, 0xc7, 0xb0, + 0x93, 0x76, 0x51, 0x26, 0x3, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + + /* U+0034 "4" */ + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x52, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xf6, 0x2d, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x24, 0xf1, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0x63, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x8, 0xcf, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xa2, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x9b, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xd6, + 0xb, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x5e, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xf5, 0x2b, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x2c, 0xf5, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0x61, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xc, + 0xd8, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xa0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0xa8, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xd5, 0xa, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x6c, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xf5, 0x2a, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x35, 0xf9, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x5f, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x12, 0xe0, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0x9e, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0xb4, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xd4, 0xa, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x79, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xf4, 0x29, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x3f, 0xfc, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0x5d, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x18, 0xe7, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0x9c, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x3, 0xbf, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xd2, 0x9, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x86, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf3, + 0x27, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x4a, 0xfe, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0x5b, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1e, 0xed, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0x9a, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x6, + 0xc9, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xd1, 0x8, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x92, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xf2, 0x26, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x56, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x59, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x26, 0xf2, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x98, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x9, 0xd2, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xcf, 0x8, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x9f, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xf2, 0x25, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x63, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0x58, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x2f, 0xf7, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0x97, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0xe, 0xda, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xce, 0x7, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0xab, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf1, 0x24, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x70, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0x56, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x38, 0xfa, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0x95, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x13, 0xe2, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xcd, 0x7, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, + 0xb7, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xf1, 0x23, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x7d, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0x54, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x43, 0xfd, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x93, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x1a, 0xe9, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xcb, + 0x6, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x4, 0xc2, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xf0, 0x21, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x8a, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0x52, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x4e, + 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0x91, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x21, 0xef, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xca, 0x6, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x7, 0xcc, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xef, 0x20, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x76, + 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, + 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, + 0x14, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x96, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x50, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0xec, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0x28, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x59, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0x8f, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0xec, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0x28, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x29, 0xf4, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xc8, 0x5, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0xec, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x28, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xb, 0xd5, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xee, 0x1f, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xec, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0x28, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0xa3, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0x4e, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0xec, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0x28, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x67, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0x8d, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0xec, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0x28, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x32, 0xf8, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc7, 0x5, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0xec, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x28, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0xf, 0xdd, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xed, + 0x1e, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xec, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0x28, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0xaf, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xfe, 0x4d, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0xec, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0x28, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x74, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0x8b, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0xec, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0x28, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3b, + 0xfb, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xc6, 0x4, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0xec, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x28, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x15, 0xe4, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xec, 0x1d, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xec, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0x28, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x2, 0xba, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0x4b, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0xec, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0x28, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x81, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x89, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0xec, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0x28, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x46, 0xfd, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xc4, 0x4, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0xec, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x28, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x1c, 0xeb, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xec, 0x1c, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xec, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0x28, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x4, 0xc5, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xfe, 0x49, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0xec, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0x28, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x8d, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0x87, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0xec, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0x28, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x51, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xc3, 0x3, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0xec, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x28, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x23, 0xf0, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x97, + 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, + 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, + 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, + 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0xf5, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0x90, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, + 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, + 0x7c, 0x3f, 0x0, 0x8, 0xce, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0x84, 0x0, 0x9a, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0x84, 0x31, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x84, + 0x3c, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0x84, 0x3c, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0x84, 0x3c, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0x84, 0x3c, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x84, + 0x3c, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0x84, 0x3c, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0x84, 0x3c, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0x84, 0x3c, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x84, + 0x3c, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0x84, 0x3c, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0x84, 0x3c, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0x84, 0x3c, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x84, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7c, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0x28, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x7c, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0x28, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x7c, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0x28, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x7c, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x28, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7c, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0x28, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x7c, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0x28, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x7c, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0x28, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x7c, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x28, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7c, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0x28, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x7c, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0x28, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x7c, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0x28, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x7c, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x28, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7c, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0x28, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x7c, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0x28, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x7c, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0x28, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x7c, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x28, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7c, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0x28, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x7c, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0x28, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x7c, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0x28, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x7c, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x28, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7c, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0x28, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x7c, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0x28, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x3e, 0x80, 0x80, 0x80, 0x80, 0x80, + 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, + 0x80, 0x80, 0x80, 0x80, 0x14, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + + /* U+0035 "5" */ + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0xe8, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xb0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x3, 0xfd, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xb0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x19, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xb0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x31, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xb0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x49, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xb0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x61, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xb0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x79, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xb0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x92, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xb0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0xaa, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xb0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0xc2, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xb0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xda, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xb0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0xf2, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xb0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xa, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xb0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x23, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xb0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x3b, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xb0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x53, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xae, + 0x58, 0x58, 0x58, 0x58, 0x58, 0x58, 0x58, 0x58, + 0x58, 0x58, 0x58, 0x58, 0x58, 0x58, 0x58, 0x58, + 0x58, 0x58, 0x58, 0x58, 0x58, 0x58, 0x58, 0x58, + 0x58, 0x58, 0x58, 0x58, 0x58, 0x58, 0x58, 0x58, + 0x58, 0x58, 0x58, 0x58, 0x58, 0x58, 0x58, 0x58, + 0x58, 0x3c, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x6b, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0x70, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x83, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0x58, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x9b, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x40, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0xb3, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0x28, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xcc, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0x11, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0xe4, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xf8, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x1, 0xfa, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xe1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x14, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc9, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x2c, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xb1, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x44, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0x99, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x5d, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0x82, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x75, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0x6a, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x8d, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x52, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0xa5, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0x3a, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0xbd, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0x22, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0xd5, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xa, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0xee, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xf3, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x6, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xdb, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x1e, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xc3, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x36, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xab, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x4e, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x93, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x66, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0x7b, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7e, + 0xff, 0xff, 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, 0xf4, 0xee, 0xe7, 0xe0, 0xd0, + 0xbb, 0xa7, 0x92, 0x7b, 0x58, 0x32, 0xd, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x97, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xe7, 0xb5, 0x7c, 0x43, + 0xd, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0xaf, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xfd, 0xc3, 0x73, + 0x23, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xc7, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xd0, 0x68, + 0xc, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0xdf, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xf1, 0x91, 0x1a, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0xf6, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xf5, 0x82, 0xc, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xe7, 0x4b, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x28, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0x93, 0x8, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x40, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xcd, 0x16, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x58, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xdb, 0x21, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x70, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xe6, 0x20, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x88, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xd7, 0x11, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0xa0, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xc1, 0x3, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 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, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x7c, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0xd1, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xfa, 0x30, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x6d, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, + 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, + 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, + 0x7c, 0x80, 0x84, 0x89, 0x90, 0x9f, 0xad, 0xbd, + 0xd7, 0xf2, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 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, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xe, + 0x36, 0x5f, 0x8f, 0xca, 0xfa, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x4e, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0xc, 0x55, 0xa7, 0xf8, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xd1, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x15, 0x7e, 0xf2, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0x3d, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x17, 0xab, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x9e, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x6f, + 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xf3, 0x9, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x60, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0x43, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x87, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x85, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x5, 0xd4, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xc4, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x4b, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xee, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x1, 0xdb, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x12, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x8a, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0x37, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x47, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0x4b, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x1c, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x57, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x1, 0xfd, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0x63, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xf2, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0x68, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0xf4, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0x61, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3, + 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0x56, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x25, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x3f, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x55, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0x25, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x9d, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xfa, 0x4, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x5f, 0x11, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0xb, 0xf0, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xd4, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x25, 0xfb, + 0xe0, 0x37, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x72, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0x9c, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0xab, 0xff, 0xff, 0xfa, 0x7a, + 0x5, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x19, 0xf0, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x60, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x35, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xd6, 0x41, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x4, + 0xc0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xfe, 0x18, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0xbe, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xa8, 0x29, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x3, 0xa7, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xc6, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x49, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xfd, 0xa9, 0x2c, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xe, + 0xb4, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0x68, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x2, 0xd0, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xfe, 0xbd, 0x59, 0x8, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x41, 0xdd, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xf4, 0xf, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x5d, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xee, 0x94, 0x43, 0x5, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x2d, 0xad, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x90, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x6, 0xdf, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xf1, 0xaa, 0x61, 0x29, 0x1, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x15, 0x62, 0xc1, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xf8, 0x1d, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x71, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xf1, 0xbd, 0x8c, 0x6b, 0x4b, 0x2c, + 0x10, 0x5, 0x0, 0x0, 0x0, 0x0, 0x0, 0x8, + 0x1e, 0x3d, 0x64, 0x94, 0xcd, 0xfd, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x89, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xe, 0xec, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 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, + 0xf0, 0xe9, 0xef, 0xf7, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xe6, 0xf, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x85, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0x4e, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x19, + 0xf5, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0x99, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x99, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xca, 0x7, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0xb, 0xee, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xdb, 0x16, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x23, 0xc8, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xdf, 0x21, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x4, 0x83, 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, 0xd7, 0x1c, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x34, 0xc5, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xb6, 0xf, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x58, 0xe0, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 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, 0x7d, 0x2, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x8, 0x73, 0xe3, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xd3, + 0x36, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x5, + 0x5c, 0xcf, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xef, 0x73, 0x4, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x41, + 0xa1, 0xf2, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xf3, 0x87, 0x11, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x9, 0x56, + 0xb0, 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, + 0xde, 0x75, 0xf, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xc, 0x4c, + 0x90, 0xd4, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xe5, 0x99, 0x3e, 0x1, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x19, + 0x57, 0x89, 0xb9, 0xe8, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xe7, 0xaf, 0x74, 0x31, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x18, 0x43, 0x61, 0x7d, 0x9a, 0xb6, 0xcf, + 0xda, 0xe3, 0xec, 0xf6, 0xfe, 0xfc, 0xf7, 0xf1, + 0xe3, 0xd2, 0xc1, 0xa7, 0x8a, 0x6a, 0x42, 0x16, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, + + /* U+0036 "6" */ + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x10, 0x25, 0x3a, 0x44, 0x4b, 0x52, + 0x55, 0x4e, 0x47, 0x40, 0x30, 0x1b, 0x6, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x3, 0x2c, 0x62, 0x8e, 0xb4, 0xd9, + 0xf9, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xee, 0xcc, + 0xa7, 0x82, 0x55, 0x20, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x2e, 0x75, + 0xbc, 0xf4, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xea, 0xb2, 0x6c, 0x24, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x2f, 0x89, 0xe1, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xdb, 0x82, + 0x26, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x8, 0x61, + 0xcf, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xc7, 0x56, 0x3, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0xd, 0x7d, 0xea, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xdd, 0x65, 0x3, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x7, 0x73, 0xeb, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 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, 0x43, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x44, 0xda, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xaf, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x10, 0xa4, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0x33, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x3b, 0xe0, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xb5, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x71, + 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, 0x38, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x4, 0x99, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 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, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x8, 0xb6, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0x3e, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x9, 0xba, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xc1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x5, 0xba, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0x44, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0xa1, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 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, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x80, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xdb, 0xa2, 0x78, 0x58, 0x38, 0x1f, 0x16, 0xc, + 0x2, 0x6, 0xd, 0x17, 0x2c, 0x41, 0x5e, 0x85, + 0xac, 0xe1, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0x4a, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x49, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xf5, 0xac, 0x57, 0x14, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x18, 0x5c, 0xa8, 0xf1, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xcd, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1c, + 0xec, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xd9, 0x66, 0xb, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x9, 0x5c, 0xc3, 0xff, 0xff, + 0xff, 0xff, 0x50, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0xbe, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xdb, 0x52, 0x1, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x3d, 0xbd, 0xff, + 0xd2, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x66, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xf7, 0x7e, 0x7, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x54, 0x49, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x1a, 0xf0, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xdc, 0x2f, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0xa2, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xb5, 0x10, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x31, + 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xaa, 0x4, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xbc, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xa8, 0x3, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x39, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xc6, 0x7, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0xb1, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xe4, 0x18, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x29, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0x44, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x8f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xa0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x6, 0xeb, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xee, 0x13, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x54, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0x7e, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0xab, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xef, 0xf, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x7, 0xf3, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0x89, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x4b, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0x28, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x94, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xc9, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xd3, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0x71, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x13, 0xfe, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0x2b, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x4e, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xe5, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x80, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xa4, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0xaf, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0x73, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0xe, 0x2d, 0x3b, 0x45, 0x4f, 0x58, 0x51, 0x44, + 0x37, 0x2a, 0x19, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0xdd, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0x45, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x6, 0x37, 0x70, 0xa8, 0xce, 0xee, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xf2, 0xca, 0xa2, 0x79, 0x3d, 0x4, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x9, + 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0x18, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x13, 0x63, 0xb7, + 0xf8, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf1, 0xae, + 0x67, 0x17, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x28, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xf3, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x44, 0xb5, 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, + 0xf9, 0xa7, 0x3d, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x48, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xd9, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x58, + 0xcf, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xd3, 0x57, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x68, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x2f, 0xc5, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xc5, 0x35, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x81, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xa6, 0x0, 0x0, + 0x0, 0x5, 0x8c, 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, 0xfe, 0xa0, 0xe, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x94, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0x99, 0x0, 0x0, 0x18, + 0xc3, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xda, 0x2e, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0xa6, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0x91, 0x0, 0x31, 0xe5, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 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, 0x60, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0xb8, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0x89, 0x2f, 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, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0x74, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xc4, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xad, 0xeb, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0x6f, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xca, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0x69, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0xd0, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 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, 0x3b, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0xd5, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xe1, 0x11, 0x0, 0x0, + 0x0, 0x0, 0x0, 0xd4, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xad, 0x0, 0x0, 0x0, + 0x0, 0x0, 0xcd, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xd4, 0x96, 0x64, 0x3f, + 0x23, 0x10, 0x7, 0x3, 0xc, 0x17, 0x31, 0x4e, + 0x7b, 0xad, 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, 0x56, 0x0, 0x0, 0x0, + 0x0, 0xc5, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xdb, 0x78, 0x1d, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x2, 0x3c, 0x9b, 0xf5, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xe0, 0x8, 0x0, 0x0, 0x0, + 0xbe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xdc, 0x5b, 0x2, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x14, 0x88, 0xf9, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0x6d, 0x0, 0x0, 0x0, 0xb6, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xfe, 0x8a, 0x9, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x27, 0xc8, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xe3, 0x4, 0x0, 0x0, 0xad, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xf0, 0x4b, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x5, 0x98, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0x51, 0x0, 0x0, 0x9a, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xeb, 0x31, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x89, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xb3, 0x0, 0x0, 0x81, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xf4, 0x32, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0xa3, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xf8, 0xd, 0x0, 0x68, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0x56, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x9, 0xda, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0x54, 0x0, 0x4f, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xa6, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x41, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x92, + 0x0, 0x36, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf7, + 0x1c, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0xbc, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xcc, 0x0, + 0x17, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x96, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x52, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xf5, 0x2, 0x0, + 0xeb, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0x33, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x6, 0xf2, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0x20, 0x0, 0xc0, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xe3, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0xb7, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0x3b, 0x0, 0x94, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xa5, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x81, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0x53, 0x0, 0x68, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0x7b, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x5d, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0x60, 0x0, 0x34, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0x5d, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x48, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0x68, 0x0, 0x3, 0xf0, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x51, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3c, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0x67, 0x0, 0x0, 0xb1, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x52, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x40, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x5e, + 0x0, 0x0, 0x6f, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0x5f, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x4d, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x52, 0x0, + 0x0, 0x2c, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0x7e, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x6c, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0x3a, 0x0, 0x0, + 0x0, 0xdb, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xa9, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x93, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0x20, 0x0, 0x0, 0x0, + 0x80, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xe8, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0xd1, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xf6, 0x2, 0x0, 0x0, 0x0, 0x25, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0x3b, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1d, + 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xce, 0x0, 0x0, 0x0, 0x0, 0x0, 0xc9, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xa2, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7b, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0x97, 0x0, 0x0, 0x0, 0x0, 0x0, 0x66, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xfb, 0x25, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0xb, 0xe9, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x59, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x7, 0xe6, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xb9, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x83, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc, 0x14, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x74, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0x6f, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x34, 0xfa, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xbd, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0xc, 0xee, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc, + 0x49, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1a, + 0xe4, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0x60, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x78, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf8, + 0x4c, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x1c, 0xd9, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xee, 0x9, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x6, 0xd7, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc, + 0x73, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x38, 0xe3, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0x84, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x42, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xba, 0x23, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x7, 0x80, 0xf9, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf1, 0x12, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0xa4, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xf9, 0x99, 0x25, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x6, 0x63, 0xde, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0x76, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x12, 0xdf, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xc4, 0x6f, 0x2a, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x7, 0x44, 0x92, 0xec, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xd6, 0x5, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x32, 0xf7, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xef, 0xc2, 0x9c, 0x82, + 0x6c, 0x64, 0x5d, 0x63, 0x6d, 0x84, 0xa1, 0xcd, + 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, 0xf7, 0x30, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x61, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0x67, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x8d, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xa6, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x94, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xc8, 0xc, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x1, 0x97, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xc8, 0xe, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x1, 0x8b, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xc8, 0xe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x5a, 0xf6, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xb4, 0xe, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x30, 0xdf, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 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, 0x77, 0x1, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0xc, 0x90, 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, 0xe4, 0x3d, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x33, 0xcc, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 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, 0x85, + 0xc, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x2, 0x57, 0xcf, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xa8, 0x1e, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x49, 0xbf, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xf3, 0x97, 0x2d, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1f, 0x76, + 0xce, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xfe, 0xcd, 0x6a, 0xd, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x24, 0x66, 0xa1, 0xdb, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xea, 0xa5, 0x5e, 0x18, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x16, 0x44, 0x65, 0x86, 0xa7, + 0xc7, 0xd7, 0xe1, 0xeb, 0xf5, 0xfd, 0xf4, 0xe7, + 0xdb, 0xce, 0xbd, 0x99, 0x70, 0x48, 0x1f, 0x1, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, + + /* U+0037 "7" */ + 0x9, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, + 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, + 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, + 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, + 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, + 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, + 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, + 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, + 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, + 0x7c, 0x7c, 0x7c, 0x7c, 0x7c, 0x9, 0x14, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0x14, 0x14, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0x14, 0x14, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x14, + 0x14, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0x14, 0x14, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0x14, 0x14, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0x14, 0x14, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x14, + 0x14, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0x14, 0x14, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0x14, 0x14, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0x14, 0x14, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x14, + 0x14, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0x11, 0x14, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xc0, 0x0, 0x14, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0x4f, 0x0, 0x14, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xdc, 0x2, 0x0, + 0x14, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xdc, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x2, + 0xda, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0x6d, 0x0, 0x0, 0x14, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xdc, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x4f, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xf0, 0xc, 0x0, 0x0, 0x14, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xdc, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0xc0, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x8b, 0x0, + 0x0, 0x0, 0x14, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xdc, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x32, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xfc, 0x1e, 0x0, 0x0, 0x0, + 0x14, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xdc, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xa3, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xa9, 0x0, 0x0, 0x0, 0x0, 0x14, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xdc, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x1a, 0xfa, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x38, + 0x0, 0x0, 0x0, 0x0, 0x14, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xdc, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x86, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xc7, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x14, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xdc, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xa, 0xed, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0x56, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x14, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xdc, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x69, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xe1, + 0x3, 0x0, 0x0, 0x0, 0x0, 0x0, 0x14, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xdc, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x1, 0xd9, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0x74, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x14, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xdc, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x4c, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xf3, 0xf, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x14, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xdc, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0xbe, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0x91, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x14, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xdc, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x30, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xfd, 0x23, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x14, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xdc, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0xa1, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xaf, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x14, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xdc, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x19, 0xf9, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0x3e, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x14, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xdc, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x84, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xcd, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0xe, 0xbc, 0xbc, 0xbc, 0xbc, 0xbc, 0xbc, 0xbc, + 0xbc, 0xbc, 0xbc, 0xbc, 0xbc, 0xbc, 0xbc, 0xbc, + 0xbc, 0xa1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x9, 0xec, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0x5c, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x67, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xe5, 0x5, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x1, 0xd7, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x7a, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x4a, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xf6, 0x13, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xbc, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0x98, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x2e, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, + 0x28, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x9f, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xb6, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x17, + 0xf8, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0x45, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x82, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xd3, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x8, 0xeb, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x63, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x65, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xea, 0x8, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0xd5, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0x81, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x48, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf8, 0x17, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0xba, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0x9f, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x2c, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0x2f, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x9d, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xbd, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x16, 0xf8, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0x4c, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x80, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xd9, 0x1, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x7, 0xe9, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0x69, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x63, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xee, 0xa, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0xd4, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0x87, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x46, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xfa, 0x1b, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0xb8, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xa5, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x2a, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0x34, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x9b, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xc3, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x15, 0xf7, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x52, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x7e, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xde, 0x2, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7, 0xe8, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0x70, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x61, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf1, + 0xd, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0xd1, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0x8e, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x44, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xfc, 0x20, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0xb6, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xac, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x28, 0xfe, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x3b, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x99, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xca, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x13, 0xf6, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0x59, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x7c, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xe3, 0x4, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x6, 0xe7, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0x77, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x5f, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xf4, 0x11, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0xd0, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x95, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x42, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xfe, 0x26, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xb3, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xb3, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x26, 0xfe, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0x42, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x96, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xd0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x12, + 0xf5, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0x5f, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x7a, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xe7, 0x6, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x5, 0xe5, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x7d, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x5d, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xf7, 0x15, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xce, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0x9b, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x40, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x2b, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0xb1, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xb9, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x25, 0xfd, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0x48, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x94, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xd6, + 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x11, 0xf4, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0x66, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x77, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xec, 0x9, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x5, 0xe3, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0x84, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x5b, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xfa, 0x19, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0xcc, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xa2, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x3e, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0x31, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0xaf, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x23, 0xfd, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0x4f, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x92, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xdc, 0x2, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x10, 0xf3, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x6d, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x75, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xf0, 0xc, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x4, 0xe2, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0x8b, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x58, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc, + 0x1e, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0xc9, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xa9, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3b, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0x38, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, + + /* U+0038 "8" */ + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0xc, 0x26, 0x31, 0x3c, 0x46, 0x51, + 0x59, 0x51, 0x47, 0x3c, 0x32, 0x27, 0xd, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x16, 0x50, 0x86, + 0xa8, 0xc9, 0xea, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xec, 0xcc, 0xab, 0x8a, 0x56, 0x1b, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0xd, 0x5c, 0x9f, 0xda, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xe1, + 0xa6, 0x66, 0x14, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x9, 0x54, 0xac, 0xf7, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 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, 0xb7, 0x5f, 0xe, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x13, + 0x82, 0xef, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf6, + 0x92, 0x1d, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x19, 0x8d, + 0xf4, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xfa, 0x9d, 0x25, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x6b, 0xf2, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 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, 0x81, 0x6, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x28, 0xc4, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xd6, 0x3a, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x59, 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, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xfe, 0x7a, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x7b, 0xfe, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0x9d, 0x5, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x1, 0x9b, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xbc, + 0xc, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x8c, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xb5, 0x3, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 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, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0x98, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x44, 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, 0xff, 0xff, 0xff, 0xff, 0x73, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x10, 0xe5, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfa, 0x30, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x99, 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, + 0xcb, 0x9a, 0x69, 0x3d, 0x2c, 0x1d, 0xf, 0x4, + 0xf, 0x1d, 0x2c, 0x3d, 0x69, 0x99, 0xca, 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, + 0xce, 0x2, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x2c, 0xfc, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc5, 0x68, + 0x12, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0xf, 0x64, 0xc0, 0xfe, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0x63, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xa7, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xc4, 0x31, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x28, 0xb6, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xdf, 0x3, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1d, + 0xfc, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xed, 0x5e, 0x1, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x4b, + 0xe0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0x57, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x79, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xda, 0x24, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x13, 0xc1, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xb9, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0xcf, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xe2, 0x1d, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0xa, 0xc3, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfd, + 0x15, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x17, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xfb, 0x38, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x17, 0xe7, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0x59, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x53, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0x94, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x59, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0x97, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x84, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xfb, 0x19, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0xd5, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xc8, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0xab, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xb2, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x71, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xf1, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0xc6, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x6a, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x27, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xda, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0x38, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0xf3, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x20, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xe3, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0x16, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xd1, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0x29, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0xe2, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0x9, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xc2, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0x29, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0xd3, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xa, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0xc4, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0x1a, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0xc5, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0x1a, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0xd4, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xa, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0xb1, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0x3f, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x2, 0xf7, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xf6, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x85, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x78, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x34, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xc8, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x54, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc7, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x84, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0x97, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x21, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0x33, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x8, 0xe8, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x62, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0xd3, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xbd, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x7d, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfb, 0x14, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x7d, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0x6c, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x35, 0xf9, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xb8, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x25, 0xfe, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xfa, 0x4a, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x25, 0xe6, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0x5a, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0xaa, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf8, + 0x5b, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x37, 0xe7, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xd7, 0x3, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x2b, 0xfd, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xa3, 0x18, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0xb, 0x86, 0xf9, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0x55, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x9c, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xf0, 0x71, 0xd, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x7, 0x5b, 0xe2, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xc0, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0xd, 0xdf, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf6, + 0xa5, 0x47, 0x9, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x6, 0x3d, 0x98, 0xee, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xee, 0x1d, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x3e, 0xfc, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xfc, 0xd4, 0xa2, 0x75, 0x63, + 0x54, 0x46, 0x3b, 0x46, 0x54, 0x62, 0x73, 0x9e, + 0xcf, 0xfa, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xfe, 0x53, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x63, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0x70, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x74, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0x7f, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x6c, 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, 0xfb, 0x6e, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x44, 0xee, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xed, 0x43, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x1f, 0xb5, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xb2, 0x1c, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x57, + 0xf4, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xf4, 0x55, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x37, + 0xc0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xc1, 0x3b, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x23, 0xad, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xb3, 0x2a, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x64, 0xf4, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 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, + 0x73, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x13, 0xae, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xbf, 0x1e, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xdb, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xe9, 0x31, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x27, 0xe3, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf0, 0x3e, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x27, 0xe9, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 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, 0x43, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0xd, 0xd7, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, + 0xd5, 0x9c, 0x74, 0x4d, 0x34, 0x1e, 0xe, 0x7, + 0x2, 0x7, 0xe, 0x1e, 0x33, 0x4d, 0x73, 0x9c, + 0xd3, 0xfd, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xee, 0x23, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0xaf, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc, 0xb1, 0x5e, + 0x13, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x11, 0x5b, 0xad, 0xfa, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xd3, 0xc, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x71, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xf6, 0x8a, 0x1c, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x18, 0x82, + 0xf1, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xa5, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1e, 0xf4, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xac, 0x1a, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x12, 0x9b, 0xfe, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0x49, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xa2, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xf7, 0x5e, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x47, 0xed, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xd7, 0x3, 0x0, 0x0, 0x0, 0x0, 0x25, + 0xfd, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xf1, 0x39, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x22, 0xdf, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0x5e, 0x0, 0x0, 0x0, 0x0, + 0x92, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xf9, 0x3b, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x1f, 0xe5, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xce, 0x0, 0x0, 0x0, + 0x5, 0xee, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0x6b, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x3b, 0xfb, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x34, 0x0, + 0x0, 0x49, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xc7, 0x1, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x8e, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x8b, + 0x0, 0x0, 0x91, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0x40, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0xf, 0xf3, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xd3, 0x0, 0x0, 0xce, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xd4, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x95, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xfe, 0x13, 0x4, 0xf9, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x83, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x42, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0x42, 0x27, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x43, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x5, 0xfa, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0x6c, 0x43, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0x18, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0xd4, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0x88, 0x58, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xfd, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0xb9, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x9f, 0x62, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xf3, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0xac, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xa8, + 0x65, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xf9, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xb2, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xad, 0x5e, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0x7, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xc1, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xa4, 0x53, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0x2b, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0xe7, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0x99, 0x3b, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x5b, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x18, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0x80, 0x1e, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xa1, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x60, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0x63, 0x1, 0xf2, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xf1, 0xc, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0xbf, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0x38, 0x0, 0xc3, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0x6f, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x33, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc, 0xa, 0x0, + 0x85, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xec, 0x12, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x1, 0xc5, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc8, 0x0, + 0x0, 0x3f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xaf, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x7e, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x82, + 0x0, 0x0, 0x3, 0xe8, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x85, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x5a, 0xfd, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0x2b, 0x0, 0x0, 0x0, 0x8f, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0x88, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x67, 0xfc, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xcd, 0x0, 0x0, 0x0, 0x0, 0x24, 0xfd, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xb4, 0x17, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0xe, 0x9d, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0x5e, 0x0, 0x0, 0x0, 0x0, 0x0, 0xab, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xed, 0x68, 0x5, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x2, 0x5c, 0xe4, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xe1, 0x5, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x26, 0xfa, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xde, 0x71, 0x11, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0xf, 0x6b, 0xd7, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0x5a, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x8c, 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, 0xb7, 0x6b, 0x2f, 0x2, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x2, 0x2d, 0x69, + 0xb5, 0xf7, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xc2, 0x1, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x9, 0xda, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xf4, 0xce, 0xa8, 0x8e, 0x78, 0x68, 0x62, 0x5d, + 0x62, 0x68, 0x78, 0x8d, 0xa7, 0xcd, 0xf4, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xf4, 0x23, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x33, 0xf7, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0x5d, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x61, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0x8f, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x7e, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xa7, 0x2, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x87, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xab, 0x5, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x75, 0xfe, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 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, 0x2, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x4d, + 0xf1, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 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, 0x68, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x22, 0xc4, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xd4, 0x32, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x2, 0x70, 0xf1, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 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, 0x81, 0x7, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x17, 0x99, + 0xfa, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xfd, 0xa5, 0x21, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x21, 0x97, 0xf5, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 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, + 0x9f, 0x28, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x11, 0x70, 0xc8, 0xfe, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xcd, 0x76, + 0x15, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x1e, 0x73, 0xc8, 0xfe, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xcb, 0x76, 0x21, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x13, 0x4b, 0x83, 0xbb, + 0xf1, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xf2, 0xbc, 0x84, 0x4c, 0x14, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x2, 0x23, 0x44, 0x64, 0x83, 0xa3, 0xc1, + 0xd0, 0xd9, 0xe3, 0xed, 0xf7, 0xfe, 0xf7, 0xed, + 0xe3, 0xd9, 0xd0, 0xc1, 0xa3, 0x83, 0x64, 0x44, + 0x24, 0x2, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + + /* U+0039 "9" */ + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3, 0x1d, + 0x2b, 0x38, 0x45, 0x52, 0x58, 0x4e, 0x43, 0x39, + 0x2f, 0x1b, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x12, 0x54, 0x82, 0xab, 0xd3, 0xf8, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xf8, 0xd9, 0xb8, 0x96, 0x62, 0x27, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x37, 0x80, 0xc7, 0xfd, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xec, 0xb2, + 0x6b, 0x17, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x10, 0x70, 0xd8, 0xff, 0xff, 0xff, 0xff, 0xff, + 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, 0xbc, 0x65, 0xf, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x25, 0x9c, 0xf5, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xf0, 0x86, 0x16, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x10, 0x8e, 0xfa, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 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, 0x94, 0x15, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x2, + 0x6c, 0xec, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xed, 0x62, 0x1, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x15, 0xba, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xc2, 0x27, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x3c, 0xe4, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xf2, 0x4f, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x67, 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, 0xfe, 0x80, 0x1, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x6a, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xac, 0x5, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x6a, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xad, 0x4, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x5f, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xaa, 0x3, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x2e, 0xf6, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x9e, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xd, + 0xd9, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x69, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xa6, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xdb, + 0x99, 0x68, 0x3f, 0x24, 0xf, 0x6, 0x3, 0xb, + 0x15, 0x2e, 0x48, 0x72, 0xa0, 0xdf, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xf9, 0x37, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x4e, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xe5, 0x83, 0x24, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x25, 0x7f, 0xde, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xe3, 0x13, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x7, 0xde, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xed, 0x6d, 0x7, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3, 0x5c, + 0xdd, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0x9c, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x6c, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xac, 0x15, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x9, + 0x88, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xfe, 0x3b, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x5, + 0xe4, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xfe, 0x74, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x4a, 0xf0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xd2, 0x4, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x57, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xfe, 0x61, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x34, 0xed, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0x6c, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0xbd, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0x79, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x3b, 0xf8, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xe2, 0x5, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x17, 0xfd, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xb6, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x67, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0x62, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x65, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xf6, 0x1c, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0xbb, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xd9, 0x2, 0x0, 0x0, 0x0, 0x0, + 0x0, 0xa8, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0x8d, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x2f, + 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0x4f, 0x0, 0x0, 0x0, 0x0, 0x0, + 0xe5, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xfe, 0x20, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xb5, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xad, 0x0, 0x0, 0x0, 0x0, 0x17, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xc4, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x56, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xf8, 0x10, 0x0, 0x0, 0x0, 0x42, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x81, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x10, 0xfc, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0x66, 0x0, 0x0, 0x0, 0x64, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x4a, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0xd1, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc1, + 0x0, 0x0, 0x0, 0x7d, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0x25, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0xaa, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfb, 0xd, + 0x0, 0x0, 0x91, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xe, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x93, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x4c, 0x0, + 0x0, 0x9b, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0x3, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x87, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0x8e, 0x0, 0x0, + 0xa1, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0x6, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x8f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xd0, 0x0, 0x0, 0x9e, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0x12, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x9f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xfe, 0x10, 0x0, 0x96, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0x30, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xc3, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0x3c, 0x0, 0x85, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x57, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x3, 0xef, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0x68, 0x0, 0x6d, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x92, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x36, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0x95, 0x0, 0x4c, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xdb, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x8f, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xc1, 0x0, 0x23, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0x39, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0xc, 0xec, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xea, + 0x0, 0x2, 0xf0, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xaf, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x7d, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x6, + 0x0, 0xb7, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xfe, 0x3b, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x26, 0xf6, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x1e, 0x0, + 0x74, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xd9, 0xb, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x9, 0xcc, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0x37, 0x0, 0x25, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xae, 0x1, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x4, 0xae, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0x50, 0x0, 0x0, 0xcd, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xa2, 0x3, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x7, 0xae, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0x68, 0x0, 0x0, 0x68, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xb9, 0x14, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1d, 0xc9, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0x77, 0x0, 0x0, 0xb, 0xec, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xe4, 0x53, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x1, 0x65, 0xef, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0x7f, 0x0, 0x0, 0x0, 0x7c, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xc1, 0x46, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x3, 0x53, 0xd1, 0xff, 0xff, 0xff, 0xff, 0xff, + 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, 0x0, 0x0, 0x0, 0xb, 0xe5, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xdd, 0x83, 0x3a, + 0x4, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x5, 0x3f, 0x8a, 0xe5, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x8f, + 0x0, 0x0, 0x0, 0x0, 0x59, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf5, + 0xca, 0xa0, 0x85, 0x6e, 0x64, 0x5d, 0x63, 0x6d, + 0x84, 0xa0, 0xcb, 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, 0x97, 0x0, + 0x0, 0x0, 0x0, 0x0, 0xa6, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0x9d, 0x0, 0x0, + 0x0, 0x0, 0x0, 0xe, 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, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0x9a, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x35, 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, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0x94, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x51, 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, + 0xf6, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0x8e, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x55, 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, 0x85, 0xbe, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0x87, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x59, 0xfa, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0x8c, 0x0, 0xc6, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0x78, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x39, 0xe3, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xfd, 0x78, 0x0, 0x0, 0xce, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x65, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x14, 0xba, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xed, + 0x46, 0x0, 0x0, 0x0, 0xd5, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x53, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x2, 0x6c, 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, 0xb1, 0x1e, 0x0, + 0x0, 0x0, 0x0, 0xe9, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0x40, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x11, 0x91, 0xfa, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xde, 0x4c, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x4, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0x23, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x25, 0x95, 0xf2, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 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, + 0x5f, 0x5, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x1d, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xfd, 0x5, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xc, 0x68, + 0xcf, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xf1, 0xa5, 0x46, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x38, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xe3, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x1f, 0x66, 0xad, 0xef, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfd, 0xd2, + 0x98, 0x4d, 0x7, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x62, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xc0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x3, 0x28, 0x51, 0x79, 0xa2, 0xc4, + 0xd3, 0xe0, 0xec, 0xf9, 0xfb, 0xf2, 0xe8, 0xde, + 0xcc, 0xad, 0x8d, 0x6d, 0x42, 0xd, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x90, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x93, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0xbe, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x64, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x3, 0xf0, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0x36, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x39, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xf8, 0x8, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x7e, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xc1, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xc7, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0x82, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x26, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0x41, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x85, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xef, 0x4, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x6, 0xe4, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xa4, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x67, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0x54, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x5, + 0xe0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xef, 0x8, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x72, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0x94, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x20, 0xf4, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0x30, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x1, 0xb9, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc3, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x81, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0x4b, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x53, + 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xd2, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x48, 0xf7, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0x50, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x4d, 0xf9, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xc1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x72, 0xfb, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0x35, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x3, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x10, 0xad, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0x97, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0xb7, 0x8d, 0xd, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x1, 0x5f, 0xe9, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xe3, 0xd, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x39, + 0xff, 0xff, 0xeb, 0x7b, 0xf, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x1, 0x4d, 0xc7, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xfe, 0x49, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xb6, 0xff, + 0xff, 0xff, 0xff, 0xf4, 0x9f, 0x3e, 0x2, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x19, 0x6c, 0xd7, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0x8b, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x33, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xec, 0xa3, 0x65, + 0x2d, 0x2, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0xb, 0x3f, 0x78, 0xc1, 0xfd, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc5, 0x4, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0xaf, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xf7, 0xd3, 0xae, 0x94, 0x7e, 0x6b, 0x63, 0x5c, + 0x5b, 0x64, 0x6e, 0x7a, 0x96, 0xb6, 0xd7, 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, 0xe1, 0x19, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x2d, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xef, 0x2b, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0xa9, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xf4, 0x3e, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x28, 0xfd, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf3, 0x3d, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 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, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 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, 0x39, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x23, 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, 0xd8, 0x23, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x9c, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xb4, 0x10, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x1e, 0xfa, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 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, 0x6e, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x96, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 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, 0x2d, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x8, 0xeb, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 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, 0x65, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x18, 0x9e, 0xfd, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xf2, 0x82, 0xf, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x2c, 0xa2, + 0xfa, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xe9, 0x82, 0x14, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1c, + 0x83, 0xe0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xc3, + 0x5f, 0x7, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x1, 0x3f, 0x94, 0xdc, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 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, 0xc7, 0x78, 0x1e, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x24, 0x68, 0xa0, 0xd5, 0xfd, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xf9, 0xca, 0x94, + 0x55, 0x11, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xc, 0x34, + 0x58, 0x7d, 0x9d, 0xb4, 0xca, 0xdf, 0xeb, 0xf2, + 0xf9, 0xfe, 0xfa, 0xf3, 0xec, 0xdf, 0xca, 0xb4, + 0x9d, 0x7a, 0x55, 0x2f, 0x6, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0 +}; + + +/*--------------------- + * GLYPH DESCRIPTION + *--------------------*/ + +static const lv_font_fmt_txt_glyph_dsc_t glyph_dsc[] = { + {.bitmap_index = 0, .adv_w = 0, .box_w = 0, .box_h = 0, .ofs_x = 0, .ofs_y = 0} /* id = 0 reserved */, + {.bitmap_index = 0, .adv_w = 1508, .box_w = 83, .box_h = 101, .ofs_x = 6, .ofs_y = -1}, + {.bitmap_index = 8383, .adv_w = 853, .box_w = 40, .box_h = 99, .ofs_x = 1, .ofs_y = 0}, + {.bitmap_index = 12343, .adv_w = 1304, .box_w = 77, .box_h = 100, .ofs_x = 1, .ofs_y = 0}, + {.bitmap_index = 20043, .adv_w = 1304, .box_w = 76, .box_h = 100, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 27643, .adv_w = 1521, .box_w = 90, .box_h = 99, .ofs_x = 4, .ofs_y = -1}, + {.bitmap_index = 36553, .adv_w = 1308, .box_w = 77, .box_h = 100, .ofs_x = 1, .ofs_y = -1}, + {.bitmap_index = 44253, .adv_w = 1404, .box_w = 79, .box_h = 102, .ofs_x = 6, .ofs_y = -1}, + {.bitmap_index = 52311, .adv_w = 1362, .box_w = 78, .box_h = 99, .ofs_x = 3, .ofs_y = 0}, + {.bitmap_index = 60033, .adv_w = 1460, .box_w = 81, .box_h = 102, .ofs_x = 5, .ofs_y = -1}, + {.bitmap_index = 68295, .adv_w = 1404, .box_w = 79, .box_h = 102, .ofs_x = 3, .ofs_y = -1} +}; + +/*--------------------- + * CHARACTER MAPPING + *--------------------*/ + + + +/*Collect the unicode lists and glyph_id offsets*/ +static const lv_font_fmt_txt_cmap_t cmaps[] = +{ + { + .range_start = 48, .range_length = 10, .glyph_id_start = 1, + .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, 1, 0, 2, 3, 4, 5, 6, + 7, 0, 1 +}; + +/*Map glyph_ids to kern right classes*/ +static const uint8_t kern_right_class_mapping[] = +{ + 0, 1, 2, 3, 4, 5, 6, 1, + 7, 8, 9 +}; + +/*Kern values between classes*/ +static const int8_t kern_class_values[] = +{ + 0, -9, -9, -18, 0, 0, -9, 0, + 0, -5, 0, 0, 0, -27, 0, -5, + 0, 0, 0, 0, -9, -9, 0, -18, + -18, 0, 0, 0, -45, -5, -18, 0, + -5, -81, 18, -9, 0, 0, -9, -9, + 0, -9, -23, 0, 0, 0, 0, 0, + 0, 0, 0, -9, 0, 0, -36, 18, + 0, -14, -116, -32, 0, -32, 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 = 7, + .right_class_cnt = 9, +}; + +/*-------------------- + * ALL CUSTOM DATA + *--------------------*/ + +#if LV_VERSION_CHECK(8, 0, 0) +/*Store all the custom data of the font*/ +static lv_font_fmt_txt_glyph_cache_t cache; +static const lv_font_fmt_txt_dsc_t font_dsc = { +#else +static lv_font_fmt_txt_dsc_t font_dsc = { +#endif + .glyph_bitmap = glyph_bitmap, + .glyph_dsc = glyph_dsc, + .cmaps = cmaps, + .kern_dsc = &kern_classes, + .kern_scale = 20, + .cmap_num = 1, + .bpp = 8, + .kern_classes = 1, + .bitmap_format = 0, +#if LV_VERSION_CHECK(8, 0, 0) + .cache = &cache +#endif +}; + + +/*----------------- + * PUBLIC FONT + *----------------*/ + +/*Initialize a public general font descriptor*/ +#if LV_VERSION_CHECK(8, 0, 0) +const lv_font_t ui_font_font4 = { +#else +lv_font_t ui_font_font4 = { +#endif + .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 = 102, /*The maximum line height required by the font*/ + .base_line = 1, /*Baseline measured from the bottom of the line*/ +#if !(LVGL_VERSION_MAJOR == 6 && LVGL_VERSION_MINOR == 0) + .subpx = LV_FONT_SUBPX_NONE, +#endif +#if LV_VERSION_CHECK(7, 4, 0) || LVGL_VERSION_MAJOR >= 8 + .underline_position = -11, + .underline_thickness = 7, +#endif + .dsc = &font_dsc /*The custom font data. Will be accessed by `get_glyph_bitmap/dsc` */ +}; + + + +#endif /*#if UI_FONT_FONT4*/ + diff --git a/examples/indicator_matter/main/ui/ui_helpers.c b/examples/indicator_matter/main/ui/ui_helpers.c new file mode 100644 index 0000000..80cfe9c --- /dev/null +++ b/examples/indicator_matter/main/ui/ui_helpers.c @@ -0,0 +1,240 @@ +// SquareLine LVGL GENERATED FILE +// EDITOR VERSION: SquareLine Studio 1.1.1 +// LVGL VERSION: 8.3.3 +// PROJECT: sensecap + +#include "ui_helpers.h" + +void _ui_bar_set_property( lv_obj_t *target, int id, int val) +{ + if (id == _UI_BAR_PROPERTY_VALUE_WITH_ANIM) lv_bar_set_value(target, val, LV_ANIM_ON); + if (id == _UI_BAR_PROPERTY_VALUE) lv_bar_set_value(target, val, LV_ANIM_OFF); +} + +void _ui_basic_set_property( lv_obj_t *target, int id, int val) +{ + if (id == _UI_BASIC_PROPERTY_POSITION_X) lv_obj_set_x(target, val); + if (id == _UI_BASIC_PROPERTY_POSITION_Y) lv_obj_set_y(target, val); + if (id == _UI_BASIC_PROPERTY_WIDTH) lv_obj_set_width(target, val); + if (id == _UI_BASIC_PROPERTY_HEIGHT) lv_obj_set_height(target, val); +} + + +void _ui_dropdown_set_property( lv_obj_t *target, int id, int val) +{ + if (id == _UI_DROPDOWN_PROPERTY_SELECTED) lv_dropdown_set_selected(target, val); +} + +void _ui_image_set_property( lv_obj_t *target, int id, uint8_t *val) +{ + if (id == _UI_IMAGE_PROPERTY_IMAGE) lv_img_set_src(target, val); +} + +void _ui_label_set_property( lv_obj_t *target, int id, char *val) +{ + if (id == _UI_LABEL_PROPERTY_TEXT) lv_label_set_text(target, val); +} + + +void _ui_roller_set_property( lv_obj_t *target, int id, int val) +{ + if (id == _UI_ROLLER_PROPERTY_SELECTED_WITH_ANIM) lv_roller_set_selected(target, val, LV_ANIM_ON); + if (id == _UI_ROLLER_PROPERTY_SELECTED) lv_roller_set_selected(target, val, LV_ANIM_OFF); +} + +void _ui_slider_set_property( lv_obj_t *target, int id, int val) +{ + if (id == _UI_SLIDER_PROPERTY_VALUE_WITH_ANIM) lv_slider_set_value(target, val, LV_ANIM_ON); + if (id == _UI_SLIDER_PROPERTY_VALUE) lv_slider_set_value(target, val, LV_ANIM_OFF); +} + +void scr_unloaded_delete_cb(lv_event_t * e) +{ + lv_obj_t ** var = lv_event_get_user_data(e); + lv_obj_del(*var); + (*var) = NULL; +} + +void _ui_anim_callback_set_image_frame(lv_anim_t* a, int32_t v) +{ + ui_anim_user_data_t *usr = (ui_anim_user_data_t *)a->user_data; + usr->val = v; + if ( v<0 ) v=0; + if ( v>=usr->imgset_size ) v=usr->imgset_size-1; + lv_img_set_src(usr->target, usr->imgset[v]); +} + +void _ui_spinbox_step( lv_obj_t *target, int val, int anm) +{ + int old = lv_slider_get_value(target); + lv_slider_set_value(target, old+val, anm); + lv_event_send(target,LV_EVENT_VALUE_CHANGED, 0); +} + + +int32_t _ui_anim_callback_get_image_frame(lv_anim_t* a) +{ + ui_anim_user_data_t *usr = (ui_anim_user_data_t *)a->user_data; + return usr->val; +} + +void _ui_anim_callback_free_user_data(lv_anim_t *a) +{ + lv_mem_free(a->user_data); + a->user_data=NULL; +} + +void _ui_keyboard_set_target( lv_obj_t *keyboard, lv_obj_t *textarea) +{ + lv_keyboard_set_textarea(keyboard, textarea); +} + +void _ui_screen_delete( lv_obj_t ** target ) +{ + if(*target == NULL) + { + lv_obj_del(*target); + target = NULL; + } +} + +void _ui_screen_change( lv_obj_t *target, lv_scr_load_anim_t fademode, int spd, int delay) +{ + lv_scr_load_anim(target, fademode, spd, delay, false); +} + +void _ui_arc_increment( lv_obj_t *target, int val) +{ + int old = lv_arc_get_value(target); + lv_arc_set_value(target, old+val); +} + +void _ui_bar_increment( lv_obj_t *target, int val, int anm) +{ + int old = lv_bar_get_value(target); + lv_bar_set_value(target, old+val, anm); +} + +void _ui_slider_increment( lv_obj_t *target, int val, int anm) +{ + int old = lv_slider_get_value(target); + lv_slider_set_value(target, old+val, anm); +} + +void _ui_flag_modify( lv_obj_t *target, int32_t flag, int value) +{ + if (value==_UI_MODIFY_FLAG_TOGGLE) + { + if ( lv_obj_has_flag(target,flag) ) lv_obj_clear_flag(target,flag); + else lv_obj_add_flag(target,flag); + } + else if (value==_UI_MODIFY_FLAG_ADD) lv_obj_add_flag(target,flag); + else lv_obj_clear_flag(target,flag); +} +void _ui_state_modify( lv_obj_t *target, int32_t state, int value) +{ + if (value==_UI_MODIFY_STATE_TOGGLE) + { + if ( lv_obj_has_state(target,state) ) lv_obj_clear_state(target,state); + else lv_obj_add_state(target,state); + } + else if (value==_UI_MODIFY_STATE_ADD) lv_obj_add_state(target,state); + else lv_obj_clear_state(target,state); +} + +void _ui_opacity_set( lv_obj_t *target, int val) +{ + lv_obj_set_style_opa(target, val, 0); +} + +void _ui_anim_callback_set_x(lv_anim_t* a, int32_t v) +{ + lv_obj_set_x((lv_obj_t *)a->user_data, v); +} + +void _ui_anim_callback_set_y(lv_anim_t* a, int32_t v) +{ + lv_obj_set_y((lv_obj_t *)a->user_data, v); +} + +void _ui_anim_callback_set_width(lv_anim_t* a, int32_t v) +{ + lv_obj_set_width((lv_obj_t *)a->user_data, v); +} + +void _ui_anim_callback_set_height(lv_anim_t* a, int32_t v) +{ + lv_obj_set_height((lv_obj_t *)a->user_data, v); +} + +void _ui_anim_callback_set_opacity(lv_anim_t* a, int32_t v) +{ + lv_obj_set_style_opa((lv_obj_t *)a->user_data, v, 0); +} + +void _ui_anim_callback_set_image_zoom(lv_anim_t* a, int32_t v) +{ + lv_img_set_zoom((lv_obj_t *)a->user_data, v); +} + +void _ui_anim_callback_set_image_angle(lv_anim_t* a, int32_t v) +{ + lv_img_set_angle((lv_obj_t *)a->user_data, v); +} + + +int32_t _ui_anim_callback_get_x(lv_anim_t* a) +{ + return lv_obj_get_x_aligned((lv_obj_t *)a->user_data); +} + +int32_t _ui_anim_callback_get_y(lv_anim_t* a) +{ + return lv_obj_get_y_aligned((lv_obj_t *)a->user_data); +} + +int32_t _ui_anim_callback_get_width(lv_anim_t* a) +{ + return lv_obj_get_width((lv_obj_t *)a->user_data); +} + +int32_t _ui_anim_callback_get_height(lv_anim_t* a) +{ + return lv_obj_get_height((lv_obj_t *)a->user_data); +} + +int32_t _ui_anim_callback_get_opacity(lv_anim_t* a) +{ + return lv_obj_get_style_opa((lv_obj_t *)a->user_data, 0); +} + +int32_t _ui_anim_callback_get_image_zoom(lv_anim_t* a) +{ + return lv_img_get_zoom((lv_obj_t *)a->user_data); +} + +int32_t _ui_anim_callback_get_image_angle(lv_anim_t* a) +{ + return lv_img_get_angle((lv_obj_t *)a->user_data); +} + +void _ui_arc_set_text_value( lv_obj_t *trg, lv_obj_t *src, char *prefix, char *postfix) +{ + char buf[_UI_TEMPORARY_STRING_BUFFER_SIZE]; + lv_snprintf(buf, sizeof(buf), "%s%d%s", prefix, (int)lv_arc_get_value(src), postfix); + lv_label_set_text(trg, buf); +} + +void _ui_slider_set_text_value( lv_obj_t *trg, lv_obj_t *src, char *prefix, char *postfix) +{ + char buf[_UI_TEMPORARY_STRING_BUFFER_SIZE]; + lv_snprintf(buf, sizeof(buf), "%s%d%s", prefix, (int)lv_slider_get_value(src), postfix); + lv_label_set_text(trg, buf); +} +void _ui_checked_set_text_value( lv_obj_t *trg, lv_obj_t *src, char *txt_on, char *txt_off) +{ + if (lv_obj_has_state(src,LV_STATE_CHECKED)) lv_label_set_text(trg,txt_on); + else lv_label_set_text(trg,txt_off); +} + + diff --git a/examples/indicator_matter/main/ui/ui_helpers.h b/examples/indicator_matter/main/ui/ui_helpers.h new file mode 100644 index 0000000..4436db2 --- /dev/null +++ b/examples/indicator_matter/main/ui/ui_helpers.h @@ -0,0 +1,109 @@ +// SquareLine LVGL GENERATED FILE +// EDITOR VERSION: SquareLine Studio 1.1.1 +// LVGL VERSION: 8.3.3 +// PROJECT: sensecap + +#ifndef _SENSECAP_UI_HELPERS_H +#define _SENSECAP_UI_HELPERS_H + +#include "ui.h" + +#define _UI_TEMPORARY_STRING_BUFFER_SIZE 32 +#define _UI_BAR_PROPERTY_VALUE 0 +#define _UI_BAR_PROPERTY_VALUE_WITH_ANIM 1 +void _ui_bar_set_property( lv_obj_t *target, int id, int val); + +#define _UI_BASIC_PROPERTY_POSITION_X 0 +#define _UI_BASIC_PROPERTY_POSITION_Y 1 +#define _UI_BASIC_PROPERTY_WIDTH 2 +#define _UI_BASIC_PROPERTY_HEIGHT 3 +void _ui_basic_set_property( lv_obj_t *target, int id, int val); + +#define _UI_DROPDOWN_PROPERTY_SELECTED 0 +void _ui_dropdown_set_property( lv_obj_t *target, int id, int val); + +#define _UI_IMAGE_PROPERTY_IMAGE 0 +void _ui_image_set_property( lv_obj_t *target, int id, uint8_t *val); + +#define _UI_LABEL_PROPERTY_TEXT 0 +void _ui_label_set_property( lv_obj_t *target, int id, char *val); + +#define _UI_ROLLER_PROPERTY_SELECTED 0 +#define _UI_ROLLER_PROPERTY_SELECTED_WITH_ANIM 1 +void _ui_roller_set_property( lv_obj_t *target, int id, int val); + +#define _UI_SLIDER_PROPERTY_VALUE 0 +#define _UI_SLIDER_PROPERTY_VALUE_WITH_ANIM 1 +void _ui_slider_set_property( lv_obj_t *target, int id, int val); + +void _ui_screen_change( lv_obj_t *target, lv_scr_load_anim_t fademode, int spd, int delay); + +void _ui_arc_increment( lv_obj_t *target, int val); + +void _ui_bar_increment( lv_obj_t *target, int val, int anm); + +void _ui_slider_increment( lv_obj_t *target, int val, int anm); + +#define _UI_MODIFY_FLAG_ADD 0 +#define _UI_MODIFY_FLAG_REMOVE 1 +#define _UI_MODIFY_FLAG_TOGGLE 2 +void _ui_flag_modify( lv_obj_t *target, int32_t flag, int value); + +#define _UI_MODIFY_STATE_ADD 0 +#define _UI_MODIFY_STATE_REMOVE 1 +#define _UI_MODIFY_STATE_TOGGLE 2 +void _ui_state_modify( lv_obj_t *target, int32_t state, int value); + +void _ui_opacity_set( lv_obj_t *target, int val); + +void _ui_anim_callback_set_x(lv_anim_t* a, int32_t v); + +void _ui_anim_callback_set_y(lv_anim_t* a, int32_t v); + +void _ui_anim_callback_set_width(lv_anim_t* a, int32_t v); + +void _ui_anim_callback_set_height(lv_anim_t* a, int32_t v); + +void _ui_anim_callback_set_opacity(lv_anim_t* a, int32_t v); + +void _ui_anim_callback_set_image_zoom(lv_anim_t* a, int32_t v); + +void _ui_anim_callback_set_image_angle(lv_anim_t* a, int32_t v); + +int32_t _ui_anim_callback_get_x(lv_anim_t* a); + +int32_t _ui_anim_callback_get_y(lv_anim_t* a); + +int32_t _ui_anim_callback_get_width(lv_anim_t* a); + +int32_t _ui_anim_callback_get_height(lv_anim_t* a); + +int32_t _ui_anim_callback_get_opacity(lv_anim_t* a); + +int32_t _ui_anim_callback_get_image_zoom(lv_anim_t* a); + +int32_t _ui_anim_callback_get_image_angle(lv_anim_t* a); + +void _ui_arc_set_text_value( lv_obj_t *trg, lv_obj_t *src, char *prefix, char *postfix); + +void _ui_slider_set_text_value( lv_obj_t *trg, lv_obj_t *src, char *prefix, char *postfix); + +void _ui_checked_set_text_value( lv_obj_t *trg, lv_obj_t *src, char *txt_on, char *txt_off); + +void _ui_screen_delete( lv_obj_t ** target ); +void _ui_keyboard_set_target( lv_obj_t *keyboard, lv_obj_t *textarea); +void scr_unloaded_delete_cb(lv_event_t * e); +/** Describes an animation*/ +typedef struct _ui_anim_user_data_t { + lv_obj_t *target; + lv_img_dsc_t **imgset; + int32_t imgset_size; + int32_t val; +} ui_anim_user_data_t; +void _ui_anim_callback_free_user_data(lv_anim_t *a); +void _ui_anim_callback_set_image_frame(lv_anim_t* a, int32_t v); +int32_t _ui_anim_callback_get_image_frame(lv_anim_t* a); +void _ui_spinbox_step( lv_obj_t *target, int val, int anm); + +#endif + diff --git a/examples/indicator_matter/main/ui/ui_img_back_png.c b/examples/indicator_matter/main/ui/ui_img_back_png.c new file mode 100644 index 0000000..61d8a42 --- /dev/null +++ b/examples/indicator_matter/main/ui/ui_img_back_png.c @@ -0,0 +1,28 @@ +// SquareLine LVGL GENERATED FILE +// EDITOR VERSION: SquareLine Studio 1.1.1 +// LVGL VERSION: 8.3.3 +// PROJECT: sensecap + +#include "ui.h" + +#ifndef LV_ATTRIBUTE_MEM_ALIGN +#define LV_ATTRIBUTE_MEM_ALIGN +#endif + +// IMAGE DATA: assets/back.png +const LV_ATTRIBUTE_MEM_ALIGN uint8_t ui_img_back_png_data[] = { +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x49,0x4A,0x20,0x49,0x4A,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,0x28,0x42,0x7F,0x28,0x42,0xFF,0x28,0x42,0xFF,0x28,0x42,0xDF,0x08,0x42,0x10,0x00,0x00,0x00,0x00,0x00,0x00,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,0x42,0x8F,0x28,0x42,0xFF,0x28,0x42,0xFF,0x28,0x42,0xFF,0x28,0x42,0xFF,0x28,0x42,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,0x08,0x42,0x10,0x28,0x42,0xBF,0x28,0x42,0xFF,0x28,0x42,0xFF,0x28,0x42,0xFF,0x28,0x42,0xFF,0x28,0x42,0xFF,0x28,0x42,0x80, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x49,0x4A,0x20,0x28,0x42,0xCF,0x28,0x42,0xFF,0x28,0x42,0xFF,0x28,0x42,0xFF,0x28,0x42,0xFF,0x28,0x42,0xFF,0x28,0x42,0xDF,0x49,0x4A,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x49,0x4A,0x20,0x28,0x42,0xDF,0x28,0x42,0xFF,0x28,0x42,0xFF,0x28,0x42,0xFF,0x28,0x42,0xFF,0x28,0x42,0xFF,0x28,0x42,0xCF,0x49,0x4A,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x49,0x4A,0x40,0x28,0x42,0xEF,0x28,0x42,0xFF,0x28,0x42,0xFF,0x28,0x42,0xFF,0x28,0x42,0xFF,0x28,0x42,0xFF,0x28,0x42,0xAF,0x08,0x42,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x28,0x42,0x6F,0x28,0x42,0xFF,0x28,0x42,0xFF,0x28,0x42,0xFF,0x28,0x42,0xFF,0x28,0x42,0xFF,0x28,0x42,0xFF,0x28,0x42,0x90,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x28,0x42,0x7F,0x28,0x42,0xFF,0x28,0x42,0xFF,0x28,0x42,0xFF,0x28,0x42,0xFF,0x28,0x42,0xFF,0x28,0x42,0xFF,0x28,0x42,0x80,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x28,0x42,0x8F,0x28,0x42,0xFF,0x28,0x42,0xFF,0x28,0x42,0xFF,0x28,0x42,0xFF,0x28,0x42,0xFF,0x28,0x42,0xEF,0x28,0x42,0x60,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x28,0x42,0xAF,0x28,0x42,0xFF,0x28,0x42,0xFF,0x28,0x42,0xFF,0x28,0x42,0xFF,0x28,0x42,0xFF,0x28,0x42,0xEF,0x28,0x42,0x30,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x49,0x4A,0x40,0x28,0x42,0xFF,0x28,0x42,0xFF,0x28,0x42,0xFF,0x28,0x42,0xFF,0x28,0x42,0xFF,0x28,0x42,0xDF,0x49,0x4A,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, +0x28,0x42,0x30,0x28,0x42,0xFF,0x28,0x42,0xFF,0x28,0x42,0xFF,0x28,0x42,0xFF,0x28,0x42,0xFF,0x28,0x42,0x9F,0x00,0x00,0x00,0x00,0x00,0x00,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,0x42,0x9F,0x28,0x42,0xFF,0x28,0x42,0xFF,0x28,0x42,0xFF,0x28,0x42,0xFF,0x28,0x42,0xFF,0x28,0x42,0x9F,0x69,0x4A,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,0x28,0x42,0x9F,0x28,0x42,0xFF,0x28,0x42,0xFF,0x28,0x42,0xFF,0x28,0x42,0xFF,0x28,0x42,0xFF,0x28,0x42,0x9F,0x69,0x4A,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,0x28,0x42,0x9F,0x28,0x42,0xFF,0x28,0x42,0xFF,0x28,0x42,0xFF,0x28,0x42,0xFF,0x28,0x42,0xFF,0x28,0x42,0x9F,0x69,0x4A,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,0x28,0x42,0xBE,0x28,0x42,0xFF,0x28,0x42,0xFF,0x28,0x42,0xFF,0x28,0x42,0xFF,0x28,0x42,0xFF,0x28,0x42,0x9F,0x69,0x4A,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,0x08,0x42,0x10,0x28,0x42,0xCE,0x28,0x42,0xFF,0x28,0x42,0xFF,0x28,0x42,0xFF,0x28,0x42,0xFF,0x28,0x42,0xFF,0x28,0x42,0x9F,0x69,0x4A,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,0x08,0x42,0x10,0x28,0x42,0xCE,0x28,0x42,0xFF,0x28,0x42,0xFF,0x28,0x42,0xFF,0x28,0x42,0xFF,0x28,0x42,0xFF,0x28,0x42,0x9F,0x8A,0x52,0x00,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,0x42,0x10,0x28,0x42,0xCE,0x28,0x42,0xFF,0x28,0x42,0xFF,0x28,0x42,0xFF,0x28,0x42,0xFF,0x28,0x42,0xFF,0x28,0x42,0x80,0x8A,0x52,0x00,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,0x42,0x10,0x28,0x42,0xCE,0x28,0x42,0xFF,0x28,0x42,0xFF,0x28,0x42,0xFF,0x28,0x42,0xFF,0x28,0x42,0xFF,0x28,0x42,0x80,0xAA,0x52,0x00,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,0x42,0x10,0x28,0x42,0xCE,0x28,0x42,0xFF,0x28,0x42,0xFF,0x28,0x42,0xFF,0x28,0x42,0xFF,0x28,0x42,0xFF,0x28,0x42,0x5F,0x00,0x00,0x00,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,0x42,0x10,0x28,0x42,0xCE,0x28,0x42,0xFF,0x28,0x42,0xFF,0x28,0x42,0xFF,0x28,0x42,0xFF,0x28,0x42,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,0x08,0x42,0x10,0x28,0x42,0xCE,0x28,0x42,0xFF,0x28,0x42,0xFF,0x28,0x42,0xFE,0x28,0x42,0x5F, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,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,0x42,0x10,0x28,0x42,0x8F,0x28,0x42,0xAE,0x28,0x42,0x5F,0x00,0x00,0x00,}; +const lv_img_dsc_t ui_img_back_png = { + .header.always_zero = 0, + .header.w = 16, + .header.h = 25, + .data_size = sizeof(ui_img_back_png_data), + .header.cf = LV_IMG_CF_TRUE_COLOR_ALPHA, + .data = ui_img_back_png_data}; + diff --git a/examples/indicator_matter/main/ui/ui_img_background_png.c b/examples/indicator_matter/main/ui/ui_img_background_png.c new file mode 100644 index 0000000..f6889cd --- /dev/null +++ b/examples/indicator_matter/main/ui/ui_img_background_png.c @@ -0,0 +1,3622 @@ +// SquareLine LVGL GENERATED FILE +// EDITOR VERSION: SquareLine Studio 1.2.1 +// LVGL VERSION: 8.3.4 +// PROJECT: SquareLine_Project + +#include "ui.h" + +#ifndef LV_ATTRIBUTE_MEM_ALIGN +#define LV_ATTRIBUTE_MEM_ALIGN +#endif + +// IMAGE DATA: assets/background.png +const LV_ATTRIBUTE_MEM_ALIGN uint8_t ui_img_background_png_data[] = { +0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F, +0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x2F,0xA7,0x4F,0xA7,0x4F,0xA7,0x4F,0xA7,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x2F,0x9F,0x4F,0xA7,0x2F,0xA7,0x2F,0xA7, +0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x2F,0xA7,0x4F,0xA7,0x4F,0xA7,0x2F,0x9F,0x2F,0xA7,0x50,0xA7,0x4F,0xA7,0x6F,0xA7,0x4E,0x9F,0x4E,0x9F,0x4E,0x9F,0x4F,0x9F,0x30,0x9F,0x30,0x9F,0x4F,0x9F,0x4E,0x9F, +0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4C,0x9F,0xCB,0xAF,0x88,0xAF,0x68,0xB7,0x0A,0xAF,0x72,0xCF,0xFC,0xF7,0xDF,0xEF,0xFD,0xF7,0xB3,0xD7,0x2A,0xB7,0x68,0xB7,0x89,0xAF,0x8A,0xA7,0x8A,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F, +0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0xA7,0x4F,0xA7,0x4F,0xA7,0x4F,0xA7,0x4F,0xA7,0x4F,0xA7,0x4F,0xA7,0x4F,0xA7,0x4F,0xA7,0x2F,0x9F,0x2F,0x9F,0x2F,0x9F,0x2F,0x9F,0x2F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F, +0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4E,0xA7,0x4E,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4E,0x9F,0x4E,0x9F,0x4E,0x9F,0x4E,0x9F,0x4E,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4E,0x9F,0x4E,0x9F,0x4E,0x9F,0x4E,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4E,0xA7,0x4E,0xA7,0x4E,0xA7,0x4E,0xA7,0x4E,0x9F,0x4E,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F, +0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x2F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0xA7,0x4F,0xA7,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4E,0xA7,0x4E,0xA7,0x4E,0x9F,0x4E,0x9F,0x4E,0x9F,0x4E,0x9F,0x4E,0x9F,0x4E,0x9F,0x4F,0x9F,0x2F,0x9F,0x2D,0x9F,0x8A,0xA7,0xC8,0xAF,0x87,0xA7,0x6B,0xA7,0xB0,0xBF, +0xB1,0xCF,0xD4,0xD7,0xB6,0xCF,0xF7,0xD7,0xB2,0xCF,0x6B,0xB7,0xA7,0xB7,0x86,0xAF,0xA8,0xAF,0x6B,0xA7,0x2E,0xA7,0x30,0x9F,0x30,0x9F,0x30,0x9F,0x2F,0x9F,0x2F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F, +0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F, +0x2F,0x9F,0x2F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x2F,0x9F,0x2F,0x9F,0x2F,0x9F,0x2F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x2F,0x9F,0x2F,0x9F,0x2F,0x9F,0x4F,0xA7,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F, +0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x2F,0x9F,0x4F,0xA7,0x2E,0x9F,0x4F,0x9F,0x50,0xA7,0x0F,0x9F,0x0E,0x9F,0x2F,0x9F,0x4E,0x9F,0x4E,0x9F,0x4E,0x9F,0x4F,0x9F,0x2F,0x9F,0x30,0x9F,0x4F,0x9F,0x4E,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x6E,0x9F,0x6D,0x9F,0x8A,0xA7,0xA7,0xAF,0x85,0xAF,0x4A,0xB7,0xF6,0xE7,0x77,0xD7,0xD9,0xEF,0x96,0xDF,0xF7,0xEF,0x4E,0xBF,0x69,0xAF,0xA7,0xAF,0xC8,0xA7,0x8A,0x9F, +0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0xA7,0x2F,0x9F,0x2F,0x9F,0x2F,0x9F,0x2F,0x9F,0x2F,0x9F,0x2F,0x9F,0x2F,0x9F,0x2F,0x9F,0x2F,0x9F,0x2F,0x9F,0x2F,0x9F,0x2F,0x9F,0x2F,0x9F,0x2F,0x9F,0x2F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F, +0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x2E,0xA7,0x2F,0xA7,0x4F,0xA7,0x4F,0xA7,0x2F,0x9F,0x4F,0x9F,0x2F,0x9F,0x2F,0x9F,0x2F,0x9F,0x2E,0x9F,0x2E,0xA7,0x2E,0xA7,0x2E,0xA7,0x2F,0xA7,0x4F,0xA7,0x4F,0xA7, +0x2F,0x9F,0x2F,0x9F,0x2F,0x9F,0x2F,0x9F,0x2F,0x9F,0x2F,0x9F,0x2F,0x9F,0x2F,0x9F,0x2F,0x9F,0x2F,0x9F,0x2F,0x9F,0x2F,0x9F,0x2F,0x9F,0x4F,0xA7,0x4F,0xA7,0x4F,0xA7,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4E,0x9F,0x4E,0x9F,0x4E,0x9F,0x4E,0x9F,0x4E,0x9F,0x4E,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x2F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x2F,0x9F,0x2F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F, +0x2F,0x9F,0x2F,0x9F,0x2F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4E,0x9F,0x4E,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x2E,0x9F,0x4E,0x9F,0x4E,0x9F,0x4E,0x9F,0x4F,0x9F,0x4E,0x9F,0x4E,0x9F,0x4E,0x9F,0x2F,0x9F,0x50,0xA7,0x6E,0xA7,0x8A,0xA7,0x87,0xA7,0x67,0xA7,0xCB,0xB7,0xF1,0xCF,0xB0,0xCF,0xD3,0xD7,0xB5,0xCF,0xF6,0xD7,0x91,0xBF,0xEF,0xD7,0xA8,0xB7,0x86,0xAF,0x89,0xA7,0x6B,0xA7,0x2E,0xA7,0x30,0x9F,0x30,0x9F,0x2F,0x9F,0x2F,0x9F,0x2F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F, +0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F, +0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x2E,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x2F,0x9F,0x2F,0x9F,0x2F,0x9F,0x4F,0xA7,0x2F,0x9F,0x2F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F, +0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0xA7,0x4F,0x9F,0x0E,0x9F,0x2E,0x9F,0x2F,0x9F,0x30,0x9F,0x70,0xA7,0x2E,0x9F,0x4E,0x9F,0x4E,0x9F,0x4E,0x9F,0x4F,0x9F,0x2F,0x9F,0x2F,0x9F,0x4F,0x9F,0x4E,0x9F, +0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4D,0x9F,0x4D,0x9F,0x6B,0xA7,0xA5,0xA7,0x84,0xAF,0x6B,0xBF,0xF8,0xE7,0xF9,0xE7,0xB5,0xDF,0xF5,0xE7,0xF8,0xEF,0x93,0xC7,0x4A,0xAF,0xA5,0xA7,0xA6,0xA7,0x8A,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F, +0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x2F,0x9F,0x2F,0x9F,0x2F,0x9F,0x2F,0x9F,0x2F,0x9F,0x2F,0x9F,0x2F,0x9F,0x2F,0x9F,0x2F,0x9F,0x2F,0x9F,0x2F,0x9F,0x2F,0x9F,0x2F,0x9F,0x2F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F, +0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x2E,0xA7,0x2F,0xA7,0x2F,0xA7,0x2F,0x9F,0x2F,0x9F,0x2F,0x9F,0x2F,0x9F,0x2F,0x9F,0x2F,0x9F,0x2F,0x9F,0x2F,0xA7,0x2F,0xA7,0x2F,0xA7,0x2F,0x9F,0x2F,0x9F,0x2F,0x9F,0x2F,0x9F,0x2F,0x9F,0x2F,0x9F,0x2F,0x9F,0x2F,0x9F,0x2F,0x9F,0x2F,0x9F,0x2F,0x9F,0x2F,0x9F,0x2F,0x9F,0x2F,0x9F,0x2F,0x9F,0x2F,0x9F,0x2F,0x9F,0x2F,0x9F,0x2F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F, +0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x2F,0x9F,0x2F,0x9F,0x2F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x2F,0x9F,0x2F,0x9F,0x2F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x2F,0x9F,0x2F,0x9F,0x2F,0x9F,0x2F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x2F,0x9F,0x2F,0x9F,0x2F,0x9F,0x2F,0x9F,0x2F,0x9F,0x2F,0x9F,0x30,0x9F,0x4F,0x9F,0x4E,0x9F,0x4E,0x9F,0x4F,0x9F,0x2F,0x9F,0x2E,0x9F,0x6B,0xA7,0xA9,0xAF,0xA7,0xA7,0x68,0xA7,0x8B,0xAF, +0xCF,0xC7,0xF2,0xD7,0xD3,0xCF,0xF4,0xD7,0xD0,0xC7,0x4A,0xA7,0x87,0xA7,0x87,0xA7,0x89,0xA7,0x6C,0xA7,0x4E,0x9F,0x4F,0x9F,0x4E,0x9F,0x4E,0x9F,0x4E,0x9F,0x4E,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F, +0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x2F,0x9F,0x2F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F, +0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x2E,0x9F,0x2F,0x9F,0x4F,0x9F,0x2F,0x9F,0x2F,0x9F,0x2F,0x9F,0x2F,0x9F,0x2F,0x9F,0x2F,0x9F,0x2F,0x9F,0x2F,0x9F,0x2F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F, +0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x2E,0x9F,0x4F,0x9F,0x4F,0x9F,0x0F,0x9F,0x0F,0x97,0x4F,0x9F,0x4E,0x9F,0x4E,0x9F,0x4E,0x9F,0x4F,0x9F,0x2F,0x9F,0x2F,0x9F,0x4F,0x9F,0x4E,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4D,0x9F,0x4E,0x9F,0x6B,0xA7,0xC6,0xAF,0x84,0xAF,0xAD,0xBF,0xFC,0xEF,0x9B,0xDF,0x97,0xD7,0x95,0xCF,0xFA,0xEF,0xD5,0xCF,0x2A,0xA7,0xE5,0xAF,0xC6,0xA7,0x8B,0x9F, +0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x2F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x2F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x2F,0x9F,0x2F,0x9F,0x2F,0x9F,0x2F,0x9F,0x2F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F, +0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x2F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x2F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x50,0x97,0x4F,0x97,0x4F,0x97,0x4F,0x97,0x4F,0x97,0x4F,0x97,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x50,0x9F,0x50,0x9F, +0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x2F,0x9F,0x2F,0x9F,0x2F,0x9F,0x2F,0x9F,0x2F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x50,0x97,0x50,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x2F,0x9F,0x2F,0x9F,0x2F,0x9F,0x2F,0x9F,0x2F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x2F,0x9F,0x2F,0x9F,0x2F,0x9F,0x2F,0x9F,0x2F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x2F,0x9F,0x2F,0x9F,0x2F,0x9F,0x2F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F, +0x2F,0x9F,0x2F,0x9F,0x2F,0x9F,0x2F,0x9F,0x2F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x2F,0x9F,0x2F,0x9F,0x2F,0x9F,0x2F,0x9F,0x4F,0x9F,0x4F,0x9F,0x2F,0x9F,0x2F,0x9F,0x30,0x9F,0x30,0x9F,0x30,0x9F,0x30,0x9F,0x4F,0x9F,0x4E,0x9F,0x4F,0x9F,0x2F,0x9F,0x2E,0x9F,0x4C,0xA7,0xAA,0xAF,0xA8,0xA7,0x87,0xA7,0x88,0xA7,0x6B,0xB7,0x6C,0xB7,0xF1,0xD7,0x2D,0xAF,0x6C,0xAF,0x89,0xAF,0x88,0xAF,0x89,0xA7,0x6B,0xA7,0x4D,0x9F,0x4E,0x9F,0x4E,0x9F,0x4E,0x9F,0x4E,0x9F,0x4E,0x9F,0x2E,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F, +0x2E,0x9F,0x2E,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x2F,0x9F,0x2F,0x9F,0x2F,0x9F,0x2F,0x9F,0x2F,0x9F,0x2F,0x9F,0x2F,0x9F,0x2F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x2E,0x9F,0x2E,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x2F,0x9F,0x2F,0x9F,0x2F,0x9F,0x2F,0x9F,0x2F,0x9F,0x2F,0x9F,0x2F,0x9F,0x2F,0x9F,0x2E,0x9F,0x2E,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x2F,0x9F,0x2F,0x9F,0x2F,0x9F,0x2F,0x9F,0x2F,0x9F,0x2F,0x9F,0x2F,0x9F,0x2F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x2E,0x9F,0x2E,0x9F,0x2F,0x9F,0x2F,0x9F,0x2F,0x9F,0x2F,0x9F,0x2F,0x9F,0x2F,0x9F,0x2F,0x9F,0x2F,0x9F, +0x2F,0x9F,0x2F,0x9F,0x2F,0x9F,0x2F,0x9F,0x2F,0x9F,0x2F,0x9F,0x2E,0x9F,0x2E,0x9F,0x2F,0x9F,0x2F,0x9F,0x2F,0x9F,0x2F,0x9F,0x2F,0x9F,0x2F,0x9F,0x2F,0x9F,0x2F,0x9F,0x2F,0x9F,0x2F,0x9F,0x2F,0x9F,0x2F,0x9F,0x4F,0x9F,0x4F,0x9F,0x2E,0x9F,0x2E,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x2F,0x9F,0x2F,0x9F,0x2F,0x9F,0x2F,0x9F,0x2F,0x9F,0x2F,0x9F,0x2F,0x9F,0x2F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x2F,0x9F,0x2F,0x9F,0x2F,0x9F,0x2F,0x9F,0x2F,0x9F,0x2F,0x9F,0x2F,0x9F,0x2F,0x9F,0x2F,0x9F,0x2F,0x9F,0x2F,0x9F,0x2F,0x9F,0x2F,0x9F,0x2F,0x9F,0x2F,0x9F,0x4F,0x9F,0x4F,0x9F,0x2F,0x9F,0x2F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F, +0x2F,0x9F,0x2F,0x9F,0x2F,0x9F,0x2F,0x9F,0x2F,0x9F,0x2F,0x9F,0x2F,0x9F,0x2F,0x9F,0x2E,0x9F,0x2E,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x2F,0x9F,0x2F,0x9F,0x2F,0x9F,0x2F,0x9F,0x2F,0x9F,0x2F,0x9F,0x2F,0x9F,0x2F,0x9F,0x2F,0x9F,0x2F,0x9F,0x2F,0x9F,0x2E,0x9F,0x2E,0x9F,0x2F,0x9F,0x2F,0x9F,0x2F,0x9F,0x2F,0x9F,0x2F,0x9F,0x2F,0x9F,0x2F,0x9F,0x2F,0x9F,0x2F,0x9F,0x2F,0x9F,0x2F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x2E,0x9F,0x2E,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x2E,0x97,0x4E,0x9F,0x4E,0x9F,0x2E,0x9F,0x50,0x9F,0x50,0x9F,0x4F,0x9F,0x4E,0x9F,0x4E,0x9F,0x4E,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4E,0x9F, +0x2F,0x9F,0x2F,0x9F,0x2F,0x9F,0x2F,0x9F,0x2F,0x9F,0x2F,0x9F,0x2F,0x9F,0x2F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x2E,0x9F,0x2E,0x9F,0x4F,0x9F,0x4E,0x9F,0x6A,0xA7,0xA7,0xAF,0x86,0xA7,0x8D,0xB7,0xFA,0xE7,0xFD,0xDF,0xFD,0xE7,0xF9,0xDF,0xF8,0xE7,0x90,0xBF,0x69,0xAF,0x86,0xA7,0xA9,0xA7,0x4B,0x9F,0x2E,0x9F,0x2E,0x9F,0x4F,0x9F,0x4F,0x9F,0x2F,0x9F,0x2F,0x9F,0x2F,0x9F,0x2F,0x9F,0x2F,0x9F,0x2F,0x9F,0x2F,0x9F,0x2F,0x9F,0x2F,0x9F,0x2F,0x9F,0x2F,0x9F,0x2F,0x9F,0x2E,0x9F,0x2E,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x2F,0x9F,0x2F,0x9F,0x2F,0x9F,0x2F,0x9F,0x2F,0x9F,0x2F,0x9F,0x2F,0x9F,0x2F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F, +0x2E,0x9F,0x2E,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x2F,0x9F,0x2F,0x9F,0x2F,0x9F,0x2F,0x9F,0x2F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x2F,0x9F,0x2F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x2F,0x9F,0x2F,0x9F,0x2F,0x9F,0x2F,0x9F,0x2F,0x9F,0x2F,0x9F,0x2F,0x9F,0x2F,0x9F,0x2F,0x9F,0x2F,0x9F,0x2E,0x9F,0x2E,0x9F,0x2F,0x9F,0x2F,0x9F,0x2F,0x9F,0x2F,0x9F,0x2F,0x9F,0x2F,0x9F,0x2F,0x9F,0x2F,0x9F,0x2F,0x9F,0x2F,0x9F,0x2F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x2E,0x9F,0x2E,0x9F,0x2F,0x9F,0x2F,0x9F,0x2F,0x9F,0x2F,0x9F,0x2F,0x9F,0x2F,0x9F,0x2F,0x9F,0x2F,0x9F, +0x2F,0x9F,0x2F,0x9F,0x2F,0x9F,0x2F,0x9F,0x4F,0x9F,0x4F,0x9F,0x2E,0x9F,0x2E,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x2F,0x9F,0x2F,0x9F,0x2F,0x9F,0x2F,0x9F,0x4F,0x97,0x4F,0x97,0x4F,0x97,0x50,0x97,0x50,0x97,0x70,0x8F,0x50,0x8F,0x50,0x8F,0x50,0x8F,0x50,0x97,0x4F,0x97,0x4F,0x97,0x4F,0x97,0x50,0x97,0x50,0x97,0x50,0x97,0x50,0x97,0x50,0x97,0x50,0x97,0x50,0x97,0x50,0x97,0x50,0x97,0x50,0x97,0x50,0x97,0x50,0x97,0x50,0x97,0x50,0x97,0x50,0x97,0x50,0x97,0x50,0x97,0x50,0x97,0x50,0x97,0x50,0x97,0x50,0x97,0x50,0x97,0x4F,0x9F,0x2F,0x9F,0x2F,0x9F,0x2F,0x9F,0x2F,0x9F,0x2F,0x9F,0x2F,0x9F,0x2F,0x9F,0x2F,0x9F,0x2F,0x9F,0x2F,0x9F,0x2F,0x9F,0x2F,0x9F, +0x2F,0x9F,0x2F,0x9F,0x2F,0x9F,0x2F,0x9F,0x2F,0x9F,0x2F,0x9F,0x2F,0x9F,0x2F,0x9F,0x2E,0x9F,0x2E,0x9F,0x2F,0x9F,0x2F,0x9F,0x2F,0x9F,0x2F,0x9F,0x2F,0x9F,0x2F,0x9F,0x2F,0x9F,0x2F,0x9F,0x2F,0x9F,0x2F,0x9F,0x2F,0x9F,0x2F,0x9F,0x2F,0x9F,0x2F,0x9F,0x2F,0x9F,0x2F,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x4F,0x9F,0x4F,0x9F,0x2F,0x9F,0x2F,0x9F,0x2F,0x9F,0x2F,0x9F,0x2F,0x9F,0x2F,0x9F,0x2F,0x9F,0x2F,0x9F,0x2F,0x9F,0x2F,0x9F,0x2F,0x9F,0x4F,0x9F,0x4F,0x9F,0x4F,0x9F,0x2F,0x9F,0x2F,0x9F,0x2F,0x9F,0x2F,0x9F,0x2F,0x9F,0x30,0x9F,0x30,0x9F,0x30,0x9F,0x2F,0x9F,0x4E,0x9F,0x4E,0x9F,0x2F,0x9F,0x2F,0x9F,0x4D,0x9F,0x6B,0xA7,0x89,0xA7,0xA7,0xA7,0xC7,0xAF, +0x88,0xAF,0x89,0xAF,0xAB,0xB7,0x6A,0xAF,0x8A,0xAF,0x68,0xA7,0x89,0xA7,0x8A,0xA7,0x4C,0x9F,0x4E,0x9F,0x4E,0x9F,0x4E,0x9F,0x4E,0x9F,0x4E,0x9F,0x2F,0x9F,0x2F,0x9F,0x2F,0x9F,0x2F,0x9F,0x2F,0x9F,0x2F,0x9F,0x2F,0x9F,0x2F,0x9F,0x2F,0x9F,0x2F,0x9F,0x2F,0x9F,0x2F,0x9F,0x2F,0x9F,0x2F,0x9F,0x2F,0x9F,0x2F,0x9F,0x2F,0x9F,0x2F,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x4F,0x9F,0x2F,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F, +0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x4F,0x9F,0x4F,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2F,0x9F,0x2F,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F, +0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2F,0x9F,0x2F,0x9F,0x2F,0x9F,0x2F,0x9F,0x2F,0x9F,0x2F,0x9F,0x2F,0x9F,0x2F,0x9F,0x2F,0x9F,0x2F,0x9F,0x2F,0x9F,0x2F,0x9F,0x2F,0x9F,0x2F,0x9F,0x2F,0x9F,0x2F,0x9F,0x2F,0x9F,0x2F,0x9F,0x2F,0x9F,0x2F,0x9F,0x2F,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x4F,0x9F,0x4F,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2F,0x9F,0x2F,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F, +0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2F,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x4F,0x9F,0x2F,0x9F,0x0E,0x97,0x4E,0x9F,0x4E,0x9F,0x2E,0x9F,0x2F,0x9F,0x0F,0x9F,0xEE,0x96,0x2E,0x9F,0x4E,0x9F,0x2E,0x9F,0x2F,0x9F,0x2F,0x9F,0x4F,0x9F,0x4E,0x9F,0x4E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x30,0x9F,0x2D,0x9F,0x8B,0xA7,0x87,0xA7,0x87,0xA7,0x69,0xAF,0x4F,0xB7,0xF8,0xDF,0xF9,0xDF,0xF7,0xDF,0xCF,0xC7,0x68,0xAF,0x87,0xAF,0x48,0x9F,0x6C,0xA7,0x4D,0x9F, +0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2F,0x9F,0x2F,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2F,0x9F,0x2F,0x9F,0x2F,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x4F,0x9F,0x4F,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F, +0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2F,0x9F,0x2F,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x4F,0x9F,0x4F,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x4F,0x97,0x4F,0x97,0x50,0x97,0x50,0x97,0x50,0x97,0x50,0x8F,0x50,0x8F,0x50,0x8F,0x50,0x8F,0x50,0x97,0x50,0x97,0x50,0x97,0x50,0x97,0x50,0x97,0x50,0x97,0x50,0x97, +0x50,0x8F,0x50,0x8F,0x50,0x8F,0x50,0x8F,0x50,0x8F,0x50,0x8F,0x50,0x8F,0x50,0x8F,0x50,0x8F,0x50,0x8F,0x50,0x8F,0x50,0x8F,0x50,0x8F,0x50,0x8F,0x50,0x8F,0x50,0x8F,0x50,0x97,0x50,0x97,0x30,0x97,0x2F,0x97,0x2F,0x9F,0x2F,0x9F,0x2F,0x9F,0x2F,0x9F,0x2F,0x9F,0x2F,0x9F,0x2F,0x9F,0x2F,0x9F,0x2F,0x9F,0x2F,0x9F,0x2F,0x9F,0x2F,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F, +0x2F,0x9F,0x2F,0x9F,0x2F,0x9F,0x2F,0x9F,0x2F,0x9F,0x2F,0x9F,0x2E,0x9F,0x2E,0x9F,0x4F,0x9F,0x2F,0x9F,0x2F,0x9F,0x2F,0x9F,0x2F,0x9F,0x2F,0x9F,0x2F,0x9F,0x2F,0x9F,0x2E,0x9F,0x2E,0x9F,0x2F,0x9F,0x30,0x9F,0x30,0x9F,0x30,0x9F,0x2F,0x9F,0x2E,0x9F,0x2E,0x9F,0x2F,0x9F,0x0F,0x9F,0x2E,0x9F,0x4D,0xA7,0x8A,0xA7,0x88,0xA7,0x86,0xA7,0x65,0xA7,0x87,0xA7,0xA8,0xA7,0x88,0xA7,0x88,0xA7,0xA9,0xA7,0x89,0xA7,0x8B,0xA7,0x4D,0x9F,0x2F,0x9F,0x2F,0x9F,0x4E,0x9F,0x4E,0x9F,0x4E,0x9F,0x2F,0x9F,0x30,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F, +0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F, +0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2F,0x9F,0x2F,0x9F,0x2F,0x9F,0x2F,0x9F,0x2F,0x9F,0x2F,0x9F,0x2F,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2F,0x9F,0x2F,0x9F,0x2F,0x9F,0x2F,0x9F,0x2F,0x9F,0x2F,0x9F,0x2F,0x9F,0x2F,0x9F,0x2F,0x9F,0x2F,0x9F,0x2F,0x9F,0x2F,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F, +0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2F,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x4F,0x9F,0x70,0xA7,0x0D,0x97,0x2D,0x9F,0x6F,0xA7,0x0E,0x97,0x30,0x9F,0xB2,0xAF,0x2F,0x9F,0x2E,0x9F,0x2E,0x9F,0x2F,0x9F,0x2F,0x9F,0x2E,0x9F,0x4E,0x9F,0x4F,0x9F, +0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x0F,0x9F,0x4E,0x9F,0x4C,0x9F,0xAA,0xA7,0x87,0xA7,0x86,0xA7,0x88,0xAF,0x0A,0xA7,0x2C,0xAF,0x2A,0xA7,0x67,0xAF,0xA6,0xAF,0x47,0xA7,0xAC,0xAF,0x4D,0x9F,0x2F,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F, +0x2F,0x9F,0x2F,0x9F,0x2F,0x9F,0x2F,0x9F,0x2F,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2F,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F, +0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2F,0x9F,0x2F,0x9F,0x30,0x9F,0x30,0x97,0x30,0x97,0x50,0x97,0x50,0x97,0x50,0x97,0x50,0x97,0x50,0x97,0x30,0x97,0x30,0x97,0x30,0x97,0x30,0x97,0x30,0x97,0x30,0x97,0x50,0x8F,0x50,0x8F,0x50,0x8F,0x50,0x8F,0x50,0x8F,0x50,0x8F,0x50,0x8F,0x50,0x8F,0x50,0x8F,0x50,0x8F,0x50,0x8F,0x50,0x8F,0x50,0x8F,0x50,0x8F,0x50,0x8F,0x50,0x8F,0x50,0x97,0x50,0x97,0x50,0x97,0x50,0x97,0x2F,0x9F,0x2F,0x9F,0x2F,0x9F,0x2F,0x9F,0x2F,0x9F,0x2F,0x9F,0x2F,0x9F,0x2F,0x9F,0x2F,0x9F,0x2F,0x9F,0x2E,0x9F,0x2E,0x9F, +0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2F,0x9F,0x2F,0x9F,0x2F,0x9F,0x2F,0x9F,0x2F,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2F,0x9F,0x30,0x9F,0x30,0x9F,0x2F,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2F,0x9F,0x2F,0x9F,0x2E,0x9F,0x4C,0x9F,0x8A,0xA7,0xA9,0xA7, +0xA6,0xA7,0x86,0xA7,0xA8,0xA7,0x68,0x9F,0xA9,0xA7,0x89,0xA7,0x6A,0xA7,0x2B,0x9F,0x2E,0x9F,0x2F,0x9F,0x2F,0x9F,0x4F,0x9F,0x4E,0x9F,0x2E,0x9F,0x30,0x9F,0x30,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F, +0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F, +0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2F,0x9F,0x2F,0x9F,0x2F,0x9F,0x2F,0x9F,0x2F,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2F,0x9F,0x2F,0x9F,0x2F,0x9F,0x2F,0x9F,0x2F,0x9F,0x2F,0x9F,0x2F,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F, +0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2F,0x9F,0x2F,0x9F,0x0E,0x9F,0x6E,0xA7,0x0D,0x97,0x2F,0x9F,0x51,0xA7,0x08,0x5D,0x0F,0x9F,0x2E,0x9F,0x2E,0x9F,0x2F,0x9F,0x2F,0x9F,0x4E,0x9F,0x2E,0x9F,0x2F,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x4E,0x9F,0x2E,0x9F,0x0D,0x9F,0x4C,0x9F,0x8A,0xA7,0xA8,0xA7,0x87,0xA7,0xA7,0xAF,0xA7,0xAF,0xA7,0xAF,0x87,0xAF,0x68,0xA7,0x8B,0xA7,0x4C,0x9F,0x2E,0x9F,0x0F,0x9F, +0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2F,0x9F,0x2F,0x9F,0x2F,0x9F,0x2F,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F, +0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2F,0x9F,0x2F,0x97,0x30,0x97,0x50,0x97,0x50,0x97,0x50,0x97,0x50,0x97,0x30,0x97,0x50,0x97,0x50,0x97,0x50,0x97,0x50,0x97,0x50,0x97,0x50,0x97,0x30,0x97,0x30,0x97, +0x50,0x97,0x50,0x97,0x50,0x97,0x50,0x97,0x50,0x97,0x50,0x97,0x50,0x97,0x50,0x97,0x50,0x97,0x50,0x97,0x50,0x97,0x50,0x97,0x50,0x97,0x50,0x97,0x50,0x97,0x30,0x97,0x50,0x8F,0x50,0x8F,0x50,0x97,0x50,0x97,0x2F,0x9F,0x2F,0x9F,0x2F,0x9F,0x2E,0x9F,0x4F,0x9F,0x4F,0x9F,0x2F,0x9F,0x2F,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F, +0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x4D,0x9F,0x4D,0x9F,0x4D,0x9F,0x2E,0x9F,0x2F,0x9F,0x2F,0x9F,0x2F,0x9F,0x2E,0x9F,0x4E,0x9F,0x2E,0x9F,0x2F,0x9F,0x30,0x9F,0x2F,0x9F,0x2E,0x9F,0x4C,0x9F,0x6A,0x9F,0xA8,0xA7,0xA9,0xA7,0x89,0xA7,0xAA,0xA7,0x8A,0xA7,0x4A,0x9F,0x6B,0x9F,0x4D,0x9F,0x2E,0x9F,0x2F,0x9F,0x2F,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2F,0x9F,0x30,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F, +0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F, +0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2F,0x9F,0x2F,0x9F,0x0E,0x9F,0x2F,0x9F,0x2E,0x9F,0x4F,0x9F,0x4E,0x9F,0x2E,0x9F,0x4E,0x9F,0x2E,0x9F,0x2E,0x97,0x4E,0x9F,0x2E,0x9F,0x2E,0x9F,0x4F,0x9F,0x4F,0x9F,0x2E,0x9F,0x2F,0x9F,0x2F,0x9F,0x2F,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F, +0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2F,0x9F,0x2E,0x9F,0x2D,0x9F,0x2E,0x9F,0xEE,0x9E,0x72,0xAF,0xE0,0x01,0x2C,0x86,0x6F,0xAF,0x0E,0x9F,0x2F,0x9F,0x2E,0x9F,0x2E,0x9F,0x4E,0x9F,0x2F,0x9F, +0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2D,0x9F,0x2E,0x9F,0x2F,0x9F,0x2E,0x9F,0x4D,0x9F,0x4D,0x9F,0x4B,0xA7,0x68,0xA7,0x86,0xA7,0x87,0xA7,0x6A,0xA7,0x4D,0xA7,0x2D,0xA7,0x2D,0x9F,0x2E,0x9F,0x2F,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F, +0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x4F,0x9F,0x2E,0x9F,0x4F,0x9F,0x2E,0x9F,0x2E,0x9F,0x4F,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F, +0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x4F,0x97,0x4F,0x97,0x50,0x97,0x50,0x8F,0x50,0x8F,0x50,0x8F,0x50,0x8F,0x50,0x8F,0x50,0x8F,0x50,0x8F,0x50,0x8F,0x50,0x8F,0x50,0x8F,0x50,0x8F,0x50,0x8F,0x50,0x8F,0x30,0x97,0x30,0x97,0x30,0x97,0x30,0x97,0x30,0x97,0x30,0x97,0x30,0x97,0x30,0x97,0x50,0x97,0x50,0x97,0x50,0x97,0x50,0x97,0x30,0x97,0x30,0x97,0x30,0x97,0x30,0x97,0x50,0x8F,0x50,0x8F,0x50,0x97,0x2F,0x97,0x2F,0x97,0x2F,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F, +0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x4F,0x9F,0x2F,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x97,0x2E,0x9F,0x4D,0x9F,0x2D,0x9F,0x2D,0x9F,0x2E,0x9F,0x2F,0x9F,0x2F,0x9F,0x4F,0x9F,0x2D,0x9F,0x2D,0x9F,0x2E,0x9F,0x2F,0x9F,0x30,0x9F,0x2F,0x9F,0x2E,0x9F,0x4C,0x9F, +0x4B,0x9F,0x4B,0x9F,0x4C,0x9F,0x4C,0x9F,0x4C,0x9F,0x4C,0x9F,0x4D,0x9F,0x2D,0x9F,0x2E,0x9F,0x2F,0x9F,0x2F,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F, +0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F, +0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x4E,0x9F,0x4E,0x9F,0x2E,0x9F,0x4E,0x9F,0x4E,0x9F,0x4E,0x9F,0x4E,0x9F,0x4E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F, +0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2F,0x9F,0x2E,0x9F,0x2D,0x9F,0x2D,0xA7,0xEE,0x9E,0x53,0xAF,0xC0,0x01,0x2C,0x86,0x6F,0xAF,0x0E,0x9F,0x2F,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2F,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2F,0x9F,0x30,0x9F,0x10,0x9F,0x2F,0x9F,0x4C,0x9F,0x4A,0x9F,0x4B,0xA7,0x2E,0xA7,0x10,0x9F,0x0F,0x9F,0x2E,0x9F,0x2D,0x9F,0x2E,0x9F, +0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x0E,0x9F,0x2E,0x9F,0x2F,0x9F,0x2E,0x9F,0x2F,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2F,0x9F,0x2F,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F, +0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x4F,0x97,0x4F,0x97,0x4F,0x97,0x4F,0x8F,0x50,0x8F,0x50,0x8F,0x50,0x8F,0x50,0x8F,0x50,0x8F,0x50,0x8F,0x50,0x8F,0x50,0x8F,0x50,0x8F,0x50,0x8F,0x50,0x8F,0x50,0x8F, +0x50,0x8F,0x50,0x8F,0x50,0x8F,0x50,0x8F,0x50,0x8F,0x50,0x8F,0x50,0x8F,0x50,0x8F,0x50,0x8F,0x50,0x8F,0x50,0x8F,0x50,0x8F,0x50,0x8F,0x50,0x8F,0x50,0x8F,0x50,0x8F,0x50,0x8F,0x50,0x8F,0x50,0x97,0x4F,0x97,0x2F,0x97,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F, +0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x0E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x4E,0x9F,0x4E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2D,0x9F,0x2D,0x9F,0x2E,0x9F,0x2F,0x9F,0x2F,0x9F,0x2F,0x9F,0x2D,0x9F,0x4D,0x9F,0x4D,0x9F,0x2E,0x9F,0x0F,0x9F,0x10,0x9F,0x2F,0x9F,0x2E,0x9F,0x2D,0x9F,0x2E,0x9F,0x2E,0x9F,0x2F,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2D,0x9F,0x2D,0x9F,0x2D,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F, +0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F, +0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x97,0x0D,0x97,0x2D,0x97,0x2D,0x97,0x2D,0x97,0x4D,0x97,0x4D,0x9F,0x2D,0x97,0x2D,0x97,0x2D,0x97,0x0D,0x97,0x2E,0x9F,0x4E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F, +0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2F,0x9F,0x2E,0x9F,0x2D,0x9F,0x2D,0xA7,0xEE,0x9E,0x53,0xAF,0xC0,0x01,0x0C,0x86,0x4F,0xAF,0xEE,0x9E,0x0F,0x9F,0x0E,0x9F,0x2D,0x9F,0x2E,0x9F,0x2F,0x9F, +0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x0F,0x9F,0x2F,0x9F,0x2E,0x9F,0x2E,0x9F,0x2F,0x9F,0x10,0x9F,0x10,0x9F,0x2F,0x9F,0x2D,0x9F,0x0E,0x9F,0x0E,0x9F,0x0F,0x9F,0x0E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F, +0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x0E,0x9F,0x2F,0x9F,0x0F,0x9F,0x0F,0x9F,0x0F,0xA7,0x0E,0x9F,0x0F,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x0E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F, +0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2F,0x9F,0x2F,0x9F,0x2F,0x97,0x2F,0x97,0x50,0x97,0x50,0x97,0x50,0x8F,0x50,0x8F,0x50,0x8F,0x50,0x97,0x50,0x97,0x50,0x97,0x30,0x97,0x30,0x97,0x30,0x97,0x30,0x97,0x50,0x8F,0x50,0x8F,0x50,0x8F,0x50,0x8F,0x50,0x8F,0x50,0x8F,0x50,0x8F,0x50,0x8F,0x50,0x8F,0x50,0x8F,0x50,0x8F,0x50,0x8F,0x50,0x8F,0x50,0x8F,0x50,0x8F,0x50,0x8F,0x50,0x8F,0x50,0x8F,0x50,0x97,0x4F,0x97,0x2F,0x97,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F, +0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x0E,0x9F,0x2E,0x9F,0x0E,0x9F,0x2E,0x9F,0x2E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x0F,0x9F,0x0E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x0F,0x9F,0x0F,0x9F,0x2E,0x9F,0x4C,0x9F,0x4C,0x9F,0x2D,0x9F,0x2F,0x9F,0x10,0x9F,0x0F,0x9F,0x2F,0x9F, +0x2F,0x9F,0x2F,0x9F,0x10,0x9F,0x10,0x9F,0x10,0x9F,0x0F,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2D,0x9F,0x2D,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F, +0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F, +0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x0D,0x97,0x2E,0x97,0x2E,0x9F,0x6E,0x9F,0x4D,0x97,0x2D,0x97,0x4D,0x97,0x2D,0x97,0x2C,0x97,0x2C,0x97,0x2D,0x97,0x4D,0x97,0x4E,0x9F,0x4E,0x9F,0x2E,0x9F,0x0E,0x97,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F, +0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2F,0x9F,0x0E,0x9F,0x2D,0x9F,0x2D,0xA7,0xEE,0x9E,0x53,0xB7,0xC0,0x01,0x0C,0x86,0x4F,0xAF,0xEE,0x9E,0x0F,0x9F,0x2E,0x9F,0x2D,0x9F,0x2E,0x9F,0x2F,0x97,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x0F,0x9F,0x0F,0x9F,0x2F,0x9F,0x2D,0x9F,0x2D,0x9F,0x2D,0x9F,0x2E,0x9F,0x0F,0x9F,0x2F,0x9F,0x2F,0x9F,0x2E,0x9F,0x2D,0x9F,0x2D,0x9F,0x2D,0x9F,0x2E,0x9F,0x2F,0x9F, +0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x0F,0x9F,0x4F,0xA7,0x4F,0xA7,0x4F,0xA7,0x4F,0xA7,0x2F,0xA7,0x2F,0xA7,0x4F,0xA7,0x4F,0xA7,0x4F,0xA7,0x4F,0xA7,0x4F,0xA7,0x4F,0xA7,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F, +0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2F,0x9F,0x2F,0x9F,0x2F,0x9F,0x2F,0x97,0x30,0x97,0x30,0x97,0x30,0x97,0x30,0x97,0x30,0x97,0x30,0x97,0x30,0x97,0x30,0x97,0x30,0x97,0x30,0x97,0x30,0x97,0x30,0x97, +0x50,0x8F,0x50,0x8F,0x50,0x8F,0x50,0x8F,0x50,0x8F,0x50,0x8F,0x50,0x8F,0x50,0x8F,0x50,0x8F,0x50,0x8F,0x50,0x8F,0x50,0x8F,0x50,0x8F,0x50,0x8F,0x50,0x8F,0x50,0x8F,0x50,0x8F,0x50,0x8F,0x50,0x97,0x4F,0x97,0x2F,0x97,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F, +0x0E,0x9F,0x2E,0xA7,0x2E,0x9F,0x0E,0x9F,0x2E,0xA7,0x0E,0x9F,0x2F,0xA7,0x0F,0xA7,0x0F,0xA7,0x0F,0x9F,0x0F,0x9F,0x2F,0x9F,0x2E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x10,0x9F,0x0F,0x9F,0x2F,0x9F,0x2E,0x9F,0x2E,0x9F,0x0E,0x9F,0x2F,0x9F,0x2F,0x9F,0x2E,0x9F,0x4D,0x9F,0x4C,0x9F,0x2D,0x9F,0x2E,0x9F,0x2F,0x9F,0x0F,0x9F,0x2E,0x9F,0x2F,0x9F,0x2F,0x9F,0x10,0x9F,0x10,0x9F,0x10,0x9F,0x0F,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2F,0x9F,0x0F,0x9F,0x2F,0x9F,0x2F,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F, +0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F, +0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x4E,0x9F,0x2D,0x97,0x4E,0x97,0xEC,0x8E,0xCB,0x86,0x6E,0x9F,0x2D,0x97,0x4C,0x97,0x4C,0x97,0x0B,0x8F,0xEB,0x8E,0x2D,0x97,0x4E,0x9F,0x2D,0x97,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F, +0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2F,0x9F,0x0E,0x9F,0x2D,0x9F,0x2C,0xA7,0xEE,0x9E,0x53,0xAF,0xC0,0x01,0x0C,0x86,0x4F,0xAF,0xEE,0x9E,0x0F,0x9F,0x2E,0x9F,0x2D,0x9F,0x2E,0x97,0x0F,0x97, +0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2D,0x9F,0x0F,0x9F,0x0F,0x9F,0x2E,0x9F,0x4C,0x9F,0x4B,0x9F,0x2D,0x9F,0x0E,0x9F,0x2F,0x9F,0x2F,0x9F,0x2D,0x9F,0x2D,0x9F,0x2D,0x9F,0x2D,0x9F,0x2E,0x9F,0x2F,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F, +0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x70,0xAF,0x91,0xB7,0x91,0xB7,0x91,0xB7,0x71,0xB7,0x71,0xB7,0xB0,0xAF,0x70,0xAF,0x70,0xAF,0x4F,0xA7,0x4F,0xA7,0x4F,0xA7,0x0E,0x9F,0x0E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F, +0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2F,0x9F,0x2F,0x9F,0x2F,0x97,0x4F,0x97,0x2F,0x97,0x50,0x8F,0x50,0x8F,0x50,0x8F,0x50,0x8F,0x50,0x8F,0x2F,0x8F,0x2F,0x8F,0x50,0x97,0x50,0x97,0x50,0x97,0x30,0x97,0x30,0x97,0x30,0x97,0x30,0x97,0x30,0x97,0x30,0x97,0x30,0x97,0x30,0x97,0x30,0x97,0x30,0x97,0x30,0x97,0x30,0x97,0x30,0x97,0x30,0x97,0x30,0x97,0x30,0x97,0x30,0x97,0x50,0x8F,0x50,0x8F,0x50,0x97,0x4F,0x97,0x2F,0x97,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F, +0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x0E,0x9F,0x4F,0xA7,0x2F,0xA7,0x2F,0xA7,0x2F,0xA7,0x2F,0xA7,0x2F,0xA7,0x2F,0xA7,0x2F,0xA7,0x2F,0xA7,0x2F,0xA7,0x4F,0xA7,0x4F,0xA7,0x2F,0xA7,0x4F,0xA7,0x4F,0xA7,0x30,0xA7,0x0F,0x9F,0x50,0xA7,0x2E,0x9F,0x2D,0x9F,0x0E,0x9F,0x2F,0x9F,0x2F,0x9F,0x2F,0x9F,0x2D,0x9F,0x4C,0x9F,0x2D,0x9F,0x2E,0x9F,0x2F,0x9F,0x2E,0x9F,0x2E,0x9F, +0x2E,0x9F,0x2E,0x9F,0x2F,0x9F,0x2F,0x9F,0x2F,0x9F,0x0F,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2F,0x9F,0x0F,0x9F,0x0F,0x9F,0x0F,0x9F,0x0F,0x9F,0x2F,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x0E,0x9F,0x0E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F, +0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x0E,0x9F,0x0E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x0E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x97,0x2E,0x97,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x0E,0x9F,0x0E,0x9F, +0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x4E,0x9F,0x4E,0x9F,0x2D,0x97,0x4D,0x97,0x0C,0x8F,0x0B,0x8F,0xEF,0xA7,0xCE,0x9F,0xCE,0x9F,0xCE,0x9F,0x4C,0x8F,0xEB,0x86,0x2C,0x97,0x2D,0x97,0x2D,0x97,0x4E,0x9F,0x2E,0x97,0x2E,0x97,0x2E,0x97,0x2E,0x97,0x2E,0x97,0x2E,0x97,0x2E,0x97,0x2E,0x97,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x0E,0x9F,0x0E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x0E,0x9F,0x0E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F, +0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x0E,0x9F,0x0E,0x9F,0x2E,0x9F,0x2F,0x9F,0x2E,0x9F,0x2C,0x9F,0x2C,0xA7,0xEE,0x9E,0x34,0xAF,0xC0,0x01,0x0C,0x86,0x4F,0xAF,0xEE,0x9E,0x0F,0x9F,0x2E,0x9F,0x2D,0x9F,0x2E,0x97,0x2F,0x97,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x0E,0x9F,0x0E,0x9F,0x2D,0x9F,0x2E,0x9F,0x0F,0x9F,0x2F,0x9F,0x2D,0x9F,0x2D,0x9F,0x2D,0x9F,0x0F,0x9F,0x2F,0x9F,0x2F,0x9F,0x2E,0x9F,0x2D,0x9F,0x2D,0x9F,0x2D,0x9F,0x2E,0x9F,0x2E,0x97, +0x2E,0x97,0x2E,0x97,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x97,0x2E,0x97,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x0E,0x9F,0x2E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0xEE,0x9E,0x70,0xAF,0x91,0xB7,0x91,0xBF,0x91,0xBF,0x71,0xBF,0x71,0xBF,0x6F,0xAF,0x2E,0xA7,0x2E,0xA7,0x0E,0x9F,0x2E,0x9F,0x4F,0xA7,0x2E,0x9F,0x2E,0x9F,0x0E,0x9F,0x0E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F, +0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x0E,0x9F,0x0E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x0E,0x9F,0x0E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x0E,0x9F,0x0E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x0E,0x9F,0x0E,0x9F,0x2F,0x97,0x4F,0x97,0x4F,0x97,0x4F,0x8F,0x4F,0x8F,0x50,0x8F,0x50,0x87,0x50,0x87,0x50,0x87,0x50,0x8F,0x50,0x8F,0x4F,0x8F,0x4F,0x8F,0x50,0x8F,0x50,0x8F,0x50,0x8F, +0x30,0x97,0x30,0x97,0x30,0x97,0x30,0x97,0x30,0x97,0x30,0x97,0x30,0x97,0x30,0x97,0x30,0x97,0x30,0x97,0x30,0x97,0x30,0x97,0x30,0x97,0x30,0x97,0x30,0x97,0x30,0x97,0x50,0x8F,0x50,0x8F,0x50,0x97,0x2F,0x97,0x2F,0x97,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x0E,0x9F,0x0E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x2E,0x97,0x2E,0x97,0x2E,0x97,0x2E,0x97, +0x0F,0xA7,0x70,0xAF,0x50,0xA7,0x50,0xA7,0x50,0xAF,0x30,0xAF,0x50,0xAF,0x30,0xAF,0x30,0xA7,0x30,0xA7,0x30,0xA7,0x30,0xA7,0x50,0xA7,0x50,0xA7,0x50,0xA7,0x70,0xA7,0x50,0xA7,0x0F,0x9F,0x70,0xAF,0x2E,0x9F,0x2D,0x9F,0x0D,0x9F,0x0E,0x9F,0x0F,0x9F,0x0F,0x9F,0x2E,0x9F,0x2D,0x9F,0x2D,0x9F,0x2E,0x9F,0x2F,0x9F,0x2E,0x97,0x2D,0x97,0x2D,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x0E,0x9F,0x0F,0x9F,0x0F,0x9F,0x0F,0x97,0x2E,0x97,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x0E,0x9F,0x0E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F, +0x2E,0x97,0x2E,0x97,0x2E,0x97,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F, +0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x0E,0x9F,0x0E,0x9F,0x2E,0x9F,0x2E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x2E,0x97,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x0E,0x9F,0x0E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2D,0x97,0x2D,0x97,0x4D,0x97,0x4D,0x97,0x0C,0x8F,0xEB,0x86,0x2C,0x8F,0x0B,0x87,0x0B,0x87,0x2B,0x8F,0x2B,0x87,0x0B,0x87,0x4C,0x97,0x4D,0x97,0x2D,0x97,0x2D,0x97,0x2D,0x97,0x2E,0x97,0x2E,0x97,0x2E,0x97,0x2E,0x97,0x2E,0x97,0x2D,0x97,0x2D,0x97, +0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x2E,0x97,0x2F,0x9F,0x2E,0x9F,0x2C,0x9F,0x2C,0x9F,0xEE,0x9E,0x34,0xAF,0xC0,0x01,0xEC,0x85,0x4F,0xA7,0xEE,0x9E,0x0F,0x9F,0x2D,0x9F,0x4C,0x97,0x2D,0x97,0x10,0x97, +0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x2D,0x9F,0x2D,0x9F,0x2D,0x9F,0x2E,0x9F,0x0F,0x9F,0x0F,0x9F,0x2F,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x2E,0x9F,0x2D,0x9F,0x2E,0x9F,0x2E,0x9F,0x0E,0x97,0x2E,0x97,0x2E,0x97,0x2E,0x97,0x2E,0x97,0x2E,0x97,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x97,0x2E,0x97,0x2E,0x97,0x0E,0x9F,0x2E,0x9F,0x2E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F, +0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x2E,0x9F,0x2E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0xEE,0x9E,0x50,0xAF,0x91,0xB7,0x71,0xB7,0x71,0xB7,0x71,0xBF,0x71,0xBF,0xB0,0xB7,0x4F,0xA7,0x4F,0xA7,0x0E,0x9F,0x0E,0x9F,0x4F,0xA7,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F, +0x0E,0x9F,0x0E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x0E,0x9F,0x0E,0x9F,0x2E,0x97,0x2E,0x97,0x2F,0x97,0x4F,0x8F,0x4F,0x8F,0x50,0x8F,0x50,0x8F,0x50,0x8F,0x50,0x8F,0x50,0x8F,0x50,0x8F,0x50,0x8F,0x50,0x8F,0x50,0x8F,0x50,0x8F,0x50,0x8F,0x30,0x8F,0x30,0x8F,0x30,0x8F,0x30,0x8F,0x30,0x8F,0x30,0x8F,0x30,0x8F,0x30,0x8F,0x30,0x8F,0x30,0x8F,0x30,0x8F,0x30,0x8F,0x30,0x8F,0x30,0x8F,0x30,0x8F,0x30,0x8F,0x30,0x8F,0x30,0x8F,0x30,0x97,0x2F,0x97,0x2F,0x97,0x2E,0x9F,0x2E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F, +0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x2E,0x97,0x2E,0x97,0x2E,0x97,0x2E,0x97,0x0F,0x9F,0x71,0xAF,0x50,0xAF,0x50,0xAF,0x71,0xB7,0x50,0xAF,0x71,0xB7,0x51,0xAF,0x71,0xB7,0x71,0xB7,0x71,0xB7,0x71,0xAF,0x50,0xAF,0x50,0xAF,0x70,0xAF,0x70,0xAF,0x4F,0xA7,0x0E,0x9F,0x70,0xAF,0x2E,0x9F,0x2D,0x9F,0x0C,0x9F,0x2E,0x9F,0x0F,0x9F,0x0F,0x9F,0x0F,0x9F,0x2E,0x9F,0x2E,0x9F,0x0F,0x9F,0x0E,0x97,0x2D,0x97,0x2C,0x97, +0x2D,0x9F,0x2D,0x9F,0x2D,0x9F,0x2D,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2D,0x9F,0x2D,0x9F,0x2E,0x9F,0x2E,0x97,0x2E,0x97,0x2E,0x97,0x2E,0x97,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x97,0x2E,0x97,0x2E,0x97,0x0E,0x9F,0x2E,0x9F,0x2E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F, +0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x0E,0x9F,0x0E,0x9F,0x2E,0x9F,0x2E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x2E,0x97,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x0E,0x9F,0x0E,0x9F, +0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2D,0x97,0x2D,0x97,0x4E,0x97,0x2D,0x97,0x4C,0x97,0x6D,0x97,0x2C,0x8F,0x6C,0x97,0x6C,0x8F,0x6C,0x8F,0x6C,0x8F,0x6C,0x8F,0x4C,0x8F,0x4D,0x97,0x4D,0x97,0x2D,0x97,0x2D,0x97,0x2E,0x97,0x2E,0x97,0x2E,0x97,0x2E,0x97,0x2D,0x97,0x2D,0x97,0x2D,0x97,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F, +0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x2E,0x97,0x2F,0x9F,0x2E,0x9F,0x2C,0x9F,0x2C,0x9F,0xEE,0x9E,0x54,0xAF,0xC0,0x01,0xEC,0x85,0x4F,0xA7,0xEE,0x9E,0x0F,0x9F,0x2D,0x97,0x2C,0x97,0x2D,0x97,0x10,0x97,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0F,0x9F,0x2D,0x9F,0x4B,0x9F,0x2D,0x9F,0x10,0x9F,0x11,0x9F,0x0F,0x9F,0x2E,0x9F,0x2E,0x9F,0x0E,0x9F,0x2D,0x9F,0x2D,0x9F,0x2E,0x9F,0x2F,0x9F,0x2F,0x9F,0x2F,0x9F, +0x2E,0x97,0x2E,0x97,0x2E,0x97,0x2E,0x97,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x97,0x2E,0x97,0x2E,0x97,0x0E,0x9F,0x2E,0x9F,0x2E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x2E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0F,0xA7,0xEE,0x9E,0x50,0xAF,0x91,0xBF,0x71,0xBF,0x71,0xBF,0x71,0xBF,0x71,0xBF,0x4F,0xA7,0xEE,0x9E,0x0E,0x9F,0x0E,0x9F,0x2E,0xA7,0x4F,0xA7,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F, +0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x0E,0x9F,0x0E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0F,0x97,0x2F,0x97,0x30,0x97,0x30,0x8F,0x30,0x8F,0x30,0x8F,0x30,0x8F,0x30,0x8F,0x30,0x8F,0x30,0x8F,0x30,0x97,0x30,0x97,0x30,0x97,0x30,0x97, +0x50,0x8F,0x50,0x8F,0x50,0x8F,0x50,0x8F,0x50,0x8F,0x50,0x8F,0x50,0x8F,0x50,0x8F,0x50,0x8F,0x50,0x8F,0x50,0x8F,0x50,0x8F,0x50,0x8F,0x50,0x8F,0x50,0x8F,0x50,0x8F,0x30,0x8F,0x30,0x8F,0x30,0x8F,0x2F,0x97,0x2F,0x97,0x2E,0x9F,0x2E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x2E,0x97,0x2E,0x97,0x2E,0x97,0x2E,0x97, +0x0F,0x9F,0x71,0xAF,0x50,0xAF,0x71,0xAF,0x91,0xB7,0x51,0xAF,0x71,0xB7,0x51,0xAF,0x51,0xB7,0x71,0xB7,0x51,0xAF,0x30,0xA7,0xEF,0x9E,0xEF,0x9E,0xEF,0x9E,0xEF,0x9E,0x0E,0x9F,0xCD,0x96,0x70,0xAF,0x2E,0x9F,0x2D,0x9F,0x0C,0x9F,0x2D,0x9F,0x0F,0x9F,0x10,0x9F,0x0F,0x9F,0x0F,0x9F,0x0F,0x9F,0x0F,0x9F,0x0E,0x97,0x2D,0x97,0x2C,0x97,0x2E,0x9F,0x2D,0x9F,0x2D,0x9F,0x2D,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2D,0x9F,0x2D,0x9F,0x2D,0x9F,0x2D,0x97,0x2D,0x97,0x2E,0x97,0x2E,0x97,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F, +0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F, +0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x2D,0x97,0x2D,0x97,0x2D,0x9F,0x2D,0x9F,0x2D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0xEE,0x9E,0x0E,0x9F,0x0E,0x9F,0xED,0xAE,0xED,0x9E,0x2E,0x97,0x4F,0x97,0x0F,0x9F,0xCE,0xA6,0xCE,0xAE,0x2E,0xA7,0x6C,0x8F,0x87,0x56,0xE4,0x3D,0x6A,0x77,0x6C,0x8F,0x0D,0x9F,0xEE,0xA6,0xEE,0xA6, +0x0D,0x9F,0x0D,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x2A,0x9F,0x2D,0x9F,0xEE,0x96,0x2E,0x9F,0x0D,0x9F,0xD0,0x9E,0x14,0xAF,0xA0,0x09,0xEB,0x85,0x6E,0xAF,0xCC,0x96,0x2F,0x9F,0x0E,0x97,0x4D,0x9F,0x0D,0x9F,0x0E,0xA7, +0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F, +0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0F,0x9F,0x10,0x9F,0x0E,0x9F,0xAD,0xAF,0xCB,0xAF,0xED,0xBF,0xCD,0xBF,0xCD,0xBF,0x6A,0xAF,0x86,0xA7,0xA8,0xA7,0x8A,0xA7,0x2B,0x9F,0x2D,0x9F,0x4F,0xA7,0x0E,0x9F,0xEE,0x96,0x0E,0x9F,0x0E,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0E,0x9F,0x2D,0x97,0x2D,0x97,0x2D,0x97,0x0D,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0xEE,0x9E,0x0E,0x9F,0xEE,0x9E,0xED,0x9E,0xED,0x9E,0x0E,0xA7,0x0E,0xA7,0xEE,0xA6,0x0E,0xA7,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F, +0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x2E,0x97,0x4F,0x8F,0x50,0x8F,0x30,0x8F,0x2F,0x8F,0x4F,0x87,0x4F,0x87,0x30,0x8F,0x30,0x8F,0x30,0x8F,0x4F,0x8F,0x2F,0x97,0x2F,0x97,0x2F,0x8F,0x50,0x87,0x2F,0x8F,0x2F,0x8F,0x2F,0x8F,0x2F,0x8F,0x2F,0x8F,0x2F,0x8F,0x2F,0x8F,0x2F,0x8F,0x2F,0x8F,0x2F,0x8F,0x2F,0x8F,0x2F,0x8F,0x2F,0x8F,0x2F,0x8F,0x2F,0x8F,0x2F,0x8F,0x50,0x8F,0x2F,0x8F,0x2F,0x8F,0x2F,0x97,0x2E,0x97,0x2E,0x97,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F, +0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0xEF,0xA6,0x51,0xAF,0x51,0xAF,0x51,0xB7,0x31,0xB7,0x10,0xB7,0x71,0xBF,0x30,0xB7,0x51,0xB7,0x51,0xB7,0x30,0xAF,0x30,0xAF,0xEE,0x9E,0x0F,0x9F,0x0E,0x9F,0x0E,0x97,0x0E,0x9F,0x0E,0x9F,0x6F,0xA7,0x2E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x2E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F, +0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x2D,0x9F,0x2D,0x9F,0x2D,0x97,0x2D,0x97,0x2E,0x97,0x0E,0x97,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x0E,0x97,0x0D,0x97,0x2D,0x97,0x2D,0x97,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F, +0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F, +0x2D,0x97,0x2D,0x97,0x2D,0x97,0x2D,0x97,0x2D,0x97,0x2D,0x97,0x2D,0x9F,0x0E,0x9F,0x0D,0x97,0x2E,0x9F,0x2F,0x9F,0x0E,0x97,0x0D,0x97,0x2E,0x9F,0x4E,0x9F,0x0D,0x9F,0xF0,0xAE,0xCE,0x9E,0x0E,0x9F,0xEE,0x96,0x0D,0x9F,0x4C,0x9F,0xE9,0x86,0xA7,0x66,0x43,0x46,0xC1,0x2D,0x23,0x46,0x4A,0x87,0x0C,0x97,0xED,0x9E,0x0E,0x9F,0xEE,0x9E,0x0D,0x9F,0x0D,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x2E,0x9F,0x2E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F, +0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0B,0x9F,0x2E,0x9F,0x0F,0x9F,0x0D,0x9F,0x2D,0x9F,0xCF,0x9E,0x34,0xB7,0xA0,0x01,0x0C,0x8E,0x6E,0xAF,0x0C,0x9F,0x2E,0x9F,0x2D,0x97,0x2D,0x9F,0x0D,0x9F,0xEE,0x9E,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F, +0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0D,0x9F,0x0D,0x9F,0x0C,0x9F,0x0C,0x9F,0x8E,0xAF,0xEE,0xBF,0x8B,0xB7,0xCB,0xBF,0xAA,0xB7,0x49,0xAF,0x87,0xA7,0x47,0x9F,0x89,0xA7,0x4A,0x9F,0x4B,0x9F,0x6D,0xA7,0x0D,0x97,0x2E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0D,0x9F,0x0D,0x9F,0x2D,0x9F,0x2D,0x9F,0x0E,0x9F,0x0E,0x9F, +0x4D,0x97,0x4D,0x97,0x2D,0x97,0x2D,0x97,0x2E,0x97,0x2E,0x97,0x2E,0x97,0x2E,0x97,0x0E,0x97,0x2E,0x9F,0x2E,0x9F,0x2E,0x9F,0x2E,0x97,0x0E,0x97,0x0E,0x97,0x0E,0x97,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0D,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x2E,0x97,0x4F,0x8F,0x50,0x8F,0x30,0x8F,0x2F,0x8F,0x4F,0x8F,0x4F,0x87,0x50,0x8F,0x30,0x8F,0x50,0x8F,0x4F,0x8F,0x2F,0x97,0x2F,0x97,0x2F,0x97,0x50,0x87, +0x4F,0x8F,0x4F,0x8F,0x4F,0x8F,0x4F,0x8F,0x4F,0x8F,0x4F,0x8F,0x4F,0x8F,0x4F,0x8F,0x4F,0x8F,0x4F,0x8F,0x4F,0x8F,0x4F,0x8F,0x4F,0x8F,0x4F,0x8F,0x4F,0x8F,0x4F,0x8F,0x50,0x8F,0x2F,0x8F,0x2F,0x8F,0x2E,0x97,0x2E,0x97,0x2E,0x97,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F, +0x0F,0xA7,0x71,0xAF,0x51,0xAF,0x51,0xB7,0x51,0xB7,0x51,0xB7,0x72,0xBF,0x51,0xB7,0x30,0xB7,0x30,0xAF,0x50,0xAF,0xB1,0xB7,0x90,0xAF,0x70,0xA7,0x2F,0x9F,0x0E,0x97,0x0E,0x9F,0x0E,0x9F,0x6F,0xA7,0x2E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x2E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0D,0x9F,0x0D,0x9F,0x2D,0x9F,0x2D,0x9F,0x2D,0x9F,0x2D,0x97,0x2D,0x97,0x2E,0x97,0x2E,0x9F,0x0E,0x97,0x0E,0x97,0x0E,0x97,0x2E,0x9F,0x2E,0x9F,0x0D,0x97,0x2E,0x9F, +0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F, +0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x2D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x97,0x0D,0x97,0x0D,0x97,0x2D,0x97,0x2D,0x97,0x2C,0x97,0xCF,0x9E,0x50,0xA7,0x2E,0x9F,0x4D,0x9F,0x8B,0x97,0xA5,0x66,0xE1,0x35,0x00,0x2E,0x21,0x2E,0x02,0x36,0xC7,0x66,0x6C,0x97,0x0C,0x9F,0x0E,0xA7,0x2F,0x9F,0x0E,0x97, +0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0E,0x97,0x0E,0x97,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x4D,0x9F,0xCD,0x96,0x2F,0xA7,0xCB,0x96,0x2C,0xA7,0xAE,0x96,0x34,0xAF,0xC0,0x01,0x0C,0x7E,0x4D,0xA7,0x0C,0x97,0x2D,0x9F,0x2D,0x9F,0x0C,0x97,0x0E,0x97,0x0F,0x9F, +0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F, +0x2D,0x97,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0D,0x9F,0x2B,0x9F,0x4A,0xA7,0x6B,0xA7,0xCE,0xB7,0x6D,0xB7,0x29,0xAF,0x68,0xB7,0xEB,0xCF,0x4A,0xB7,0x68,0xA7,0x48,0xA7,0x68,0xA7,0x89,0xA7,0xAB,0xAF,0x6C,0xA7,0xEB,0x96,0x2E,0x9F,0x0E,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0E,0x9F,0x2F,0x9F,0xED,0x9E,0x0D,0x9F,0x0D,0x9F,0xEE,0x9E,0xEE,0x96,0xEE,0x96,0x0E,0x97,0x0E,0x97,0x0E,0x97,0x0E,0x97,0x2E,0x97,0x2D,0x97,0x2D,0x97,0x2E,0x97,0x2E,0x97,0x2E,0x97,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F, +0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0D,0x9F,0x0D,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x2E,0x97,0x4F,0x8F,0x2F,0x8F,0x2F,0x8F,0x2F,0x8F,0x4F,0x8F,0x4F,0x87,0x30,0x8F,0x30,0x8F,0x2F,0x8F,0x2F,0x8F,0x2E,0x97,0x0F,0x97,0x2F,0x8F,0x50,0x87,0x2F,0x8F,0x2F,0x8F,0x2F,0x8F,0x2F,0x8F,0x2F,0x8F,0x2F,0x8F,0x2F,0x8F,0x2F,0x8F,0x2F,0x8F,0x2F,0x8F,0x2F,0x8F,0x2F,0x8F,0x2F,0x8F,0x2F,0x8F,0x2F,0x8F,0x2F,0x8F,0x2F,0x8F,0x2F,0x8F,0x2F,0x8F,0x2E,0x97,0x2E,0x97,0x0E,0x97,0x0D,0x9F,0x0D,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F, +0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0D,0x9F,0x0D,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0F,0xA7,0x71,0xAF,0x71,0xB7,0x51,0xB7,0x71,0xB7,0x71,0xB7,0x30,0xAF,0x10,0xAF,0x71,0xB7,0x30,0xAF,0xEE,0x9E,0x0F,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x97,0x0E,0x97,0x0E,0x9F,0x0E,0x9F,0x6F,0xA7,0x2E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0D,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F, +0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x2D,0x9F,0x2D,0x9F,0x2D,0x9F,0x2D,0x97,0x2E,0x97,0x2E,0x97,0x2E,0x97,0x2F,0x9F,0x2F,0x9F,0x2E,0x9F,0x2E,0x97,0x0E,0x97,0x2E,0x9F,0x2E,0x97,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F, +0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F, +0xEE,0x9E,0xEE,0x9E,0xEE,0x9E,0xEE,0x9E,0x0D,0x9F,0x0D,0x9F,0xEE,0x9E,0xEE,0x9E,0xEE,0x9E,0x0E,0x9F,0x0D,0x9F,0x2D,0x9F,0x2D,0x97,0x2C,0x97,0x2C,0x97,0x4C,0x97,0x6D,0x97,0x0B,0x87,0x6A,0x87,0x48,0x77,0x42,0x46,0x00,0x2E,0x21,0x36,0xE1,0x35,0xE3,0x3D,0x29,0x77,0x8D,0x97,0x0D,0x8F,0x0D,0x97,0x2D,0x97,0x0D,0x97,0x2D,0x97,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x97,0x0D,0x97,0x0E,0x97,0x0E,0x97,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x2E,0x97,0x2E,0x97,0x2E,0x97,0x2E,0x97,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F, +0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x2E,0x97,0xCE,0x96,0xEE,0x9E,0x4D,0xA7,0x0C,0xA7,0xCE,0x9E,0x34,0xAF,0xE0,0x01,0x0B,0x7E,0x8E,0xA7,0x0C,0x97,0xED,0x96,0xEE,0x96,0x2E,0x9F,0x2E,0x9F,0xEE,0x8E,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F, +0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x2D,0x97,0x0D,0x97,0x0E,0x97,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0D,0x9F,0x2B,0x9F,0x49,0xA7,0xCB,0xB7,0xEE,0xCF,0xEE,0xCF,0xCD,0xC7,0xE9,0xAE,0xAE,0xCF,0x0D,0xBF,0x4B,0xAF,0xED,0xC7,0xCA,0xB7,0x88,0xA7,0xA9,0xAF,0x6A,0x9F,0x2C,0x9F,0x0D,0x97,0x0E,0x9F,0x0E,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0xEE,0x96,0x2F,0x9F,0x91,0xAF, +0x32,0xBF,0x32,0xBF,0x32,0xBF,0x32,0xBF,0x32,0xB7,0x52,0xB7,0x72,0xB7,0x92,0xB7,0x91,0xB7,0x4F,0xA7,0x0E,0x9F,0xED,0x96,0x0D,0x97,0x2D,0x97,0x0D,0x97,0x0C,0x97,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0D,0x9F,0x0D,0x97,0x0D,0x97,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x2E,0x97,0x2F,0x8F,0x2F,0x8F,0x2F,0x8F,0x2F,0x8F,0x4F,0x8F,0x4F,0x87,0x30,0x8F,0x30,0x8F,0x2F,0x8F,0x2F,0x8F,0x2E,0x97,0x0E,0x97,0x2F,0x8F,0x30,0x87, +0x2F,0x8F,0x2F,0x8F,0x2F,0x8F,0x2F,0x8F,0x2F,0x8F,0x2F,0x8F,0x2F,0x8F,0x2F,0x8F,0x2F,0x8F,0x2F,0x8F,0x2F,0x8F,0x2F,0x8F,0x2F,0x8F,0x2F,0x8F,0x2F,0x8F,0x2F,0x8F,0x2F,0x8F,0x2F,0x8F,0x2F,0x8F,0x2E,0x97,0x2E,0x97,0x0E,0x97,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F, +0x0F,0xA7,0x71,0xAF,0x71,0xB7,0x51,0xAF,0x71,0xB7,0x91,0xB7,0x50,0xAF,0x50,0xAF,0x91,0xB7,0x50,0xAF,0x2F,0xA7,0xEE,0x9E,0xED,0x96,0x0E,0x9F,0x2E,0x9F,0x2E,0x97,0x0E,0x9F,0xEE,0x9E,0x4F,0xA7,0x2E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0D,0x9F,0x0E,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x97,0x0E,0x97,0x0E,0x9F,0x0E,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x97,0x0D,0x97,0x0E,0x97,0x0E,0x97,0x0E,0x97,0x2F,0x97,0x0E,0x97,0x0E,0x97,0x0E,0x97,0xEE,0x96,0x4F,0x9F,0xED,0x96, +0x0E,0x97,0x0E,0x97,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0E,0x9F,0x0E,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0E,0x9F,0x0E,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F, +0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0xEE,0x9E,0xEE,0x9E,0xEE,0x9E,0xEE,0x9E,0xEE,0x9E,0xEE,0x9E,0xEE,0x9E,0xEE,0x9E,0xED,0x9E,0x0D,0x9F,0x2D,0x97,0x0C,0x97,0x2C,0x97,0x4C,0x97,0x4B,0x8F,0x0A,0x87,0x06,0x67,0x22,0x46,0x21,0x3E,0x20,0x2E,0x60,0x26,0x40,0x2E,0xE0,0x2D,0xA7,0x66,0x6C,0x97,0x0E,0x9F,0xEE,0x9E,0x2F,0x97,0x2E,0x8F,0x0D,0x8F,0x4D,0x9F,0x0C,0x9F, +0x0D,0x97,0x0D,0x97,0x0D,0x9F,0x0D,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x2E,0x9F,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x9F,0x0D,0x9F,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x97,0x0F,0x9F,0x0F,0x9F,0xEC,0x96,0x2D,0xA7,0xCE,0x96,0x33,0xAF,0xE0,0x01,0xEB,0x7D,0x8E,0xAF,0xED,0x96,0x2F,0x9F,0xEF,0x96,0x0E,0x97,0x2E,0x97,0x2E,0x97, +0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x97,0x0E,0x97,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0E,0x9F,0x0E,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0E,0x97,0x0E,0x97,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F, +0x2D,0x97,0x2C,0x97,0x2D,0x97,0x0E,0x97,0x0F,0x9F,0x0E,0x9F,0x0D,0x9F,0x2C,0x9F,0x4A,0xA7,0x88,0xAF,0x87,0xAF,0x89,0xBF,0x8E,0xCF,0x92,0xD7,0xF6,0xEF,0xF6,0xEF,0xD0,0xC7,0xAE,0xBF,0x48,0xA7,0x67,0xA7,0xA8,0xA7,0x49,0x9F,0x4C,0x9F,0x0E,0x9F,0x0E,0x97,0x0E,0x9F,0x0D,0x9F,0x0D,0x9F,0x0E,0x9F,0x0F,0x9F,0x71,0xA7,0xD3,0xB7,0xB7,0xDF,0xD7,0xE7,0xD7,0xE7,0xD7,0xDF,0xD7,0xDF,0xD7,0xDF,0xF6,0xDF,0xF6,0xDF,0xB3,0xC7,0x30,0xB7,0xCE,0xA6,0xCD,0xA6,0x0D,0xA7,0x0D,0x9F,0x0D,0x9F,0x2D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F, +0x0E,0x97,0x0E,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x2E,0x97,0x2F,0x8F,0x2F,0x8F,0x2F,0x8F,0x2F,0x8F,0x2F,0x87,0x2F,0x87,0x30,0x8F,0x30,0x8F,0x2F,0x8F,0x2F,0x8F,0x2E,0x97,0x0F,0x97,0x2F,0x8F,0x50,0x87,0x2F,0x8F,0x2F,0x8F,0x2F,0x8F,0x2F,0x8F,0x2F,0x8F,0x2F,0x8F,0x2F,0x8F,0x2F,0x8F,0x2F,0x8F,0x2F,0x8F,0x2F,0x8F,0x2F,0x8F,0x2F,0x8F,0x2F,0x8F,0x2F,0x8F,0x2F,0x8F,0x2F,0x8F,0x2F,0x8F,0x2F,0x8F,0x2E,0x97,0x0E,0x97,0x0E,0x97,0x0D,0x97,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0E,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F, +0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0E,0x9F,0x0E,0x9F,0xEF,0xA6,0x50,0xAF,0x50,0xAF,0x0F,0xA7,0x30,0xAF,0x30,0xAF,0x30,0xA7,0x50,0xAF,0x2F,0xA7,0x0F,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x97,0x0E,0x97,0x0D,0x97,0xED,0x96,0x0E,0x9F,0xEE,0x9E,0x6F,0xA7,0x0E,0x9F,0x0E,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F, +0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x97,0x0E,0x97,0x0E,0x97,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x97,0x0E,0x97,0x0E,0x97,0x0E,0x97,0x2F,0x97,0xEE,0x96,0x2F,0x97,0x0E,0x97,0x0F,0x97,0x0E,0x97,0x0E,0x97,0x0E,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97, +0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x9F,0x0D,0x9F,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x9F,0x0D,0x9F, +0x0E,0x97,0x0E,0x97,0x0E,0x97,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x97,0x0E,0x97,0x2E,0x9F,0x2D,0x97,0x2D,0x8F,0x4D,0x8F,0x4C,0x87,0xE9,0x76,0x05,0x56,0x63,0x3D,0xA0,0x35,0xA0,0x35,0xA0,0x2D,0xE0,0x2D,0x20,0x26,0x41,0x2E,0x63,0x3E,0x25,0x56,0x08,0x6E,0x0E,0xA7,0xCE,0x9E,0xCE,0x8E,0x4F,0x97,0x2E,0x8F,0x0D,0x97,0x0D,0xA7,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0xEE,0x96,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x2E,0x97,0x2E,0x97,0x2E,0x97,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x97,0x0E,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97, +0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x2F,0x9F,0x0F,0x97,0xEE,0x96,0x2D,0x9F,0x2D,0x9F,0xCF,0x9E,0x14,0xAF,0x40,0x01,0x8B,0x7D,0x0E,0xA7,0xED,0x9E,0x0F,0x97,0xEF,0x96,0x0E,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0E,0x97,0x0E,0x97,0x0E,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97, +0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x2D,0x97,0x2C,0x97,0x2C,0x97,0x0D,0x97,0x0E,0x97,0x0F,0x9F,0x0E,0x9F,0x0C,0x9F,0x4A,0xA7,0x67,0xA7,0xA6,0xB7,0xE7,0xA6,0xB2,0xD7,0xFB,0xF7,0xFC,0xF7,0xBA,0xF7,0xF6,0xDF,0x2E,0xAF,0x29,0xA7,0x88,0xAF,0x68,0xA7,0x6A,0x9F,0x0C,0x97,0x0E,0x97,0xEE,0x96,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0xEE,0x9E,0xEF,0x9E,0x30,0x9F,0x92,0xAF, +0x54,0xCF,0x54,0xCF,0x74,0xCF,0x74,0xCF,0x74,0xC7,0x74,0xC7,0x94,0xC7,0x94,0xC7,0x72,0xBF,0x30,0xAF,0xEE,0xA6,0xEE,0xA6,0xEE,0x9E,0xED,0x9E,0xCD,0x9E,0xED,0x9E,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0E,0x97,0x2F,0x8F,0x2F,0x8F,0x2F,0x8F,0x2F,0x8F,0x2F,0x87,0x2F,0x87,0x30,0x8F,0x30,0x8F,0x2F,0x8F,0x2F,0x8F,0x2E,0x97,0x0E,0x97,0x2F,0x8F,0x4F,0x87, +0x2F,0x8F,0x2F,0x8F,0x2F,0x8F,0x2F,0x8F,0x2F,0x8F,0x2F,0x8F,0x2F,0x8F,0x2F,0x8F,0x2F,0x8F,0x2F,0x8F,0x2F,0x8F,0x2F,0x8F,0x2F,0x8F,0x2F,0x8F,0x2F,0x8F,0x2F,0x8F,0x2F,0x8F,0x2F,0x8F,0x2F,0x8F,0x2E,0x97,0x0E,0x97,0x0E,0x97,0x0D,0x97,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x97,0x0E,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97, +0x0F,0xA7,0x71,0xB7,0x71,0xB7,0x50,0xAF,0x50,0xAF,0x70,0xAF,0x70,0xAF,0x70,0xAF,0x70,0xAF,0x0E,0x9F,0xEE,0x96,0x0E,0x97,0x2E,0x9F,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0E,0x9F,0xED,0x9E,0x4F,0xA7,0x0E,0x9F,0x0E,0x9F,0x0D,0x9F,0x0D,0x97,0x0D,0x9F,0x0D,0x9F,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0E,0x97,0x0E,0x97,0x0E,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0E,0x97,0x0E,0x97,0x0E,0x97,0x0E,0x97,0x0E,0x97,0x0E,0x97,0x0E,0x97,0x0E,0x97,0x0E,0x97,0x70,0xA7,0xF5,0xC7,0xB1,0xA7,0x0F,0x97,0x0F,0x9F,0xEE,0x96,0x0E,0x97, +0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97, +0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x9F,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x9F,0x2E,0x97,0x2E,0x97,0x2E,0x97,0x2E,0x97,0x2E,0x97,0x2E,0x97,0x2E,0x97,0x2E,0x97,0xED,0x86,0x4E,0x8F,0x8E,0x97,0x2C,0x87,0x07,0x56,0x22,0x35,0x42,0x35,0xE4,0x45,0x06,0x56,0x47,0x66,0x88,0x76,0x29,0x7F,0xC6,0x5E,0xE2,0x35,0xC1,0x2D,0x61,0x2D,0xA8,0x6E,0x4D,0x9F,0xED,0x9E,0x0D,0x9F,0x2E,0x97,0x2F,0x9F,0xEE,0x96,0x0F,0x9F, +0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0xED,0x96,0xEE,0x96,0xEE,0x96,0xEE,0x96,0xEE,0x96,0xEE,0x96,0xEE,0x96,0xEE,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x9E,0xED,0x9E,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0x0E,0x97,0x0E,0x97,0x0E,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0xEF,0x96,0x0F,0x97,0x2D,0x97,0x2B,0x97,0x0C,0x97,0xD0,0xA6,0x44,0x22,0x60,0x00,0xA0,0x00,0x66,0x5C,0x50,0xA7,0xEF,0x96,0xEE,0x8E,0x4F,0x97,0x0E,0x9F,0x0D,0x9F, +0x0D,0x9F,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0E,0x97,0x0E,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97, +0x0E,0x97,0x2D,0x97,0x2C,0x97,0x2C,0x97,0x0E,0x97,0xEF,0x96,0xEF,0x96,0x0C,0x9F,0x68,0xA7,0x66,0xA7,0xEA,0xC7,0x4D,0xBF,0xF8,0xEF,0xFB,0xEF,0x9C,0xEF,0xBC,0xF7,0xF7,0xE7,0xD1,0xC7,0xED,0xC7,0xA9,0xB7,0x47,0x9F,0x6B,0xA7,0x2D,0x9F,0xEE,0x96,0xEE,0x96,0x0E,0x97,0x0D,0x97,0x0D,0x97,0xEE,0x96,0xEE,0x96,0xEE,0x96,0x0F,0x9F,0xCE,0x9E,0xCE,0x9E,0xCE,0x9E,0xCE,0x9E,0xEE,0x9E,0xEF,0x9E,0xEF,0x9E,0xEE,0x9E,0xEF,0x9E,0xEE,0x96,0xEE,0x96,0xEE,0x96,0x0E,0x97,0x0E,0x97,0x0E,0x97,0x0E,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97, +0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0xED,0x9E,0x0E,0x97,0x2F,0x8F,0x2F,0x8F,0x2F,0x8F,0x2F,0x8F,0x2F,0x87,0x2F,0x87,0x0F,0x8F,0x0F,0x8F,0x2F,0x8F,0x2F,0x8F,0x0E,0x97,0x0E,0x97,0x0F,0x8F,0x2F,0x87,0x2F,0x8F,0x2F,0x8F,0x2F,0x8F,0x2F,0x8F,0x2F,0x8F,0x2F,0x8F,0x2F,0x8F,0x2F,0x8F,0x2F,0x8F,0x2F,0x8F,0x2F,0x8F,0x2F,0x8F,0x2F,0x8F,0x2F,0x8F,0x2F,0x8F,0x2F,0x8F,0x2F,0x8F,0x2F,0x8F,0x2F,0x8F,0x2E,0x97,0x0E,0x97,0x0E,0x97,0x0D,0x97,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97, +0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0xCE,0xA6,0x30,0xAF,0x50,0xAF,0x50,0xAF,0x50,0xAF,0x50,0xAF,0x90,0xAF,0x70,0xAF,0x70,0xA7,0x0E,0x97,0xEE,0x96,0x0D,0x97,0x2E,0x9F,0xED,0x96,0x0D,0x97,0x0D,0x97,0x0E,0x9F,0xED,0x9E,0x4F,0xA7,0x0E,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x97,0x0D,0x9F,0x0D,0x9F,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0E,0x97,0x0E,0x97, +0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0E,0x97,0x0E,0x97,0x0E,0x97,0x0E,0x97,0x0E,0x97,0x0E,0x97,0x0E,0x97,0x0E,0x97,0xEE,0x96,0xB1,0xAF,0xF6,0xD7,0xD2,0xAF,0x0E,0x97,0x0E,0x97,0x0E,0x97,0x0E,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x9F,0x0D,0x9F,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97, +0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x9F,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x9F,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x9F, +0x2D,0x97,0x2D,0x97,0x2D,0x97,0x0D,0x97,0x0D,0x97,0x0E,0x97,0x0E,0x97,0x0E,0x97,0x2E,0x97,0x2D,0x8F,0x2D,0x8F,0x4D,0x8F,0x2B,0x87,0x0A,0x77,0x2A,0x77,0x4A,0x7F,0x0D,0x8F,0x0E,0x97,0x2E,0xA7,0xED,0x9E,0x4D,0x97,0xEA,0x76,0x25,0x46,0xC8,0x5E,0x4A,0x7F,0x6C,0x97,0x2B,0x97,0x2C,0x9F,0xCC,0x8E,0x2E,0x9F,0xEE,0x96,0x0E,0x9F,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0E,0x9F,0x0E,0x9F,0x2E,0x9F,0x2F,0xA7,0x2F,0xA7,0x2F,0xA7,0x2F,0xA7,0x2F,0xA7,0x2F,0xA7,0x2F,0xA7,0x2F,0x9F,0x2F,0x9F,0x2E,0x9F,0x2E,0xA7,0x2E,0xA7,0x2E,0xA7,0x2F,0xA7,0x2F,0x9F,0x2F,0x9F,0x2F,0x9F,0x2F,0x9F,0x0E,0x97,0x0E,0x97,0x0E,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97, +0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0xEF,0x9E,0x0F,0x97,0x2D,0x97,0x2B,0x97,0x6D,0xA7,0xEA,0x6C,0x40,0x00,0x41,0x00,0x20,0x00,0x86,0x53,0x72,0xB7,0xCE,0x8E,0x2F,0x97,0x2E,0x97,0xCD,0x96,0x0D,0x9F,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0E,0x97,0x0E,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97, +0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x9F,0x0D,0x9F,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0F,0x97,0x0E,0x97,0x2C,0x97,0x2C,0x97,0x0E,0x97,0xEF,0x96,0x0E,0x97,0x2A,0x9F,0x86,0xA7,0x86,0xA7,0x49,0xAF,0x0F,0xB7,0xF6,0xDF,0xF8,0xE7,0xFA,0xF7,0xFA,0xF7,0xF6,0xE7,0x8F,0xBF,0x29,0xA7,0x48,0xA7,0x89,0xA7,0x4B,0x9F,0x0D,0x97,0x0E,0x97,0x0E,0x97,0x2D,0x97,0x0D,0x97,0x0D,0x97,0x0E,0x9F,0x0E,0x9F,0x0D,0x97,0x0D,0x97, +0x2C,0x97,0x2C,0x97,0x2C,0x97,0x2C,0x97,0x2D,0x97,0x2D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x2D,0x97,0x2D,0x97,0x0D,0x97,0x0D,0x97,0x2E,0x97,0x2D,0x97,0xED,0x8E,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0xED,0x9E,0x0E,0x97,0x2F,0x8F,0x2F,0x8F,0x2F,0x8F,0x2F,0x8F,0x2F,0x87,0x2F,0x87,0x2F,0x8F,0x30,0x8F,0x2F,0x8F,0x2E,0x8F,0x0E,0x97,0x0E,0x97,0x2F,0x8F,0x4F,0x87, +0x2F,0x8F,0x2F,0x8F,0x2F,0x8F,0x2F,0x8F,0x2F,0x8F,0x2F,0x8F,0x2F,0x8F,0x2F,0x8F,0x2F,0x8F,0x2F,0x8F,0x2F,0x8F,0x2F,0x8F,0x2F,0x8F,0x2F,0x8F,0x2F,0x8F,0x2F,0x8F,0x2F,0x8F,0x2F,0x8F,0x2F,0x8F,0x2E,0x97,0x0E,0x97,0x0E,0x97,0x0D,0x97,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97, +0x10,0xAF,0x51,0xB7,0x10,0xAF,0x0F,0xA7,0xEF,0xA6,0xEF,0x9E,0x50,0xA7,0x2F,0x9F,0x0E,0x9F,0x0E,0x97,0x2E,0x9F,0x0D,0x97,0x0E,0x9F,0xED,0x96,0x2E,0x9F,0x0E,0x9F,0x0E,0x9F,0xED,0x9E,0x4F,0xA7,0x0E,0x9F,0x0D,0x9F,0x0D,0x97,0x0D,0x97,0x0D,0x9F,0x0D,0x9F,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0E,0x97,0x0E,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0E,0x97,0x0E,0x97,0x0E,0x97,0x0E,0x97,0x0E,0x97,0x4F,0x9F,0x0F,0x97,0x2F,0x97,0xEE,0x96,0x4F,0x9F,0xEE,0x96, +0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x9F,0x0D,0x9F,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x9F,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97, +0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x9F,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0xED,0x9E,0xED,0x9E,0xED,0x9E,0xEE,0x9E,0xEE,0x9E,0xEE,0x9E,0x0E,0x9F,0x0D,0x9F,0x0D,0x97,0x2C,0x97,0x2C,0x97,0x4C,0x8F,0x4B,0x8F,0x2D,0x97,0x0D,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x97,0x2E,0x97,0x4E,0x97,0x4D,0x97,0x2C,0x97,0x2C,0x97,0x2C,0x97,0x2C,0x8F,0x2C,0x8F,0x2C,0x8F,0x0D,0x97,0x0D,0x97, +0x0D,0x9F,0x0D,0x97,0x0D,0x9F,0x0D,0x9F,0x2E,0x9F,0x6F,0xAF,0x4F,0xA7,0x2F,0xA7,0x50,0xAF,0x2F,0xA7,0x2F,0xA7,0x50,0xAF,0x4F,0xA7,0x4F,0xA7,0x6F,0xAF,0x2F,0xA7,0x4F,0xA7,0x2F,0xA7,0x2F,0xA7,0x2F,0xA7,0x4F,0xA7,0x2F,0x9F,0x4F,0xA7,0x4F,0xA7,0x4F,0xA7,0xED,0x96,0x0E,0x9F,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x9F,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0xED,0x96,0x0E,0x97,0x2D,0x97,0xEC,0x96,0x70,0xB7,0x8B,0x6C,0x40,0x00,0x01,0x00,0x00,0x00,0x48,0x5B,0x92,0xAE,0x2F,0x8E,0x8F,0x8E,0xCE,0x8E,0x0D,0x9F,0x0C,0x9F, +0x0D,0x9F,0x0D,0x9F,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x9F,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0E,0x97,0x0E,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x9F,0x0D,0x9F,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97, +0x0F,0x97,0x0E,0x97,0x0D,0x97,0x2C,0x97,0x0D,0x97,0x0F,0x97,0x0E,0x97,0x2A,0x97,0x86,0x9F,0xA6,0xA7,0x69,0xAF,0x0C,0xAF,0x91,0xC7,0xF5,0xEF,0xF5,0xEF,0xF6,0xF7,0xF3,0xDF,0x0B,0xAF,0x49,0xAF,0x88,0xAF,0x28,0x9F,0x4B,0x9F,0xEC,0x96,0x0D,0x97,0x2C,0x97,0x2C,0x97,0x2C,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0C,0x97,0x2C,0x97,0x2C,0x97,0x2C,0x97,0x2C,0x97,0x2D,0x97,0x2D,0x97,0x2D,0x97,0x2D,0x97,0x2D,0x97,0x2C,0x97,0x2C,0x97,0x0C,0x97,0x0C,0x97,0x0C,0x97,0x0C,0x9F,0x0C,0x9F,0x0C,0x9F,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0xED,0x96,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97, +0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0xED,0x9E,0x0E,0x97,0x2F,0x8F,0x2F,0x8F,0x2F,0x8F,0x2F,0x8F,0x4E,0x87,0x2F,0x87,0x2F,0x8F,0x30,0x8F,0x2F,0x8F,0x2E,0x8F,0x0E,0x97,0x0E,0x97,0x2F,0x8F,0x4F,0x87,0x2F,0x8F,0x2F,0x8F,0x2F,0x8F,0x2F,0x8F,0x2F,0x8F,0x2F,0x8F,0x2F,0x8F,0x2F,0x8F,0x2F,0x8F,0x2F,0x8F,0x2F,0x8F,0x2F,0x8F,0x2F,0x8F,0x2F,0x8F,0x2F,0x8F,0x2F,0x8F,0x2F,0x8F,0x2F,0x8F,0x2F,0x8F,0x0E,0x8F,0x0E,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x9F,0x0D,0x9F,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x9F, +0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x9F,0x0D,0x9F,0xED,0x96,0x0D,0x9F,0x4F,0xA7,0x30,0xB7,0x71,0xB7,0x30,0xAF,0xCE,0xA6,0xCE,0x9E,0xCE,0x9E,0xCE,0x96,0xEE,0x96,0xEE,0x96,0xEE,0x96,0xEE,0x96,0xEE,0x96,0xED,0x96,0xED,0x96,0xED,0x9E,0xED,0x9E,0xCD,0x96,0x2E,0xA7,0x6F,0xA7,0x2E,0x9F,0xED,0x96,0x0D,0x9F,0x0D,0x9F,0x0D,0x97,0x0D,0x9F,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97, +0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0E,0x97,0x0E,0x97,0x0E,0x97,0x0E,0x97,0x0E,0x97,0x0E,0x97,0x0E,0x97,0x0E,0x97,0x0E,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97, +0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97, +0xED,0x9E,0xED,0x9E,0xED,0x9E,0xED,0x9E,0xED,0x9E,0xED,0xA6,0xCD,0xA6,0xCD,0xA6,0xCD,0x9E,0xCD,0x9E,0xCD,0x9E,0xED,0x9E,0xED,0x96,0xEC,0x96,0x0C,0x97,0x0B,0x97,0x0B,0x97,0x0C,0x97,0x0C,0x8F,0x0D,0x8F,0x0E,0x8F,0xEE,0x96,0xCE,0x9E,0xCE,0x9E,0xCE,0xA6,0xED,0x9E,0x0D,0x97,0x0C,0x8F,0x2C,0x8F,0x2C,0x8F,0x0D,0x97,0x0D,0x97,0x0D,0x97,0xED,0x96,0x0D,0x97,0xED,0x9E,0x2E,0xA7,0x70,0xAF,0x50,0xAF,0x2F,0xAF,0x2F,0xAF,0x0F,0xA7,0x70,0xAF,0x2F,0xA7,0x0F,0xA7,0x4F,0xAF,0x2F,0xA7,0x4F,0xA7,0x70,0xAF,0x70,0xAF,0x2F,0xA7,0x70,0xAF,0x90,0xAF,0x2F,0xA7,0xCD,0x96,0xEE,0x96,0x4F,0xA7,0xED,0x96,0x0E,0x9F,0xED,0x96,0x0D,0x9F,0x0D,0x97,0x0D,0x9F,0x0D,0x97, +0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x2B,0x97,0x0C,0x97,0x0E,0x9F,0x31,0xAF,0xAE,0x8D,0x00,0x09,0x00,0x00,0x01,0x08,0x00,0x00,0x20,0x00,0x60,0x00,0x80,0x00,0xC0,0x00,0x6A,0x6D,0x6E,0xA7,0xEA,0x96,0xED,0x96,0x0D,0x9F,0xED,0x96,0xED,0x96,0x2D,0x9F,0x0D,0x97,0xEC,0x96,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97, +0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0xEE,0x96,0x0E,0x97,0x0D,0x97,0x2B,0x97,0x49,0x9F,0x88,0xA7,0x46,0x9F,0xEB,0xBF,0xCC,0xBF,0x2C,0xB7,0xCF,0xCF,0x6D,0xC7,0x2A,0xAF,0xED,0xCF,0x68,0xAF,0x27,0x9F,0x8A,0xA7,0x2B,0x9F,0x2D,0x9F,0x0C,0x97,0x2C,0x97,0x2B,0x97,0x0C,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0C,0x97,0x2B,0x97, +0x0D,0x97,0x0D,0x97,0x0D,0x97,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x9E,0xED,0x9E,0xED,0x9E,0xED,0x9E,0xED,0x9E,0x0C,0x9F,0xED,0x9E,0xED,0x9E,0xED,0x9E,0xED,0x9E,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0xED,0x96,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0xED,0x9E,0x0E,0x97,0x2F,0x8F,0x2F,0x8F,0x0F,0x8F,0x2F,0x8F,0x2E,0x87,0x2F,0x87,0x2F,0x8F,0x0F,0x8F,0x2F,0x8F,0x2E,0x8F,0x0E,0x97,0x0E,0x97,0x0F,0x8F,0x2F,0x87, +0x2F,0x8F,0x2F,0x8F,0x2F,0x8F,0x2F,0x8F,0x2F,0x8F,0x2F,0x8F,0x2F,0x8F,0x2F,0x8F,0x2F,0x8F,0x2F,0x8F,0x2F,0x8F,0x2F,0x8F,0x2F,0x8F,0x2F,0x8F,0x2F,0x8F,0x2F,0x8F,0x2F,0x8F,0x2F,0x8F,0x2E,0x8F,0x0E,0x8F,0x0E,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0x0D,0x9F,0x4F,0xA7, +0xB2,0xC7,0xF3,0xC7,0xB2,0xBF,0x30,0xAF,0x30,0xA7,0x2F,0xA7,0x2F,0xA7,0x4F,0xA7,0x4F,0xA7,0x4F,0x9F,0x4F,0xA7,0x4F,0xA7,0x4F,0xA7,0x4F,0xA7,0x4F,0xA7,0x4F,0xA7,0x4F,0xA7,0x90,0xAF,0x8F,0xAF,0x2E,0xA7,0x0D,0x97,0x0D,0x97,0x0D,0x9F,0xED,0x96,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x9F,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0E,0x97,0x0E,0x97,0x0E,0x97,0x0E,0x97,0x0E,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97, +0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97, +0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x9F,0x0D,0x9F,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x9F,0x0D,0x9F,0x0D,0x97,0x0D,0x97,0x0C,0x97,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0xED,0x9E,0xED,0x9E,0xED,0x9E,0xED,0x96,0xED,0x96,0x0D,0x97,0x0C,0x97,0x0C,0x97,0x0C,0x97,0x2B,0x97,0x2B,0x8F,0x2C,0x8F,0x2C,0x87,0x2D,0x8F,0xED,0x96,0xED,0x96,0xCD,0x9E,0xED,0x9E,0xED,0x9E,0xED,0x9E,0xED,0x96,0xED,0x96,0xED,0x9E,0xED,0x9E,0xED,0x9E, +0x0D,0x9F,0xED,0x96,0x0D,0x9F,0xED,0x9E,0x0E,0xA7,0x4F,0xAF,0x50,0xAF,0x2F,0xAF,0x30,0xAF,0x71,0xB7,0x30,0xAF,0x50,0xAF,0x70,0xB7,0x70,0xB7,0x91,0xB7,0x4F,0xAF,0xCD,0x96,0x0E,0x9F,0xEE,0x9E,0x0E,0x9F,0x0F,0x9F,0x2F,0x9F,0xEE,0x96,0x0E,0x9F,0x4F,0xA7,0xED,0x96,0x0E,0x97,0xED,0x96,0x0D,0x9F,0xED,0x96,0x0D,0x9F,0xED,0x9E,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0xED,0x96,0x6A,0x97,0xCB,0x8E,0x31,0xAF,0x87,0x4B,0x60,0x00,0x40,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x20,0x00,0x40,0x00,0x40,0x00,0x60,0x00,0x0B,0x75,0x4F,0xAF,0x2A,0x9F, +0x0D,0x9F,0xED,0x96,0x0D,0x9F,0x0D,0x9F,0xED,0x96,0xEC,0x96,0x0D,0x97,0x2D,0x9F,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97, +0x0C,0x9F,0x0C,0x9F,0x0D,0x9F,0x0E,0x9F,0x0E,0x97,0x0E,0x97,0x0D,0x97,0x0D,0x97,0x0C,0x97,0x6A,0x9F,0x87,0x9F,0xC6,0xAF,0x26,0x9F,0x09,0xA7,0xED,0xC7,0x29,0xAF,0x28,0xA7,0x89,0xAF,0x68,0xA7,0x69,0xA7,0x4A,0x9F,0xEA,0x96,0x0C,0x97,0x0C,0x97,0x2C,0x97,0x2C,0x97,0x0C,0x9F,0x0E,0x9F,0xEE,0x9E,0x0E,0x97,0x0D,0x97,0x2C,0x97,0x0D,0x9F,0x0D,0x9F,0x0E,0x9F,0xEE,0x9E,0xEE,0x9E,0xEE,0x9E,0xEE,0x9E,0xEE,0x9E,0xEE,0x9E,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0xEE,0x9E,0xEE,0x9E,0xEE,0x9E,0xEE,0x9E,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97, +0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0xED,0x9E,0x0E,0x97,0x2E,0x8F,0x2F,0x8F,0x0F,0x8F,0x0E,0x8F,0x2E,0x87,0x2E,0x87,0x0F,0x8F,0x0F,0x8F,0x0F,0x8F,0x0E,0x8F,0x0E,0x8F,0x0E,0x97,0x0E,0x8F,0x2F,0x87,0x0E,0x8F,0x0E,0x8F,0x0E,0x8F,0x0E,0x8F,0x0E,0x8F,0x0E,0x8F,0x0E,0x8F,0x0E,0x8F,0x0E,0x8F,0x0E,0x8F,0x0E,0x8F,0x0E,0x8F,0x0E,0x8F,0x0E,0x8F,0x0E,0x8F,0x0E,0x8F,0x0F,0x8F,0x0F,0x8F,0x0E,0x8F,0x0E,0x8F,0x0E,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x9F,0x0D,0x9F, +0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0xED,0x96,0xED,0x96,0x0D,0x97,0x0D,0x97,0x2E,0x9F,0x6F,0xA7,0x92,0xBF,0xB2,0xBF,0x71,0xB7,0x2F,0xA7,0x0F,0xA7,0x0F,0xA7,0x0E,0x9F,0x2E,0x9F,0x2F,0x9F,0x2F,0x9F,0x2F,0x9F,0x2F,0x9F,0x2E,0xA7,0x2E,0xA7,0x2E,0xA7,0x2E,0xA7,0x2E,0x9F,0x2E,0x9F,0x0E,0x9F,0xED,0x96,0xED,0x96,0xED,0x96,0x0D,0x97,0xED,0x96,0x0D,0x9F,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97, +0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0E,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F, +0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F, +0x2D,0x97,0x2D,0x97,0x2D,0x97,0x2D,0x97,0x2D,0x97,0x2D,0x97,0x2D,0x97,0x0D,0x97,0x2D,0x97,0x0E,0x97,0x0E,0x97,0x2D,0x97,0x0D,0x97,0x2D,0x97,0x2D,0x97,0x2D,0x97,0x0D,0x97,0x0D,0x97,0x2C,0x97,0x2C,0x8F,0x2C,0x8F,0x2C,0x8F,0x2C,0x97,0x2C,0x8F,0x2C,0x8F,0x0D,0x97,0xED,0x96,0xCD,0x9E,0xCD,0x9E,0xCD,0x9E,0xED,0x9E,0x0D,0x97,0x0D,0x9F,0xED,0x96,0xED,0x9E,0xED,0x9E,0x0E,0xA7,0x50,0xAF,0x30,0xAF,0x30,0xAF,0x30,0xB7,0x30,0xB7,0x30,0xAF,0x0F,0xAF,0x30,0xAF,0x50,0xAF,0x0F,0xA7,0x0E,0xA7,0x2F,0xA7,0xED,0x9E,0xEE,0x9E,0x0E,0x9F,0xEE,0x96,0xCD,0x96,0xEE,0x96,0x0E,0x9F,0x4F,0xA7,0xED,0x96,0x0E,0x97,0xED,0x96,0x0D,0x97,0xED,0x96,0x0D,0x9F,0xED,0x9E, +0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0xED,0x96,0xED,0x96,0x49,0x8F,0x4E,0x9F,0xCE,0x8D,0x40,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x20,0x00,0x2E,0x85,0x31,0xAF,0x8A,0x8E,0x0E,0x9F,0x0E,0x9F,0xED,0x96,0xED,0x96,0x0D,0x9F,0x0D,0x9F,0xEC,0x96,0x0D,0x9F,0x0D,0x9F,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97, +0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x2B,0x9F,0x0C,0x9F,0x0D,0x9F,0xEE,0x9E,0xEE,0x9E,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0E,0x97,0x0C,0x97,0x6A,0x9F,0x68,0x9F,0x47,0x9F,0x89,0xA7,0x69,0xAF,0x69,0xAF,0x69,0xA7,0x28,0x9F,0x89,0xA7,0x4A,0x9F,0x0B,0x97,0x0C,0x9F,0xEC,0x96,0x0D,0x97,0x0C,0x9F,0x0C,0x9F,0x0D,0x9F,0xEE,0x9E,0xEF,0x9E,0xEF,0x96,0x0E,0x97,0x0D,0x97, +0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x9F,0x0E,0x97,0x0E,0x97,0x0E,0x97,0x0E,0x97,0x0E,0x97,0x0E,0x97,0x0E,0x97,0x0E,0x97,0x0E,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0xED,0x9E,0x0D,0x97,0x2E,0x8F,0x2F,0x8F,0x0F,0x8F,0x0E,0x8F,0x2E,0x87,0x2E,0x87,0x0F,0x8F,0x0F,0x8F,0x2F,0x8F,0x2E,0x8F,0x0E,0x8F,0x0E,0x97,0x0E,0x8F,0x2F,0x87, +0x0E,0x8F,0x0E,0x8F,0x0E,0x8F,0x0E,0x8F,0x0E,0x8F,0x0E,0x8F,0x0E,0x8F,0x0E,0x8F,0x0E,0x8F,0x0E,0x8F,0x0E,0x8F,0x0E,0x8F,0x0E,0x8F,0x0E,0x8F,0x0E,0x8F,0x0E,0x8F,0x2F,0x8F,0x0F,0x8F,0x0E,0x8F,0x0E,0x8F,0x0E,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x9F,0x4E,0x9F, +0x2F,0xAF,0x50,0xAF,0x2F,0xA7,0xEE,0x9E,0xEE,0x9E,0xEE,0x9E,0xEE,0x9E,0x0E,0x9F,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x9E,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x9F,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x9F,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97, +0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96, +0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0C,0x97,0x0C,0x97,0x0C,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0xCE,0x9E,0xEE,0x9E,0xED,0x96,0x0C,0x97,0x0C,0x97,0x0B,0x97,0x0B,0x97,0x2C,0x8F,0x2C,0x8F,0x2C,0x8F,0x0D,0x97,0xED,0x9E,0xED,0x9E,0xED,0x9E,0x0C,0x97,0x2C,0x8F, +0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x9E,0x0E,0xA7,0x50,0xAF,0x50,0xB7,0x30,0xB7,0x30,0xAF,0x30,0xB7,0x50,0xB7,0x30,0xAF,0x50,0xAF,0x30,0xAF,0x2F,0xA7,0x50,0xAF,0x2F,0xA7,0xEE,0x9E,0x2F,0x9F,0xEE,0x96,0xEE,0x96,0xEE,0x96,0x0E,0x97,0xEE,0x96,0x4F,0x9F,0xED,0x96,0x0E,0x97,0xED,0x96,0x0D,0x97,0xED,0x96,0x0D,0x97,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0x0D,0x97,0x0D,0x97,0x0D,0x97,0xED,0x96,0xED,0x96,0xED,0x96,0x2B,0x97,0x0F,0xA7,0xAF,0x95,0x40,0x00,0x00,0x00,0x00,0x08,0x00,0x00,0x00,0x00,0x21,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x8A,0x5B,0x8E,0x8D,0x0D,0x8E, +0xEE,0x9E,0xCD,0x96,0x0E,0x9F,0x0E,0x9F,0xED,0x96,0x0D,0x9F,0x0D,0x97,0xEC,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96, +0x0B,0x97,0xEC,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0x0C,0x97,0x2D,0x97,0xED,0x96,0xED,0x96,0x4D,0x9F,0x8B,0xA7,0x68,0x9F,0x48,0x9F,0x49,0xA7,0x4A,0x9F,0x4A,0xA7,0x2A,0x9F,0xEB,0x96,0xEC,0x96,0x0D,0x9F,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xEE,0x96,0xCF,0x96,0xCF,0x96,0xCF,0x96,0xEE,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0x0C,0x97,0x0C,0x97,0x0C,0x97,0x0C,0x97,0x0C,0x97,0x0D,0x97,0x0D,0x97,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96, +0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x9E,0x0D,0x97,0x2E,0x8F,0x2F,0x8F,0x0F,0x8F,0x0E,0x8F,0x2E,0x87,0x2E,0x87,0x0F,0x8F,0x0F,0x8F,0x2F,0x8F,0x2E,0x8F,0x0E,0x8F,0x0E,0x97,0x0E,0x8F,0x2F,0x87,0x0E,0x8F,0x0E,0x8F,0x0E,0x8F,0x0E,0x8F,0x0E,0x8F,0x0E,0x8F,0x0E,0x8F,0x0E,0x8F,0x0E,0x8F,0x0E,0x8F,0x0E,0x8F,0x0E,0x8F,0x0E,0x8F,0x0E,0x8F,0x0E,0x8F,0x0E,0x8F,0x2F,0x8F,0x0F,0x8F,0x0E,0x8F,0x0E,0x8F,0x0D,0x97,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96, +0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0x0D,0x97,0xEE,0x9E,0xEE,0xA6,0xEE,0x9E,0xEE,0x9E,0xED,0x9E,0xED,0x9E,0xED,0x9E,0x0D,0x9F,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x9E,0x0D,0x9F,0x0D,0x9F,0xED,0x96,0xED,0x96,0x0D,0x97,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96, +0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x9E,0xED,0x96,0xED,0x96,0xED,0x96,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0xED,0x96,0x0D,0x97,0x0D,0x97,0x0C,0x97,0x0C,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x9E,0xED,0x9E,0xED,0x9E,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96, +0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x9E,0xED,0x9E,0xED,0x9E,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x9E,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x9E, +0xED,0x9E,0xED,0x9E,0xED,0x9E,0xED,0x9E,0x0C,0x97,0x0C,0x97,0x0C,0x97,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xCE,0x9E,0xCE,0x9E,0xED,0x96,0xED,0x96,0x0C,0x97,0x0C,0x97,0x0C,0x97,0x0C,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0C,0x97,0x0C,0x97,0x0C,0x97,0x2C,0x8F,0x0D,0x97,0xED,0x96,0xED,0x9E,0xED,0x9E,0x0E,0xA7,0x50,0xAF,0x30,0xAF,0x30,0xB7,0xEF,0xAE,0x30,0xAF,0xEF,0xA6,0x30,0xAF,0x30,0xAF,0xEF,0xA6,0x2F,0xA7,0x0F,0xA7,0x4F,0xA7,0x6F,0xA7,0x70,0xA7,0x0E,0x97,0xEE,0x96,0x0E,0x97,0xEE,0x96,0x0E,0x97,0x4F,0x9F,0xED,0x8E,0x0E,0x97,0xED,0x96,0xED,0x96,0xED,0x96,0x0D,0x97,0xED,0x96, +0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xAC,0x96,0x52,0xB7,0x0F,0x8D,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x00,0x00,0x20,0x00,0x40,0x00,0x02,0x1A,0xCD,0x96,0xAD,0x96,0xEE,0x9E,0xED,0x96,0xCD,0x96,0x0D,0x9F,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96, +0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x9E,0xED,0x9E,0xED,0x9E,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0x0C,0x97,0x0D,0x97,0xED,0x96,0xED,0x96,0xED,0x9E,0xED,0x96,0xED,0x96,0x0C,0x97,0x0B,0x97,0x0D,0x97,0xCF,0x96,0xCE,0x96,0xEC,0x96,0x4A,0x9F,0x4A,0x9F,0x0A,0x9F,0x2B,0x9F,0xEA,0x96,0x0B,0x97,0x0C,0x97,0xEC,0x96,0xCD,0x96,0x0D,0x97,0xED,0x96,0xED,0x9E,0xED,0x9E,0xEE,0x9E,0xEE,0x9E,0xEE,0x9E,0xEE,0x96,0xED,0x96,0x0D,0x97, +0xED,0x9E,0xED,0x9E,0xEE,0x9E,0xEE,0x9E,0xED,0x9E,0xED,0x9E,0xED,0x9E,0xED,0x96,0x0C,0x97,0x0C,0x97,0x0C,0x97,0x0C,0x97,0x0C,0x97,0x0C,0x97,0x0C,0x97,0x0C,0x97,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x9E,0x0D,0x97,0x0E,0x8F,0x2F,0x8F,0x0E,0x8F,0x0E,0x8F,0x2E,0x87,0x2E,0x87,0x0F,0x8F,0x0F,0x8F,0x2F,0x8F,0x2E,0x8F,0x0E,0x8F,0x0E,0x97,0x0E,0x8F,0x2F,0x87, +0x0E,0x8F,0x0E,0x8F,0x0E,0x8F,0x0E,0x8F,0x0E,0x8F,0x0E,0x8F,0x0E,0x8F,0x0E,0x8F,0x0E,0x8F,0x0E,0x8F,0x0E,0x8F,0x0E,0x8F,0x0E,0x8F,0x0E,0x8F,0x0E,0x8F,0x0E,0x8F,0x2F,0x8F,0x0E,0x8F,0x0E,0x8F,0x0E,0x8F,0x0D,0x97,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0x0D,0x97,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x9E,0xED,0x9E,0xED,0x9E,0xED,0x96,0xED,0x96,0xED,0x96,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0x0D,0x97,0xED,0x96,0xEC,0x96,0xED,0x96, +0xCD,0x96,0xED,0x9E,0xED,0x9E,0xED,0x9E,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0xED,0x96,0xCD,0x96,0xED,0x96,0xED,0x9E,0xED,0x96,0xED,0x96,0xED,0x96,0x0D,0x97,0xED,0x96,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x9E,0xED,0x9E,0xED,0x9E,0xED,0x9E,0xED,0x96,0xED,0x96,0xED,0x96,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0xED,0x9E,0xED,0x9E,0xED,0x9E,0xED,0x96,0xED,0x96,0x0D,0x97,0x0D,0x97,0x0D,0x97,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0x0D,0x97,0x0D,0x97,0x0C,0x97,0x0C,0x97, +0x0D,0x97,0x0D,0x97,0x0D,0x97,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x9E,0xED,0x9E,0xED,0x9E,0xED,0x9E,0xED,0x9E,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0x0D,0x97,0x0D,0x97,0x0D,0x97,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x9E,0xED,0x9E,0xED,0x9E,0xED,0x9E,0xED,0x9E,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96, +0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x9E,0xED,0x9E,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0x0D,0x97,0x0D,0x97,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x9E,0xED,0x9E,0xCE,0x9E,0xED,0x9E,0xED,0x9E,0xED,0x9E,0xED,0x9E,0xEC,0x9E,0xEC,0x9E,0x0C,0x97,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x9E,0xED,0x9E,0xED,0x9E,0xED,0x9E,0xED,0x9E,0xEE,0x9E,0xED,0x9E,0xED,0x96,0xED,0x96,0xED,0x9E,0xED,0x9E,0xED,0x9E,0xED,0x9E,0xED,0x96,0xED,0x96,0x0D,0x97,0x0D,0x97,0xED,0x96,0xED,0x96,0xEC,0x96,0xEC,0x96, +0x0D,0x97,0xED,0x96,0x0D,0x97,0xED,0x9E,0x0E,0xA7,0x50,0xAF,0x30,0xAF,0x10,0xAF,0x51,0xB7,0x10,0xAF,0x10,0xAF,0xEF,0xA6,0x0F,0xAF,0x50,0xAF,0xCE,0x9E,0xAD,0x9E,0x0E,0x97,0xED,0x96,0xCD,0x8E,0x0E,0x97,0xCD,0x8E,0x0E,0x97,0xCD,0x8E,0x2E,0x97,0x4F,0x9F,0xED,0x8E,0x0E,0x97,0x0D,0x97,0x0D,0x97,0xED,0x96,0x0D,0x97,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0x30,0xAF,0x0B,0x75,0x01,0x09,0x00,0x00,0x01,0x00,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x21,0x00,0x00,0x00,0x20,0x08,0x00,0x00,0x61,0x08,0x20,0x00,0xA4,0x21, +0xF2,0xB7,0x91,0xAF,0x2F,0xA7,0xCD,0x96,0x0E,0x9F,0x0D,0x9F,0xAC,0x8E,0x0D,0x9F,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0x0D,0x97,0x0D,0x97,0x0D,0x97,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x9E,0xED,0x9E,0xED,0x9E,0xED,0x9E,0xED,0x9E,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96, +0xEE,0x96,0xED,0x96,0x0C,0x97,0x0C,0x97,0xEC,0x9E,0xED,0x9E,0xEE,0x9E,0xED,0x96,0x0C,0x97,0x0C,0x97,0x2D,0x97,0xED,0x96,0xED,0x96,0xED,0x96,0xEB,0x96,0xEB,0x96,0x0C,0x97,0x0D,0x97,0x2D,0x97,0xED,0x96,0x0D,0x97,0x2D,0x9F,0xED,0x96,0x0D,0x9F,0xED,0x9E,0xED,0x9E,0xED,0x9E,0xED,0x9E,0xED,0x9E,0xED,0x96,0x0C,0x97,0x0C,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0x0C,0x97,0x0C,0x97,0xEC,0x9E,0xEC,0x9E,0xEC,0x9E,0xED,0x9E,0xED,0x9E,0xED,0x9E,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96, +0xED,0x9E,0xED,0x9E,0xED,0x9E,0xED,0x9E,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x9E,0x0D,0x97,0x0E,0x8F,0x0F,0x87,0x0E,0x8F,0x0E,0x8F,0x2E,0x87,0x2E,0x87,0x0F,0x8F,0x0F,0x8F,0x0F,0x87,0x0E,0x8F,0x0D,0x8F,0xED,0x96,0x0E,0x8F,0x2F,0x87,0x0E,0x8F,0x0E,0x8F,0x0E,0x8F,0x0E,0x8F,0x0E,0x8F,0x0E,0x8F,0x0E,0x8F,0x0E,0x8F,0x0E,0x8F,0x0E,0x8F,0x0E,0x8F,0x0E,0x8F,0x0E,0x8F,0x0E,0x8F,0x0E,0x8F,0x0E,0x8F,0x2F,0x8F,0x0E,0x8F,0x0E,0x8F,0x0E,0x8F,0x0D,0x97,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0x0D,0x97,0xED,0x96,0xED,0x96,0xED,0x96, +0xED,0x9E,0xED,0x9E,0xED,0x9E,0xED,0x9E,0xED,0x96,0xED,0x96,0xED,0x96,0x0D,0x97,0x0D,0x97,0x0D,0x97,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0x0D,0x97,0xED,0x96,0xED,0x96,0x0D,0x97,0x0D,0x97,0xED,0x96,0x0D,0x97,0xED,0x9E,0xED,0x96,0xED,0x96,0x0D,0x97,0x0D,0x97,0xED,0x96,0xED,0x96,0x0D,0x97,0x0C,0x97,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0x0D,0x9F,0x0D,0x9F,0xED,0x9E,0xED,0x9E,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97, +0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x9E,0xED,0x9E,0xED,0x9E,0xED,0x9E,0xED,0x9E,0xED,0x9E,0xED,0x96,0xED,0x96,0xED,0x96,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xEC,0x96,0xEC,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96, +0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96, +0xCE,0x9E,0xCD,0x9E,0xED,0x9E,0xED,0x96,0xED,0x96,0xEC,0x96,0x0C,0x97,0x0C,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xEC,0x9E,0xEC,0x9E,0xED,0x9E,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xEE,0x96,0xCE,0x9E,0xCE,0x9E,0xCD,0x9E,0xCD,0x9E,0xEC,0x96,0xEC,0x96,0xED,0x96,0xED,0x9E,0x0E,0xA7,0x50,0xAF,0x50,0xAF,0x30,0xAF,0x51,0xB7,0x30,0xB7,0x30,0xAF,0x30,0xAF,0x30,0xAF,0x50,0xAF,0x50,0xAF,0xEE,0x9E,0xED,0x8E,0x2E,0x97,0xED,0x8E,0x0E,0x97,0xCD,0x8E,0xF4,0xC7,0xD1,0xAF,0xEE,0x8E,0x4F,0x9F,0xED,0x8E,0x0E,0x97,0xED,0x96,0x0D,0x97,0x0D,0x97,0x0D,0x97,0xED,0x96, +0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0x0D,0x97,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0x0D,0x97,0x45,0x5C,0x80,0x00,0x60,0x00,0x01,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x20,0x00,0x20,0x00,0x00,0x00,0x20,0x08,0x00,0x00,0x00,0x08,0x00,0x00,0x00,0x00,0x81,0x00,0xE0,0x12,0x20,0x23,0x89,0x6D,0x2E,0x9F,0xCD,0x96,0xCD,0x96,0x0D,0x9F,0xCC,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96, +0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xEF,0x96,0xED,0x96,0x0C,0x97,0x0C,0x97,0xEC,0x96,0xED,0x96,0xED,0x96,0xEE,0x96,0xCD,0x96,0x2B,0x97,0x09,0x97,0xEA,0x96,0xEE,0x96,0xCF,0x96,0xEE,0x96,0x0C,0x9F,0xED,0x8E,0x0D,0x97,0xED,0x8E,0xED,0x96,0x0D,0x97,0xEC,0x96,0x0C,0x97,0xEC,0x96,0xEC,0x9E,0xED,0x9E,0xED,0x9E,0xEC,0x9E,0xEC,0x96,0x0B,0x97,0x0B,0x97,0x0B,0x97, +0x0C,0x97,0x0C,0x97,0x0C,0x97,0x0C,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xEE,0x96,0xCE,0x96,0xCE,0x96,0xCF,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x9E,0x0D,0x97,0x0E,0x8F,0x0F,0x8F,0x0E,0x8F,0x0E,0x8F,0x2E,0x87,0x2E,0x87,0x0F,0x8F,0x0F,0x8F,0x0F,0x87,0x0E,0x8F,0x0D,0x97,0xED,0x96,0x0E,0x8F,0x2F,0x87, +0x0E,0x8F,0x0E,0x8F,0x0E,0x8F,0x0E,0x8F,0x0E,0x8F,0x0E,0x8F,0x0E,0x8F,0x0E,0x8F,0x0E,0x8F,0x0E,0x8F,0x0E,0x8F,0x0E,0x8F,0x0E,0x8F,0x0E,0x8F,0x0E,0x8F,0x0E,0x8F,0x0F,0x87,0x0E,0x8F,0x0E,0x8F,0x0E,0x8F,0x0D,0x97,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xEC,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96, +0x0D,0x97,0xEC,0x96,0xEC,0x96,0xED,0x96,0xEC,0x96,0xEC,0x96,0x0C,0x97,0x0D,0x97,0x0C,0x97,0x0C,0x97,0x0C,0x97,0xED,0x96,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0x0D,0x97,0x0D,0x97,0xED,0x96,0xEC,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xEC,0x96,0xEC,0x96, +0xAF,0x9E,0xCE,0x9E,0xED,0x96,0x0B,0x97,0x0B,0x97,0x0C,0x97,0xED,0x96,0xCE,0x96,0xCE,0x96,0xCE,0x96,0xCC,0x96,0xEC,0x96,0x0B,0x9F,0x0B,0x97,0xEB,0x8E,0x0D,0x97,0xED,0x9E,0xAC,0x96,0xCD,0x9E,0xED,0x9E,0xCD,0x96,0xED,0x9E,0xEE,0x9E,0x0E,0x9F,0xEE,0x9E,0x0E,0x9F,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x9E,0xEC,0x96,0xEC,0x96,0x0B,0x8F,0x0C,0x97,0x0D,0x97,0xCD,0x96,0xEE,0x96,0xED,0x8E,0x2D,0x97,0x0B,0x8F,0x0B,0x8F,0x0B,0x8F,0xEC,0x96,0xCC,0x96,0xCC,0x9E,0xED,0x9E,0xED,0x9E,0xCD,0x96,0xEC,0x9E,0xEC,0x96,0xEC,0x96,0xEC,0x96,0x0B,0x97,0x0B,0x97,0xEB,0x96,0xEC,0x96,0xCD,0x96,0xEE,0x96,0xED,0x96,0x0C,0x8F,0x0C,0x97,0xEC,0x96,0xCD,0x9E,0xAE,0x9E, +0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96, +0x0D,0x97,0xEC,0x96,0xCC,0x96,0xCD,0x9E,0x0E,0xA7,0x4F,0xAF,0x30,0xAF,0x0F,0xAF,0x0F,0xAF,0x0F,0xA7,0x2F,0xA7,0x4F,0xA7,0x2F,0xA7,0x0E,0x9F,0xED,0x96,0xED,0x96,0xED,0x8E,0x0D,0x97,0xED,0x8E,0xED,0x8E,0x0D,0x8F,0xB0,0xA7,0x6F,0x9F,0x0E,0x8F,0x6F,0x9F,0xED,0x8E,0x0D,0x97,0x0D,0x97,0x0D,0x97,0xEC,0x96,0xED,0x96,0xEC,0x96,0xCC,0x9E,0xEC,0x96,0x0B,0x97,0xEC,0x96,0xCE,0x96,0xCE,0x96,0xCD,0x96,0xED,0x96,0xED,0x96,0x0D,0x97,0x0C,0x8F,0x2B,0x8F,0xEB,0x86,0xED,0x96,0xAE,0x9E,0x10,0xB7,0xC7,0x39,0x00,0x00,0x00,0x00,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, +0x20,0x00,0x20,0x00,0x09,0x74,0xCF,0xAE,0xCC,0x96,0xED,0x96,0xED,0x9E,0xCC,0x96,0x0A,0x97,0x0B,0x97,0xEC,0x96,0xCE,0x9E,0xCE,0x9E,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xCD,0x9E,0xCD,0x9E,0xEC,0x96,0x2B,0x97,0x0B,0x97,0xEC,0x9E,0xCD,0x9E,0xED,0x9E,0xEC,0x96,0xED,0x9E,0xCD,0x9E,0xEC,0x9E,0xEC,0x96,0xEC,0x9E,0xCC,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x9E,0xEC,0x96,0x0C,0x97,0x0C,0x97,0x0B,0x97,0xED,0x96,0xEC,0x96,0xEC,0x9E,0xEC,0x9E,0xEC,0x9E,0xEC,0x9E,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x9E,0xEC,0x9E, +0x0D,0x97,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xEC,0x9E,0xEC,0x9E,0xEC,0x9E,0xEC,0x9E,0xEC,0x9E,0xEC,0x9E,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0x0C,0x97,0xEC,0x96,0xCC,0x96,0xEC,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96, +0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xED,0x96,0xED,0x96,0x0E,0x97,0x0E,0x8F,0x0E,0x87,0x2E,0x87,0x2E,0x87,0x0E,0x87,0x0E,0x87,0x0E,0x8F,0xEE,0x8E,0xEE,0x8E,0x0E,0x8F,0x0E,0x8F,0x0E,0x8F,0x0E,0x87,0x0E,0x87,0x0E,0x87,0x0E,0x87,0x0E,0x87,0x0E,0x87,0x0E,0x87,0x0E,0x87,0x0E,0x87,0x0E,0x87,0x0E,0x87,0x0E,0x87,0x0E,0x87,0x0E,0x87,0x0E,0x87,0x0E,0x87,0x0E,0x87,0x0F,0x8F,0x0E,0x8F,0x0E,0x8F,0xEE,0x8E,0xED,0x96,0xED,0x96,0xED,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96, +0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xCE,0x96,0xCD,0x9E,0xEC,0x9E,0x0C,0x97,0x0C,0x8F,0x0C,0x8F,0xEC,0x96,0xED,0x96,0xEE,0x96,0xEE,0x96,0xCC,0x96,0xEB,0x9E,0xEC,0x96,0x0D,0x8F,0x0C,0x8F,0x0B,0x97,0x0E,0x9F,0xCD,0x96,0x0D,0x9F,0xED,0x96,0xEC,0x96,0x0D,0x9F,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xED,0x96,0xEC,0x96,0xCC,0x96,0xED,0x96, +0xEC,0x96,0xEB,0x96,0xEB,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xCC,0x96,0xEC,0x96,0xEC,0x9E,0xCC,0x96,0xEC,0x96,0xED,0x96,0xEC,0x96,0xCC,0x96,0xCC,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEE,0x96,0xED,0x96,0xED,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0x0D,0x97,0xEC,0x96,0xEB,0x96,0x0C,0x97,0xCD,0x96,0x0D,0x9F,0xED,0x9E,0xED,0x96,0x0C,0x97,0xEC,0x96,0xCB,0x8E,0x8A,0x86,0xCB,0x8E,0xAA,0x8E,0xCB,0x8E,0xEC,0x96,0xEC,0x96,0xED,0x96,0xCC,0x96,0xED,0x9E, +0x2C,0x97,0xCA,0x8E,0xEB,0x8E,0x2C,0x97,0x0C,0x8F,0xEC,0x8E,0xED,0x96,0xEE,0x9E,0xEE,0x9E,0xCD,0x96,0xED,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x9E,0xEC,0x9E,0xEC,0x9E,0xEC,0x96,0xED,0x96,0xEC,0x96,0x0C,0x97,0x0B,0x97,0xEB,0x96,0xEC,0x96,0xCD,0x96,0xEE,0x96,0xED,0x96,0x0C,0x8F,0x0C,0x97,0xEC,0x96,0xCD,0x9E,0xAE,0x9E,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96, +0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xED,0x96,0xED,0x96,0xCC,0x96,0xCD,0x9E,0xEE,0xA6,0x2F,0xAF,0x50,0xAF,0x2F,0xAF,0x0F,0xAF,0x2F,0xA7,0x2F,0xAF,0x4F,0xAF,0x4F,0xA7,0x0E,0x9F,0xED,0x96,0xED,0x96,0xED,0x96,0x0D,0x97,0x0D,0x97,0x0D,0x97,0xED,0x8E,0x0D,0x8F,0xCD,0x8E,0x0E,0x8F,0x4F,0x9F,0xCD,0x8E,0x0D,0x97,0xED,0x96,0xED,0x96,0xEC,0x96,0xED,0x96,0xEC,0x96, +0xCD,0x9E,0xEC,0x96,0x0C,0x97,0xEC,0x96,0xCE,0x96,0xCD,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x8E,0x2C,0x97,0x0B,0x8F,0x2D,0x97,0xCE,0x9E,0x31,0xB7,0x88,0x6C,0x82,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x20,0x00,0x40,0x00,0xE9,0x73,0x52,0xBF,0x0E,0x9F,0xCC,0x8E,0xED,0x96,0xEC,0x9E,0x0B,0x97,0x0B,0x97,0xEC,0x96,0xCE,0x9E,0xCD,0x9E,0xEC,0x96,0xEC,0x96,0xED,0x96,0xEC,0x96,0xEC,0x9E,0xCC,0x9E,0xED,0x96,0xED,0x8E,0xEC,0x96,0xEB,0x9E,0xEC,0x9E,0xCC,0x96,0xEE,0x96,0xCD,0x96,0xCD,0x96,0xEE,0x9E,0xCE,0x8E,0x0E,0x9F,0xEC,0x96, +0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0x0D,0x97,0xED,0x96,0xED,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xED,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xED,0x96,0xED,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x9E,0xEC,0x9E,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96, +0xEC,0x96,0xEC,0x96,0xEC,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0x0D,0x9F,0x0D,0x9F,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xED,0x96,0x0D,0x97,0xEC,0x96,0xEC,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xED,0x96,0xED,0x96,0x0E,0x97,0x0E,0x8F,0x0E,0x87,0x2E,0x87,0x2E,0x87,0x0E,0x87,0x0E,0x87,0x0E,0x8F,0x0E,0x8F,0x0E,0x8F,0x0E,0x8F,0x0E,0x8F,0x0E,0x8F,0x0E,0x87, +0x0E,0x87,0x0E,0x87,0x0E,0x87,0x0E,0x87,0x0E,0x87,0x0E,0x87,0x0E,0x87,0x0E,0x87,0x0E,0x87,0x0E,0x87,0x0E,0x87,0x0E,0x87,0x0E,0x87,0x0E,0x87,0x0E,0x87,0x0E,0x87,0x0F,0x87,0x0E,0x8F,0x0E,0x8F,0xEE,0x8E,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96, +0xCD,0x9E,0xCD,0x96,0xED,0x96,0x0C,0x97,0x0B,0x97,0x0C,0x97,0xED,0x96,0xED,0x96,0xCD,0x96,0x0D,0x9F,0xEC,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0x2D,0x97,0x0B,0x8F,0x8C,0x8E,0xED,0x96,0xAC,0x96,0x0D,0x9F,0xAC,0x96,0xED,0x96,0x0D,0x9F,0x0C,0x97,0xEC,0x96,0x0C,0x97,0xEC,0x96,0xEC,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0x0D,0x97,0x0C,0x97,0x0C,0x97,0x0C,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x97,0x0D,0x8F,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96, +0x2C,0x8F,0x0C,0x8F,0xED,0x96,0xEE,0x96,0xCD,0x9E,0xCD,0x9E,0xEC,0x9E,0xEB,0x9E,0xEB,0x96,0x0C,0x97,0xED,0x96,0xEE,0x96,0xEE,0x96,0xED,0x96,0xCC,0x96,0xEC,0x9E,0x0C,0x97,0xEC,0x8E,0x0C,0x97,0xEC,0x8E,0x0C,0x97,0xEC,0x96,0x4E,0xA7,0x8F,0xAF,0x4E,0xA7,0xAF,0xAF,0x4E,0xA7,0xAB,0x8E,0x2D,0x9F,0xCC,0x8E,0x0D,0x9F,0xCC,0x96,0xED,0x9E,0xEC,0x96,0x8D,0x9F,0x0B,0x8F,0x2B,0x97,0xEC,0x96,0xCD,0x9E,0xAE,0x9E,0x8E,0x9E,0xCE,0x9E,0xEE,0x9E,0x0D,0x97,0x0C,0x97,0x0C,0x97,0xEC,0x9E,0xEC,0x9E,0xEC,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xEC,0x96,0x0C,0x97,0xEC,0x96,0xEC,0x96,0xCD,0x96,0xEE,0x96,0xED,0x96,0x0C,0x97,0x0C,0x97,0xEC,0x96,0xCC,0x9E,0xCD,0x9E, +0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96, +0xEC,0x96,0xED,0x96,0xED,0x96,0xCD,0x9E,0xEE,0xA6,0x2F,0xAF,0x50,0xAF,0x30,0xAF,0x0F,0xAF,0x2F,0xA7,0x4F,0xAF,0x4F,0xAF,0x4F,0xA7,0x0D,0x9F,0xED,0x96,0xED,0x96,0xED,0x96,0xCC,0x8E,0xED,0x8E,0x2E,0x97,0x0E,0x97,0x0D,0x97,0xED,0x8E,0x2E,0x97,0x4F,0x9F,0xCD,0x8E,0xED,0x96,0xED,0x96,0xED,0x96,0xCC,0x96,0xED,0x96,0xEC,0x96,0xCD,0x96,0xEC,0x96,0x0C,0x97,0xEC,0x96,0xED,0x96,0xED,0x96,0xEC,0x96,0xEC,0x96,0xCC,0x96,0x0D,0x97,0x0C,0x97,0xEC,0x8E,0xCD,0x96,0x6F,0x9E,0x81,0x22,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,0x00,0x00,0x00,0x00,0x00, +0x21,0x00,0x00,0x00,0xA0,0x08,0xC1,0x32,0xCD,0x96,0x0D,0x97,0xCD,0x96,0xED,0x9E,0xEB,0x96,0x0B,0x97,0xEC,0x96,0xCD,0x9E,0xCD,0x9E,0xEC,0x96,0x0C,0x97,0xED,0x96,0xEC,0x96,0xEB,0x9E,0xEC,0x9E,0xEE,0x96,0xEE,0x8E,0xED,0x96,0xEC,0x96,0xEB,0x9E,0x0D,0x97,0xED,0x96,0x0D,0x97,0xED,0x96,0xEE,0x96,0xEF,0x8E,0x2F,0x97,0xEC,0x8E,0xED,0x96,0xED,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xEC,0x96,0xEC,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96, +0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xEC,0x96,0xCC,0x8E,0xEC,0x96,0x0C,0x97,0x0D,0x97,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96, +0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xED,0x96,0xED,0x96,0xEE,0x8E,0x0E,0x8F,0x0E,0x87,0x2E,0x87,0x2E,0x87,0x0E,0x87,0x0E,0x87,0x0E,0x8F,0x0E,0x8F,0x0E,0x8F,0x0E,0x8F,0x0E,0x8F,0x0E,0x8F,0x0E,0x87,0x0E,0x87,0x0E,0x87,0x0E,0x87,0x0E,0x87,0x0E,0x87,0x0E,0x87,0x0E,0x87,0x0E,0x87,0x0E,0x87,0x0E,0x87,0x0E,0x87,0x0E,0x87,0x0E,0x87,0x0E,0x87,0x0E,0x87,0x0E,0x87,0x0F,0x87,0x0E,0x87,0x0E,0x8F,0x0E,0x8F,0xED,0x8E,0xED,0x96,0xED,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xEC,0x96,0xEC,0x96, +0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xCC,0x9E,0xED,0x96,0xEE,0x8E,0x0C,0x97,0xEB,0x96,0xEC,0x96,0xED,0x96,0xED,0x96,0x0C,0x9F,0xCB,0x96,0x0D,0x97,0xCD,0x8E,0xEE,0x9E,0xCD,0x9E,0xCC,0x96,0xEC,0x96,0x4F,0xA7,0x0E,0x9F,0xED,0x9E,0xED,0x96,0xED,0x96,0xEC,0x96,0x0D,0x97,0xEC,0x96,0xEC,0x96,0x0C,0x97,0xED,0x96,0xCC,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96, +0xED,0x96,0xED,0x96,0xED,0x96,0xCD,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x8E,0xEC,0x8E,0xED,0x96,0x0D,0x97,0xEC,0x8E,0x0C,0x8F,0x0D,0x8F,0x0D,0x8F,0x0C,0x8F,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0x2B,0x87,0x2C,0x8F,0x0D,0x8F,0xED,0x96,0xCD,0x9E,0xCC,0x9E,0xEB,0x9E,0xEB,0x9E,0xEC,0x96,0xED,0x96,0xED,0x8E,0xED,0x8E,0xED,0x96,0xEC,0x96,0xCC,0x96,0xCC,0x9E,0x2A,0x87,0x4B,0x8F,0x0B,0x8F,0xEC,0x96,0xAE,0x96,0xF0,0xA6,0x0A,0x6D,0x03,0x33,0x00,0x12,0x44,0x3B,0xAC,0x85,0x10,0xA7,0xAE,0x96,0x0D,0x9F,0xCB,0x8E,0x0C,0x97, +0xB0,0xA6,0x4E,0x96,0x49,0x75,0xEF,0xA6,0xAC,0x96,0xED,0x9E,0xEC,0x96,0xEB,0x96,0xEC,0x96,0xCC,0x96,0xAC,0x96,0xCD,0x96,0xED,0x96,0xCC,0x96,0xCC,0x96,0xEC,0x96,0xEC,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xCD,0x96,0xED,0x96,0xED,0x96,0x0C,0x97,0x0C,0x97,0xEC,0x96,0xEC,0x96,0xCD,0x9E,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96, +0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xCD,0x96,0xED,0x9E,0x0E,0xA7,0x2F,0xAF,0x0F,0xAF,0xEE,0xA6,0xEE,0xA6,0x0F,0xA7,0x2F,0xA7,0x2F,0xA7,0x2E,0x9F,0xED,0x9E,0xED,0x96,0xED,0x96,0xED,0x96,0xCD,0x96,0xCC,0x8E,0xED,0x8E,0xED,0x96,0x0D,0x97,0xED,0x8E,0xED,0x8E,0x4E,0x9F,0xCD,0x8E,0xED,0x96,0xED,0x96,0xEC,0x96,0xCC,0x96,0xED,0x96,0xEC,0x96, +0xCD,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xED,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xED,0x96,0xEC,0x96,0xCC,0x96,0x10,0xAF,0x45,0x43,0xA0,0x00,0x60,0x00,0x00,0x00,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,0x41,0x08,0x40,0x00,0x20,0x01,0xCE,0x9E,0x0D,0x97,0xCD,0x96,0xED,0x9E,0xEC,0x96,0x0C,0x97,0xEC,0x96,0xCD,0x9E,0xCD,0x9E,0xEC,0x96,0x0C,0x97,0xED,0x96,0xEC,0x96,0xEC,0x9E,0xCD,0x9E,0xED,0x96,0xED,0x8E,0xED,0x8E,0xCD,0x96,0xEC,0x96,0xEC,0x8E,0xEB,0x8E,0x0B,0x97,0xEB,0x96,0x0C,0x97,0xEB,0x86,0x0C,0x8F,0x0D,0x8F, +0xCC,0x96,0xCC,0x96,0xCC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x8E,0xED,0x8E,0x0D,0x8F,0xED,0x8E,0xED,0x8E,0xED,0x8E,0xED,0x96,0x0D,0x8F,0x0D,0x8F,0xED,0x8E,0xED,0x8E,0xED,0x8E,0x0D,0x8F,0xED,0x8E,0xED,0x96,0xED,0x96,0xEC,0x96,0xEC,0x96,0xED,0x96,0xED,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96, +0xEC,0x96,0xEC,0x96,0xEC,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xEC,0x96,0x0D,0x97,0xEC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xED,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xCC,0x96,0xCC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xED,0x96,0xED,0x96,0xEE,0x8E,0x0E,0x8F,0x0E,0x87,0x2E,0x87,0x0E,0x87,0x0E,0x87,0x0E,0x87,0x0E,0x87,0xEE,0x8E,0xEE,0x8E,0xEE,0x8E,0x0E,0x8F,0x0E,0x87,0x0E,0x87, +0x0E,0x87,0x0E,0x87,0x0E,0x87,0x0E,0x87,0x0E,0x87,0x0E,0x87,0x0E,0x87,0x0E,0x87,0x0E,0x87,0x0E,0x87,0x0E,0x87,0x0E,0x87,0x0E,0x87,0x0E,0x87,0x0E,0x87,0x0E,0x87,0x0E,0x87,0x0E,0x87,0x0E,0x8F,0x0E,0x8F,0xED,0x8E,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96, +0xCC,0x9E,0xEC,0x96,0x0C,0x8F,0xEC,0x96,0xED,0x96,0xED,0x96,0xEC,0x96,0xEC,0x96,0xCB,0x96,0xEC,0x96,0xED,0x8E,0x0E,0x8F,0xED,0x96,0xEE,0x9E,0x8D,0x96,0xEF,0xA6,0x06,0x5D,0xAC,0x8E,0x0E,0x9F,0xAC,0x96,0xED,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xCC,0x96,0xED,0x96,0xED,0x96,0xEC,0x96,0xEC,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xAE,0x9E,0xAE,0xA6,0xAE,0x9E,0xAD,0x9E,0xAD,0x9E,0xCD,0x9E,0xCD,0x9E,0xAD,0x9E,0xCD,0x9E,0xCD,0x9E,0xCD,0x96,0xCD,0x96,0xCC,0x96,0xCC,0x96,0xEC,0x96,0xED,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96, +0x2C,0x8F,0x0C,0x8F,0x0C,0x8F,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xED,0x96,0xCD,0x96,0xED,0x96,0xED,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0x2A,0x87,0xEB,0x86,0xED,0x8E,0x10,0xA7,0x2C,0x7D,0xC2,0x19,0x40,0x00,0x20,0x00,0x00,0x00,0x20,0x00,0x40,0x00,0x63,0x2A,0xEA,0x6C,0xD0,0x9E,0x0E,0x9F,0x4E,0x9F,0xEF,0x84,0x20,0x11,0x60,0x00,0x01,0x2A,0xA9,0x74,0x6E,0x9E,0x2D,0xA7,0x4C,0x9F,0x0A,0x8F,0x2B,0x97,0x0C,0x97,0xED,0x9E,0xCD,0x9E,0xCD,0x96,0xCD,0x96,0xED,0x96,0xEC,0x96,0xEC,0x96,0xED,0x96,0xEE,0x8E,0xED,0x8E,0xED,0x96,0xEC,0x96,0xEC,0x96,0xCD,0x96,0xED,0x96,0xED,0x96,0x0C,0x97,0x0C,0x97,0xEC,0x96,0xEC,0x96,0xCD,0x9E, +0xED,0x96,0xED,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96, +0xEC,0x96,0xEC,0x96,0xED,0x9E,0x2E,0xA7,0x4F,0xAF,0x4F,0xAF,0x0E,0xA7,0xAD,0x9E,0xAD,0x9E,0xCD,0x9E,0xCD,0x96,0xED,0x96,0xCD,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xED,0x96,0xED,0x96,0xCD,0x96,0xCC,0x96,0xCD,0x96,0xED,0x96,0x0D,0x97,0x2E,0x9F,0xCD,0x96,0xED,0x96,0xCC,0x96,0xEC,0x96,0xCC,0x96,0xEC,0x96,0xCC,0x96,0xCE,0x96,0xED,0x96,0xEC,0x96,0xEC,0x96,0xED,0x96,0xEC,0x96,0xEB,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0x0D,0x9F,0xCE,0x9E,0x2F,0x96,0x81,0x11,0x20,0x00,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,0x01,0x00,0x00,0x00,0x40,0x09,0xAE,0x96,0x2D,0x97,0xCD,0x96,0xEE,0x9E,0xED,0x96,0x0C,0x97,0xEC,0x96,0xCC,0x9E,0xEC,0x96,0xEC,0x96,0x0C,0x97,0x0C,0x97,0xEC,0x96,0xCD,0x96,0xCD,0x96,0xEC,0x96,0x0C,0x8F,0xEC,0x96,0xCE,0x96,0xCD,0x96,0x0C,0x97,0xEA,0x96,0x0C,0x9F,0x0D,0xA7,0x2C,0x9F,0x2B,0x8F,0xCB,0x86,0x0D,0x97,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xEE,0x8E,0xEE,0x8E,0xEE,0x8E,0xEE,0x8E,0xEE,0x8E,0xEE,0x8E,0x0D,0x8F,0xED,0x8E,0xED,0x8E,0xED,0x8E,0xED,0x8E,0x0D,0x8F,0x0D,0x8F,0x0D,0x8F,0xED,0x8E,0xED,0x8E,0xED,0x8E,0xED,0x96,0xED,0x96,0xEC,0x96, +0xCC,0x96,0xCC,0x96,0xCC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xCC,0x96,0xEC,0x96,0xEC,0x9E,0xEC,0x9E,0xED,0x96,0xED,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xCC,0x96,0xCC,0x96,0xED,0x96,0xCC,0x96,0xCC,0x96,0x0D,0x9F,0xED,0x96,0xCC,0x8E,0xEC,0x96,0xCC,0x96,0xCC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96, +0xED,0x96,0xED,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xED,0x96,0xED,0x96,0xED,0x8E,0x0E,0x8F,0x0E,0x87,0x0E,0x87,0x0E,0x87,0x0E,0x87,0x0E,0x87,0xEE,0x86,0xEE,0x8E,0xED,0x8E,0xEE,0x8E,0xEE,0x86,0xEE,0x86,0x0E,0x87,0xEE,0x86,0xEE,0x86,0xEE,0x86,0xEE,0x86,0xEE,0x86,0xEE,0x86,0xEE,0x86,0xEE,0x86,0xEE,0x86,0xEE,0x86,0xEE,0x86,0xEE,0x86,0xEE,0x86,0xEE,0x86,0xEE,0x86,0xEE,0x86,0x0E,0x87,0x0E,0x87,0x0E,0x87,0x0D,0x8F,0xED,0x8E,0xED,0x8E,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96, +0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xED,0x96,0xED,0x96,0x0D,0x8F,0xEC,0x96,0xEB,0x96,0xEC,0x96,0xEE,0x96,0xEE,0x96,0xEC,0x96,0xEB,0x9E,0xEC,0x96,0xED,0x96,0xAD,0x8E,0x0D,0x97,0xEC,0x8E,0x8B,0x8E,0x52,0xB7,0x04,0x3B,0x40,0x01,0x6C,0x8E,0xED,0x9E,0x0E,0x9F,0xAC,0x8E,0xCD,0x96,0xCC,0x8E,0xED,0x96,0xEC,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xCC,0x96,0xED,0x96,0x4F,0xA7, +0x31,0xC7,0x31,0xC7,0x31,0xC7,0x31,0xC7,0x31,0xC7,0x51,0xC7,0x51,0xBF,0x30,0xBF,0x50,0xBF,0x0E,0xAF,0xAD,0xA6,0xAD,0x9E,0xCD,0x9E,0xCD,0x9E,0xCC,0x9E,0xCD,0x9E,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xED,0x96,0xEC,0x96,0xEC,0x96,0xEB,0x96,0xEC,0x96,0xEC,0x96,0xED,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0x0D,0x97,0x0C,0x97,0x0B,0x8F,0xCE,0x96,0x30,0xA7,0x4F,0x96,0x62,0x22,0x60,0x00,0x00,0x00,0x01,0x00,0x02,0x08,0x03,0x08,0x01,0x00,0x01,0x00,0x20,0x00,0x40,0x00,0xA0,0x11,0x8A,0x64,0xE2,0x2A, +0x00,0x00,0x00,0x00,0x00,0x00,0x40,0x00,0x40,0x00,0x20,0x01,0xC5,0x4B,0xEB,0x85,0x2F,0xA7,0x0D,0x9F,0xCB,0x8E,0xAB,0x8E,0xCC,0x8E,0xEC,0x8E,0xEC,0x8E,0x0D,0x8F,0xEB,0x96,0xEC,0x96,0xED,0x8E,0xEE,0x8E,0xEE,0x8E,0xED,0x96,0xEC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xEC,0x96,0xEC,0x8E,0xEC,0x8E,0xEC,0x96,0xEC,0x96,0xCC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96, +0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xED,0x96,0x0E,0x9F,0x6F,0xAF,0xB1,0xBF,0xB1,0xBF,0x4F,0xAF,0xEE,0xA6,0xCD,0x9E,0xCD,0x9E,0xED,0x9E,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0x0D,0x97,0xCC,0x96,0xCC,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xCC,0x96,0x2E,0x9F,0x4E,0x9F,0x2E,0x9F,0xCD,0x96,0xED,0x96,0xCC,0x96,0xEC,0x96,0xCC,0x96,0xEC,0x96,0xEC,0x96, +0xCE,0x96,0xED,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x8E,0xEC,0x96,0xEB,0x96,0xEB,0x96,0xEC,0x9E,0x0D,0x9F,0xAC,0x96,0xEF,0xA6,0x82,0x2A,0x60,0x00,0x41,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,0x01,0x00,0x01,0x00,0x20,0x09,0xAE,0x96,0x0C,0x97,0xAB,0x8E,0xCD,0x96,0xCD,0x96,0xEC,0x8E,0xEC,0x96,0xEC,0x96,0xCC,0x96,0xEC,0x96,0xEC,0x8E,0xEC,0x8E,0xEB,0x96,0xEC,0x96,0xCD,0x96,0xED,0x96,0xED,0x8E,0xED,0x96,0xCD,0x96,0xCC,0x96,0xAB,0x8E,0x2F,0xA7,0x2D,0x96,0xC9,0x6C,0xCB,0x7D,0xB1,0xAF,0xED,0x96,0x6C,0x8E, +0xCC,0x96,0xCC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xED,0x8E,0xEE,0x8E,0xEE,0x8E,0xEE,0x86,0xEE,0x86,0xEE,0x86,0xEE,0x86,0xEE,0x86,0xED,0x86,0xED,0x86,0xED,0x86,0xED,0x86,0x0D,0x87,0x0D,0x87,0x0D,0x87,0x0E,0x8F,0x0D,0x8F,0xED,0x8E,0xED,0x8E,0xED,0x96,0xED,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCD,0x96,0xCD,0x96,0xCD,0x96,0xCD,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xCC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96, +0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xED,0x96,0xEC,0x96,0xEC,0x96,0x0D,0x97,0xCC,0x96,0xEC,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xCC,0x96,0x2E,0x9F,0xED,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xED,0x96,0xED,0x8E,0xED,0x8E,0x0D,0x8F,0x0E,0x87,0x0E,0x87,0x0E,0x87,0x0E,0x87,0x0E,0x87,0x0E,0x8F,0xEE,0x8E,0x0D,0x8F,0xEE,0x8E,0x0E,0x8F,0x0E,0x8F,0x0E,0x87, +0x0E,0x8F,0x0E,0x8F,0x0E,0x8F,0x0E,0x8F,0x0E,0x8F,0x0E,0x8F,0x0E,0x8F,0x0E,0x8F,0x0E,0x8F,0x0E,0x8F,0x0E,0x8F,0x0E,0x8F,0x0E,0x8F,0x0E,0x8F,0x0E,0x8F,0x0E,0x8F,0x0E,0x87,0x0E,0x87,0x0E,0x87,0x0D,0x8F,0xED,0x8E,0xED,0x8E,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xED,0x96,0xED,0x96,0xEC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96, +0x0C,0x87,0xEC,0x96,0xCB,0x9E,0xCC,0x96,0xED,0x96,0xED,0x96,0xCC,0x96,0xCC,0x96,0xEC,0x96,0xED,0x96,0xEE,0x9E,0xCC,0x96,0xAA,0x86,0x90,0xA7,0xC6,0x43,0x60,0x00,0x06,0x5D,0x6F,0xA7,0xAC,0x8E,0xCD,0x96,0xED,0x96,0x2E,0x9F,0xED,0x96,0xCC,0x96,0xED,0x96,0xED,0x96,0xCC,0x96,0xEC,0x96,0xED,0x96,0xCD,0x96,0x2E,0x9F,0x90,0xAF,0xF4,0xDF,0xF4,0xDF,0xF4,0xDF,0xF4,0xD7,0xF4,0xD7,0xF4,0xD7,0xF4,0xD7,0xF3,0xD7,0xD2,0xCF,0x50,0xB7,0xAD,0x9E,0xAD,0x9E,0xED,0x9E,0xED,0x9E,0xCC,0x96,0xCC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xED,0x96, +0xCC,0x9E,0xCC,0x96,0xEC,0x96,0xEC,0x96,0xED,0x8E,0xED,0x8E,0xED,0x8E,0xEC,0x96,0xEC,0x96,0xEB,0x96,0xEC,0x96,0xED,0x96,0xCE,0x96,0xEE,0x96,0x0C,0x97,0xEB,0x8E,0xD4,0xB6,0xEA,0x63,0x80,0x00,0x60,0x00,0x20,0x00,0x40,0x08,0x00,0x08,0x01,0x08,0x01,0x08,0x01,0x08,0x00,0x00,0x21,0x08,0x20,0x00,0x00,0x00,0x20,0x00,0x40,0x00,0x01,0x08,0x42,0x08,0x00,0x00,0x40,0x00,0x40,0x00,0x20,0x00,0x20,0x00,0x80,0x00,0x43,0x32,0x2B,0x7D,0x50,0xAF,0x8F,0xA7,0x0C,0x8F,0x0B,0x8F,0xEC,0x8E,0xEC,0x8E,0xEB,0x96,0xEC,0x96,0xED,0x8E,0xED,0x8E,0xEE,0x8E,0xED,0x8E,0xED,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x8E,0xEC,0x96,0xEC,0x96,0xCC,0x96, +0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96, +0xCC,0x96,0xED,0x96,0x0E,0x9F,0x6F,0xAF,0xD1,0xBF,0xD1,0xBF,0x70,0xAF,0x0F,0xA7,0x0E,0xA7,0x0E,0x9F,0x0E,0x9F,0x2E,0x9F,0x2D,0x9F,0x2D,0x9F,0x2D,0x9F,0x2D,0x9F,0x2E,0xA7,0x2D,0x9F,0x0D,0x9F,0x2E,0x9F,0x4E,0xA7,0x0D,0x9F,0x4E,0xA7,0x4E,0xA7,0x0D,0x97,0xCC,0x96,0xED,0x96,0xCC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xCE,0x96,0xED,0x96,0xEC,0x96,0xEC,0x96,0x0C,0x8F,0x0C,0x8F,0xEB,0x96,0xEB,0x96,0xEC,0x96,0xCC,0x96,0xCC,0x96,0xEF,0xA6,0xC5,0x3A,0x40,0x00,0x22,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,0x01,0x00,0x22,0x00,0x20,0x09,0xAE,0x96,0x0B,0x97,0x0C,0x9F,0xCE,0x96,0xCE,0x96,0xED,0x8E,0xEB,0x96,0xEB,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x8E,0xEC,0x8E,0x0B,0x97,0xEB,0x96,0xEC,0x96,0xCE,0x96,0xCF,0x96,0xCE,0x96,0xCC,0x9E,0xEB,0x96,0x70,0xAF,0x2A,0x75,0xC0,0x00,0x60,0x00,0x80,0x00,0x25,0x33,0xB0,0xA6,0x10,0xAF,0xCD,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xED,0x96,0xED,0x8E,0xED,0x8E,0xEE,0x8E,0xEE,0x86,0xEE,0x86,0x0F,0x87,0x0E,0x87,0x0E,0x87,0x0E,0x87,0x0E,0x87,0x0E,0x87,0x0E,0x87,0x0E,0x87,0x0E,0x87,0x0E,0x87,0x0E,0x87,0xEE,0x86,0xED,0x86,0xED,0x8E,0xED,0x8E,0xED,0x8E,0xEC,0x96, +0xEC,0x8E,0xEC,0x8E,0xEC,0x8E,0xEC,0x8E,0xCD,0x96,0xCD,0x96,0xCD,0x96,0xCD,0x96,0xCD,0x96,0xCD,0x96,0xCD,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xCC,0x96,0xAC,0x8E,0xED,0x96,0xED,0x96,0xEC,0x96,0xCC,0x8E,0x0E,0x9F,0xF3,0xC7,0x0D,0x9F,0x0D,0x97,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xCC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96, +0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xED,0x96,0xED,0x96,0xED,0x8E,0xED,0x8E,0x0D,0x8F,0x0D,0x87,0x0D,0x87,0x0D,0x87,0x0D,0x8F,0x0D,0x8F,0xED,0x8E,0xED,0x8E,0xED,0x8E,0xED,0x8E,0x0D,0x8F,0x0D,0x8F,0xED,0x8E,0xED,0x8E,0xED,0x8E,0xED,0x8E,0xED,0x8E,0xED,0x8E,0xED,0x8E,0xED,0x8E,0xED,0x8E,0xED,0x8E,0xED,0x8E,0xED,0x8E,0xED,0x8E,0xED,0x8E,0xED,0x8E,0xED,0x8E,0x0D,0x87,0x0D,0x87,0x0D,0x87,0x0D,0x8F,0xED,0x8E,0xEC,0x8E,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96, +0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0x0B,0x8F,0xEC,0x8E,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xEC,0x96,0xEC,0x96,0xCD,0x96,0xCC,0x96,0xED,0x96,0xAB,0x96,0xEC,0x96,0x6F,0xAF,0x87,0x54,0xA0,0x00,0x0B,0x5C,0x4F,0xA7,0xCD,0x96,0xCC,0x96,0xCC,0x96,0xED,0x96,0xCC,0x8E,0xCC,0x96,0xED,0x96,0xEC,0x96,0xED,0x96,0xCC,0x96,0xEC,0x96,0xEC,0x96,0xCD,0x96,0x0D,0x97,0x4F,0xA7, +0x71,0xB7,0x51,0xB7,0x51,0xB7,0x51,0xB7,0x71,0xB7,0x70,0xB7,0x70,0xAF,0x70,0xAF,0x90,0xAF,0x2E,0x9F,0xCD,0x96,0xCC,0x8E,0xED,0x96,0xEC,0x8E,0xEC,0x8E,0xEC,0x8E,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xCC,0x9E,0xCC,0x9E,0xCC,0x96,0xCD,0x96,0xED,0x96,0xED,0x96,0xED,0x8E,0xED,0x8E,0xEC,0x8E,0xEB,0x8E,0xEB,0x96,0xEB,0x96,0xCC,0x96,0xCD,0x96,0xAE,0x96,0x6E,0x8E,0xE5,0x39,0x20,0x00,0x00,0x00,0x20,0x00,0x20,0x00,0x00,0x00,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x08,0x01,0x08,0x00,0x00, +0x21,0x00,0x00,0x00,0x21,0x00,0x00,0x00,0x01,0x00,0x01,0x00,0x02,0x08,0x00,0x00,0x00,0x00,0x20,0x00,0x80,0x11,0x67,0x5C,0xCE,0x96,0x2E,0x97,0xCC,0x8E,0x0D,0x8F,0xEB,0x96,0xEC,0x96,0xEC,0x8E,0xED,0x8E,0xED,0x8E,0xED,0x8E,0xED,0x96,0xCC,0x96,0xCC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xCC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96, +0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xCC,0x96,0xCC,0x96,0x0D,0x9F,0x4F,0xA7,0x90,0xB7,0x70,0xAF,0x2E,0xA7,0xCD,0x9E,0xCD,0x9E,0xCD,0x96,0xCD,0x96,0xCC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xEC,0x96,0xCC,0x96,0xED,0x96,0xAC,0x8E,0xED,0x96,0xCC,0x8E,0xED,0x96,0xCC,0x8E,0xEC,0x96,0xCC,0x8E,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96, +0xCD,0x96,0xCC,0x96,0xEC,0x96,0xEC,0x96,0x0C,0x8F,0x0C,0x8F,0xEC,0x96,0xEC,0x96,0xAC,0x96,0x0C,0x97,0xCC,0x8E,0x10,0xA7,0x84,0x32,0x20,0x00,0x22,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,0x22,0x08,0x02,0x00,0x41,0x11,0x8E,0x96,0x2B,0x97,0xAB,0x8E,0xCE,0x96,0xCE,0x96,0xED,0x8E,0xEB,0x96,0xEB,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x8E,0xEC,0x8E,0x0B,0x8F,0xEB,0x96,0xEC,0x96,0xCE,0x96,0xCE,0x96,0xCE,0x96,0xCC,0x9E,0xCC,0x9E,0xE6,0x5C,0x60,0x01,0x60,0x00,0x40,0x00,0x80,0x00,0xA4,0x2A,0x40,0x1A,0x09,0x7D, +0xED,0x9E,0xED,0x9E,0xED,0x96,0xED,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xED,0x8E,0xED,0x8E,0xED,0x8E,0x0E,0x87,0x0E,0x87,0x0E,0x87,0x0E,0x87,0x0E,0x87,0x0E,0x87,0x0E,0x87,0x0E,0x87,0x0E,0x87,0x0E,0x87,0x0E,0x87,0x0E,0x87,0x0E,0x87,0xEE,0x86,0xED,0x86,0xED,0x8E,0xED,0x8E,0xEC,0x96,0xEC,0x96,0xEC,0x8E,0xEC,0x8E,0xEC,0x8E,0xED,0x8E,0xCD,0x96,0xCD,0x96,0xCD,0x96,0xCD,0x96,0xCD,0x96,0xCD,0x96,0xCD,0x96,0xCD,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x8E,0x0C,0x8F,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96, +0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xED,0x96,0xEC,0x96,0xEC,0x96,0xAC,0x8E,0xEC,0x96,0xED,0x96,0xAC,0x8E,0x4F,0xA7,0x0D,0x97,0xEC,0x96,0xCC,0x96,0xCC,0x8E,0xCC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xED,0x8E,0xED,0x8E,0xED,0x8E,0xED,0x8E,0xED,0x8E,0xED,0x8E,0xED,0x8E,0xED,0x8E,0xED,0x8E,0xED,0x8E,0xED,0x8E,0xED,0x8E,0xED,0x8E,0xED,0x8E, +0xED,0x8E,0xED,0x8E,0xED,0x8E,0xED,0x8E,0xED,0x8E,0xED,0x8E,0xED,0x8E,0xED,0x8E,0xED,0x8E,0xED,0x8E,0xED,0x8E,0xED,0x8E,0xED,0x8E,0xED,0x8E,0xED,0x8E,0xED,0x8E,0x0D,0x87,0xED,0x8E,0xED,0x8E,0xEC,0x8E,0xEC,0x8E,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96, +0x0B,0x97,0x0C,0x8F,0xED,0x8E,0xCD,0x96,0xCC,0x9E,0xCC,0x9E,0xEC,0x96,0xED,0x8E,0xEE,0x96,0xEC,0x96,0xAA,0x96,0x0E,0xA7,0xA9,0x64,0x80,0x00,0x87,0x43,0xF1,0xA6,0xCC,0x8E,0xCC,0x96,0xED,0x96,0xCC,0x96,0xED,0x96,0xCC,0x96,0xEC,0x96,0xCC,0x96,0xCC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xED,0x96,0xCC,0x96,0xCC,0x96,0xEC,0x96,0xCE,0x96,0xCD,0x96,0xCD,0x96,0xCD,0x96,0xCD,0x96,0xCD,0x96,0xCD,0x8E,0xED,0x8E,0xCD,0x8E,0xED,0x8E,0xED,0x8E,0x0D,0x8F,0x0C,0x8F,0x0C,0x87,0x0C,0x87,0x2D,0x8F,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCD,0x96,0xCD,0x96, +0xEB,0x96,0xCC,0x96,0xAC,0x96,0xCD,0x96,0xCD,0x96,0xCC,0x96,0x0D,0x97,0xCD,0x8E,0xCD,0x8E,0x0D,0x97,0xEB,0x8E,0xEA,0x8E,0xCB,0x9E,0xEF,0xAE,0xCB,0x74,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,0x20,0x00,0x20,0x00,0x01,0x00,0x01,0x00,0x01,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x20,0x00,0x40,0x00,0x20,0x09,0x8A,0x64,0x8F,0x9E,0xCF,0x9E,0xEC,0x96,0xCB,0x96,0xEC,0x8E,0xEC,0x8E,0xEC,0x8E,0xED,0x8E,0xCC,0x8E,0xCC,0x96,0xCC,0x96,0xCB,0x96,0xEB,0x96,0xEC,0x8E,0xEC,0x8E,0xEC,0x8E,0xEC,0x96,0xCD,0x96, +0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xCC,0x96,0xCC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x8E,0xEC,0x8E,0xEC,0x8E,0xEC,0x8E,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x8E,0xEC,0x8E,0xEC,0x8E,0xEC,0x8E,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x8E,0xEC,0x8E,0xEC,0x8E,0xEC,0x8E,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xCC,0x96,0xCC,0x96, +0xCC,0x96,0xCC,0x96,0xED,0x9E,0x0E,0x9F,0x0E,0xA7,0x0E,0xA7,0xED,0x9E,0xCD,0x96,0xCD,0x96,0xCD,0x96,0xCC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xCD,0x96,0xCC,0x96,0xCB,0x96,0xEC,0x96,0xEC,0x8E,0xEC,0x8E,0xEC,0x8E,0xCC,0x96,0xCC,0x96,0xEC,0x96,0xEB,0x8E,0xEF,0x9E,0xA4,0x32,0x00,0x00,0x22,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,0x01,0x08,0x02,0x00,0x21,0x09,0xAD,0x96,0x0A,0x97,0xEB,0x96,0xCD,0x96,0xCE,0x96,0xED,0x8E,0xEB,0x96,0xEB,0x96,0xCC,0x96,0xEC,0x96,0xED,0x8E,0xEC,0x8E,0xEC,0x8E,0xCC,0x8E,0xED,0x96,0xEC,0x96,0xEC,0x96,0xAC,0x96,0x50,0xAF,0xA5,0x54,0xA1,0x33,0xE6,0x53,0x24,0x3A,0x20,0x00,0x27,0x4B,0x63,0x43,0xAB,0x8D,0x02,0x3B,0x43,0x44,0xAD,0x96,0xED,0x96,0xED,0x96,0xED,0x96,0xAC,0x8E,0x0D,0x9F,0xEC,0x96,0xEC,0x96,0x0D,0x97,0xCC,0x8E,0x0D,0x8F,0x0E,0x8F,0xED,0x86,0x0E,0x87,0x0E,0x87,0x0E,0x87,0x0E,0x87,0x0E,0x87,0x0E,0x87,0x0E,0x87,0x0E,0x87,0x0E,0x87,0x0E,0x87,0x0E,0x87,0x0E,0x87,0x0D,0x87,0xED,0x8E,0xED,0x8E,0xED,0x8E,0xEC,0x8E,0xEC,0x96, +0xEC,0x96,0xCC,0x8E,0xED,0x96,0x0E,0x9F,0xEE,0x9E,0xCE,0x9E,0xCE,0xA6,0xAE,0xA6,0xCE,0xA6,0xCE,0xA6,0xCE,0xA6,0xEE,0xA6,0xED,0x9E,0xED,0x96,0xEC,0x96,0xEC,0x8E,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCD,0x96,0xCD,0x96,0xCD,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96, +0xCC,0x96,0xCC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x8E,0xEC,0x8E,0xEC,0x8E,0xEC,0x8E,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x8E,0xED,0x8E,0xED,0x8E,0xED,0x8E,0xED,0x8E,0xED,0x8E,0xED,0x8E,0xEC,0x8E,0xEC,0x8E,0xEC,0x8E,0xEC,0x8E,0xEC,0x8E,0xED,0x8E,0xED,0x8E,0xEC,0x8E,0xEC,0x8E,0xEC,0x8E,0xEC,0x8E,0xEC,0x8E,0xEC,0x8E,0xEC,0x8E,0xEC,0x8E,0xEC,0x8E,0xEC,0x8E,0xEC,0x8E,0xEC,0x8E,0xEC,0x8E,0xEC,0x8E,0xEC,0x8E,0xEC,0x8E,0xEC,0x8E,0xEC,0x8E,0xEC,0x8E,0xEC,0x8E,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x8E,0xEC,0x8E,0xEC,0x8E,0xEC,0x8E,0xEC,0x8E,0xEC,0x8E,0xEC,0x8E, +0xCC,0x96,0xCC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEB,0x96,0xEB,0x8E,0x0C,0x8F,0xED,0x96,0xAD,0x96,0xCC,0x9E,0xCB,0x96,0xEC,0x96,0xED,0x96,0xAB,0x8E,0x4E,0xAF,0x09,0x75,0x60,0x00,0x82,0x11,0xB1,0x9E,0x0D,0x8F,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96, +0xCD,0x96,0xCD,0x96,0xCD,0x96,0xCD,0x96,0xCD,0x96,0xCD,0x96,0xCD,0x96,0xCD,0x96,0xEC,0x96,0xEC,0x8E,0xEC,0x8E,0xEC,0x8E,0xEC,0x8E,0xEC,0x8E,0xEC,0x8E,0xEC,0x8E,0xCC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xCC,0x96,0xCC,0x96,0x0E,0x9F,0xAC,0x8E,0x2E,0xA7,0xA4,0x54,0xEC,0x8E,0x0D,0x97,0xEC,0x96,0xAC,0x96,0xEC,0x96,0xCC,0x96,0xAC,0x8E,0xED,0x96,0x0D,0x97,0xCC,0x8E,0x8A,0x86,0x4F,0xAF,0x6E,0x9E,0x83,0x32,0x60,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x40,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x20,0x00,0x60,0x00,0x20,0x09,0x90,0x95,0xAC,0x9E,0xCC,0x96,0xEC,0x96,0x0C,0x8F,0x0C,0x8F,0xEC,0x8E,0xEC,0x96,0xEC,0x96,0xCC,0x96,0xCB,0x96,0xEB,0x96,0xEC,0x96,0xEC,0x8E,0xEC,0x8E,0xCD,0x96,0xCD,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x8E,0xEC,0x8E,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96, +0xCC,0x96,0xCC,0x96,0xCC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x8E,0xEC,0x8E,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x8E,0xEC,0x8E,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xED,0x9E,0xED,0x9E,0xCD,0x96,0xAC,0x96,0xCD,0x96,0xCC,0x96,0xCC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xCC,0x96,0xCC,0x96,0xEC,0x96,0xEC,0x96,0xCC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x8E,0xEC,0x8E,0xEC,0x8E,0xEC,0x8E,0xEC,0x8E,0xEC,0x8E, +0xCC,0x96,0xCC,0x96,0xCB,0x9E,0xEC,0x96,0xEC,0x8E,0x0C,0x8F,0xED,0x8E,0xCD,0x96,0xCD,0x96,0xEC,0x8E,0xEB,0x8E,0xEE,0x9E,0xA4,0x32,0x00,0x00,0x21,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,0x01,0x08,0x01,0x00,0x20,0x09,0xAD,0x96,0x0A,0x97,0xEA,0x96,0xCD,0x96,0xCE,0x96,0xED,0x8E,0xEB,0x96,0xEB,0x96,0xCC,0x96,0xCD,0x96,0xED,0x8E,0xED,0x8E,0xEC,0x8E,0xCD,0x96,0xED,0x96,0xCB,0x8E,0xCA,0x96,0x2E,0xA7,0x03,0x44,0xC6,0x54,0x2B,0x86,0xE9,0x74,0x2B,0x74,0x40,0x00,0x65,0x53,0x50,0xB7,0x60,0x33,0x53,0xBF, +0xC9,0x75,0x03,0x3C,0x2A,0x86,0xAC,0x8E,0xCC,0x96,0xEC,0x96,0xAB,0x8E,0xEC,0x96,0xCC,0x8E,0xCC,0x8E,0x0D,0x97,0xEC,0x8E,0xED,0x86,0x0D,0x87,0xED,0x7E,0x2E,0x87,0x0E,0x87,0x0E,0x87,0x0E,0x87,0x0E,0x87,0x0D,0x87,0x0D,0x87,0x0D,0x87,0x0E,0x87,0x0E,0x87,0x0E,0x87,0x0D,0x87,0xED,0x8E,0xED,0x8E,0xEC,0x8E,0xEC,0x96,0xEC,0x96,0xCC,0x96,0xCC,0x96,0x2E,0xA7,0x90,0xBF,0xB1,0xC7,0xB2,0xCF,0xB2,0xCF,0xB2,0xCF,0x92,0xCF,0xB2,0xCF,0xD2,0xCF,0xD2,0xCF,0x90,0xBF,0x0D,0xA7,0xCC,0x96,0xCC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96, +0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCD,0x96,0xCD,0x96,0xCD,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x8E,0xEC,0x8E,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x8E,0xEC,0x8E,0xEC,0x8E,0xEC,0x8E,0xEC,0x8E,0xEC,0x8E,0xEC,0x8E,0xEC,0x8E,0xEC,0x8E,0xEC,0x8E,0xEC,0x8E,0xEC,0x8E, +0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0x0D,0x97,0xEC,0x96,0xEC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xEC,0x96,0xEC,0x8E,0xEC,0x8E,0xEC,0x8E,0xEC,0x8E,0xEC,0x8E,0xEC,0x8E,0xEC,0x8E,0xCC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96, +0xCC,0x96,0xEC,0x96,0xAC,0x8E,0xEC,0x96,0x0D,0x9F,0xAC,0x96,0xCC,0x9E,0xEB,0x96,0xEB,0x8E,0xEC,0x96,0xEE,0x8D,0x60,0x00,0xE0,0x00,0x51,0xA6,0x0F,0x9F,0xCB,0x86,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xCC,0x8E,0xAC,0x8E,0xEC,0x96,0xAC,0x8E,0xAC,0x8E,0x4F,0xA7,0x26,0x65,0x88,0x6D, +0xED,0x8E,0xCC,0x8E,0xEC,0x8E,0xCB,0x8E,0xCC,0x8E,0xED,0x96,0xEC,0x96,0xCB,0x8E,0xCA,0x8E,0xEC,0x9E,0x71,0xB7,0x69,0x64,0x00,0x09,0x40,0x00,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,0x20,0x00,0x20,0x00,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x20,0x00,0x61,0x10,0x00,0x00,0xE2,0x20,0xCF,0xA6,0xCD,0x9E,0xCC,0x96,0xEB,0x8E,0x0C,0x8F,0xEC,0x8E,0xAB,0x8E,0xCC,0x96,0xCC,0x96,0xCB,0x96,0xEB,0x96,0xEB,0x96,0xEC,0x8E,0xEC,0x8E,0xCD,0x96,0xCD,0x96, +0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96, +0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x8E,0xEC,0x8E,0xEC,0x8E,0xEC,0x8E,0xEC,0x8E,0xEC,0x8E,0xEC,0x8E,0xCC,0x96,0xCC,0x96,0xCB,0x9E,0xEB,0x96,0xEC,0x8E,0x0C,0x8F,0xED,0x8E,0xAD,0x96,0xAD,0x96,0xEB,0x8E,0xEA,0x8E,0xEE,0x9E,0xC4,0x32,0x20,0x00,0x41,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,0x01,0x08,0x01,0x00,0x20,0x09,0xAD,0x96,0x09,0x97,0xEA,0x96,0xCD,0x96,0xCE,0x96,0xEC,0x8E,0xEB,0x96,0xEB,0x96,0xCC,0x96,0xCD,0x96,0xED,0x8E,0xED,0x8E,0xCC,0x8E,0x0D,0x97,0xAB,0x8E,0x2D,0x9F,0xED,0x96,0x44,0x4C,0xCA,0x75,0xB1,0xAF,0xC5,0x4C,0x53,0xB7,0x0B,0x6C,0x40,0x00,0x65,0x43,0x92,0xB7,0xAA,0x75,0xA8,0x5C,0x50,0xAF,0x0E,0x9F,0x4B,0x86,0xCD,0x96,0xCC,0x96,0xED,0x96,0xEC,0x96,0xED,0x96,0xED,0x96,0xCC,0x96,0xED,0x96,0xED,0x8E,0xED,0x86,0xED,0x86,0xED,0x7E,0x2D,0x87,0x0E,0x87,0x0E,0x87,0x0D,0x87,0x0D,0x87,0x0D,0x87,0x0D,0x87,0x0D,0x87,0x0D,0x87,0x0D,0x87,0x0D,0x87,0xED,0x86,0xED,0x8E,0xED,0x8E,0xEC,0x8E,0xEC,0x96,0xEC,0x96, +0xCC,0x96,0xCD,0x9E,0x2F,0xAF,0xB1,0xC7,0xD2,0xCF,0xD3,0xD7,0xF3,0xDF,0xD3,0xDF,0xB3,0xD7,0xD3,0xD7,0xF3,0xD7,0xF3,0xD7,0x90,0xBF,0xEE,0xA6,0xAC,0x96,0xCC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xEC,0x96,0xEC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCD,0x96,0xCD,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96, +0xCC,0x96,0xCC,0x96,0xCC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xCC,0x96,0xCC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xCC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xCC,0x8E,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCB,0x96,0xCB,0x96,0xCC,0x96,0xCC,0x96,0xEC,0x96,0xEC,0x8E,0xEC,0x8E,0xEC,0x8E,0xEC,0x8E,0xEC,0x8E,0xEC,0x8E,0xEC,0x8E, +0xCC,0x96,0xCC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xCC,0x96,0xEC,0x96,0xCC,0x8E,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xEC,0x8E,0xCD,0x96,0xAD,0x96,0xCC,0x96,0xCA,0x8E,0xEC,0x9E,0xCC,0x96,0xCB,0x96,0x2B,0x97,0x8D,0x96,0xC0,0x00,0x60,0x00,0x4D,0x85,0x2E,0xA7,0xAA,0x86,0x0D,0x97,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96, +0xEB,0x96,0xEB,0x96,0xEB,0x96,0xEB,0x96,0xCB,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xAC,0x8E,0xAB,0x8E,0xEC,0x96,0xEC,0x96,0xCC,0x8E,0xCB,0x8E,0xEC,0x96,0xEC,0x96,0xEC,0x96,0x0D,0x9F,0xAC,0x8E,0xED,0x9E,0x0A,0x7E,0x84,0x54,0x70,0xAF,0xCD,0x8E,0xEC,0x8E,0xEC,0x8E,0xEC,0x8E,0xCC,0x8E,0xCC,0x8E,0xEC,0x96,0xCB,0x96,0xCC,0xA6,0x4D,0x9E,0x21,0x22,0x40,0x00,0x01,0x00,0x02,0x00,0x00,0x08,0x00,0x08,0x01,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,0x08,0x00,0x08,0x00,0x00,0x20,0x00,0x20,0x00,0x00,0x00,0x00,0x00,0x01,0x00,0x01,0x00,0x01,0x00,0x00,0x00,0x40,0x00,0x20,0x00,0x00,0x00,0x00,0x08,0x01,0x08,0x84,0x43,0x51,0xB7,0x6B,0x8E,0xEB,0x96,0x0B,0x8F,0xCB,0x8E,0x2D,0x9F,0xCC,0x96,0xCC,0x96,0xCB,0x96,0xCB,0x96,0xEB,0x96,0xEC,0x8E,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xEC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96, +0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xEC,0x96,0xEC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x8E,0xEC,0x8E,0xEC,0x8E,0xEC,0x8E,0xEC,0x8E, +0xEC,0x96,0xCB,0x96,0xCB,0x9E,0xCB,0x96,0xEC,0x8E,0xEC,0x86,0xCD,0x8E,0xAE,0x96,0xAD,0x96,0xEB,0x8E,0xEA,0x8E,0xEE,0x9E,0xC4,0x32,0x20,0x00,0x41,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,0x01,0x08,0x00,0x00,0x20,0x09,0xAD,0x96,0x0A,0x97,0xEA,0x96,0xCD,0x96,0xCD,0x96,0xEC,0x8E,0xEB,0x96,0xCB,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x8E,0xEC,0x8E,0xEC,0x96,0xCB,0x96,0x0C,0x9F,0x8B,0x8E,0x27,0x65,0x4D,0x8E,0x70,0xAF,0xC4,0x4C,0x6C,0x86,0x12,0xAF,0x4B,0x74,0x80,0x00,0xA6,0x4B,0x51,0x9F,0xCE,0x8E,0xAF,0x8E, +0x27,0x65,0xCE,0x9E,0xAC,0x96,0xED,0x9E,0xCD,0x96,0x4B,0x86,0xCD,0x96,0xCC,0x96,0xCC,0x96,0xAC,0x8E,0xCC,0x8E,0xCC,0x8E,0xCD,0x86,0x0D,0x87,0x4E,0x87,0xED,0x7E,0x0D,0x87,0x0D,0x87,0x0D,0x87,0x0D,0x87,0x0D,0x87,0x0D,0x87,0x0D,0x87,0x0D,0x87,0x0D,0x87,0x0D,0x87,0xED,0x86,0xED,0x8E,0xEC,0x8E,0xEC,0x8E,0xCC,0x96,0xCC,0x96,0xCC,0x8E,0xCC,0x8E,0xCD,0x96,0x0E,0xA7,0xEE,0xA6,0xCE,0xA6,0xAE,0xA6,0xAD,0xA6,0xCE,0xAE,0xAD,0xA6,0xCD,0xA6,0xEE,0xA6,0xEE,0xA6,0xCC,0x96,0xCC,0x96,0xED,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xEC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96, +0xEC,0x96,0xEC,0x96,0xEC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xEC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCB,0x96,0xCB,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96, +0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCB,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xEC,0x8E,0xEC,0x8E,0xCC,0x96,0xEC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xEC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96, +0x0D,0x87,0xAD,0x8E,0xAD,0x9E,0xAC,0x9E,0xEB,0x9E,0x0B,0x97,0xEB,0x8E,0xEC,0x96,0x6C,0x96,0xA0,0x09,0x60,0x00,0xAD,0x74,0xF0,0xA6,0xCA,0x8E,0xEB,0x8E,0xCD,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEB,0x8E,0xEB,0x8E,0xEB,0x8E,0xEB,0x96,0xEB,0x96,0xCB,0x96,0xCB,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xED,0x9E,0xEC,0x96,0xCC,0x8E,0xCC,0x96,0xEC,0x96,0xEC,0x96,0xCC,0x8E,0xAB,0x8E,0xEC,0x96,0xAC,0x96,0xED,0x9E,0xAD,0x96,0x84,0x4C,0x2F,0xA7,0xA9,0x75, +0xED,0x96,0x0E,0x97,0xCD,0x8E,0xED,0x8E,0xEC,0x8E,0xAB,0x8E,0xEC,0x9E,0xCE,0xA6,0xEA,0x7C,0x80,0x00,0x40,0x00,0x00,0x00,0x01,0x00,0x01,0x00,0x01,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,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xE0,0x00,0x50,0xA6,0xAE,0x9E,0xCB,0x96,0xEA,0x8E,0x0C,0x8F,0xAC,0x8E,0xAD,0x96,0xCC,0x96,0xCC,0x96,0xEB,0x96,0xEB,0x96,0xEB,0x96,0xEC,0x96,0xCC,0x96,0xCC,0x96, +0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96, +0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xAC,0x96,0xAC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xEC,0x8E,0xCB,0x96,0xCB,0x9E,0xCB,0x96,0xEC,0x8E,0xEC,0x86,0xCD,0x96,0xAE,0x9E,0xAD,0x9E,0xEB,0x96,0xEA,0x8E,0xEE,0x9E,0xA4,0x32,0x00,0x00,0x41,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,0x01,0x08,0x00,0x00,0x20,0x09,0xAD,0x96,0x0A,0x97,0xCB,0x96,0xCD,0x96,0xCD,0x96,0xEC,0x8E,0xEB,0x96,0xCB,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x8E,0xCC,0x8E,0xEC,0x96,0xCC,0x96,0xEC,0x96,0x29,0x7E,0xAC,0x96,0xEF,0xA6,0xEB,0x7D,0xE5,0x4C,0x0D,0x8F,0xD0,0xA6,0x8C,0x7C,0x40,0x00,0xA4,0x43,0x8E,0x9F,0xAB,0x86,0xEE,0x96,0xA9,0x75,0xC5,0x54,0x70,0xAF,0x4B,0x86,0xCD,0x96,0x2A,0x86,0x80,0x2B,0x68,0x6D,0xED,0x9E,0x2F,0x9F,0xAC,0x8E,0xCD,0x8E,0x4E,0x97,0xCD,0x86,0xED,0x7E,0x2E,0x87,0x0D,0x87,0x0D,0x87,0x0D,0x87,0x0D,0x87,0x0D,0x87,0x0D,0x87,0x0D,0x87,0x0D,0x87,0x0D,0x87,0x0D,0x87,0xED,0x86,0xED,0x8E,0xEC,0x8E,0xEC,0x8E,0xCC,0x96,0xCC,0x96, +0xEC,0x8E,0xEC,0x8E,0xEC,0x8E,0xCC,0x8E,0xCC,0x96,0xCC,0x96,0xCD,0x96,0xCD,0x96,0xCD,0x9E,0xCD,0x96,0xAC,0x96,0xCC,0x96,0xEC,0x8E,0xEC,0x8E,0xEC,0x8E,0xEC,0x8E,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96, +0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xEC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCB,0x96,0xCB,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xEC,0x96,0xCC,0x96,0xCC,0x96,0xCB,0x96,0xCB,0x96,0xCB,0x96,0xCC,0x96,0xED,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96, +0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCD,0x86,0x0D,0x97,0xAB,0x96,0x6B,0x96,0xCD,0x9E,0xAA,0x8E,0xEA,0x8E,0xAD,0x96,0x63,0x2A,0x60,0x00,0xC8,0x53,0x0F,0xA7,0xEC,0x8E,0xCC,0x8E,0xEC,0x96,0xCB,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xEC,0x96,0xEC,0x96,0xEC,0x96,0xCC,0x96,0xCC,0x96, +0xEB,0x8E,0xEB,0x8E,0xEB,0x8E,0xEB,0x8E,0xEB,0x96,0xEB,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xAC,0x96,0xCC,0x96,0xEC,0x96,0xCC,0x96,0xCC,0x8E,0xCC,0x96,0xCC,0x96,0xED,0x96,0xAC,0x96,0xEE,0x9E,0xC5,0x54,0x2B,0x8E,0x2B,0x8E,0x44,0x4C,0xCB,0x8E,0xCC,0x8E,0xCD,0x8E,0xAD,0x96,0xAD,0x96,0x0F,0xAF,0xAB,0x85,0x21,0x22,0x20,0x00,0x21,0x00,0x01,0x00,0x00,0x00,0x00,0x00,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, +0x20,0x00,0x00,0x00,0x00,0x00,0x01,0x00,0x01,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x20,0x00,0x00,0x00,0x20,0x08,0x00,0x00,0x00,0x00,0x21,0x00,0x20,0x00,0x20,0x00,0x60,0x00,0x66,0x4B,0xF0,0xAE,0xAB,0x96,0x0B,0x97,0xCB,0x8E,0xCD,0x8E,0xCD,0x96,0xAD,0x96,0xCC,0x96,0xCB,0x96,0xEB,0x8E,0xEB,0x8E,0xCB,0x8E,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x8E,0xCC,0x8E,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96, +0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x8E,0xCC,0x8E,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x8E,0xCC,0x8E,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCB,0x8E,0xCB,0x8E,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x8E,0xCC,0x8E,0xCC,0x8E,0xCC,0x8E,0xCC,0x8E,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x8E,0xCC,0x8E, +0xEC,0x8E,0xCB,0x96,0xAB,0x96,0xCB,0x96,0xEB,0x8E,0xEC,0x86,0xCD,0x8E,0x8D,0x9E,0xAC,0x9E,0xEA,0x96,0xEA,0x8E,0xEE,0x9E,0xA5,0x32,0x00,0x00,0x21,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,0x01,0x08,0x00,0x00,0x20,0x09,0xAD,0x96,0x0B,0x97,0xCB,0x96,0xCD,0x96,0xCD,0x8E,0xEC,0x8E,0xEB,0x8E,0xCB,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x8E,0xCC,0x8E,0xAB,0x96,0xAD,0x96,0xCD,0x96,0x0C,0x9F,0x8A,0x96,0x0E,0xA7,0xC3,0x3B,0xCD,0x8E,0xEB,0x8E,0xEF,0xA6,0xA5,0x42,0x20,0x00,0x83,0x43,0xCD,0xAF,0x88,0x7E,0xCD,0x96, +0x4F,0xA7,0x84,0x4C,0x47,0x65,0x0E,0x9F,0xCD,0x96,0xEE,0x9E,0xCD,0x9E,0x44,0x4C,0xC2,0x3B,0xA9,0x6D,0x70,0xA7,0xEE,0x8E,0x6C,0x7E,0x0E,0x8F,0x0E,0x87,0xCD,0x7E,0xED,0x86,0xED,0x86,0xED,0x86,0xED,0x86,0xED,0x86,0xED,0x86,0xED,0x86,0xED,0x86,0xED,0x86,0xED,0x86,0xED,0x86,0xED,0x86,0xCD,0x8E,0xCC,0x8E,0xCC,0x96,0xCB,0x96,0x0C,0x8F,0xEC,0x8E,0xEC,0x8E,0xEC,0x8E,0xEC,0x8E,0xCC,0x8E,0xCC,0x8E,0xCC,0x8E,0xAC,0x8E,0xCC,0x8E,0xCC,0x8E,0xCC,0x8E,0xCC,0x8E,0xEC,0x8E,0xEC,0x8E,0xEC,0x8E,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96, +0xCB,0x8E,0xCB,0x8E,0xCC,0x8E,0xCC,0x8E,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCB,0x96,0xCB,0x96,0xCB,0x96,0xCB,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x8E,0xCC,0x8E,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x8E,0xCC,0x8E,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCB,0x96,0xCB,0x8E,0xCB,0x8E,0xCB,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96, +0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCB,0x8E,0xCC,0x8E,0xCB,0x96,0xCB,0x96,0xCB,0x96,0xAB,0x96,0xAC,0x96,0xCC,0x96,0xCC,0x96,0xCD,0x96,0xCD,0x96,0xCD,0x96,0xCC,0x96,0xAC,0x96,0xAC,0x9E,0xAC,0x9E,0xCC,0x96,0xCC,0x96,0xCC,0x8E,0xCC,0x8E,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96, +0xEE,0x96,0xCA,0x8E,0x0B,0x97,0xAD,0x9E,0x8E,0x9E,0x6C,0x8E,0x8F,0xAF,0xE1,0x2A,0x60,0x00,0x86,0x32,0x11,0xAF,0xEA,0x8E,0xEB,0x86,0xAD,0x8E,0xCD,0x96,0xCA,0x96,0xCB,0x96,0xCB,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x8E,0xCC,0x8E,0xCC,0x8E,0xCC,0x8E,0xCC,0x8E,0xCB,0x8E,0xCB,0x8E,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xAC,0x96,0xAC,0x8E,0xCC,0x96,0xEC,0x96,0xAC,0x8E,0xAB,0x8E,0xEC,0x96,0xEC,0x96,0x4B,0x86,0x4F,0xA7,0x06,0x65,0x68,0x6D,0x2F,0xA7,0xC2,0x3B,0xEF,0xA6, +0x0B,0x8F,0xEC,0x8E,0xCD,0x96,0x0F,0xA7,0x8F,0xA6,0x86,0x53,0x60,0x00,0x20,0x00,0x41,0x00,0x22,0x00,0x00,0x00,0x40,0x00,0x20,0x00,0x00,0x00,0x00,0x00,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,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x40,0x00,0xC0,0x00,0x8F,0xA6,0xCC,0x9E,0xCA,0x8E,0x0C,0x97,0xCD,0x8E,0xAD,0x8E,0xAD,0x96,0xCC,0x96,0xCB,0x96,0xEB,0x8E,0xEB,0x8E,0xCB,0x96,0xCC,0x96,0xCC,0x96, +0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96, +0xEC,0x96,0xEC,0x96,0xCB,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x8E,0xCC,0x8E,0xCC,0x8E,0xCC,0x8E,0xCC,0x8E,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xEC,0x8E,0xCB,0x96,0xAB,0x96,0xCB,0x96,0xEB,0x8E,0xEC,0x86,0xCD,0x96,0x8D,0x9E,0x8C,0x9E,0xEA,0x96,0xE9,0x8E,0xEE,0x9E,0xA5,0x3A,0x00,0x00,0x21,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,0x01,0x08,0x00,0x00,0x20,0x09,0xAE,0x96,0xEB,0x96,0xCB,0x96,0xAD,0x96,0xCD,0x8E,0xEB,0x8E,0xEB,0x8E,0xCB,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x8E,0xCC,0x8E,0xEB,0x96,0xCD,0x96,0x8D,0x8E,0xCC,0x96,0x0E,0xA7,0xA5,0x5C,0x07,0x65,0x2C,0x97,0x0B,0x8F,0x0D,0x96,0x20,0x00,0x20,0x00,0xE0,0x00,0xE9,0x7D,0x0B,0x97,0xAC,0x96,0x8C,0x8E,0x6F,0xAF,0xA0,0x33,0x0A,0x7E,0xCD,0x96,0x8C,0x96,0xAD,0x96,0x50,0xAF,0x2C,0x86,0xE2,0x3B,0xE3,0x3B,0xCE,0x8E,0x70,0x9F,0xAD,0x7E,0x0E,0x87,0xEE,0x86,0xED,0x86,0xED,0x86,0xED,0x86,0xED,0x86,0xED,0x86,0xED,0x86,0xED,0x86,0xED,0x86,0xED,0x86,0xED,0x86,0xED,0x86,0xED,0x86,0xED,0x8E,0xCC,0x8E,0xCC,0x96,0xCC,0x96, +0xAC,0x8E,0xCC,0x8E,0xCC,0x8E,0xCC,0x8E,0xCC,0x8E,0xEC,0x8E,0xEC,0x8E,0xCC,0x8E,0xCC,0x8E,0xEC,0x8E,0xEC,0x96,0xEC,0x96,0xCC,0x96,0xCC,0x8E,0xAB,0x96,0xAB,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCB,0x8E,0xCB,0x8E,0xCC,0x8E,0xCC,0x8E,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCB,0x96,0xCB,0x96,0xCB,0x96,0xCB,0x96,0xCB,0x96,0xCB,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96, +0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x8E,0xCC,0x8E,0xCC,0x8E,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCB,0x8E,0xCB,0x8E,0xCB,0x8E,0xCC,0x8E,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x8E,0xEC,0x96,0xEC,0x96,0xCC,0x96,0xCC,0x96,0xAC,0x96,0xCC,0x96,0xCC,0x96,0xAC,0x96,0xAD,0x96,0xAD,0x96,0xAD,0x96,0xAC,0x96,0x8C,0x96,0x8C,0x9E,0x8C,0x9E, +0xEC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCB,0x96,0xCB,0x8E,0xEB,0x8E,0x0C,0x97,0xAD,0x96,0x12,0xB7,0x45,0x43,0x60,0x00,0xC0,0x11,0xB1,0xA6,0xAD,0x96,0xCB,0x8E,0xCC,0x8E,0xED,0x96,0xEC,0x96,0xCA,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x8E,0xCC,0x8E,0xCC,0x8E,0xCC,0x8E,0xCC,0x8E,0xCC,0x8E, +0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x8E,0xCC,0x8E,0xCC,0x8E,0xCC,0x96,0x4E,0xA7,0x2E,0xA7,0xAC,0x96,0xAC,0x8E,0xED,0x96,0xCC,0x96,0x8B,0x8E,0x6B,0x8E,0x90,0xAF,0x47,0x65,0x06,0x65,0x2F,0xA7,0xE2,0x3B,0xAE,0x9E,0x8D,0x96,0x0B,0x8F,0xEB,0x8E,0x0C,0x9F,0x85,0x5C,0x40,0x09,0x40,0x00,0x00,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x40,0x00,0x20,0x00,0x01,0x00,0x00,0x00,0x20,0x00,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, +0x02,0x00,0x01,0x00,0x00,0x00,0x20,0x00,0x20,0x00,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x20,0x00,0x60,0x00,0xA5,0x4B,0x2E,0xA7,0xCA,0x8E,0xCB,0x8E,0xED,0x96,0xCE,0x96,0xAD,0x96,0xCC,0x96,0xCB,0x96,0xEA,0x8E,0xEB,0x8E,0xCB,0x96,0xCB,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96, +0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xEC,0x96,0xCB,0x8E,0xCB,0x8E,0xCB,0x8E,0xCC,0x96,0xCC,0x96,0xCC,0x8E,0xCB,0x8E,0xCC,0x8E,0xCC,0x8E,0xCC,0x8E,0xCC,0x8E,0xCC,0x8E,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96, +0xEC,0x8E,0xCB,0x96,0xCB,0x96,0xCB,0x96,0xEB,0x8E,0xEC,0x86,0xCD,0x96,0x8D,0x9E,0x8C,0x9E,0xEA,0x96,0xE9,0x8E,0xEE,0x9E,0x85,0x3A,0x01,0x00,0x22,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,0x01,0x08,0x00,0x00,0x20,0x09,0xAE,0x96,0xEB,0x96,0xCB,0x96,0xAD,0x96,0xCC,0x8E,0xEB,0x8E,0xEB,0x8E,0xCB,0x96,0xAC,0x96,0xCC,0x96,0xCC,0x8E,0xCC,0x8E,0xEA,0x96,0xCB,0x96,0xAC,0x8E,0xCE,0x96,0x4D,0x8E,0x82,0x3B,0xEC,0x9E,0xEA,0x8E,0x2C,0x97,0x2C,0x7D,0x21,0x08,0x02,0x00,0x20,0x00,0xC9,0x64,0x2E,0xA7,0x6A,0x96, +0xAC,0x96,0xAC,0x96,0xED,0x9E,0x80,0x2B,0x8C,0x8E,0xEE,0x9E,0xAD,0x96,0x6D,0x8E,0xCE,0x96,0x0F,0x9F,0xCB,0x75,0x61,0x23,0x07,0x4D,0x70,0x97,0xCD,0x7E,0x0E,0x87,0xED,0x86,0xED,0x86,0xED,0x86,0xED,0x86,0xED,0x86,0xED,0x86,0xED,0x86,0xED,0x86,0xED,0x86,0xED,0x86,0xED,0x86,0xED,0x86,0xED,0x8E,0xCC,0x8E,0xCC,0x8E,0xCC,0x96,0xAC,0x9E,0xAC,0x9E,0xAC,0x9E,0xAC,0x96,0xCC,0x96,0xCC,0x96,0xCB,0x96,0xCB,0x8E,0xEC,0x96,0xAB,0x96,0xAB,0x96,0xCB,0x96,0xCC,0x96,0xAC,0x96,0xAC,0x9E,0xAC,0x9E,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96, +0xCB,0x8E,0xCB,0x8E,0xCC,0x8E,0xCC,0x8E,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCB,0x96,0xCB,0x96,0xCB,0x96,0xCB,0x96,0xCB,0x96,0xCB,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xEC,0x8E,0xCC,0x8E,0xCC,0x8E,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x8E,0xCB,0x8E,0xCB,0x8E,0xCC,0x8E,0xCC,0x96,0xCC,0x96,0xCC,0x96, +0xCC,0x8E,0xCC,0x8E,0xCC,0x8E,0xCC,0x8E,0xCC,0x8E,0xCC,0x8E,0xCC,0x8E,0xCC,0x8E,0xCC,0x8E,0xCC,0x8E,0xCC,0x8E,0xCC,0x8E,0xCC,0x8E,0xCC,0x8E,0xCC,0x8E,0xCC,0x8E,0xEC,0x8E,0xEC,0x96,0xCC,0x8E,0xCC,0x8E,0xCC,0x96,0x0D,0x9F,0x6F,0xA7,0x90,0xAF,0x70,0xAF,0x70,0xAF,0x70,0xAF,0x70,0xAF,0x70,0xB7,0x6F,0xB7,0x4F,0xB7,0x4F,0xB7,0xEC,0x9E,0xEC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x8E,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96, +0xC9,0x96,0xEC,0x96,0xEC,0x8E,0x0B,0x87,0x0C,0x97,0x08,0x5C,0x20,0x00,0x21,0x19,0x0D,0x96,0x0C,0x97,0xCC,0x8E,0xAE,0x8E,0xED,0x96,0xC9,0x86,0x0B,0x97,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x8E,0xCC,0x8E,0xCC,0x8E,0xCC,0x8E,0xCC,0x8E,0xCC,0x8E,0xCC,0x8E,0xCC,0x8E,0xCC,0x8E,0xCC,0x8E,0xCC,0x8E,0xCC,0x8E,0xCC,0x8E,0xCC,0x8E,0xCC,0x8E,0xCC,0x8E,0xCC,0x8E,0xCC,0x8E,0xCC,0x8E,0xEC,0x8E,0xEC,0x8E,0xEC,0x8E,0xAC,0x8E,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x8E,0xAC,0x8E,0xEC,0x96,0x0D,0x9F,0xE9,0x75,0xA4,0x54,0x2F,0xA7,0x43,0x4C,0x2C,0x8E,0xAE,0x9E,0x8E,0x9E, +0x53,0xB6,0xD2,0xAD,0x45,0x3A,0x20,0x00,0x20,0x00,0x00,0x00,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,0x01,0x10,0x00,0x00,0x40,0x11,0x4E,0x8E,0xEC,0x8E,0x2B,0x8F,0xEA,0x8E,0xAC,0x8E,0xCD,0x96,0xCD,0x96,0xEA,0x8E,0x09,0x87,0xEB,0x86,0xCD,0x8E,0xCD,0x96,0xAB,0x96, +0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCB,0x96,0xCB,0x96,0xCB,0x96,0xCB,0x8E,0xCB,0x8E,0xCC,0x8E,0xCC,0x96,0xCC,0x96,0xCC,0x8E,0xCC,0x8E,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCB,0x8E,0xCC,0x96,0xAC,0x96,0xAD,0x96,0xAC,0x96,0xAC,0x96,0xAC,0x96,0xAC,0x8E,0xCC,0x96,0xCA,0x8E,0xEB,0x96,0xAB,0x8E,0xAC,0x96,0xCC,0x96,0xCA,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x8E,0xCC,0x8E,0xCC,0x8E,0xCC,0x8E,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96, +0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCA,0x96,0xCB,0x96,0xCB,0x96,0xCB,0x96,0xCC,0x96,0xCC,0x8E,0xCC,0x8E,0xCC,0x8E,0xCC,0x8E,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCD,0x96,0xEC,0x86,0xEB,0x8E,0xCB,0x96,0xCB,0x96,0xCB,0x96,0xEA,0x96,0xE9,0x96,0xCA,0x96,0xCC,0x8E,0xEB,0x8E,0xEA,0x8E,0xED,0x9E,0xA5,0x32,0x01,0x00,0x41,0x00,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,0x02,0x08,0x01,0x00,0x41,0x09,0xAE,0x8E,0x0C,0x8F,0xCD,0x96,0x8E,0x9E,0x6D,0x96,0xEC,0x9E,0xCA,0x96,0xEA,0x8E,0x2D,0x97,0x4A,0x76,0xCB,0x86,0xAA,0x8E,0xAC,0x8E,0xCB,0x96,0xAA,0x8E,0x0E,0x9F,0xE4,0x43,0x89,0x75,0x4D,0xA7,0xA9,0x96,0xEE,0xA6,0xCB,0x6C,0x60,0x00,0x20,0x00,0x40,0x00,0xCC,0x6C,0x2F,0x9F,0xEA,0x7E,0xCC,0x96,0xAC,0x96,0x0D,0x9F,0x2B,0x86,0x20,0x2B,0x0F,0xAF,0x6C,0x96,0xAD,0x9E,0xAC,0x96,0xAC,0x96,0xAD,0x8E,0xEE,0x96,0xA6,0x4C,0x83,0x23,0x2E,0x7E,0xF1,0x96,0x0D,0x8F,0xCC,0x86,0xCE,0x86,0xEF,0x86,0xCF,0x86,0xCF,0x86,0xCE,0x7E,0xEE,0x7E,0x0D,0x87,0x0C,0x87,0x0B,0x87,0x0B,0x87,0x0B,0x8F,0xCC,0x8E,0xAC,0x8E,0xAD,0x96, +0xEB,0x86,0x0B,0x8F,0x0B,0x8F,0xEB,0x8E,0xEC,0x8E,0xCC,0x8E,0xCB,0x8E,0xEB,0x8E,0xEC,0x8E,0xCC,0x8E,0xCD,0x96,0xEB,0x96,0xCA,0x96,0xEB,0x96,0xAD,0x96,0xAF,0x96,0xCC,0x8E,0xCC,0x8E,0xCC,0x8E,0xCC,0x8E,0xCC,0x96,0xCB,0x96,0xCB,0x96,0xCB,0x96,0xCB,0x96,0xCB,0x96,0xCB,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xEC,0x86,0xEC,0x8E,0xEC,0x8E,0xCC,0x8E,0xCC,0x96,0xAC,0x96,0xAC,0x96,0xAC,0x96,0xAC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x8E,0xCC,0x8E,0xEC,0x8E,0xEC,0x8E,0xEC,0x8E, +0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCB,0x96,0xCB,0x96,0xCB,0x96,0xCB,0x8E,0xCB,0x8E,0xCB,0x8E,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCB,0x96,0xCB,0x96,0xCB,0x96,0xCB,0x96,0xCB,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x8E,0xCC,0x8E,0xCC,0x8E,0xCC,0x96,0xCC,0x96,0xAC,0x96,0xAC,0x96,0xEB,0x96,0xEA,0x96,0xCB,0x8E,0xCD,0x8E,0xCE,0x8E,0xCE,0x8E,0xAD,0x8E,0xAD,0x8E,0xCC,0x8E,0xEA,0x96,0xE9,0x96,0xCB,0x96,0xCC,0x96,0xCC,0x96,0xCB,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0x8C,0x96,0x8C,0x9E,0xEE,0xA6,0x71,0xBF,0xF3,0xCF,0xF3,0xD7,0xD2,0xCF,0xB2,0xD7,0xD3,0xD7,0xD3,0xD7,0xD3,0xD7,0x92,0xD7,0x50,0xC7, +0x0F,0xA7,0x8D,0x96,0x8D,0x96,0x8E,0x96,0xAE,0x96,0x8D,0x96,0xAD,0x96,0xCC,0x96,0xCB,0x96,0xEB,0x96,0xEA,0x96,0xEA,0x96,0xEA,0x8E,0xEB,0x8E,0xEB,0x8E,0xCB,0x8E,0x0C,0x87,0xEC,0x8E,0xCC,0x8E,0xCC,0x96,0xCB,0x96,0xEC,0x8E,0xEC,0x8E,0xAC,0x8E,0xAC,0x96,0xAC,0x9E,0xCC,0x9E,0xAC,0x96,0xAC,0x8E,0xEC,0x8E,0xEB,0x8E,0xEA,0x8E,0x8E,0x8E,0xEB,0x96,0xA9,0x96,0xAE,0xA6,0xEE,0x84,0x20,0x00,0xA0,0x00,0xAB,0x7D,0xCC,0x96,0xCB,0x8E,0xCB,0x8E,0xEC,0x8E,0xEC,0x8E,0xCD,0x8E,0xCC,0x96,0xAB,0x9E,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x8E,0xCC,0x8E,0xCC,0x8E,0xCC,0x8E, +0xCB,0x8E,0xCB,0x8E,0xCB,0x8E,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCB,0x8E,0xCB,0x8E,0xCC,0x96,0xAC,0x8E,0xCD,0x96,0x8B,0x8E,0xCC,0x9E,0x8B,0x96,0xCC,0x96,0x22,0x44,0xEE,0x9E,0x65,0x4C,0xCA,0x75,0x0F,0xA7,0x8C,0x8E,0xAC,0x96,0xA9,0x63,0x40,0x00,0x20,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,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,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,0x08,0x21,0x08,0x40,0x00,0xCA,0x6C,0xCD,0x96,0x68,0x7E,0xCA,0x8E,0xCC,0x96,0xAC,0x96,0xCC,0x8E,0xEB,0x8E,0x0B,0x8F,0xEB,0x8E,0xEC,0x8E,0xCC,0x8E,0xAC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCB,0x96,0xCB,0x96,0xCB,0x96,0xCB,0x8E,0xCB,0x8E,0xCC,0x8E,0xCC,0x96,0xCC,0x96,0xCC,0x8E,0xCC,0x8E,0xCC,0x96,0xCC,0x96,0xCC,0x96, +0xAD,0x8E,0xAC,0x8E,0xAA,0x8E,0xCA,0x96,0xCA,0x96,0xEA,0x96,0xC9,0x96,0xEA,0x96,0xEB,0x96,0xCC,0x96,0xAC,0x8E,0xEC,0x96,0xCC,0x96,0xCC,0x96,0xCB,0x96,0xCA,0x8E,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x8E,0xCC,0x8E,0xCC,0x8E,0xCC,0x8E,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCB,0x96,0xCB,0x96,0xCB,0x96,0xCC,0x96,0xCC,0x8E,0xCC,0x8E,0xCC,0x8E,0xCC,0x8E,0xCC,0x8E,0xCB,0x96,0xCB,0x96,0xCB,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96, +0xEC,0x8E,0xEB,0x8E,0xCB,0x96,0xAC,0x96,0xCC,0x96,0xCB,0x96,0xCA,0x96,0xCB,0x96,0xAC,0x8E,0xEC,0x8E,0xCA,0x8E,0xCE,0x9E,0xA5,0x32,0x01,0x00,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,0x02,0x00,0x01,0x00,0x41,0x11,0xAE,0x96,0xEB,0x86,0xCB,0x8E,0xAC,0x96,0xCC,0x96,0x6A,0x86,0x0E,0xA7,0x8E,0x96,0xE3,0x3B,0x07,0x5D,0x51,0xAF,0xEF,0x9E,0x0F,0xA7,0xAD,0x96,0x91,0xAF,0x49,0x6D,0xA3,0x33,0x71,0xAF,0x29,0x7E,0xEA,0x96,0xED,0x9E,0x89,0x64,0x40,0x00,0x21,0x00,0x00,0x00,0x49,0x6C,0x2F,0xA7,0xE9,0x86, +0xEC,0x96,0x8B,0x8E,0xCC,0x96,0xEE,0x9E,0x89,0x75,0x40,0x2B,0x4F,0xAF,0x6B,0x8E,0xCD,0x96,0xCC,0x8E,0xED,0x96,0xCD,0x8E,0x70,0x9F,0x2C,0x76,0xC3,0x2B,0x46,0x3C,0x8D,0x7E,0x50,0x97,0x8D,0x7E,0xAD,0x86,0x0E,0x8F,0xED,0x86,0x0E,0x87,0xED,0x7E,0xED,0x7E,0x0E,0x87,0x0E,0x87,0xED,0x8E,0xCD,0x8E,0xCC,0x8E,0xAB,0x96,0xCC,0x96,0xCB,0x96,0xCB,0x96,0xAB,0x8E,0x8B,0x8E,0xAD,0x96,0xCD,0x96,0xCC,0x96,0xEB,0x96,0xCB,0x96,0xAC,0x96,0xAC,0x96,0xAC,0x8E,0xCB,0x96,0xEB,0x96,0xAC,0x8E,0xAE,0x8E,0xCC,0x8E,0xCC,0x8E,0xCC,0x8E,0xCC,0x8E,0xCC,0x96,0xCC,0x96,0xCB,0x96,0xCB,0x96,0xCB,0x96,0xCB,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96, +0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xEC,0x8E,0xEC,0x8E,0xCC,0x8E,0xCC,0x96,0xCC,0x96,0xAC,0x96,0xAC,0x96,0xAC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x8E,0xCC,0x8E,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCB,0x96,0xCB,0x96,0xCB,0x8E,0xCB,0x8E,0xCB,0x8E,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCB,0x96,0xCB,0x96,0xCB,0x96,0xCB,0x96,0xCB,0x96,0xCC,0x96,0xCC,0x8E,0xCC,0x8E,0xCC,0x8E,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xAC,0x96, +0xAC,0x8E,0xCB,0x96,0xCA,0x8E,0xCB,0x8E,0xCB,0x8E,0xCC,0x8E,0xCC,0x8E,0xCC,0x8E,0xCB,0x8E,0xCB,0x8E,0xCB,0x8E,0xAB,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCB,0x96,0xAB,0x8E,0xAB,0x96,0xAC,0x96,0xAC,0x96,0xAC,0x9E,0xED,0xA6,0x2F,0xAF,0x70,0xBF,0x70,0xBF,0x50,0xBF,0x50,0xBF,0x50,0xBF,0x50,0xBF,0x50,0xBF,0x50,0xBF,0x2F,0xBF,0x4E,0xA7,0xAB,0x8E,0xEC,0x96,0xCB,0x96,0xCB,0x96,0xCB,0x96,0xEC,0x96,0xAB,0x8E,0xAC,0x96,0xAC,0x96,0xAC,0x96,0xAC,0x96,0xAC,0x96,0xAC,0x96,0xAC,0x96,0xAC,0x96,0xCC,0x96,0xAC,0x96,0xAC,0x96,0xAB,0x96,0xCB,0x8E,0xEB,0x8E,0xEB,0x86,0xEB,0x8E,0xCA,0x8E,0xAA,0x8E,0xCB,0x96,0xCB,0x8E,0xCC,0x8E,0xEB,0x8E,0xCA,0x8E,0xEA,0x96, +0xEC,0x96,0x6A,0x8E,0x2E,0xAF,0x2B,0x7D,0x80,0x00,0x80,0x00,0xCB,0x74,0x0F,0xA7,0xAC,0x96,0xCC,0x96,0xCC,0x8E,0xCC,0x8E,0xEC,0x86,0xEC,0x8E,0xAC,0x96,0xAB,0x9E,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x8E,0xCC,0x8E,0xCC,0x8E,0xCC,0x8E,0xCB,0x96,0xCB,0x96,0xCB,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xEC,0x96,0xCC,0x96,0xAC,0x8E,0xEC,0x96,0x8B,0x8E,0xCC,0x96,0xCC,0x96,0xCC,0x9E,0xE1,0x3B,0x0E,0xA7,0x85,0x54,0xCA,0x7D,0x0E,0x9F,0x8C,0x8E,0xCC,0x96,0xCC,0x96, +0x40,0x00,0x40,0x00,0x60,0x00,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,0x01,0x08,0x01,0x00,0x20,0x00,0x60,0x09,0xCF,0xA6,0x4F,0xAF,0xAC,0x96,0xAC,0x96,0xAB,0x8E,0xCC,0x96,0xCC,0x8E,0xAC,0x86,0xEC,0x8E,0xCB,0x8E,0xAB,0x8E,0xAC,0x8E, +0xCC,0x8E,0xCC,0x8E,0xCC,0x8E,0xCC,0x8E,0xCC,0x8E,0xCC,0x8E,0xCC,0x8E,0xCC,0x8E,0xCC,0x8E,0xCC,0x8E,0xCC,0x8E,0xCC,0x8E,0xCC,0x8E,0xCC,0x8E,0xCC,0x8E,0xCC,0x8E,0xCC,0x96,0xCC,0x96,0xCC,0x8E,0xCB,0x8E,0xCB,0x8E,0xCB,0x8E,0xCB,0x8E,0xCC,0x8E,0xCC,0x8E,0xCC,0x8E,0xCC,0x96,0xCC,0x8E,0xCC,0x8E,0xCC,0x8E,0xCB,0x96,0xAB,0x96,0xAD,0x8E,0xEC,0x96,0xE9,0x96,0x08,0x97,0x08,0x97,0x27,0x9F,0x26,0x9F,0x68,0x9F,0xE9,0x96,0xCB,0x8E,0xAC,0x8E,0xAB,0x8E,0xCC,0x8E,0xCC,0x8E,0xCB,0x8E,0xEB,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x8E,0xCC,0x8E,0xCC,0x8E,0xCC,0x8E,0xCC,0x8E,0xCC,0x8E,0xCC,0x8E,0xCC,0x8E,0xCC,0x8E,0xCC,0x8E,0xCC,0x8E,0xCC,0x8E,0xCC,0x96,0xCC,0x96, +0xCC,0x8E,0xCC,0x8E,0xCC,0x8E,0xCC,0x8E,0xCC,0x8E,0xCC,0x8E,0xCC,0x8E,0xCC,0x8E,0xCC,0x8E,0xCC,0x8E,0xCC,0x8E,0xCC,0x8E,0xCC,0x8E,0xCC,0x8E,0xCC,0x8E,0xCC,0x8E,0xAC,0x96,0xCC,0x96,0xCC,0x8E,0xCC,0x8E,0xCC,0x8E,0xCC,0x8E,0xCC,0x8E,0xCC,0x8E,0xCB,0x8E,0xCB,0x96,0xCB,0x96,0xCB,0x96,0xCB,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x8E,0xCC,0x8E,0xCC,0x8E,0xAC,0x96,0xAC,0x96,0xAC,0x96,0xCB,0x8E,0xCB,0x8E,0xCC,0x96,0xAD,0x8E,0xEC,0x8E,0xCB,0x8E,0xCE,0x9E,0xA5,0x3A,0x01,0x00,0x01,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,0x02,0x08,0x01,0x08,0x00,0x11,0x8C,0x96,0xEA,0x8E,0xEB,0x8E,0xEB,0x96,0xA9,0x8E,0x4E,0xA7,0x2B,0x75,0x20,0x01,0x01,0x22,0x8D,0x8D,0xCB,0x74,0xAD,0x74,0x0B,0x75,0xEB,0x74,0xAA,0x64,0xA1,0x22,0x11,0xA7,0xCE,0x96,0xEC,0x8E,0x0A,0x8F,0x2C,0x9F,0xC8,0x6C,0x40,0x00,0x01,0x08,0x00,0x00,0xC7,0x63,0x0E,0xAF,0xCA,0x8E,0xCB,0x8E,0xEC,0x8E,0xCC,0x8E,0xAC,0x8E,0x2F,0xA7,0x64,0x4C,0x43,0x44,0x4F,0xA7,0x8B,0x8E,0xCC,0x8E,0xEC,0x8E,0xCC,0x86,0x6B,0x7E,0x0E,0x8F,0x50,0x97,0x89,0x5D,0xA4,0x23,0x86,0x44,0x30,0x97,0x0E,0x8F,0xCC,0x86,0xEC,0x86,0xEC,0x86,0xED,0x86,0xED,0x86,0xCE,0x86,0xCE,0x86,0xAD,0x86,0xAD,0x8E,0xCC,0x8E,0xCB,0x96,0xCB,0x96, +0xAB,0x96,0xCC,0x9E,0xCC,0x9E,0xAC,0x96,0xAD,0x96,0xAD,0x96,0xAC,0x96,0xAB,0x96,0xAA,0x8E,0xCB,0x96,0xCC,0x96,0xAC,0x8E,0xAB,0x8E,0xCB,0x8E,0xEC,0x96,0xCC,0x8E,0xCC,0x8E,0xCC,0x8E,0xCC,0x8E,0xCC,0x8E,0xCC,0x8E,0xCC,0x8E,0xCB,0x8E,0xCB,0x8E,0xCB,0x96,0xCB,0x96,0xCC,0x8E,0xCC,0x8E,0xCC,0x8E,0xCC,0x8E,0xCC,0x8E,0xCC,0x8E,0xCC,0x8E,0xCC,0x8E,0xCC,0x8E,0xCC,0x8E,0xCC,0x8E,0xCC,0x8E,0xCC,0x8E,0xCC,0x8E,0xCC,0x8E,0xCC,0x8E,0xCC,0x8E,0xCC,0x8E,0xCC,0x8E,0xCC,0x8E,0xCC,0x8E,0xCC,0x8E,0xCB,0x96,0xCB,0x96,0xCB,0x96,0xCB,0x96,0xCB,0x96,0xCB,0x96,0xCB,0x96,0xCB,0x96,0xCB,0x8E,0xCB,0x8E,0xCB,0x8E,0xCB,0x8E,0xCB,0x96,0xCB,0x96,0xAB,0x96,0xAB,0x96, +0xCC,0x8E,0xCC,0x8E,0xCC,0x8E,0xCC,0x8E,0xCC,0x8E,0xCC,0x8E,0xCC,0x8E,0xCC,0x8E,0xCC,0x8E,0xCC,0x8E,0xCC,0x8E,0xCC,0x8E,0xCC,0x8E,0xCB,0x8E,0xCB,0x8E,0xCB,0x8E,0xAC,0x96,0xCC,0x96,0xCC,0x8E,0xCB,0x8E,0xCB,0x8E,0xCB,0x8E,0xCB,0x8E,0xCB,0x8E,0xCC,0x8E,0xAC,0x8E,0xAC,0x8E,0xCC,0x8E,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xAA,0x8E,0x09,0x97,0xE7,0x8E,0x29,0x97,0x09,0x97,0x0A,0x97,0x09,0x97,0xEA,0x8E,0xCB,0x8E,0xAD,0x8E,0xAD,0x8E,0xCD,0x96,0xAC,0x96,0xAC,0x96,0xCB,0x8E,0xCB,0x8E,0xCB,0x8E,0xAB,0x96,0xAC,0x96,0xAC,0x96,0xAC,0x96,0x8C,0x96,0x8C,0x96,0x8C,0x9E,0xAD,0x9E,0x8D,0x9E,0x8C,0x96,0x8C,0x96,0xAC,0x9E,0xAC,0x9E, +0xEB,0x96,0xCA,0x8E,0xEA,0x8E,0xA9,0x8E,0xEA,0x96,0xCA,0x8E,0x8A,0x86,0xEC,0x96,0xCC,0x96,0xAD,0x96,0xAD,0x96,0xAD,0x96,0xAD,0x96,0xAC,0x96,0xAC,0x96,0xCC,0x96,0xAC,0x96,0xAC,0x9E,0xAC,0x9E,0xAB,0x96,0xCB,0x96,0xEB,0x8E,0xEB,0x8E,0xEB,0x86,0x0B,0x97,0xAA,0x8E,0xAA,0x8E,0xEC,0x96,0xEC,0x96,0xCC,0x8E,0xCC,0x96,0xAB,0x96,0xEA,0x8E,0xED,0x9E,0x0F,0x96,0xC0,0x00,0xA0,0x00,0xA6,0x4B,0x0F,0xAF,0x6B,0x8E,0xAC,0x96,0xAC,0x96,0xAC,0x96,0xCC,0x8E,0xEC,0x86,0xEC,0x86,0xCB,0x96,0x8B,0x9E,0xCC,0x8E,0xCC,0x8E,0xCC,0x8E,0xCC,0x8E,0xCC,0x8E,0xCC,0x8E,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x8E,0xCC,0x8E,0xCC,0x8E,0xCC,0x8E,0xCC,0x8E,0xCC,0x8E,0xCC,0x8E, +0xCB,0x8E,0xCB,0x8E,0xCB,0x8E,0xCC,0x8E,0xCC,0x8E,0xCC,0x8E,0xCC,0x8E,0xCC,0x8E,0xCC,0x8E,0xCC,0x8E,0xCC,0x8E,0xCC,0x8E,0xCC,0x8E,0xCC,0x8E,0xCC,0x8E,0xCC,0x8E,0xAC,0x8E,0xCC,0x8E,0xCB,0x96,0x8A,0x8E,0xEC,0x9E,0x6A,0x8E,0x0E,0x9F,0x64,0x4C,0x6D,0x96,0xA6,0x5C,0x27,0x65,0x0E,0x9F,0xAC,0x96,0xAC,0x96,0xAB,0x96,0xAB,0x8E,0x40,0x00,0x40,0x00,0x20,0x00,0x00,0x00,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,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,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,0x40,0x00,0x60,0x11,0x89,0x6C,0x4F,0x9E,0xAE,0x9E,0xAC,0x96,0xAB,0x96,0xCC,0x96,0xCD,0x96,0x8A,0x8E,0xEB,0x96,0xCC,0x8E,0xEE,0x96,0xCC,0x8E,0xCC,0x8E,0xCC,0x8E,0xCC,0x8E,0xCC,0x8E,0xCC,0x8E,0xCC,0x8E,0xCC,0x8E,0xCC,0x8E,0xCC,0x8E,0xCC,0x8E,0xCC,0x8E,0xCC,0x8E,0xCC,0x8E,0xCC,0x8E,0xCC,0x8E,0xCC,0x96,0xCC,0x96,0xCC,0x8E,0xCB,0x8E,0xCB,0x8E,0xCB,0x8E,0xCC,0x8E,0xCC,0x8E,0xCC,0x8E,0xCC,0x8E,0xCC,0x96,0xCC,0x8E,0xCC,0x8E,0xCB,0x8E,0xCB,0x96,0xCB,0x96, +0xCA,0x8E,0x2A,0x97,0x28,0x9F,0x48,0x9F,0x48,0x9F,0x67,0xA7,0x45,0x9F,0x25,0x9F,0x49,0x9F,0x2B,0x9F,0x2B,0x9F,0xEA,0x8E,0xCB,0x8E,0xCB,0x8E,0xCC,0x96,0xCC,0x8E,0xCC,0x96,0xCC,0x96,0xCC,0x8E,0xCC,0x8E,0xCC,0x8E,0xCC,0x8E,0xCC,0x8E,0xCC,0x8E,0xCC,0x8E,0xCC,0x8E,0xCC,0x8E,0xCC,0x8E,0xCC,0x8E,0xCC,0x8E,0xCC,0x96,0xCC,0x96,0xCC,0x8E,0xCC,0x8E,0xCC,0x8E,0xCC,0x8E,0xCC,0x8E,0xCC,0x8E,0xCC,0x8E,0xCC,0x8E,0xCC,0x8E,0xCC,0x8E,0xCC,0x8E,0xCC,0x8E,0xCC,0x8E,0xCC,0x8E,0xCC,0x8E,0xCC,0x8E,0xAD,0x8E,0xCC,0x8E,0xCC,0x8E,0xCC,0x8E,0xCC,0x8E,0xCC,0x8E,0xCC,0x8E,0xCB,0x8E,0xCB,0x8E,0xCB,0x96,0xCB,0x96,0xCB,0x96,0xCB,0x96,0xCB,0x96,0xCB,0x96,0xCB,0x96, +0xCC,0x8E,0xAC,0x96,0xAC,0x96,0xAC,0x96,0xAD,0x96,0xCB,0x8E,0xCA,0x8E,0xCB,0x8E,0xAC,0x8E,0xEB,0x8E,0xCA,0x8E,0xCE,0x9E,0x85,0x3A,0x01,0x00,0x01,0x08,0x00,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,0x20,0x00,0x00,0x08,0x00,0x08,0x00,0x11,0xCC,0x9E,0xEA,0x96,0xCB,0x8E,0xAC,0x8E,0x0E,0xA7,0xC8,0x6C,0x40,0x00,0x21,0x00,0x20,0x00,0x60,0x00,0x40,0x00,0x20,0x00,0x20,0x00,0x40,0x00,0x60,0x00,0x80,0x00,0x80,0x09,0x50,0x9E,0x6E,0x96,0xAC,0x96,0x0D,0xA7,0x67,0x64,0x40,0x00,0x00,0x00,0x20,0x00,0xE8,0x63,0x10,0xAF,0x8C,0x8E, +0xCC,0x8E,0xAC,0x8E,0xAC,0x8E,0xAD,0x96,0x6D,0x8E,0x71,0xAF,0xA1,0x3B,0xE6,0x5C,0xED,0x9E,0xCC,0x96,0xAC,0x8E,0xEC,0x8E,0xCD,0x8E,0xAD,0x86,0xCE,0x86,0xEF,0x8E,0xF0,0x96,0x28,0x5D,0x00,0x13,0x0B,0x76,0xEE,0x8E,0xCD,0x86,0xCD,0x8E,0xCD,0x86,0xEE,0x8E,0xEE,0x86,0xCD,0x86,0xCD,0x8E,0xCE,0x8E,0xCD,0x96,0xCD,0x9E,0xEE,0x9E,0xAC,0x96,0xAC,0x96,0x8C,0x96,0x6B,0x8E,0xAC,0x96,0xAD,0x96,0xAD,0x96,0x8C,0x8E,0xEB,0x96,0xCA,0x96,0xAB,0x96,0xCC,0x8E,0xCC,0x96,0xCB,0x8E,0x0C,0x97,0xAB,0x8E,0xCC,0x8E,0xCC,0x8E,0xCC,0x8E,0xCC,0x8E,0xCC,0x8E,0xCC,0x8E,0xCC,0x8E,0xCB,0x8E,0xCB,0x8E,0xCC,0x8E,0xCC,0x8E,0xCC,0x8E,0xCC,0x8E,0xCC,0x8E,0xCC,0x8E,0xCC,0x8E, +0xCC,0x8E,0xCC,0x8E,0xCC,0x8E,0xCC,0x8E,0xCC,0x8E,0xCC,0x8E,0xCC,0x8E,0xCC,0x8E,0xCC,0x8E,0xCC,0x8E,0xCC,0x8E,0xCC,0x8E,0xCC,0x8E,0xCC,0x8E,0xCC,0x8E,0xCC,0x8E,0xAB,0x96,0xAB,0x96,0xAB,0x96,0xCB,0x96,0xCB,0x96,0xCB,0x8E,0xCB,0x8E,0xCB,0x8E,0xEB,0x8E,0xEB,0x8E,0xCB,0x8E,0xCB,0x8E,0xCB,0x96,0xAB,0x96,0xAB,0x96,0xAB,0x96,0xCC,0x8E,0xCC,0x8E,0xCC,0x8E,0xCC,0x8E,0xCC,0x8E,0xCC,0x8E,0xCC,0x8E,0xCC,0x8E,0xCC,0x8E,0xCC,0x8E,0xCC,0x8E,0xCC,0x8E,0xCC,0x8E,0xCC,0x8E,0xCC,0x8E,0xCC,0x8E,0xCC,0x96,0xCC,0x8E,0xCC,0x8E,0xCC,0x8E,0xCB,0x8E,0xCB,0x8E,0xCB,0x8E,0xCC,0x8E,0xCC,0x8E,0xCC,0x8E,0xCC,0x8E,0xCC,0x8E,0xCC,0x8E,0xCB,0x8E,0xCB,0x8E,0xCB,0x96, +0xCC,0x8E,0xCB,0x8E,0x09,0x97,0x47,0x9F,0x45,0x9F,0x66,0x9F,0x47,0x9F,0x28,0x9F,0x27,0x97,0x08,0x97,0xEA,0x8E,0xCC,0x8E,0xAC,0x8E,0xCC,0x8E,0xCC,0x8E,0xAD,0x96,0xEB,0x8E,0xEB,0x8E,0xEB,0x8E,0xCC,0x8E,0xCC,0x8E,0xCC,0x8E,0xCC,0x8E,0xAC,0x8E,0xAC,0x96,0xAC,0x96,0xAC,0x96,0xAC,0x8E,0xAC,0x8E,0xAC,0x8E,0xAC,0x96,0xAC,0x96,0xAB,0x96,0xAB,0x8E,0xCC,0x96,0xAB,0x8E,0xAC,0x8E,0xCC,0x96,0xAC,0x8E,0xED,0x8E,0xCC,0x8E,0xEC,0x8E,0xEB,0x8E,0xEB,0x86,0xEA,0x8E,0xEA,0x86,0xEA,0x86,0xE9,0x86,0xCB,0x8E,0xCB,0x8E,0xCB,0x96,0xAC,0x96,0xAB,0x96,0xCC,0x8E,0xCC,0x8E,0xAC,0x8E,0x8C,0x96,0xAD,0x9E,0xCD,0x9E,0x8C,0x8E,0x8D,0x8E,0xAD,0x96,0x8C,0x8E,0x8D,0x96, +0xC9,0x96,0x6E,0x96,0x60,0x01,0x60,0x00,0x62,0x2A,0x0F,0xAF,0xAB,0x8E,0xEC,0x96,0xAC,0x96,0xAC,0x9E,0xAC,0x96,0xCC,0x8E,0x0C,0x87,0xEC,0x86,0xCB,0x96,0x8B,0x9E,0xCC,0x8E,0xCC,0x8E,0xCC,0x8E,0xCC,0x8E,0xCC,0x8E,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x96,0xCC,0x8E,0xCC,0x8E,0xCC,0x8E,0xCC,0x8E,0xCC,0x8E,0xCC,0x8E,0xCC,0x8E,0xCB,0x8E,0xCB,0x8E,0xCB,0x8E,0xCC,0x8E,0xCC,0x8E,0xCC,0x8E,0xCC,0x8E,0xCC,0x8E,0xCC,0x8E,0xCC,0x8E,0xCC,0x8E,0xCC,0x8E,0xCC,0x8E,0xCC,0x8E,0xCC,0x8E,0xCC,0x8E,0xAC,0x96,0xCC,0x96,0xAB,0x8E,0xCB,0x96,0xAB,0x96,0x0E,0xA7,0x44,0x4C,0xCB,0x7D,0xE7,0x5C,0x07,0x65,0x4F,0xA7,0x8B,0x8E,0xEC,0x96,0xAB,0x8E,0xCB,0x8E,0xCB,0x8E, +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,0x20,0x00,0x00,0x00,0x20,0x00,0x00,0x00,0x20,0x00,0x40,0x00,0xC0,0x00,0x49,0x64,0x8E,0xA6,0xAD,0x9E,0x8B,0x96,0xAB,0x96,0xEB,0x96,0xAA,0x8E,0xCB,0x8E,0x8C,0x86, +0xCB,0x8E,0xCB,0x8E,0xCB,0x8E,0xCB,0x8E,0xCB,0x8E,0xCB,0x8E,0xCB,0x8E,0xCB,0x8E,0xCB,0x8E,0xCB,0x8E,0xCB,0x8E,0xCB,0x8E,0xCB,0x8E,0xCB,0x8E,0xCB,0x8E,0xCB,0x8E,0xAB,0x96,0xAB,0x96,0xCB,0x8E,0xCB,0x8E,0xCB,0x8E,0xCB,0x8E,0xCB,0x8E,0xCC,0x8E,0xCC,0x8E,0xCC,0x8E,0xCC,0x8E,0xCC,0x8E,0xCB,0x8E,0xCB,0x8E,0xCB,0x96,0xCA,0x96,0x06,0x97,0x27,0x9F,0x28,0x9F,0xE8,0x96,0x07,0x9F,0x26,0x9F,0x25,0x9F,0x46,0x9F,0x28,0x9F,0x08,0x97,0x08,0x97,0x28,0x97,0xE9,0x8E,0xAB,0x8E,0xCD,0x8E,0xCC,0x8E,0xAB,0x96,0xAB,0x96,0xCB,0x8E,0xCB,0x8E,0xCB,0x8E,0xCB,0x8E,0xCB,0x8E,0xCB,0x8E,0xCB,0x8E,0xCB,0x8E,0xCB,0x8E,0xCB,0x8E,0xCB,0x8E,0xCB,0x8E,0xAB,0x96,0xAB,0x96, +0xCB,0x8E,0xCB,0x8E,0xCB,0x8E,0xCB,0x8E,0xCB,0x8E,0xCB,0x8E,0xCB,0x8E,0xCB,0x8E,0xCB,0x8E,0xCB,0x8E,0xCB,0x8E,0xCB,0x8E,0xCB,0x8E,0xCB,0x8E,0xCB,0x8E,0xCB,0x8E,0xAD,0x8E,0xCD,0x8E,0xCC,0x8E,0xCC,0x8E,0xCB,0x8E,0xCB,0x8E,0xCB,0x8E,0xCB,0x8E,0xCB,0x8E,0xAB,0x96,0xAB,0x96,0xAB,0x96,0xAB,0x96,0xAB,0x96,0xAB,0x96,0xAB,0x96,0xCC,0x8E,0xAB,0x96,0xAB,0x96,0x8D,0x96,0xAD,0x8E,0xCB,0x8E,0xCB,0x8E,0xCB,0x8E,0xCC,0x8E,0xEB,0x8E,0xCA,0x8E,0xCD,0x9E,0x84,0x3A,0x00,0x00,0x01,0x08,0x00,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, +0x20,0x00,0x00,0x00,0x20,0x08,0x20,0x11,0x8C,0x9E,0xCB,0x96,0x4C,0x8E,0x89,0x64,0xC8,0x53,0xE0,0x00,0x00,0x00,0x02,0x00,0x01,0x00,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x60,0x00,0x49,0x5B,0x4C,0x74,0x29,0x6C,0x69,0x6C,0x63,0x32,0x60,0x00,0x40,0x00,0x20,0x00,0x86,0x3A,0xEC,0x7C,0xA9,0x64,0xC9,0x6C,0xC9,0x64,0xCA,0x6C,0xCA,0x6C,0xCA,0x6C,0xAA,0x6C,0xEB,0x74,0xC0,0x11,0x06,0x54,0x4B,0x7D,0x8C,0x7D,0x8C,0x7D,0xAD,0x85,0xAD,0x7D,0xAD,0x85,0xAD,0x85,0x2E,0x8E,0x0E,0x86,0x2F,0x8E,0x61,0x12,0x04,0x2B,0x2D,0x6D,0xCE,0x7D,0x70,0x8E,0x6F,0x8E,0x6E,0x8E,0x8E,0x96,0x6E,0x96,0x6B,0x75,0xC6,0x43,0xC3,0x2A,0xA3,0x2A, +0xE6,0x4B,0xC9,0x64,0xAC,0x85,0x0C,0x8E,0x2C,0x8E,0x2E,0x8E,0x2F,0x96,0x6F,0x96,0x8C,0x96,0xCC,0x96,0xCB,0x96,0xAB,0x8E,0xCC,0x96,0xCB,0x8E,0xCB,0x8E,0xCB,0x8E,0xCC,0x8E,0xCC,0x8E,0xCC,0x8E,0xCB,0x8E,0xCB,0x8E,0xCB,0x8E,0xCB,0x8E,0xCB,0x8E,0xCB,0x8E,0xCB,0x8E,0xCB,0x8E,0xCB,0x8E,0xCB,0x8E,0xCC,0x8E,0xCC,0x8E,0xCC,0x8E,0xCB,0x8E,0xCB,0x8E,0xCB,0x8E,0xCB,0x8E,0xCB,0x8E,0xCB,0x8E,0xCB,0x8E,0xCB,0x8E,0xCB,0x8E,0xCB,0x8E,0xCB,0x8E,0xCB,0x8E,0xCB,0x8E,0xCB,0x8E,0xCB,0x8E,0xCB,0x8E,0xAB,0x96,0xAB,0x96,0xCB,0x96,0xCB,0x8E,0xCB,0x8E,0xCB,0x8E,0xCB,0x8E,0xEB,0x86,0xEB,0x86,0xCB,0x8E,0xCB,0x8E,0xCB,0x8E,0xCB,0x8E,0xAB,0x96,0xAB,0x96,0xAB,0x96, +0xCB,0x8E,0xCB,0x8E,0xCB,0x8E,0xCB,0x8E,0xCB,0x8E,0xCB,0x8E,0xCB,0x8E,0xCB,0x8E,0xCB,0x8E,0xCB,0x8E,0xCB,0x8E,0xCB,0x8E,0xCB,0x8E,0xCB,0x8E,0xCB,0x8E,0xCB,0x8E,0xAC,0x8E,0xCB,0x8E,0xCB,0x8E,0xCB,0x8E,0xCB,0x8E,0xCB,0x8E,0xCB,0x8E,0xCB,0x8E,0xCC,0x8E,0xCC,0x8E,0xCC,0x8E,0xCC,0x8E,0xCB,0x8E,0xCB,0x8E,0xCB,0x8E,0xCB,0x8E,0xEA,0x8E,0x09,0x97,0x48,0x9F,0x26,0x9F,0x45,0xA7,0x45,0x9F,0x45,0x9F,0x25,0x9F,0x45,0x9F,0x46,0x97,0x48,0x97,0x09,0x8F,0xCB,0x8E,0xAB,0x8E,0xAC,0x8E,0xAC,0x96,0xCB,0x8E,0xCB,0x8E,0xCB,0x8E,0xCB,0x8E,0xAB,0x8E,0xCB,0x8E,0xCC,0x8E,0xCC,0x8E,0xCC,0x8E,0xCC,0x8E,0xCC,0x8E,0xCC,0x8E,0xCC,0x8E,0xCC,0x8E,0xCB,0x8E,0xCB,0x86, +0x8C,0x96,0xCD,0x9E,0x6D,0x96,0x0C,0x86,0x0D,0x86,0x8F,0x96,0xF0,0x9E,0xEF,0x9E,0xEE,0x96,0x2D,0x97,0x2C,0x97,0xEA,0x86,0xCA,0x86,0xE9,0x86,0xE9,0x86,0xE9,0x86,0xEB,0x86,0xCB,0x86,0xAB,0x8E,0xAC,0x8E,0xCC,0x96,0xCC,0x8E,0xAC,0x8E,0xCD,0x96,0xAD,0x9E,0x8D,0x9E,0x6D,0x96,0xCD,0x96,0xCD,0x8E,0xAC,0x86,0xCD,0x96,0xAD,0x96,0xEC,0x9E,0x43,0x33,0xA0,0x00,0xC1,0x11,0xB0,0xA6,0x8B,0x96,0xAB,0x8E,0xAB,0x8E,0xAC,0x96,0xAB,0x96,0xAB,0x96,0xCB,0x8E,0xEB,0x86,0xEB,0x86,0xCB,0x8E,0x8B,0x9E,0xCB,0x8E,0xCB,0x8E,0xCB,0x8E,0xCB,0x8E,0xCB,0x8E,0xAB,0x96,0xAB,0x96,0xAB,0x96,0xAB,0x96,0xAB,0x96,0xCB,0x8E,0xCB,0x8E,0xCB,0x8E,0xCB,0x8E,0xCB,0x8E,0xCB,0x8E, +0xCB,0x8E,0xCB,0x8E,0xCB,0x8E,0xCB,0x8E,0xCB,0x8E,0xCB,0x8E,0xCB,0x8E,0xCB,0x8E,0xCB,0x8E,0xCB,0x8E,0xCB,0x8E,0xCB,0x8E,0xCB,0x8E,0xCB,0x8E,0xCB,0x8E,0xCB,0x8E,0xAB,0x96,0xAB,0x96,0xCB,0x96,0x8B,0x8E,0xED,0x9E,0xC6,0x54,0xEB,0x7D,0xE8,0x5C,0x49,0x6D,0x0F,0xA7,0x6A,0x86,0xAA,0x8E,0xCA,0x8E,0xAA,0x8E,0xCB,0x8E,0xCC,0x8E,0x00,0x00,0x00,0x00,0x00,0x00,0x21,0x00,0x01,0x00,0x00,0x00,0x21,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,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x20,0x00,0x00,0x00,0x00,0x00,0x02,0x00,0x23,0x00,0x00,0x00,0x60,0x00,0xC0,0x19,0x0E,0x9E,0xCE,0xA6,0x8A,0x8E,0xAA,0x8E,0xCB,0x8E,0xEC,0x96,0xEC,0x8E,0xCB,0x8E,0xCB,0x8E,0xCB,0x8E,0xCB,0x8E,0xCB,0x8E,0xCB,0x8E,0xCB,0x8E,0xCB,0x8E,0xCB,0x8E,0xCB,0x8E,0xCB,0x8E,0xCB,0x8E,0xCB,0x8E,0xCB,0x8E,0xCB,0x8E,0xCB,0x8E,0xAB,0x96,0xAB,0x96,0xCB,0x8E,0xCB,0x8E,0xCB,0x8E,0xCB,0x8E,0xAC,0x8E,0xCC,0x8E,0xAC,0x8E,0xAC,0x8E,0xAC,0x8E,0xCB,0x8E,0xCB,0x8E,0xCA,0x8E,0xCA,0x96,0xCA,0x96, +0x85,0x9F,0x05,0x97,0xCC,0xB7,0xEE,0xC7,0xEC,0xC7,0x46,0xA7,0x46,0xA7,0xED,0xC7,0xED,0xBF,0xCB,0xAF,0x46,0x9F,0x88,0x9F,0x29,0x97,0xAB,0x86,0xCC,0x8E,0xCB,0x8E,0xAB,0x96,0xAB,0x96,0xCB,0x8E,0xCB,0x8E,0xCB,0x8E,0xCB,0x8E,0xCB,0x8E,0xCB,0x8E,0xCB,0x8E,0xCB,0x8E,0xCB,0x8E,0xCB,0x8E,0xCB,0x8E,0xCB,0x8E,0xAB,0x96,0xAB,0x96,0xCB,0x8E,0xCB,0x8E,0xCB,0x8E,0xCB,0x8E,0xCB,0x8E,0xCB,0x8E,0xCB,0x8E,0xCB,0x8E,0xCB,0x8E,0xCB,0x8E,0xCB,0x8E,0xCB,0x8E,0xCB,0x8E,0xCB,0x8E,0xCB,0x8E,0xCB,0x8E,0xCC,0x8E,0xCC,0x8E,0xCC,0x8E,0xCB,0x8E,0xCB,0x8E,0xCB,0x8E,0xCB,0x8E,0xCB,0x8E,0xCB,0x8E,0xAB,0x96,0xAC,0x96,0xAC,0x96,0xAC,0x96,0xAB,0x96,0xAB,0x96,0xAB,0x96, +0xCB,0x8E,0xCB,0x96,0xAB,0x96,0xAD,0x96,0xAD,0x8E,0xCC,0x8E,0xCC,0x8E,0xCC,0x8E,0xAC,0x8E,0xCC,0x8E,0xCB,0x8E,0xCE,0x9E,0xA4,0x3A,0x00,0x00,0x21,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,0x20,0x00,0x01,0x00,0x00,0x00,0x20,0x09,0x8D,0x96,0x0D,0x9F,0x8B,0x85,0x60,0x00,0x20,0x00,0x20,0x00,0x00,0x00,0x01,0x08,0x01,0x00,0x00,0x00,0x00,0x08,0x00,0x08,0x00,0x08,0x00,0x08,0x40,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x00,0x08,0x20,0x00,0x00,0x00,0x00,0x00,0x20,0x00,0x00,0x00,0x00,0x00,0x40,0x00,0x40,0x00, +0x40,0x00,0x20,0x00,0x40,0x00,0x20,0x00,0x00,0x00,0x00,0x00,0x20,0x00,0x20,0x00,0x40,0x00,0x40,0x00,0x20,0x00,0x40,0x00,0x60,0x00,0x40,0x00,0x40,0x00,0x40,0x00,0x60,0x00,0xA0,0x00,0x80,0x00,0xA0,0x00,0x40,0x00,0x80,0x00,0x60,0x00,0xC0,0x00,0x40,0x09,0xC1,0x19,0x81,0x11,0xC0,0x00,0x60,0x00,0x60,0x00,0x40,0x00,0x20,0x00,0x20,0x00,0x40,0x00,0x20,0x00,0x40,0x00,0xA0,0x00,0xE0,0x00,0x20,0x01,0x40,0x09,0xC0,0x09,0xC7,0x64,0xEC,0x9E,0xAA,0x8E,0xEB,0x96,0xCB,0x8E,0xAA,0x86,0xCB,0x86,0xCC,0x8E,0xCC,0x8E,0xCC,0x8E,0xAC,0x8E,0xCB,0x8E,0xCB,0x8E,0xCB,0x8E,0xCB,0x8E,0xCB,0x8E,0xCB,0x8E,0xCB,0x8E,0xCB,0x8E,0xCC,0x8E,0xCC,0x8E,0xCC,0x8E,0xCC,0x8E, +0xCB,0x8E,0xCB,0x8E,0xCB,0x8E,0xCB,0x8E,0xCB,0x8E,0xCB,0x8E,0xCB,0x8E,0xCB,0x8E,0xCB,0x8E,0xCB,0x8E,0xCB,0x8E,0xCB,0x8E,0xCB,0x8E,0xCB,0x8E,0xCB,0x8E,0xCB,0x8E,0xCB,0x8E,0xCB,0x8E,0xCB,0x8E,0xCB,0x8E,0xCB,0x8E,0xCB,0x8E,0xCB,0x8E,0xCB,0x8E,0xCB,0x8E,0xCB,0x8E,0xCB,0x8E,0xCB,0x8E,0xCB,0x8E,0xCB,0x8E,0xCB,0x8E,0xAC,0x8E,0xCC,0x8E,0xCB,0x8E,0xCB,0x8E,0xCB,0x8E,0xCB,0x8E,0xCB,0x8E,0xCB,0x8E,0xCB,0x8E,0xCB,0x8E,0xCB,0x8E,0xCB,0x8E,0xCB,0x8E,0xCB,0x8E,0xCB,0x8E,0xCB,0x8E,0xCB,0x8E,0xCB,0x8E,0xCB,0x8E,0xCB,0x8E,0xCB,0x8E,0xCB,0x8E,0xCB,0x8E,0xCC,0x8E,0xCC,0x8E,0xCC,0x8E,0xCC,0x8E,0xCC,0x8E,0xCB,0x8E,0xAB,0x8E,0xCA,0x8E,0xCA,0x8E,0xCA,0x8E, +0x47,0x97,0x47,0x97,0x47,0x9F,0x08,0x9F,0x29,0xA7,0x07,0x9F,0x25,0xA7,0x64,0xA7,0x64,0x9F,0x65,0x97,0x66,0x97,0x48,0x97,0xEA,0x8E,0xAC,0x8E,0xAC,0x8E,0xCB,0x96,0xCB,0x8E,0xEB,0x96,0xEB,0x96,0xCB,0x8E,0xCB,0x8E,0xCB,0x8E,0xCB,0x8E,0xCB,0x8E,0xCC,0x8E,0xCC,0x8E,0xCC,0x8E,0xEC,0x8E,0xEC,0x8E,0xEB,0x8E,0xEB,0x86,0xEB,0x8E,0x8C,0x96,0x6C,0x96,0xAE,0x9E,0xC0,0x01,0x00,0x01,0xE0,0x00,0xE0,0x01,0xE2,0x22,0xE6,0x43,0xA9,0x64,0x8C,0x7D,0x0D,0x8E,0x6F,0x9E,0xAF,0xA6,0xF0,0xA6,0x10,0xAF,0xEE,0x96,0xEE,0x9E,0xCE,0x9E,0x8C,0x8E,0x6B,0x8E,0x8B,0x86,0xAA,0x86,0x8A,0x86,0xAA,0x8E,0xCA,0x8E,0xCA,0x8E,0x0A,0x87,0x0A,0x87,0x0A,0x87,0x0B,0x87,0xAB,0x86, +0xCD,0x8D,0x80,0x00,0x00,0x01,0x4F,0x96,0xAC,0x9E,0xCB,0x96,0xCC,0x96,0xCD,0x8E,0xAC,0x8E,0xAA,0x96,0xAA,0x96,0xCA,0x8E,0xEB,0x86,0xEB,0x86,0xAC,0x8E,0x8C,0x96,0xCB,0x8E,0xCB,0x8E,0xCB,0x8E,0xCB,0x8E,0xCB,0x8E,0xAB,0x96,0xAB,0x96,0xAB,0x96,0xAB,0x96,0xAB,0x96,0xCB,0x8E,0xCB,0x8E,0xCB,0x8E,0xCB,0x8E,0xCB,0x8E,0xCB,0x8E,0xCB,0x8E,0xCB,0x8E,0xCB,0x8E,0xCB,0x8E,0xCB,0x8E,0xCB,0x8E,0xCB,0x8E,0xCB,0x8E,0xCB,0x8E,0xCB,0x8E,0xCB,0x8E,0xCB,0x8E,0xCB,0x8E,0xCB,0x8E,0xCB,0x8E,0xCB,0x8E,0xAA,0x96,0xCB,0x96,0x6B,0x8E,0x2F,0xA7,0xE7,0x5C,0x4A,0x6D,0x87,0x54,0x29,0x65,0xCE,0x9E,0xAC,0x8E,0xEB,0x96,0xA9,0x8E,0xEA,0x8E,0xEB,0x8E,0xCB,0x8E,0xCC,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,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x20,0x00,0x00,0x00,0x00,0x00,0x03,0x00,0x02,0x00,0x01,0x00,0x40,0x08,0x20,0x00,0xE0,0x00,0xEE,0x95,0xCC,0x9E,0xAA,0x8E,0xEA,0x96,0xAA,0x8E,0xCB,0x8E, +0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAC,0x8E,0xAC,0x8E,0xAC,0x8E,0xAC,0x8E,0xAB,0x8E,0xCB,0x8E,0xCA,0x8E,0xAA,0x8E,0xCA,0x96,0xEA,0x96,0x43,0x9F,0x47,0x9F,0xEF,0xC7,0x6C,0xAF,0x49,0xAF,0x06,0x9F,0x26,0xA7,0x2A,0xA7,0xAE,0xB7,0xED,0xBF,0x05,0x97,0x66,0x9F,0x08,0x97,0xCB,0x8E,0xCB,0x8E,0xE9,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xCB,0x8E,0xCB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E, +0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xCC,0x8E,0xCB,0x8E,0xCB,0x8E,0xCB,0x8E,0xCA,0x8E,0xCA,0x8E,0xCA,0x8E,0xAB,0x8E,0xAB,0x8E,0xAC,0x8E,0xAC,0x8E,0xAC,0x8E,0xAC,0x8E,0xAC,0x8E,0xAB,0x8E,0xAB,0x8E,0xEA,0x86,0xCA,0x8E,0xAB,0x96,0xAC,0x8E,0xAD,0x8E,0xCC,0x8E,0xCC,0x8E,0xAC,0x8E,0xAC,0x8E,0xCC,0x8E,0xAB,0x8E,0xCE,0x9E,0xA3,0x32,0x20,0x00,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, +0x21,0x00,0x02,0x00,0x01,0x00,0x40,0x09,0x6D,0x8E,0xED,0x9E,0xED,0x95,0xC0,0x08,0x21,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x00,0x00,0x00,0x20,0x08,0x00,0x08,0x00,0x00,0x40,0x00,0x20,0x00,0x40,0x00,0x00,0x00,0x02,0x08,0x22,0x10,0x21,0x10,0x22,0x08,0x22,0x08,0x00,0x00,0x00,0x00,0x21,0x08,0x00,0x00,0x00,0x00,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x00,0x01,0x00,0x01,0x00,0x01,0x08,0x00,0x00,0x00,0x00,0x20,0x00,0x20,0x00,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x21,0x00,0x00,0x00,0x00,0x00,0x20,0x00,0x00,0x00,0x20,0x00,0x20,0x00,0x20,0x00,0x00,0x00,0x00,0x00,0x20,0x00,0x00,0x00,0x20,0x08,0x41,0x10, +0x04,0x08,0x03,0x08,0x00,0x08,0x00,0x00,0x20,0x00,0x20,0x00,0x40,0x00,0x60,0x00,0x60,0x00,0x07,0x54,0x2E,0xAF,0xAA,0x8E,0xAA,0x8E,0xCB,0x8E,0xEB,0x86,0x0B,0x87,0xAC,0x8E,0xAC,0x8E,0xAC,0x8E,0xAC,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xCB,0x8E,0xCB,0x8E,0xCC,0x8E,0xCC,0x8E,0xCC,0x8E,0xCC,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAC,0x8E,0xCC,0x8E,0xCC,0x8E,0xCC,0x8E,0xCC,0x8E,0xCC,0x8E,0xCC,0x8E,0xCC,0x8E,0xAC,0x8E,0xAC,0x8E,0xAC,0x8E,0xAC,0x8E,0xAC,0x8E,0xCC,0x8E,0xAC,0x8E,0xAC,0x8E, +0xCC,0x8E,0xCB,0x8E,0xCB,0x8E,0xCB,0x8E,0xCB,0x8E,0xCB,0x8E,0xCB,0x8E,0xCB,0x8E,0xCB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xCB,0x8E,0xCB,0x8E,0xCB,0x8E,0xAC,0x8E,0xAC,0x8E,0xAC,0x8E,0xAC,0x8E,0xCB,0x8E,0xCB,0x8E,0xCA,0x8E,0xCA,0x8E,0xCA,0x8E,0xEA,0x96,0x85,0x97,0x66,0x9F,0x27,0x9F,0x8D,0xB7,0x8F,0xBF,0x6D,0xBF,0xE8,0xA6,0x66,0xA7,0x64,0x9F,0x64,0x9F,0x86,0x97,0x48,0x97,0xEA,0x8E,0xAC,0x8E,0xAB,0x8E,0xCA,0x96,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xCB,0x8E,0xCB,0x8E,0xCB,0x8E,0xCB,0x8E,0xCB,0x8E,0xCB,0x8E,0xEB,0x8E, +0xEC,0x96,0xAB,0x8E,0xCC,0x96,0x6B,0x8E,0xA9,0x75,0x24,0x4C,0xC1,0x2A,0x60,0x01,0x80,0x00,0x60,0x00,0x40,0x00,0x40,0x00,0xA0,0x08,0x41,0x21,0x25,0x42,0x08,0x5B,0x69,0x64,0x2B,0x7D,0xED,0x95,0x6F,0x9E,0xEF,0xA6,0x70,0xA7,0x8F,0xA7,0x6D,0x9F,0x2B,0x97,0x0A,0x8F,0x0A,0x87,0xE8,0x7E,0x29,0x87,0x09,0x87,0x89,0x7E,0x6E,0xA7,0xC7,0x42,0xA0,0x00,0xCD,0x85,0xED,0x9E,0x69,0x86,0xCB,0x96,0xAD,0x8E,0xCE,0x8E,0xCC,0x8E,0xCA,0x8E,0xCA,0x96,0xCA,0x8E,0xCA,0x8E,0xCB,0x8E,0xCC,0x8E,0xAC,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xCB,0x8E,0xCB,0x8E,0xCB,0x8E, +0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xCB,0x8E,0xCB,0x8E,0xCB,0x8E,0xCB,0x8E,0xCB,0x8E,0xCB,0x8E,0xCB,0x8E,0xCB,0x8E,0xAA,0x96,0x8B,0x96,0x2F,0xA7,0xE7,0x5C,0x09,0x65,0x09,0x65,0x49,0x6D,0x2F,0xA7,0x8B,0x8E,0xEC,0x96,0xAA,0x8E,0xEB,0x96,0xCB,0x8E,0xCB,0x8E,0xAB,0x8E,0xCB,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,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x20,0x00,0x00,0x00,0x01,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x20,0x00,0x20,0x09,0x6E,0x9E,0xCB,0x96,0xE9,0x8E,0xAA,0x86,0xEB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAC,0x8E,0xAC,0x8E,0xAC,0x8E,0xAB,0x8E,0xAB,0x8E,0xCB,0x8E,0xCA,0x8E,0xAA,0x8E,0xCA,0x96,0x0A,0x97, +0x65,0x9F,0x07,0x9F,0xEF,0xC7,0xEC,0xA6,0x8C,0xB7,0xEB,0xC7,0xEB,0xC7,0x8B,0xB7,0xEB,0xA6,0xED,0xC7,0x25,0x97,0x66,0x9F,0x28,0x97,0x0B,0x97,0xCB,0x8E,0xCA,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xCB,0x8E,0xCB,0x8E,0xCA,0x8E,0xCA,0x8E,0xCA,0x8E,0xCA,0x8E,0xAB,0x8E,0xAB,0x8E,0xAC,0x8E,0xAC,0x8E,0xAC,0x8E,0xAC,0x8E,0xAC,0x8E,0xCB,0x8E,0xCB,0x8E,0xCB,0x8E, +0xEA,0x86,0xCA,0x8E,0xAB,0x8E,0xAC,0x96,0xAC,0x8E,0xCB,0x8E,0xCA,0x8E,0xAB,0x96,0xAB,0x8E,0xCB,0x8E,0xAA,0x8E,0xAD,0x9E,0xA3,0x32,0x20,0x00,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,0x01,0x00,0x03,0x00,0x01,0x00,0x20,0x09,0x8D,0x96,0xEC,0x96,0xEB,0x85,0xA0,0x00,0x40,0x00,0x40,0x00,0x00,0x00,0x00,0x00,0x01,0x00,0x01,0x00,0x00,0x00,0x00,0x08,0x01,0x00,0x00,0x00,0x20,0x00,0x20,0x00,0x20,0x00,0x40,0x00,0x20,0x00,0x40,0x00,0x40,0x00,0x20,0x00,0x20,0x00,0x00,0x00,0x00,0x00,0x81,0x10,0xC4,0x29,0xC1,0x19, +0xC2,0x21,0xC2,0x19,0xC2,0x21,0xA3,0x21,0x82,0x21,0xC3,0x29,0x21,0x11,0x01,0x11,0x20,0x11,0x00,0x09,0x20,0x11,0x20,0x09,0x20,0x09,0x20,0x09,0x40,0x11,0xC2,0x21,0xA4,0x29,0x83,0x21,0xA3,0x29,0xC2,0x29,0xC1,0x29,0xA0,0x21,0xC1,0x21,0xE1,0x21,0xC2,0x21,0xE3,0x29,0xA3,0x21,0x21,0x11,0xC0,0x08,0x80,0x00,0x40,0x00,0x20,0x00,0x00,0x00,0x20,0x00,0x60,0x00,0xC0,0x08,0x60,0x11,0xE2,0x29,0x85,0x32,0x08,0x43,0x07,0x3B,0xCA,0x6C,0x0E,0xA7,0xAA,0x8E,0xAA,0x8E,0xCC,0x8E,0xCC,0x8E,0xCA,0x86,0xAC,0x8E,0xAC,0x8E,0xAC,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xCB,0x8E,0xCB,0x8E,0xCB,0x8E,0xCC,0x8E,0xCC,0x8E,0xCC,0x8E, +0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAC,0x8E,0xAC,0x8E,0xAC,0x8E,0xAC,0x8E,0xAC,0x8E,0xAC,0x8E,0xAC,0x8E,0xAC,0x96,0xAC,0x96,0xAC,0x96,0xAC,0x96,0xAC,0x96,0xAC,0x8E,0xAC,0x8E,0xAC,0x8E,0xAC,0x8E,0xCB,0x8E,0xCB,0x8E,0xCB,0x8E,0xCB,0x8E,0xCB,0x8E,0xCB,0x8E,0xCB,0x8E,0xCB,0x8E,0xCB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xCB,0x8E,0xCB,0x8E,0xCB,0x8E,0xAC,0x8E,0xAC,0x8E,0xAC,0x8E,0xAC,0x8E,0xCB,0x8E,0xAB,0x8E,0xCA,0x8E,0xCA,0x8E,0xEA,0x96,0xEA,0x96, +0x65,0x97,0x66,0x9F,0x08,0x9F,0xF1,0xD7,0xF4,0xDF,0xF4,0xDF,0xCC,0xAE,0xE9,0xA6,0x27,0x9F,0x46,0x9F,0x66,0x97,0x47,0x97,0x09,0x8F,0xCB,0x8E,0xAB,0x8E,0xAB,0x96,0xAB,0x96,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x96,0xAC,0x96,0xCC,0x96,0xAB,0x96,0xAB,0x96,0xCC,0x8E,0xAB,0x8E,0xAB,0x8E,0xCB,0x8E,0xCB,0x8E,0xAB,0x8E,0xCB,0x8E,0xCA,0x86,0xEB,0x86,0xCB,0x8E,0xCB,0x8E,0xED,0x9E,0xAD,0x96,0xEF,0xA6,0xB0,0xA6,0x31,0xA6,0x90,0x95,0x6D,0x7C,0x48,0x53,0x04,0x3A,0xE0,0x10,0x20,0x00,0x20,0x00,0x80,0x00,0x80,0x00,0xA0,0x00,0x60,0x09,0xE0,0x11,0x61,0x1A,0x63,0x33,0x67,0x54,0x4A,0x75,0x4E,0x96,0x4D,0x8E,0x0E,0x9F,0xEC,0x96,0xED,0x9E,0x10,0xAF,0xE6,0x53, +0x20,0x00,0x4B,0x6C,0xEE,0xA6,0xC9,0x8E,0xC9,0x8E,0xCB,0x96,0x8D,0x8E,0xAD,0x8E,0xCC,0x8E,0xCA,0x8E,0xCA,0x8E,0xAA,0x96,0xCA,0x8E,0xCB,0x8E,0xCC,0x8E,0xAC,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xCB,0x8E,0xCB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xCB,0x8E,0xCB,0x8E,0xCB,0x8E,0xCB,0x8E,0xCB,0x8E,0xAC,0x8E,0xAC,0x8E,0x8B,0x96,0xED,0x9E,0xE6,0x5C,0x28,0x65,0x86,0x54,0x69,0x6D,0x0E,0x9F,0x6B,0x8E,0xCB,0x96,0xAB,0x8E,0xCB,0x96,0xAB,0x8E,0xCB,0x8E,0xCB,0x8E,0xEB,0x8E,0xCA,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,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,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,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x22,0x08,0x20,0x00,0x25,0x43,0xCD,0x9E,0xC9,0x8E,0xCA,0x86,0xCD,0x8E, +0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAC,0x8E,0xAC,0x8E,0xAC,0x8E,0xCC,0x8E,0xAB,0x8E,0xAB,0x8E,0xCA,0x8E,0xAA,0x8E,0xC9,0x8E,0x2A,0x9F,0x45,0x9F,0x27,0x9F,0xEA,0x9E,0xAF,0xBF,0x6E,0xB7,0xAC,0xC7,0x8A,0xBF,0xAB,0xBF,0xCD,0xBF,0xE8,0x9E,0x66,0xA7,0x45,0x97,0x47,0x9F,0xA9,0x86,0xCB,0x8E,0xCC,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E, +0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xCA,0x8E,0xCA,0x8E,0xCA,0x8E,0xAA,0x8E,0xAA,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAC,0x8E,0x8C,0x8E,0xCC,0x8E,0xAC,0x8E,0xEC,0x8E,0xCB,0x8E,0xCB,0x8E,0xAA,0x8E,0xEA,0x86,0xEB,0x8E,0x8B,0x8E,0x8D,0x96,0x0E,0x9F,0xCC,0x96,0xEC,0x9E,0xCC,0xA6,0xCC,0xA6,0xEC,0x9E,0xEC,0x9E,0xEF,0xAE,0xA3,0x3A,0x20,0x00,0x61,0x00,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, +0x20,0x00,0x01,0x00,0x00,0x00,0x20,0x11,0x8C,0x9E,0xCA,0x8E,0x6B,0x86,0x0B,0x86,0xEC,0x8D,0xC6,0x53,0x60,0x00,0x01,0x00,0x01,0x00,0x20,0x00,0x00,0x00,0x01,0x00,0x01,0x00,0x01,0x00,0x01,0x00,0x20,0x00,0x60,0x00,0x6B,0x6C,0x6C,0x7D,0x4A,0x6D,0x8B,0x7D,0xC3,0x32,0x20,0x00,0x00,0x08,0x00,0x00,0xA6,0x42,0xF3,0xAE,0xAE,0x8E,0xCD,0x96,0xCD,0x96,0xAD,0x96,0xAE,0x9E,0x8E,0x9E,0x8E,0x9E,0x8E,0x9E,0x8E,0x9E,0x8E,0x96,0x8D,0x96,0x8D,0x96,0x8D,0x96,0x8D,0x96,0x8D,0x96,0x8D,0x96,0x8D,0x96,0x8F,0x9E,0x8E,0x9E,0x8E,0x9E,0x8E,0x9E,0x8D,0x9E,0x8D,0x9E,0xAD,0x9E,0xAD,0x9E,0x8D,0x9E,0x8E,0x9E,0x8E,0x9E,0x8E,0x9E,0x6E,0x9E,0x2D,0x96,0xEC,0x8D,0xAC,0x8D, +0x0C,0x7E,0xEB,0x7D,0x6C,0x8E,0x8E,0x96,0x8E,0x96,0xCE,0x9E,0x8D,0x96,0xD0,0x9E,0xAE,0x7D,0xE9,0x64,0x0D,0x9F,0xA9,0x8E,0xAB,0x8E,0xAD,0x8E,0x8C,0x8E,0xCB,0x8E,0xAC,0x8E,0xAC,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xCC,0x96,0x8B,0x8E,0xAB,0x8E,0xAB,0x8E,0xEC,0x96,0x8B,0x8E,0xAB,0x96,0xAB,0x96,0xAB,0x96,0x8B,0x96,0x8B,0x96,0xAC,0x96,0xAC,0x8E,0xAC,0x8E,0xCC,0x8E, +0xCB,0x8E,0xCB,0x8E,0xCB,0x8E,0xCB,0x8E,0xCB,0x8E,0xCB,0x8E,0xCB,0x8E,0xCB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xCB,0x8E,0xCB,0x8E,0xCB,0x8E,0xAC,0x8E,0xAC,0x8E,0xAC,0x8E,0xAC,0x8E,0xCB,0x8E,0xCB,0x8E,0xCA,0x8E,0xAA,0x8E,0xC9,0x8E,0x2A,0x97,0x66,0x97,0x47,0x9F,0x08,0x9F,0xEE,0xD7,0xF2,0xE7,0xF2,0xD7,0x30,0xBF,0xF2,0xCF,0x6B,0xAF,0x06,0x97,0x87,0x9F,0x46,0x97,0x27,0x97,0xE8,0x8E,0xAB,0x8E,0x8C,0x96,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x96,0xAB,0x96,0xAB,0x96,0xAB,0x96,0xAB,0x96,0xAB,0x96,0xAB,0x96,0xAB,0x96, +0xCA,0x8E,0xCB,0x8E,0xCB,0x8E,0xCC,0x8E,0xAC,0x8E,0xAC,0x8E,0xAC,0x96,0x8C,0x96,0x8D,0x96,0x8C,0x96,0x8D,0x96,0xAE,0x9E,0xCF,0xA6,0x6E,0x9E,0xCB,0x85,0xE9,0x6C,0xC5,0x4B,0xC1,0x2A,0xE0,0x11,0x20,0x01,0x80,0x00,0x60,0x00,0x60,0x00,0x40,0x00,0x20,0x00,0x40,0x00,0xE0,0x08,0x22,0x22,0xC3,0x3A,0xC8,0x5B,0x45,0x42,0x00,0x00,0x82,0x10,0x11,0xA6,0xAC,0x96,0xE9,0x8E,0xA9,0x86,0xAB,0x8E,0xED,0x96,0xAB,0x8E,0xCB,0x86,0xCB,0x8E,0xAC,0x8E,0xAB,0x96,0xAB,0x8E,0xCB,0x8E,0xCB,0x8E,0xCC,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E, +0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xCC,0x96,0xAB,0x8E,0xAB,0x8E,0xCC,0x8E,0xAC,0x8E,0xAC,0x8E,0xCE,0x9E,0x48,0x6D,0xA6,0x54,0x85,0x54,0xA9,0x75,0xED,0x9E,0xAB,0x8E,0xCB,0x96,0xAB,0x8E,0xCC,0x96,0xAC,0x8E,0xCD,0x96,0xAC,0x8E,0xEC,0x96,0xCA,0x8E,0xCA,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,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,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,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x08,0x21,0x00,0x60,0x00,0x87,0x64,0x2D,0xA7,0x8B,0x86,0xAE,0x86,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAC,0x8E,0xAB,0x8E,0xAC,0x8E,0xAB,0x8E,0xAB,0x8E,0xCB,0x8E,0xAA,0x8E,0xCA,0x8E,0x0B,0x9F, +0x45,0x9F,0x47,0xA7,0x29,0xA7,0xCF,0xBF,0x4D,0xB7,0xAC,0xBF,0xAB,0xBF,0xAA,0xBF,0xAB,0xBF,0x08,0xA7,0x26,0x9F,0x45,0x9F,0x47,0x9F,0xE9,0x96,0xAB,0x8E,0xAC,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAA,0x8E,0xAA,0x8E,0xAA,0x8E,0xAB,0x96,0xAB,0x96,0xAB,0x96,0xAB,0x8E,0xAC,0x8E,0xAB,0x8E,0xCC,0x8E,0x8B,0x86,0xCB,0x8E,0xAB,0x8E,0xAA,0x8E,0xCA,0x8E,0xEA,0x96, +0xAB,0x8E,0x2A,0x86,0xEF,0xAE,0xAC,0x85,0x84,0x43,0xE2,0x32,0x02,0x3B,0xC2,0x3A,0xE3,0x3A,0x03,0x3B,0xE2,0x32,0x24,0x43,0x20,0x11,0x20,0x00,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,0x40,0x00,0x01,0x08,0x00,0x00,0x00,0x11,0x8C,0x96,0xEB,0x8E,0xCC,0x8E,0xCC,0x8E,0x0C,0x9F,0x4C,0x8E,0x40,0x01,0x62,0x11,0x21,0x09,0x60,0x11,0x40,0x09,0x42,0x09,0x00,0x11,0x42,0x19,0x01,0x11,0x40,0x09,0x00,0x12,0x6D,0x8E,0x4F,0x97,0x2D,0x8F,0x8F,0xA7,0xC4,0x43,0x40,0x00,0x00,0x08,0x00,0x00,0xE5,0x42,0x2F,0xA7,0xEA,0x7E, +0xE9,0x86,0xE9,0x8E,0xE9,0x8E,0xC9,0x8E,0xC9,0x8E,0xCA,0x8E,0xCA,0x8E,0xCA,0x8E,0xCA,0x8E,0xCA,0x8E,0xCA,0x8E,0xCA,0x8E,0xCA,0x8E,0xCA,0x8E,0xCA,0x8E,0xCA,0x8E,0xCA,0x8E,0xCA,0x8E,0xCA,0x8E,0xCB,0x8E,0xCB,0x8E,0xCB,0x8E,0xCA,0x8E,0xCA,0x8E,0xC9,0x8E,0xC9,0x86,0xC9,0x86,0xC9,0x86,0xCA,0x8E,0xEB,0x96,0xEC,0x96,0xED,0x96,0x2A,0x87,0x49,0x8F,0x09,0x87,0xEA,0x86,0xCB,0x86,0xCA,0x86,0xEA,0x8E,0xAB,0x8E,0xC7,0x54,0x86,0x54,0x4E,0xA7,0xCA,0x96,0x8A,0x8E,0xAD,0x96,0xAC,0x8E,0xAA,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E, +0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xCB,0x96,0x8A,0x8E,0xCB,0x96,0xAA,0x86,0xEB,0x8E,0xCB,0x8E,0xEB,0x8E,0xCA,0x8E,0xCA,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x96,0xAB,0x8E,0x8B,0x8E,0xAC,0x8E,0xCB,0x8E,0xCB,0x8E,0xCB,0x8E,0xCB,0x8E,0xCB,0x8E,0xCB,0x8E,0xCB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xCB,0x8E,0xCB,0x8E,0xAC,0x8E,0xAC,0x8E,0xAC,0x8E,0xAC,0x8E,0xAB,0x8E,0xCB,0x8E,0xCA,0x8E,0xAA,0x8E,0xC9,0x8E,0x0A,0x97, +0x26,0x97,0x26,0x97,0x47,0xA7,0x27,0xA7,0xAB,0xC7,0x8A,0xA6,0xF4,0xDF,0xF5,0xE7,0xCE,0xBF,0x07,0x97,0x46,0x97,0x46,0x97,0x67,0x9F,0x07,0x97,0x89,0x8E,0x8C,0x96,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x96,0xAB,0x96,0xAB,0x96,0xAB,0x96,0xAB,0x96,0xAB,0x96,0xAB,0x96,0x8B,0x8E,0x8B,0x8E,0x8C,0x96,0xAC,0x96,0xAC,0x8E,0xAB,0x8E,0xAB,0x8E,0xCA,0x8E,0xC9,0x8E,0xE9,0x8E,0x09,0x8F,0xE9,0x86,0xC8,0x7E,0xE9,0x86,0x4B,0x8F,0x6C,0x97,0x50,0xA7,0x2F,0xA7,0xF0,0xA6,0x70,0x9E,0x8E,0x85,0xAC,0x6C,0x89,0x53,0x85,0x3A,0xA3,0x29,0x02,0x11,0x83,0x19,0xE2,0x21,0x22,0x2A,0x40,0x00,0x20,0x00,0x01,0x08, +0x00,0x00,0x42,0x32,0x2F,0xAF,0xA9,0x86,0xEB,0x8E,0xAB,0x8E,0xCB,0x8E,0xAA,0x86,0xCB,0x8E,0xAC,0x8E,0x8C,0x8E,0xAC,0x8E,0xCB,0x8E,0xCB,0x8E,0xCB,0x8E,0xCB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xCB,0x8E,0xCB,0x96,0xAB,0x8E,0x8B,0x8E,0xAC,0x8E,0x8B,0x8E,0x8B,0x8E,0xED,0x96,0x4A,0x6D,0x25,0x4C,0x65,0x54,0x2A,0x86,0xEC,0x9E,0xAA,0x8E,0xAA,0x8E,0xAA,0x8E,0x8A,0x8E,0x8B,0x8E,0xAD,0x8E,0x6C,0x86,0xAC,0x8E,0xAB,0x8E,0xCB,0x8E,0x89,0x86, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x20,0x00,0x20,0x09,0x6E,0x9E,0xCD,0x8E,0xAC,0x7E, +0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xCB,0x96,0xAA,0x8E,0xCA,0x8E,0x0B,0x97,0x45,0x9F,0x26,0x9F,0xEC,0xBF,0x2B,0xAF,0x6C,0xB7,0xEC,0xC7,0xEB,0xC7,0x69,0xAF,0x2A,0xA7,0xEC,0xBF,0x06,0x97,0x46,0x9F,0x28,0x9F,0xC9,0x96,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E, +0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x96,0x8B,0x96,0x8B,0x96,0x8B,0x96,0x8C,0x96,0xAC,0x8E,0xAB,0x8E,0xCC,0x8E,0xEC,0x8E,0xAB,0x8E,0x8A,0x86,0xAB,0x8E,0xAA,0x8E,0x8A,0x8E,0xAD,0x9E,0xF0,0xAE,0xA6,0x53,0x60,0x00,0x40,0x00,0x60,0x00,0x40,0x00,0x20,0x00,0x00,0x00,0x20,0x00,0x20,0x00,0x40,0x00,0x00,0x00,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, +0x20,0x00,0x02,0x08,0x01,0x00,0x00,0x11,0x6D,0x96,0xCB,0x8E,0xCB,0x8E,0xCB,0x8E,0xCA,0x8E,0x69,0x8E,0xAE,0x9E,0x4F,0x9E,0x8F,0xA6,0x8D,0x9E,0xAE,0x9E,0x8F,0x9E,0xCD,0xA6,0x6D,0x9E,0xB0,0xA6,0x8E,0x96,0xAC,0x96,0xCB,0x8E,0xAA,0x7E,0xCB,0x7E,0xED,0x8E,0x43,0x3B,0x40,0x00,0x00,0x08,0x00,0x08,0xE5,0x42,0x0D,0x9F,0xE8,0x7E,0xC9,0x8E,0xC9,0x8E,0xCA,0x8E,0xCA,0x8E,0xCA,0x8E,0xCA,0x8E,0xAA,0x8E,0xAA,0x8E,0xCB,0x8E,0xAB,0x8E,0xCB,0x8E,0xCB,0x8E,0xCB,0x8E,0xCA,0x8E,0xAA,0x8E,0xAA,0x8E,0xCA,0x86,0xCA,0x86,0xCB,0x8E,0xCB,0x8E,0xCB,0x8E,0xCB,0x8E,0xCB,0x8E,0xCA,0x8E,0xEA,0x8E,0xEA,0x8E,0xCA,0x86,0xCA,0x86,0xAA,0x86,0xAB,0x86,0xAB,0x86,0x8B,0x8E, +0xE9,0x86,0xA8,0x86,0xE9,0x8E,0xAA,0x86,0xCC,0x96,0xAA,0x8E,0xA9,0x8E,0xAC,0x96,0x8B,0x75,0x05,0x44,0x0D,0xA7,0x88,0x8E,0xAA,0x8E,0xAC,0x8E,0xAB,0x96,0xAA,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0x8A,0x8E,0xCB,0x8E,0xA9,0x86,0xEA,0x86,0xC9,0x7E,0xC9,0x7E,0xA8,0x76,0xA8,0x76,0xEA,0x86,0xC9,0x86,0xCA,0x86,0xCA,0x8E,0xCA,0x8E,0xAA,0x8E,0xAB,0x8E,0xAB,0x8E, +0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xCB,0x8E,0xAB,0x8E,0xAB,0x8E,0xCA,0x8E,0xAA,0x8E,0xC9,0x8E,0x0A,0x97,0x45,0x9F,0x46,0x9F,0x26,0x9F,0x06,0xA7,0xE7,0xA6,0xEE,0xCF,0x0C,0xB7,0x6D,0xB7,0x08,0x9F,0x26,0x9F,0x46,0x97,0x67,0x9F,0x47,0x97,0xC7,0x8E,0xEA,0x96,0xAA,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x96, +0x8C,0x96,0x8C,0x96,0x8B,0x96,0x8B,0x96,0xAB,0x96,0xAA,0x8E,0xAA,0x8E,0xAA,0x8E,0xEA,0x8E,0xCA,0x8E,0xEA,0x8E,0xEA,0x86,0xEA,0x86,0xEA,0x86,0xC9,0x7E,0xA9,0x7E,0x2A,0x86,0x4A,0x8E,0x6B,0x8E,0x8C,0x8E,0xCE,0x96,0x0F,0x9F,0x0F,0x9F,0xCE,0xA6,0xAF,0xA6,0x8F,0x9E,0xB0,0x9E,0x10,0xA7,0x51,0xAF,0x0B,0x75,0x40,0x00,0x21,0x00,0x00,0x00,0xA0,0x00,0xA5,0x64,0xEB,0x96,0xAA,0x86,0xEB,0x8E,0xA9,0x86,0xCB,0x8E,0xAC,0x8E,0x8D,0x8E,0x8C,0x96,0xAC,0x8E,0xCC,0x86,0xCC,0x86,0xAB,0x8E,0xAA,0x96,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E, +0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0x8B,0x8E,0xAB,0x8E,0xAC,0x96,0xAC,0x96,0x8B,0x8E,0x0D,0x9F,0x26,0x65,0x05,0x44,0x86,0x54,0x6C,0x8E,0xCC,0x96,0x89,0x8E,0xEA,0x96,0x89,0x8E,0xCA,0x8E,0xCB,0x96,0x8B,0x8E,0xCC,0x96,0x6B,0x8E,0xAC,0x96,0x8B,0x8E,0x8B,0x8E,0x0D,0x9F,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,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,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x20,0x00,0x05,0x3B,0x0F,0xA7,0xA9,0x86,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAA,0x8E,0xAA,0x8E,0xEA,0x96, +0x44,0x9F,0x45,0x9F,0xED,0xCF,0x29,0xA7,0x29,0xA7,0xE7,0x9E,0x27,0xA7,0x09,0xA7,0x2A,0xA7,0xED,0xC7,0xE6,0x96,0x47,0x9F,0x29,0x9F,0x89,0x8E,0xAA,0x8E,0xAA,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0x8B,0x96,0x8C,0x96,0x8C,0x96,0x8C,0x96,0xAC,0x8E,0xAB,0x8E,0xCB,0x8E,0xAB,0x8E,0xCB,0x8E,0xAA,0x8E,0xCC,0x96,0x8B,0x8E,0xAC,0x96,0x8C,0x96, +0x0E,0x9E,0xE0,0x21,0x60,0x00,0x20,0x00,0x21,0x00,0x42,0x00,0x02,0x00,0x03,0x00,0x04,0x08,0x03,0x00,0x23,0x00,0x21,0x00,0x00,0x00,0x00,0x00,0x01,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,0x02,0x00,0x01,0x00,0x20,0x09,0x8D,0x96,0xCA,0x86,0xAA,0x8E,0x6B,0x8E,0xAB,0x96,0xEA,0x96,0x88,0x8E,0xAA,0x96,0xAA,0x8E,0xCA,0x8E,0xEB,0x8E,0xAA,0x8E,0xA8,0x86,0xE9,0x8E,0xCA,0x8E,0xAB,0x8E,0xAB,0x8E,0xCB,0x8E,0xAA,0x86,0xAB,0x8E,0xD0,0x9E,0x04,0x3B,0x40,0x00,0x20,0x08,0x00,0x00,0x06,0x4B,0x0F,0xAF,0xA8,0x86, +0xAC,0x8E,0xAC,0x8E,0xAC,0x8E,0xAC,0x96,0xAC,0x96,0xAC,0x96,0xAC,0x96,0xAC,0x96,0xAC,0x8E,0x8C,0x8E,0xAC,0x8E,0x8C,0x8E,0xAC,0x8E,0x8C,0x8E,0x8C,0x8E,0x8C,0x96,0xAC,0x8E,0xAC,0x8E,0xAC,0x8E,0xAC,0x8E,0xAB,0x8E,0xAB,0x96,0xAB,0x96,0xAB,0x8E,0x8B,0x8E,0x8C,0x8E,0xAC,0x8E,0xAC,0x8E,0xAC,0x8E,0xAC,0x96,0xAC,0x8E,0x8B,0x8E,0x6C,0x96,0xAC,0x96,0x8B,0x96,0x6C,0x96,0x4C,0x96,0x4B,0x96,0xAC,0xA6,0xAA,0x85,0x47,0x54,0x67,0x5C,0x2B,0x8E,0xCA,0x96,0xCA,0x96,0xAA,0x8E,0xCB,0x96,0xA9,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E, +0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xCA,0x8E,0xCA,0x86,0xA9,0x7E,0x88,0x76,0xAB,0x87,0x8B,0x7F,0x8A,0x7F,0xCB,0x87,0x08,0x77,0xC8,0x76,0xE9,0x7E,0xEA,0x86,0xCA,0x86,0xCA,0x86,0xCB,0x8E,0xCB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAA,0x8E,0xAA,0x8E,0xCA,0x8E,0x0A,0x97, +0x44,0x9F,0x24,0x97,0x87,0xAF,0x69,0xAF,0xA8,0x9E,0xAD,0xBF,0xCC,0xBF,0xCB,0xBF,0xEA,0xB7,0x67,0x9F,0x46,0x9F,0x47,0x97,0x09,0x97,0xC9,0x8E,0x89,0x8E,0xCA,0x96,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0x8C,0x96,0xAC,0x96,0xAB,0x96,0xAA,0x96,0xAA,0x96,0xA9,0x8E,0xAA,0x8E,0xAA,0x8E,0xAB,0x8E,0x8B,0x8E,0x8C,0x8E,0x8C,0x8E,0xAC,0x8E,0xAC,0x8E,0xAC,0x8E,0xAC,0x8E,0xAC,0x9E,0xAB,0x9E,0xAA,0x96,0xAA,0x8E,0xCA,0x8E,0xA9,0x86,0xC8,0x86,0xE7,0x8E,0xA7,0x86,0xEA,0x8E,0xCA,0x86,0xC9,0x7E,0xA9,0x7E,0xAD,0x8E,0x22,0x1A,0x40,0x00, +0x00,0x00,0x60,0x00,0x45,0x5C,0xEB,0x9E,0xCA,0x8E,0xA9,0x86,0x0B,0x8F,0xCB,0x8E,0xAC,0x8E,0x8C,0x96,0x8B,0x96,0xAB,0x8E,0xCC,0x86,0xAD,0x86,0xAB,0x8E,0xA9,0x96,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAC,0x96,0xAC,0x8E,0x8B,0x8E,0xED,0x9E,0x06,0x5D,0x02,0x3C,0xA7,0x5C,0xAE,0x96,0xAC,0x96,0x6A,0x8E,0xCA,0x96,0xAA,0x8E,0xAA,0x8E,0xAB,0x8E,0xAB,0x8E,0x8B,0x8E,0xAB,0x8E,0x8B,0x8E,0xCC,0x96,0x8B,0x8E,0xCE,0x9E,0xAA,0x75, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x02,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x02,0x08,0x01,0x00,0xC0,0x00,0xCC,0x85,0xE9,0x96, +0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAA,0x8E,0xAA,0x8E,0xCA,0x96,0x63,0x9F,0x25,0x97,0xA9,0xAF,0xEE,0xCF,0xED,0xC7,0x07,0x9F,0x28,0xA7,0xEE,0xC7,0xEF,0xC7,0xAA,0xAF,0x05,0x97,0x27,0x97,0x09,0x97,0xCB,0x96,0xCB,0x96,0x8A,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E, +0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAC,0x8E,0x8C,0x96,0x8C,0x96,0x8C,0x96,0xAB,0x8E,0xAB,0x8E,0xCB,0x8E,0xCB,0x8E,0xAA,0x86,0xAB,0x8E,0x8C,0x8E,0x8D,0x9E,0xAF,0xA6,0x8B,0x85,0x60,0x11,0x40,0x00,0x00,0x00,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x08,0x01,0x08,0x01,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x01,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,0x01,0x00,0x00,0x00,0x40,0x09,0x8C,0x8E,0xE9,0x8E,0xAA,0x8E,0x8C,0x9E,0x6B,0x96,0xCA,0x96,0xC8,0x96,0xA8,0x8E,0xEA,0x8E,0xCB,0x86,0xAA,0x86,0xCA,0x8E,0xCB,0x8E,0xCA,0x8E,0x89,0x86,0xAB,0x8E,0x8B,0x96,0xCB,0x9E,0x8A,0x96,0x6B,0x9E,0xD0,0xAE,0xE3,0x3A,0x60,0x00,0x08,0x53,0x40,0x00,0x47,0x4B,0x30,0xAF,0x88,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAC,0x8E,0xAC,0x8E,0xAC,0x8E,0xAC,0x8E,0xAC,0x8E,0xAC,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAA,0x8E,0xAA,0x8E,0xAA,0x8E,0xAB,0x8E,0xCB,0x96,0xAC,0x96,0xAC,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x96,0xAB,0x8E,0xAB,0x8E, +0x4D,0x8E,0xAD,0x96,0xAC,0x96,0xAC,0x96,0x8C,0x96,0x2B,0x8E,0xCF,0xA6,0x8B,0x85,0x80,0x01,0xC0,0x22,0xEF,0xA6,0x6A,0x8E,0xCA,0x96,0x89,0x8E,0xAA,0x8E,0xCB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xEA,0x8E,0xA9,0x7E,0xEA,0x7E,0xA8,0x6E,0xCC,0x87,0xAB,0x7F,0x49,0x6F,0xCB,0x7F,0x08,0x6F,0xE8,0x6E,0xE9,0x7E,0xEA,0x86,0xCA,0x86,0xCA,0x86,0xEB,0x8E,0xCB,0x8E, +0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAA,0x8E,0xAB,0x8E,0xAA,0x8E,0xCA,0x8E,0xEA,0x96,0x47,0x9F,0x46,0x9F,0x66,0xA7,0xEE,0xCF,0xEE,0xC7,0xEE,0xCF,0xEB,0xBF,0x88,0xAF,0xEA,0xBF,0xC9,0xAF,0x06,0x97,0x28,0x9F,0x0A,0x97,0x6B,0x8E,0xCC,0x96,0xAA,0x8E,0xAB,0x8E,0xCB,0x8E,0xCB,0x8E,0xCB,0x8E,0xCB,0x8E,0xCB,0x8E,0xCB,0x8E,0xCB,0x8E,0xCB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E, +0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0x8B,0x8E,0xAB,0x8E,0xAC,0x96,0xAC,0x96,0x8C,0x8E,0x6C,0x8E,0x8C,0x8E,0x8C,0x96,0x8B,0x96,0xAA,0x96,0xA9,0x8E,0xAA,0x8E,0xCA,0x8E,0xA9,0x8E,0xA7,0x8E,0xC7,0x96,0xE8,0x9E,0xA9,0x8E,0xCA,0x8E,0xEA,0x86,0xA9,0x7E,0x2F,0x9F,0x2A,0x5C,0x20,0x00,0x01,0x00,0x20,0x11,0x6A,0x7D,0xCB,0x96,0xC9,0x8E,0xEA,0x96,0xAB,0x8E,0xAC,0x8E,0x8C,0x8E,0x8B,0x96,0xAA,0x96,0xAB,0x8E,0xCC,0x86,0xAD,0x86,0x8B,0x8E,0x89,0x96,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E, +0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0x8B,0x8E,0xAB,0x8E,0xAC,0x8E,0x6B,0x8E,0xEE,0x9E,0xA5,0x54,0xA1,0x33,0x88,0x6D,0xAD,0x96,0x8B,0x8E,0xAB,0x96,0xAB,0x96,0xAA,0x8E,0xAB,0x8E,0xAB,0x96,0xAB,0x8E,0xAB,0x96,0xAB,0x8E,0xAA,0x8E,0x8A,0x8E,0xAB,0x96,0xCD,0x9E,0x08,0x65,0xE0,0x22,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x02,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x00,0x02,0x00,0x20,0x00,0x23,0x43,0xEC,0xA6,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAA,0x8E,0xAA,0x8E,0xAA,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAA,0x8E,0xAA,0x8E, +0x25,0x97,0x67,0x9F,0x07,0x97,0xE8,0x96,0xE8,0x9E,0x08,0x9F,0x07,0x97,0x28,0x9F,0xE8,0x96,0xE7,0x96,0x47,0x9F,0x27,0x97,0xC9,0x8E,0x6A,0x86,0xAC,0x96,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0x8B,0x8E,0x8B,0x8E,0x8B,0x8E,0xAB,0x8E,0xAA,0x8E,0xCA,0x8E,0xA9,0x86,0xCB,0x8E,0xAC,0x96,0x2C,0x8E,0xB0,0xA6,0x49,0x64,0x60,0x00, +0x40,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x20,0x00,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,0x20,0x00,0x00,0x00,0x00,0x00,0x40,0x09,0x8B,0x8E,0xE9,0x8E,0xA9,0x8E,0x8C,0x96,0xAC,0x9E,0x69,0x8E,0xC9,0x96,0xAA,0x8E,0xAB,0x86,0xCC,0x86,0xCC,0x86,0xAB,0x86,0x6C,0x8E,0x8C,0x8E,0xAD,0x96,0x8C,0x8E,0x6B,0x96,0x6A,0x96,0x89,0x9E,0x6A,0x9E,0xAE,0xA6,0x22,0x3B,0xC0,0x00,0x33,0xA6,0xA0,0x00,0x26,0x3B,0x10,0xA7,0xA8,0x86, +0xAA,0x86,0xAA,0x86,0xAA,0x86,0xCA,0x8E,0xCA,0x8E,0xCA,0x8E,0xCA,0x8E,0xCA,0x86,0xCA,0x86,0xCA,0x86,0xCA,0x86,0xCA,0x86,0xCA,0x8E,0xCA,0x8E,0xCA,0x8E,0xCA,0x8E,0xCA,0x86,0xCA,0x86,0xCA,0x8E,0xCA,0x8E,0xAA,0x8E,0xAA,0x8E,0xAA,0x8E,0xAA,0x8E,0xA9,0x8E,0xA9,0x8E,0xA9,0x8E,0xA9,0x8E,0xA9,0x8E,0xA9,0x8E,0xAA,0x8E,0xC9,0x8E,0xCC,0x8E,0x8B,0x86,0xAA,0x86,0xAA,0x8E,0x8A,0x8E,0x0E,0xA7,0x08,0x6D,0x00,0x0A,0x69,0x75,0x61,0x33,0x82,0x3B,0x0F,0xA7,0x6A,0x8E,0xAA,0x8E,0xAA,0x96,0xAC,0x96,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAA,0x8E,0xAA,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E, +0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAA,0x86,0xEA,0x86,0xCA,0x7E,0xEA,0x7E,0xE9,0x76,0x05,0x4E,0x66,0x5E,0xE8,0x6E,0x09,0x77,0xE9,0x7E,0xC9,0x86,0xCA,0x86,0xAA,0x86,0xAA,0x86,0xAA,0x86,0xAB,0x86,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAA,0x8E,0xAB,0x8E,0xAA,0x8E,0xAA,0x8E,0xCA,0x96, +0x29,0x9F,0x27,0x9F,0x06,0x97,0x07,0x97,0x8A,0xA7,0x49,0xA7,0xE6,0x96,0x26,0x97,0xE6,0x96,0x27,0x9F,0x48,0x9F,0x28,0x9F,0xC9,0x8E,0xAC,0x8E,0x8C,0x8E,0xCB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xCA,0x8E,0xCB,0x8E,0xAB,0x8E,0xAB,0x8E,0x8C,0x8E,0x8C,0x8E,0x8C,0x8E,0x8B,0x8E,0xCB,0x8E,0xCA,0x8E,0xAA,0x8E,0xAA,0x8E,0xAA,0x8E,0xAA,0x8E,0xAA,0x8E,0xAB,0x8E,0x8B,0x86,0xCA,0x8E,0xCA,0x8E,0xAA,0x8E,0xAC,0x8E,0xAC,0x96,0x8A,0x96,0x6A,0x9E,0x4A,0x9E,0x2B,0x96,0x8D,0x96,0xCB,0x8E,0x69,0x86,0xEF,0xA6,0xA9,0x53,0x21,0x00, +0x01,0x08,0x26,0x32,0xF2,0xAE,0x8A,0x86,0xA8,0x86,0xAA,0x8E,0x8B,0x96,0x6C,0x8E,0x8B,0x8E,0xAA,0x8E,0xAA,0x8E,0xAB,0x8E,0xAC,0x86,0xAC,0x8E,0xAB,0x8E,0x8A,0x96,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x96,0x4A,0x86,0xAC,0x96,0xCD,0x9E,0x23,0x44,0x00,0x23,0x2B,0x8E,0xCE,0x9E,0xAB,0x8E,0xAB,0x96,0xAB,0x8E,0xAA,0x8E,0xAB,0x8E,0x8B,0x8E,0x8B,0x8E,0xCC,0x96,0x8A,0x8E,0x8A,0x8E,0x8A,0x8E,0xCC,0x9E,0x4A,0x8E,0x23,0x4C,0x41,0x33,0xCC,0x85, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x40,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x40,0x00,0xA0,0x00,0xCE,0x9D, +0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAA,0x8E,0xAA,0x8E,0xAA,0x8E,0xAA,0x8E,0xAA,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAA,0x8E,0xA9,0x8E,0xE8,0x8E,0x48,0x9F,0x28,0x9F,0x48,0x9F,0x68,0xA7,0x25,0x97,0x46,0x9F,0x47,0x97,0x8A,0xA7,0x08,0x8F,0xA8,0x86,0xCA,0x8E,0xAB,0x8E,0xCC,0x96,0x8B,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E, +0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAA,0x8E,0xAA,0x8E,0xAB,0x8E,0x8B,0x8E,0x8B,0x8E,0xAB,0x8E,0xAA,0x8E,0xCA,0x8E,0xA9,0x86,0x0B,0x97,0x8A,0x86,0x8C,0x96,0xB0,0xA6,0x87,0x4B,0x80,0x00,0x60,0x00,0x00,0x00,0x00,0x00,0x01,0x08,0x00,0x00,0x20,0x00,0x20,0x00,0x00,0x00,0x20,0x00,0x00,0x00,0x20,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,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x20,0x00,0x01,0x08,0x00,0x00,0x20,0x09,0x8C,0x96,0xCA,0x8E,0xAB,0x86,0x8B,0x8E,0x8A,0x8E,0x69,0x86,0xCC,0x96,0x6B,0x8E,0xAC,0x96,0xAB,0x8E,0xAA,0x86,0xCC,0x8E,0xAB,0x8E,0xAC,0x8E,0x6C,0x86,0xCD,0x96,0x8A,0x8E,0xCA,0x96,0x89,0x96,0xAB,0x96,0xCE,0xA6,0x02,0x33,0x60,0x00,0xED,0x6B,0x40,0x00,0xC5,0x32,0x0F,0xA7,0xA9,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAA,0x8E,0xAA,0x8E,0xCA,0x8E,0xCA,0x8E,0xAA,0x8E,0xCA,0x8E,0xCA,0x8E,0xAA,0x8E,0xAA,0x8E,0xAA,0x8E,0xAA,0x8E,0xAA,0x8E,0xCA,0x86,0xCA,0x8E,0xCA,0x8E,0xCB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAA,0x8E,0xCA,0x8E,0xCA,0x8E,0xCA,0x8E,0xAA,0x8E,0xAA,0x8E,0xAA,0x8E, +0xCA,0x8E,0xAA,0x86,0xCB,0x8E,0xCA,0x8E,0xCB,0x96,0x65,0x54,0x42,0x2B,0x86,0x5C,0x0E,0xA7,0xCA,0x7D,0x80,0x1A,0x68,0x54,0xCF,0x9E,0x8A,0x8E,0xAA,0x8E,0x6B,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAA,0x8E,0xAA,0x8E,0xAA,0x8E,0xAA,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAA,0x8E,0xCB,0x8E,0xCA,0x86,0xCA,0x7E,0xA9,0x76,0x80,0x2C,0x47,0x66,0x2A,0x87,0xC9,0x86,0xCA,0x86,0xAA,0x8E,0xAA,0x8E,0xAB,0x8E,0x8B,0x8E,0x8B,0x8E,0xAB,0x8E, +0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAA,0x8E,0xAA,0x8E,0xAA,0x8E,0xAA,0x8E,0xAA,0x8E,0xAA,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAA,0x8E,0xAA,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0x8B,0x8E,0xAB,0x8E,0xAB,0x8E,0xAA,0x8E,0xAA,0x8E,0xC8,0x8E,0x29,0x9F,0x48,0x9F,0x47,0x9F,0x26,0x97,0x26,0x97,0x47,0x9F,0x46,0x9F,0x46,0x97,0x46,0x9F,0xE7,0x96,0x2A,0x9F,0xCA,0x8E,0x8A,0x86,0xAA,0x86,0xCB,0x8E,0xAA,0x8E,0xAA,0x8E,0xAA,0x8E,0xAA,0x8E,0xAA,0x8E,0xAA,0x8E,0xAA,0x8E,0xAA,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E, +0xCA,0x8E,0xAA,0x8E,0xAB,0x8E,0xAB,0x8E,0xAC,0x8E,0xAC,0x8E,0xAC,0x8E,0xAC,0x8E,0x6A,0x8E,0x8A,0x8E,0xAA,0x8E,0xAA,0x8E,0xAA,0x8E,0x8A,0x8E,0x89,0x8E,0xAA,0x8E,0xAB,0x8E,0xCB,0x8E,0xCA,0x8E,0xAB,0x8E,0x8C,0x86,0xAD,0x8E,0x8B,0x96,0x8B,0x96,0x8C,0x9E,0x6C,0x96,0xAC,0x8E,0xAA,0x86,0xCA,0x8E,0xCD,0x9E,0xE9,0x5B,0x00,0x00,0x01,0x08,0x20,0x00,0x49,0x54,0xEC,0x8E,0xC9,0x8E,0xA9,0x96,0x6B,0x96,0x8C,0x96,0xAA,0x8E,0xCA,0x8E,0xAA,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0x8B,0x96,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E, +0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x96,0xED,0x9E,0x4B,0x86,0xE0,0x1A,0xE2,0x3B,0xEE,0x9E,0x8D,0x96,0x4C,0x8E,0xAA,0x8E,0x89,0x8E,0x8A,0x8E,0x8B,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAA,0x8E,0xAA,0x8E,0xEC,0x96,0xAC,0x96,0x47,0x6D,0xE2,0x43,0xE3,0x43,0x6D,0x96,0x8E,0x9E,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,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,0x02,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x20,0x00,0x20,0x00,0x40,0x00,0x20,0x00,0x60,0x00,0x20,0x00,0x8B,0x63,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAA,0x8E,0xAA,0x8E,0xAA,0x8E,0xAA,0x8E,0xAA,0x8E,0xAA,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0x8B,0x8E, +0x8E,0x8E,0xAB,0x8E,0xC6,0x8E,0x47,0x9F,0x05,0x97,0x45,0x9F,0x43,0x97,0x64,0x9F,0x25,0x8F,0xC8,0x8E,0xAA,0x8E,0xAB,0x8E,0xCB,0x8E,0xAB,0x8E,0x6A,0x86,0x8A,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xCA,0x8E,0xAA,0x8E,0xAA,0x8E,0xAB,0x8E,0xAB,0x8E,0xAA,0x8E,0xAA,0x8E,0xC9,0x8E,0xC9,0x86,0xA9,0x8E,0xAB,0x8E,0x8D,0x96,0xEA,0x6C,0x60,0x00,0xA0,0x00,0x20,0x00, +0x00,0x00,0x01,0x00,0x01,0x00,0x01,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x00,0x01,0x00,0x01,0x00,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,0x20,0x00,0x02,0x08,0x02,0x08,0xE0,0x10,0x6E,0x96,0xCC,0x8E,0xAD,0x86,0xAB,0x86,0xCA,0x86,0xEA,0x8E,0x8C,0x8E,0x4D,0x96,0x6B,0x96,0xC9,0x8E,0xC8,0x8E,0xAB,0x8E,0xE8,0x8E,0xA9,0x86,0xCC,0x8E,0x8A,0x86,0xC9,0x8E,0xA8,0x86,0xAA,0x86,0xAC,0x86,0xEF,0x9E,0x24,0x33,0x60,0x00,0x63,0x00,0x00,0x00,0xC5,0x3A,0x0E,0xAF,0x88,0x8E, +0x8C,0x96,0x8C,0x96,0x8C,0x96,0x8B,0x96,0x8B,0x96,0x8B,0x96,0x8B,0x96,0x8B,0x96,0x8B,0x96,0x8B,0x8E,0x8B,0x8E,0x8B,0x8E,0x8B,0x96,0x8B,0x96,0x8A,0x96,0x8A,0x96,0xAB,0x86,0xAB,0x8E,0xAC,0x8E,0x8C,0x8E,0x8C,0x8E,0x8C,0x8E,0x8C,0x8E,0x8C,0x8E,0x8C,0x96,0x8C,0x8E,0x8C,0x8E,0x8B,0x8E,0x8B,0x8E,0x8B,0x8E,0xAB,0x8E,0xAB,0x96,0xAA,0x8E,0xAB,0x96,0xAC,0x8E,0x4A,0x8E,0xC0,0x3B,0x29,0x75,0x07,0x54,0x6E,0x9E,0x4B,0x96,0x8D,0x9E,0x47,0x54,0x29,0x54,0x46,0x4C,0x2D,0xA7,0x89,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAA,0x8E,0xAA,0x8E,0xAA,0x8E,0xAA,0x8E,0xAA,0x8E,0xAA,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E, +0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xCB,0x8E,0x8A,0x86,0xAB,0x86,0xCB,0x86,0x89,0x7E,0x81,0x3C,0x44,0x55,0xCA,0x8E,0xAA,0x8E,0xAA,0x96,0x8A,0x96,0x8B,0x96,0x8B,0x96,0x6B,0x8E,0x6B,0x8E,0xAC,0x96,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAA,0x8E,0xAA,0x8E,0xAA,0x8E,0xAA,0x8E,0xAA,0x8E,0xAA,0x8E,0xAA,0x8E,0xAA,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAA,0x8E,0xAA,0x8E,0xAA,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0x8B,0x8E,0xAB,0x8E,0xAB,0x8E,0x8A,0x8E,0xAA,0x8E, +0xC7,0x8E,0xE8,0x96,0x08,0x97,0x47,0x97,0x65,0x97,0x45,0x97,0x46,0x97,0x45,0x97,0x64,0x9F,0x45,0x97,0xE7,0x96,0xA9,0x8E,0x89,0x86,0xEA,0x8E,0xC9,0x8E,0xC9,0x8E,0x8A,0x96,0x8A,0x96,0x8A,0x96,0x8A,0x96,0xAA,0x8E,0xAA,0x8E,0xAA,0x8E,0xAA,0x8E,0xAA,0x8E,0xAA,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0x8A,0x8E,0x8A,0x8E,0x8A,0x96,0xAA,0x96,0xCB,0x96,0xCB,0x9E,0xCC,0x9E,0xCD,0x9E,0xEE,0x9E,0xCE,0x9E,0xCE,0x9E,0xCD,0x9E,0xED,0x9E,0xCC,0x9E,0xEB,0x9E,0x0C,0xA7,0xAB,0x96,0x8A,0x8E,0xAA,0x8E,0xCB,0x8E,0xCC,0x86,0xAC,0x86,0xAA,0x86,0xCA,0x8E,0xAA,0x8E,0xCB,0x8E,0xCA,0x7E,0xE8,0x7E,0xE7,0x7E,0x2B,0x9F,0x06,0x5C,0x40,0x00, +0x01,0x10,0x40,0x00,0x41,0x0A,0xEE,0x8E,0xA9,0x8E,0x89,0x96,0x6B,0x9E,0x6B,0x96,0xAA,0x8E,0xC9,0x86,0xCA,0x86,0xAB,0x8E,0xAB,0x8E,0xAA,0x8E,0x8A,0x8E,0x8B,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0x8B,0x8E,0xAC,0x96,0x88,0x75,0x80,0x12,0x47,0x6D,0xCE,0x9E,0x6C,0x96,0x2C,0x8E,0x8D,0x96,0xA9,0x8E,0xA9,0x8E,0xCB,0x96,0x8B,0x8E,0xAB,0x8E,0xCB,0x8E,0x8A,0x8E,0xAA,0x8E,0xCB,0x96,0x09,0x7E,0x64,0x54,0x65,0x54,0x86,0x5C,0xAE,0x9E,0x4C,0x96,0x6C,0x9E, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x41,0x08,0xC3,0x18, +0xCA,0x96,0x89,0x96,0x8A,0x96,0x6A,0x96,0x8B,0x8E,0xAC,0x8E,0x8B,0x86,0xCB,0x8E,0x8A,0x8E,0x8A,0x96,0x6A,0x96,0x8A,0x8E,0xCA,0x8E,0xC9,0x86,0xEA,0x86,0xA9,0x86,0xA8,0x96,0xA9,0x96,0xA9,0x8E,0xAA,0x86,0xAA,0x86,0xCA,0x86,0xA9,0x7E,0xCA,0x8E,0x8B,0x8E,0x8C,0x8E,0x8C,0x96,0x8B,0x96,0x8A,0x8E,0xAA,0x8E,0xAB,0x8E,0xAC,0x86,0x8A,0x8E,0x8B,0x8E,0xAB,0x8E,0xAB,0x8E,0xCA,0x86,0xCA,0x8E,0xAA,0x8E,0xAB,0x8E,0x8C,0x8E,0x8C,0x8E,0x8C,0x8E,0x8B,0x8E,0xAA,0x8E,0x8A,0x8E,0x8B,0x8E,0x8B,0x8E,0x8D,0x8E,0x8B,0x8E,0xAA,0x8E,0xA9,0x8E,0xA9,0x8E,0xAA,0x96,0x6A,0x96,0x8B,0x96,0x6C,0x8E,0x8C,0x8E,0xCC,0x8E,0xAB,0x86,0xAA,0x86,0x8A,0x8E,0x6A,0x96,0x4A,0x9E, +0xA9,0x8E,0xAA,0x8E,0x8B,0x8E,0x8C,0x96,0x8C,0x96,0x8C,0x96,0x8B,0x8E,0x8A,0x8E,0xAA,0x8E,0xAA,0x86,0xAA,0x86,0xAB,0x86,0xAA,0x8E,0xAA,0x8E,0xA9,0x8E,0xA9,0x96,0x8B,0x96,0x8A,0x8E,0xAB,0x8E,0x8B,0x8E,0x8A,0x8E,0xAA,0x8E,0xAA,0x8E,0xAA,0x8E,0x8A,0x8E,0xCA,0x96,0x6A,0x86,0xAF,0x9E,0x66,0x3A,0x01,0x00,0x20,0x00,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,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x08,0x00,0x08,0x00,0x09,0x6C,0x96,0xCA,0x8E,0xAA,0x8E,0x8B,0x8E,0xAB,0x8E,0xAA,0x8E,0x8A,0x8E,0x8B,0x8E,0x8B,0x8E,0xAB,0x86,0xAB,0x8E,0xAA,0x8E,0x88,0x9E,0xAA,0x96,0x8B,0x8E,0xAA,0x8E,0xA9,0x8E,0x89,0x86,0xCA,0x7E,0xAA,0x86,0xCC,0xA6,0x80,0x32,0x40,0x00,0x41,0x00,0x20,0x00,0xC3,0x3A,0x50,0xAF,0x8A,0x7E,0xEA,0x95,0xA8,0x7D,0xCC,0x96,0xAB,0x86,0xAB,0x86,0x8A,0x8E,0x89,0x8E,0xA8,0x96,0xA8,0x8E,0xA9,0x86,0xAB,0x8E,0x8B,0x8E,0x6B,0x8E,0x8B,0x8E,0xAB,0x8E,0xAB,0x8E,0xCB,0x86,0xCB,0x8E,0x8A,0x8E,0xAA,0x8E,0xAA,0x8E,0xA9,0x8E,0xC9,0x96,0xC9,0x8E,0xCA,0x86,0xCA,0x7E,0xCB,0x86,0xCB,0x8E,0x8A,0x86,0xCB,0x8E,0xCB,0x96,0x8A,0x96, +0x4C,0x96,0xCE,0xA6,0xCB,0x8D,0x43,0x3B,0xEF,0x8D,0x68,0x5C,0x49,0x75,0xCD,0xA6,0x4C,0x8E,0x2F,0xA7,0x29,0x6D,0xC9,0x6C,0x69,0x6C,0x44,0x43,0x8F,0x9E,0xAC,0x96,0xEA,0x86,0xCB,0x86,0xAC,0x86,0xCB,0x8E,0x89,0x86,0xAA,0x8E,0x8A,0x8E,0x8A,0x8E,0xAA,0x8E,0x88,0x8E,0xA9,0x8E,0xAA,0x8E,0x8B,0x8E,0xAB,0x8E,0xAB,0x8E,0xAC,0x86,0xAA,0x8E,0xAA,0x8E,0xAA,0x8E,0xAA,0x8E,0xAA,0x8E,0xAA,0x8E,0xAA,0x8E,0xAA,0x8E,0xAA,0x8E,0x8A,0x8E,0x8A,0x8E,0x8A,0x8E,0x8A,0x8E,0x8A,0x8E,0x8A,0x8E,0x8A,0x8E,0x4A,0x96,0xAA,0x86,0xEA,0x76,0xEA,0x7E,0xCA,0x7E,0x43,0x3D,0xC0,0x1C,0xA8,0x66,0xEA,0x7E,0xCA,0x86,0xE9,0x6E,0x46,0x56,0xEA,0x7E,0x6A,0x8E,0xAB,0x96,0xAA,0x86, +0xAA,0x8E,0xC9,0x86,0xC9,0x86,0x8B,0x8E,0x6D,0x96,0x8C,0x8E,0xAA,0x86,0xCA,0x86,0xAC,0x86,0x8D,0x86,0xCC,0x8E,0x8A,0x86,0x8B,0x96,0x8B,0x96,0xCB,0x8E,0xE9,0x7E,0xA9,0x8E,0xAA,0x8E,0x8A,0x8E,0xAB,0x8E,0xAB,0x8E,0x8B,0x8E,0x8B,0x8E,0xAB,0x8E,0xAA,0x8E,0xAA,0x8E,0xAA,0x8E,0xAA,0x8E,0xAA,0x8E,0x8A,0x8E,0x8B,0x8E,0x8B,0x8E,0xAA,0x8E,0xAA,0x8E,0xAA,0x8E,0xCA,0x96,0xEA,0x96,0xEB,0x96,0x0B,0x97,0x0B,0x97,0xAA,0x8E,0xAA,0x8E,0xAB,0x8E,0xAB,0x8E,0xAB,0x8E,0x8B,0x8E,0xAA,0x8E,0xAA,0x8E,0x8A,0x96,0x8A,0x8E,0xAB,0x86,0xCB,0x86,0xAB,0x86,0x6B,0x96,0x4B,0x9E,0x6C,0x96,0x8B,0x86,0xCB,0x86,0x8A,0x8E,0x8C,0x8E,0x8D,0x8E,0xAC,0x86,0xCB,0x96,0x88,0x96, +0xAA,0x8E,0xAA,0x8E,0xAB,0x8E,0x8B,0x96,0x8B,0x96,0x0D,0xAF,0xED,0xAE,0xEE,0xAE,0xCD,0xAE,0xED,0xAE,0xED,0xA6,0xCC,0x9E,0xCC,0x9E,0x0D,0x9F,0xAB,0x96,0x0C,0x9F,0x8C,0x96,0x8B,0x96,0x8B,0x8E,0xAA,0x86,0xCB,0x86,0xAB,0x86,0x8A,0x86,0xAA,0x8E,0xAA,0x86,0xAA,0x8E,0x8B,0x8E,0xAA,0x8E,0xA9,0x7E,0x2D,0x97,0xE8,0x53,0x20,0x00,0x00,0x00,0x20,0x00,0x60,0x00,0x10,0x9E,0x4A,0x86,0xEA,0x8E,0xA9,0x86,0x8B,0x96,0x6C,0x96,0x8B,0x96,0xAA,0x8E,0xCA,0x86,0xCB,0x7E,0xAB,0x86,0x8B,0x8E,0x8A,0x96,0x2C,0x9E,0x6C,0x96,0xCB,0x8E,0xA9,0x86,0xA9,0x8E,0xAA,0x8E,0x8B,0x8E,0xCC,0x86,0xCC,0x7E,0xCB,0x86,0xAA,0x8E,0x8A,0x8E,0xAC,0x8E,0x8B,0x8E,0xAA,0x8E,0x89,0x8E, +0x89,0x96,0x8A,0x96,0x8B,0x8E,0x8B,0x9E,0xCA,0x9E,0x87,0x86,0xEA,0x8E,0xCD,0x96,0x87,0x5C,0x40,0x1A,0x0B,0x8E,0xAB,0x8E,0xAA,0x8E,0xAB,0x96,0x6B,0x96,0xAC,0x96,0x8D,0x96,0x8C,0x8E,0x8D,0x96,0x8D,0x96,0x8C,0x96,0x4A,0x8E,0xAB,0x9E,0x4A,0x96,0x47,0x6D,0x87,0x5C,0xA8,0x5C,0xEA,0x6C,0x8E,0x96,0x8B,0x96,0xA9,0x96,0x86,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,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x41,0x08,0x25,0x65,0xED,0x9E,0x4B,0x8E,0xCC,0x96,0xAA,0x86,0xA9,0x7E,0xEA,0x86,0xCB,0x86,0xAC,0x8E,0x8A,0x8E,0x8A,0x96,0x8A,0x8E,0xAB,0x96,0x6B,0x8E,0x8B,0x8E,0xAB,0x96,0x8B,0x96,0x4A,0x8E,0xAC,0x8E,0xCC,0x8E,0xAB,0x86,0xAB,0x86,0xCB,0x86,0x8A,0x86,0xAB,0x8E,0x8B,0x8E,0x8B,0x8E,0x8A,0x8E,0xAA,0x8E,0xAA,0x8E,0x8B,0x8E,0x8C,0x8E, +0x8A,0x8E,0x8A,0x8E,0xAB,0x8E,0xAB,0x8E,0xAA,0x86,0xCA,0x8E,0xAA,0x8E,0xAB,0x8E,0x8B,0x8E,0x8B,0x8E,0x8B,0x8E,0x8B,0x8E,0xAA,0x8E,0xAA,0x8E,0xAA,0x8E,0x8B,0x8E,0x8D,0x8E,0x8B,0x8E,0xCA,0x8E,0xAA,0x8E,0x89,0x8E,0xAA,0x96,0x8A,0x8E,0x8A,0x8E,0xAB,0x8E,0xCC,0x8E,0x6A,0x86,0xCB,0x8E,0x8B,0x8E,0x6B,0x8E,0x8B,0x96,0x8A,0x96,0xA9,0x8E,0xAA,0x8E,0x8A,0x8E,0x8B,0x8E,0x8B,0x96,0x8B,0x96,0x8A,0x8E,0xAA,0x8E,0xAA,0x8E,0xAA,0x8E,0xAB,0x86,0xAB,0x86,0xAB,0x8E,0xAA,0x8E,0x8A,0x8E,0xA9,0x96,0x8B,0x96,0x8A,0x8E,0xAB,0x8E,0x8B,0x8E,0x8A,0x8E,0xAA,0x8E,0xAA,0x8E,0xAA,0x8E,0xAB,0x96,0x89,0x8E,0xAA,0x8E,0xB0,0xA6,0x82,0x19,0x01,0x00,0x00,0x00,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,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x00,0x08,0x00,0x09,0x6D,0x96,0xCA,0x8E,0xAA,0x8E,0x8B,0x8E,0x8B,0x8E,0xAA,0x8E,0x8A,0x8E,0x8B,0x8E,0x8B,0x8E,0xAB,0x86,0xAB,0x86,0xAA,0x8E,0x8A,0x96,0x8B,0x8E,0x6B,0x86,0x8B,0x8E,0x8A,0x8E,0xCB,0x8E,0xAB,0x86,0x8C,0x8E,0x6E,0x9E,0x41,0x2A,0x40,0x00,0x20,0x00,0x20,0x00,0x84,0x32,0xEF,0xA6,0x8A,0x86, +0x29,0x75,0x23,0x4C,0x2E,0x9F,0x8A,0x7E,0xAC,0x86,0xCC,0x8E,0x6A,0x8E,0xAA,0x96,0xAA,0x96,0xAB,0x8E,0xED,0x96,0x27,0x65,0x22,0x44,0x2D,0xA7,0x8A,0x86,0xAB,0x86,0xAB,0x86,0xAB,0x8E,0x6A,0x8E,0xAB,0x8E,0xAB,0x8E,0x8B,0x8E,0xC8,0x7D,0x87,0x6D,0xAB,0x86,0xCC,0x8E,0xAB,0x8E,0x6A,0x8E,0xAB,0x8E,0x4A,0x86,0x4A,0x8E,0x2B,0x96,0xAE,0x96,0xE6,0x5C,0x20,0x2B,0xAE,0x9E,0x08,0x65,0xE3,0x3B,0xCC,0x9E,0x49,0x86,0x69,0x86,0x28,0x7E,0x0D,0x9F,0x20,0x2B,0x6E,0xA6,0x00,0x12,0x24,0x4C,0xCC,0x96,0x88,0x86,0xCB,0x8E,0x8B,0x86,0x6A,0x86,0xCA,0x8E,0xAA,0x8E,0xAB,0x8E,0x8B,0x8E,0xAB,0x8E,0x89,0x8E,0xAA,0x8E,0xAB,0x8E,0x8B,0x8E,0x8B,0x8E,0x8B,0x8E,0x8B,0x8E, +0xAA,0x8E,0xAA,0x8E,0xAA,0x8E,0xAA,0x8E,0xAA,0x8E,0xAA,0x8E,0xAA,0x8E,0xAA,0x8E,0xAA,0x8E,0xAA,0x8E,0x8A,0x8E,0x8A,0x8E,0x8A,0x8E,0x8A,0x8E,0x8A,0x8E,0x8A,0x8E,0x8B,0x9E,0x8A,0x86,0x0B,0x87,0xCA,0x7E,0x0B,0x87,0xE5,0x55,0xA0,0x14,0x42,0x2D,0xE9,0x76,0x0A,0x87,0xE1,0x34,0xC1,0x2C,0x0B,0x87,0xAA,0x96,0x6A,0x8E,0xAA,0x86,0xAA,0x8E,0xAA,0x86,0xCA,0x86,0x8B,0x8E,0x8C,0x96,0x8B,0x8E,0xAA,0x86,0xCA,0x86,0xAA,0x86,0xCC,0x8E,0xAB,0x86,0xCB,0x8E,0xAB,0x96,0x6A,0x96,0xAA,0x8E,0xA9,0x7E,0xA9,0x8E,0x89,0x8E,0xAA,0x96,0x6A,0x8E,0x6A,0x86,0xAC,0x8E,0xAC,0x8E,0x8A,0x86,0xAA,0x8E,0xAA,0x8E,0xAA,0x8E,0xAA,0x8E,0xAA,0x8E,0x8A,0x8E,0x8B,0x8E,0x8B,0x8E, +0xAA,0x8E,0xAA,0x8E,0xAA,0x8E,0xAA,0x8E,0xAA,0x8E,0xAA,0x8E,0xAA,0x8E,0xAA,0x8E,0xAA,0x8E,0xAA,0x8E,0xAB,0x8E,0xAA,0x8E,0x8B,0x8E,0xAA,0x8E,0xAA,0x8E,0xAA,0x8E,0x8A,0x96,0xAA,0x8E,0xAB,0x86,0xAB,0x86,0xAA,0x8E,0x8A,0x96,0x6A,0x96,0x6C,0x96,0xCE,0x96,0xCD,0x8E,0x8A,0x86,0xAA,0x8E,0xAB,0x8E,0xAC,0x8E,0x8A,0x8E,0x69,0x96,0xCB,0x8E,0xAA,0x8E,0xAB,0x8E,0x6A,0x8E,0x8B,0x96,0x2E,0xAF,0x0E,0xB7,0x2E,0xB7,0x0E,0xAF,0x2E,0xAF,0x0E,0xAF,0xEC,0x9E,0x8B,0x96,0x6A,0x8E,0x49,0x86,0x2D,0xA7,0x6A,0x8E,0x8B,0x96,0x8B,0x8E,0xAB,0x86,0xAB,0x86,0x8C,0x8E,0xAC,0x96,0x8B,0x8E,0xAA,0x8E,0xAB,0x8E,0x8C,0x8E,0xAB,0x8E,0xA9,0x86,0x2D,0x9F,0xE8,0x53,0x00,0x00, +0x00,0x00,0x81,0x08,0x40,0x00,0xCB,0x74,0xAC,0x96,0xCA,0x86,0xCA,0x8E,0x6B,0x8E,0x6C,0x96,0x8B,0x96,0xAA,0x8E,0xCA,0x86,0xCB,0x7E,0xAB,0x86,0x8B,0x8E,0x8A,0x96,0x8B,0x8E,0x8A,0x8E,0x8A,0x8E,0x8A,0x8E,0xAA,0x8E,0xAA,0x86,0x89,0x86,0x8A,0x8E,0x8B,0x96,0x4B,0x8E,0xAC,0x8E,0x8B,0x86,0xEB,0x8E,0xA9,0x86,0x8A,0x86,0xCB,0x8E,0x8B,0x8E,0x8A,0x86,0xA9,0x8E,0x6A,0x8E,0x2B,0x86,0x0E,0x9F,0x8B,0x86,0x80,0x2B,0xA3,0x3B,0xCF,0xA6,0xCC,0x96,0xAA,0x86,0xAB,0x8E,0xAC,0x8E,0x8C,0x8E,0xAB,0x86,0x6A,0x86,0xCB,0x96,0x8A,0x8E,0x49,0x86,0xAB,0x96,0x0D,0x9F,0x68,0x6D,0xE7,0x5C,0xE7,0x5C,0xA5,0x54,0x88,0x6D,0xED,0x96,0xAB,0x8E,0x6A,0x86,0xAB,0x8E,0xEC,0x96, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,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,0x11,0xA7,0x4C,0x86,0xAB,0x86,0xE9,0x86,0xC8,0x86,0xEA,0x8E,0x8B,0x86,0x6B,0x86,0xAC,0x8E,0x6A,0x8E,0xAB,0x96,0x6B,0x96,0x8B,0x96,0x8B,0x96,0x8B,0x8E,0xAB,0x8E,0x8C,0x8E,0x6C,0x8E,0x6D,0x8E,0x8C,0x8E,0x8B,0x8E,0xAB,0x8E,0x8B,0x8E,0xAB,0x8E,0xAB,0x8E,0xAA,0x8E,0xAA,0x8E,0xAA,0x8E,0xAA,0x8E,0x8B,0x8E,0x8B,0x8E,0x89,0x8E,0x8A,0x8E,0x8A,0x8E,0xAB,0x8E,0xAB,0x8E,0xAA,0x8E,0xAA,0x8E,0xAA,0x8E,0xAA,0x8E,0xAA,0x8E,0xAA,0x8E,0xAA,0x8E,0xAA,0x8E,0xAA,0x8E,0xAA,0x8E,0xAA,0x8E,0x8C,0x8E,0x8B,0x86,0xAA,0x8E,0x89,0x8E,0x69,0x8E,0xAA,0x8E,0xAA,0x8E,0xAA,0x8E,0x8A,0x86,0xAA,0x86,0xAA,0x86,0x8B,0x86,0x8B,0x8E,0x8B,0x8E,0xAB,0x8E,0x8A,0x8E, +0xA9,0x8E,0xAA,0x8E,0xAA,0x8E,0x8B,0x8E,0x8B,0x8E,0x8A,0x96,0x8A,0x8E,0xAA,0x8E,0xAA,0x8E,0xAA,0x8E,0xAB,0x86,0x8C,0x8E,0x8C,0x8E,0x8B,0x8E,0x8A,0x8E,0x8A,0x8E,0x8B,0x96,0xAA,0x8E,0xAB,0x8E,0x8B,0x8E,0x8A,0x8E,0xAA,0x8E,0xAA,0x8E,0xAA,0x8E,0xAB,0x96,0x69,0x86,0xEC,0x96,0xCC,0x85,0x80,0x00,0x01,0x00,0x00,0x00,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,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x08,0x00,0x09,0x4D,0x96,0xCB,0x8E,0x8A,0x8E,0x8B,0x8E,0x8B,0x8E,0x8A,0x8E,0xAA,0x8E,0x8B,0x8E,0x8B,0x8E,0xAB,0x86,0xAB,0x86,0xAA,0x8E,0x6A,0x86,0xCB,0x8E,0xAB,0x8E,0x8A,0x8E,0x89,0x96,0xA9,0x8E,0xCA,0x8E,0x4B,0x86,0x90,0xA6,0x42,0x2A,0x60,0x00,0xC1,0x08,0x20,0x00,0xC6,0x42,0xEF,0xAE,0x88,0x86,0x8C,0x85,0x04,0x44,0x8F,0xA7,0x66,0x5D,0x29,0x76,0xAC,0x8E,0x8C,0x8E,0x6C,0x96,0x0B,0x86,0x69,0x75,0x10,0xA7,0xC6,0x5C,0x01,0x44,0x4D,0xA7,0x29,0x86,0xAB,0x8E,0xAB,0x86,0x6B,0x8E,0x8B,0x96,0xAB,0x96,0x09,0x7E,0x0E,0xA7,0x69,0x7D,0xA2,0x3B,0x8C,0x8E,0x8B,0x86,0x8B,0x8E,0x8B,0x96,0xAC,0x96,0x2E,0xA7,0x2F,0xAF,0xCF,0xAE, +0x29,0x65,0x45,0x4C,0x0C,0x8E,0x8E,0x96,0x65,0x4C,0x91,0xB7,0x0D,0xA7,0x4D,0xA7,0x6D,0xAF,0x4D,0xA7,0x6E,0xAF,0xEE,0xAE,0xE5,0x53,0x28,0x64,0x63,0x3B,0x4C,0x86,0xE4,0x5C,0x6B,0x8E,0xAD,0x96,0x8B,0x8E,0xCA,0x96,0x8A,0x8E,0x8B,0x8E,0x6C,0x8E,0x8B,0x8E,0x8A,0x8E,0x8B,0x8E,0x8C,0x8E,0x8B,0x8E,0x8B,0x8E,0x8B,0x8E,0x8B,0x8E,0xAA,0x8E,0xAA,0x8E,0xAA,0x8E,0xAA,0x8E,0xAA,0x8E,0xAA,0x8E,0xAA,0x8E,0xAA,0x8E,0xAA,0x8E,0xAA,0x8E,0xAA,0x8E,0xAA,0x8E,0xAA,0x8E,0xAA,0x8E,0xAA,0x8E,0x8A,0x8E,0x6A,0x96,0xCB,0x8E,0x89,0x7E,0xAA,0x86,0x0B,0x8F,0x88,0x66,0xC0,0x14,0x21,0x25,0xC8,0x66,0xE1,0x34,0x60,0x24,0x68,0x66,0x89,0x86,0x6A,0x8E,0x6A,0x8E,0xCB,0x8E, +0x8A,0x8E,0xAA,0x8E,0xAB,0x86,0x8B,0x8E,0x8B,0x96,0x8A,0x8E,0xAA,0x8E,0xCA,0x86,0xCA,0x8E,0x69,0x86,0xAB,0x8E,0x6B,0x8E,0x2A,0x8E,0x6A,0x96,0x8A,0x8E,0xCB,0x8E,0xAA,0x8E,0x69,0x8E,0x8A,0x8E,0x8B,0x8E,0xAB,0x96,0x6A,0x86,0xAB,0x8E,0xAB,0x8E,0xAA,0x8E,0xAA,0x8E,0xAA,0x8E,0xAA,0x8E,0xAA,0x8E,0x8A,0x8E,0x8B,0x8E,0x8B,0x8E,0xAA,0x8E,0xAA,0x8E,0xAA,0x8E,0xAA,0x8E,0xA9,0x8E,0xA9,0x8E,0x89,0x8E,0x8A,0x8E,0xAA,0x8E,0xAA,0x8E,0xAA,0x8E,0xAA,0x8E,0x8B,0x8E,0x8A,0x8E,0x8A,0x8E,0x8A,0x8E,0xAA,0x8E,0xAA,0x8E,0x8B,0x8E,0x8B,0x8E,0x8A,0x8E,0xA8,0x8E,0xA9,0x8E,0x6C,0x96,0x67,0x5C,0x6A,0x75,0x0D,0x97,0x88,0x7E,0xCA,0x8E,0x6A,0x8E,0xAC,0x96,0xAB,0x8E, +0xAA,0x8E,0x8A,0x8E,0xAB,0x8E,0x8B,0x8E,0x8B,0x96,0x2E,0xAF,0x0E,0xAF,0x0E,0xAF,0xCD,0xA6,0xED,0xA6,0xED,0xA6,0xED,0xA6,0xEC,0x9E,0xAB,0x96,0x4A,0x86,0x0C,0x9F,0x69,0x8E,0xAA,0x96,0x8A,0x8E,0xAA,0x86,0xCC,0x8E,0x6C,0x86,0x6B,0x8E,0x8B,0x8E,0x8A,0x8E,0x8B,0x8E,0x8B,0x96,0xAB,0x8E,0xA9,0x86,0x0D,0x97,0xE8,0x53,0x00,0x00,0x20,0x00,0x07,0x42,0x40,0x00,0xA3,0x32,0xED,0x9E,0x68,0x7E,0x8A,0x86,0x6C,0x96,0x6B,0x96,0x8A,0x96,0xAA,0x8E,0xAA,0x86,0xAB,0x86,0xAB,0x86,0xAB,0x8E,0x8A,0x96,0xEA,0x7E,0xAA,0x86,0x6A,0x8E,0x8B,0x96,0x8C,0x8E,0xAB,0x86,0xA9,0x8E,0x88,0x96,0x8A,0x9E,0x8B,0x96,0xAC,0x96,0xAB,0x86,0x89,0x7E,0xE9,0x8E,0xCA,0x86,0xCB,0x7E, +0x6D,0x86,0xCB,0x8E,0x88,0x86,0xCB,0x8E,0xEF,0x9E,0x0A,0x65,0x62,0x2B,0xC9,0x75,0x0E,0x9F,0x8B,0x8E,0x6A,0x86,0xAA,0x8E,0x4A,0x86,0x8C,0x8E,0xAB,0x86,0xCA,0x7E,0xA9,0x8E,0xA9,0x8E,0xA9,0x86,0x2C,0x9F,0x49,0x7E,0xA5,0x4C,0x6A,0x6D,0x08,0x5D,0xC6,0x54,0x4A,0x86,0x0B,0x97,0x88,0x86,0xA9,0x86,0xCB,0x8E,0xEE,0x96,0x08,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,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x60,0x00,0xAB,0x6C,0xAD,0x96,0x89,0x86,0xEA,0x8E,0x69,0x86,0x8B,0x8E,0x8B,0x8E,0x8B,0x8E,0x8B,0x86,0x6B,0x86,0x8B,0x8E,0x6A,0x8E,0x69,0x86,0xAA,0x8E,0xAA,0x86,0xC7,0x8E,0xAA,0x8E,0x6A,0x8E,0x8B,0x8E,0x69,0x8E,0x69,0x8E,0x8A,0x8E,0x8B,0x8E,0x8B,0x8E,0xAB,0x8E,0xAA,0x8E,0xAA,0x8E,0xA9,0x8E,0x89,0x8E,0x8A,0x8E,0x8A,0x96, +0x89,0x8E,0x89,0x8E,0x8A,0x8E,0x8B,0x8E,0x8B,0x8E,0x8B,0x8E,0xAA,0x8E,0xAA,0x8E,0xA9,0x8E,0xAA,0x8E,0x8A,0x8E,0x8A,0x8E,0xAA,0x8E,0xAA,0x8E,0xAA,0x8E,0xAA,0x8E,0xA9,0x8E,0x8A,0x8E,0x6B,0x8E,0x6A,0x8E,0x89,0x96,0xAA,0x8E,0xAA,0x86,0xCA,0x86,0xC9,0x86,0xC9,0x86,0xAB,0x8E,0x6B,0x8E,0x6B,0x8E,0xAA,0x8E,0xCB,0x8E,0x8B,0x86,0xAA,0x86,0xAA,0x8E,0x8A,0x8E,0x8A,0x8E,0x8A,0x8E,0x8A,0x8E,0x89,0x8E,0xA9,0x8E,0xAA,0x8E,0xAA,0x8E,0x8B,0x8E,0x8C,0x8E,0x8C,0x8E,0x8B,0x8E,0x8B,0x8E,0x8A,0x8E,0x8A,0x8E,0x8A,0x8E,0xAA,0x8E,0x8B,0x8E,0x8A,0x8E,0xAA,0x8E,0xAA,0x8E,0x8A,0x8E,0xAA,0x8E,0x49,0x86,0x2D,0xA7,0xE5,0x43,0x20,0x00,0x01,0x00,0x00,0x00,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,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x00,0x09,0x4D,0x96,0xAB,0x8E,0x8A,0x8E,0x8B,0x8E,0x8A,0x8E,0xAA,0x8E,0xAA,0x8E,0x8A,0x8E,0x8B,0x8E,0xAB,0x86,0xAB,0x86,0x8B,0x8E,0xCA,0x86,0xA9,0x7E,0xC9,0x86,0xC9,0x96,0xE8,0x9E,0x06,0x97,0x07,0x8F,0xEB,0x96,0xAE,0x9E,0x60,0x22,0xE0,0x00,0x6F,0x95,0xA0,0x00,0x63,0x32,0x0F,0xAF,0x87,0x86, +0x6C,0x7D,0x04,0x4C,0x8F,0xAF,0xC2,0x4C,0x28,0x76,0xCC,0x96,0x2C,0x8E,0x6E,0x9E,0xE0,0x11,0x82,0x2A,0x13,0xBF,0x40,0x1A,0xE2,0x4B,0x0C,0xA7,0x49,0x8E,0x8B,0x96,0xAB,0x86,0xAB,0x8E,0x69,0x8E,0xAA,0x96,0xCA,0x96,0xAC,0x96,0x41,0x3B,0x25,0x4C,0xAD,0x96,0x8A,0x8E,0xAB,0x96,0x4A,0x8E,0x87,0x75,0x40,0x0A,0xC1,0x2A,0x21,0x22,0x00,0x01,0x63,0x2A,0x60,0x11,0x80,0x11,0xE0,0x19,0x41,0x22,0x61,0x2A,0x81,0x2A,0x61,0x22,0x60,0x22,0x80,0x22,0x41,0x2A,0x81,0x21,0xA0,0x08,0xE3,0x21,0x42,0x1A,0x62,0x3B,0x90,0xA6,0xED,0x8D,0xEB,0x85,0x8B,0x96,0x6A,0x8E,0xAC,0x96,0x6B,0x8E,0x8B,0x8E,0x8A,0x8E,0x8B,0x8E,0x8B,0x8E,0x8B,0x8E,0x8A,0x8E,0x8A,0x8E,0x8A,0x8E, +0x8A,0x8E,0x8A,0x8E,0x8A,0x8E,0x8A,0x8E,0x8A,0x8E,0x8A,0x8E,0x8A,0x8E,0x8A,0x8E,0x8A,0x8E,0x8A,0x8E,0x8A,0x8E,0x8A,0x8E,0x8A,0x8E,0x8A,0x8E,0x8A,0x8E,0x8A,0x8E,0xAB,0x96,0x8A,0x86,0xAA,0x86,0xAA,0x86,0x69,0x76,0xA9,0x6E,0x63,0x2D,0x01,0x1D,0xE1,0x24,0xC1,0x2C,0xA8,0x6E,0xCA,0x7E,0xCA,0x8E,0x8A,0x96,0x8A,0x8E,0xAA,0x86,0x8B,0x8E,0xAA,0x8E,0xAA,0x86,0x8B,0x8E,0x6B,0x96,0x8A,0x8E,0xA9,0x8E,0xC9,0x86,0x89,0x86,0xCC,0x96,0x8B,0x8E,0x6B,0x8E,0xAE,0xA6,0x6E,0xA6,0x6D,0x9E,0x8C,0x8E,0x6A,0x8E,0xAB,0x96,0x6A,0x8E,0xCB,0x96,0x6A,0x8E,0xAB,0x8E,0x8A,0x8E,0xAA,0x8E,0xAA,0x8E,0xAA,0x8E,0xAA,0x8E,0xAA,0x8E,0x8A,0x8E,0x8A,0x8E,0x8A,0x8E,0x8A,0x8E, +0x8A,0x8E,0x8A,0x8E,0x8A,0x8E,0xAA,0x8E,0xAA,0x8E,0xAA,0x8E,0xAA,0x8E,0xAA,0x8E,0x8A,0x8E,0x8A,0x8E,0x8A,0x8E,0x8A,0x8E,0x8A,0x8E,0x8A,0x8E,0x8A,0x8E,0x8A,0x8E,0xAA,0x8E,0xAA,0x8E,0x8B,0x8E,0x6B,0x8E,0x8A,0x8E,0xC8,0x86,0xC8,0x86,0x8C,0x96,0x28,0x5C,0xC0,0x09,0x70,0xA7,0x88,0x7E,0xA8,0x8E,0x6A,0x96,0x8B,0x8E,0x8B,0x86,0xAA,0x86,0x8A,0x86,0xAB,0x8E,0x8B,0x8E,0x8B,0x96,0x2E,0xAF,0x2E,0xAF,0x0E,0xAF,0x2E,0xAF,0x2E,0xAF,0xAC,0x9E,0x6B,0x8E,0x6A,0x8E,0x8B,0x8E,0x6A,0x8E,0x2D,0x9F,0xA9,0x8E,0xAA,0x96,0x89,0x8E,0xAA,0x86,0xCB,0x8E,0xAB,0x8E,0x8A,0x8E,0xA9,0x96,0xA8,0x8E,0xA9,0x8E,0xA9,0x96,0xA9,0x8E,0xA8,0x7E,0x0C,0x97,0xE7,0x53,0x00,0x00, +0x40,0x00,0xAC,0x73,0x80,0x08,0x00,0x01,0x8C,0x8E,0xCA,0x86,0x8B,0x8E,0x8C,0x96,0x6B,0x96,0x89,0x8E,0xA9,0x8E,0xAB,0x86,0xAB,0x86,0xAB,0x86,0x8B,0x8E,0x8A,0x8E,0xC9,0x7E,0xA9,0x86,0x8A,0x8E,0x8B,0x8E,0x6B,0x8E,0x8B,0x86,0xCB,0x8E,0xCA,0x8E,0xA9,0x86,0x89,0x86,0xAA,0x8E,0x4A,0x86,0x8B,0x96,0x8A,0x8E,0xAA,0x86,0xEA,0x7E,0x6D,0x8E,0x6B,0x8E,0xAB,0x8E,0x8A,0x86,0x83,0x4C,0xC8,0x64,0x4F,0x9E,0x8D,0x9E,0x49,0x86,0xEA,0x8E,0x8A,0x8E,0x6B,0x96,0x6B,0x96,0xAA,0x8E,0xCA,0x86,0xCA,0x86,0xCA,0x8E,0x8A,0x8E,0xCC,0x96,0x06,0x5D,0xA6,0x54,0x2C,0x86,0x85,0x4C,0x47,0x65,0xAC,0x96,0xAA,0x96,0x68,0x86,0xCA,0x96,0xAB,0x96,0x2A,0x86,0x24,0x44,0xCB,0x7D, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x02,0x00,0x24,0x2A,0xEE,0xA6,0xA8,0x8E,0xA9,0x8E,0x6B,0x8E,0x6C,0x96,0x8B,0x96,0x8A,0x8E,0xAB,0x8E,0xAC,0x8E,0xAC,0x8E,0x6A,0x86,0xEA,0x96,0xCA,0x8E,0xCB,0x8E,0xE7,0x96,0xA9,0x8E,0x8B,0x8E,0xCB,0x9E,0x88,0x8E,0xA9,0x96,0xAA,0x96,0x6B,0x8E,0x8B,0x8E,0xAA,0x8E,0xAA,0x8E,0x8A,0x8E,0xAA,0x8E,0x89,0x8E,0x89,0x8E,0x89,0x96,0x89,0x8E,0x89,0x8E,0x8A,0x8E,0x8B,0x8E,0x8B,0x8E,0x8B,0x8E,0x8A,0x8E,0xAA,0x8E,0xA9,0x8E,0xA9,0x8E,0xAA,0x8E,0xAA,0x8E,0x8A,0x8E,0xAA,0x8E,0xAA,0x8E,0xA9,0x8E,0xA8,0x8E,0xAB,0x8E,0x8B,0x8E,0x8B,0x96,0xAA,0x96,0x8A,0x8E,0x8A,0x86,0xAA,0x86,0xC9,0x86,0xA9,0x86,0xAB,0x8E,0x6B,0x8E,0xCB,0x96,0xAA,0x8E,0x8A,0x86,0xAC,0x86, +0xAA,0x86,0xAB,0x86,0xAB,0x8E,0x8A,0x8E,0x8A,0x8E,0x89,0x8E,0xA9,0x8E,0xA9,0x8E,0xA9,0x8E,0x8A,0x8E,0x8B,0x8E,0x8C,0x8E,0x8C,0x8E,0x8B,0x8E,0x8B,0x8E,0x8B,0x8E,0x8A,0x8E,0x8A,0x8E,0xAA,0x8E,0x8B,0x8E,0x8A,0x8E,0xAA,0x8E,0xAA,0x8E,0x8A,0x8E,0x8B,0x8E,0x49,0x86,0x4E,0xA7,0xA0,0x22,0x20,0x00,0x01,0x00,0x00,0x00,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,0x09,0x4D,0x96,0xAB,0x8E,0x8A,0x86,0x8B,0x8E,0x8A,0x8E,0xAA,0x8E,0xA9,0x8E,0x8A,0x8E,0x8A,0x8E,0x8A,0x86,0xAA,0x86,0x8A,0x8E,0xC7,0x76,0x49,0x87,0x28,0x87,0x69,0x9F,0x26,0x9F,0x45,0x97,0x65,0x97,0x28,0x97,0x4D,0xAF,0x60,0x1A,0xE0,0x11,0x91,0xAE,0x80,0x11,0x62,0x22,0xEE,0xA6,0xC7,0x86,0x4B,0x7D,0xC3,0x4B,0xB0,0xBF,0xE3,0x54,0x28,0x86,0x8B,0x96,0xC7,0x64,0x4C,0x8D,0x40,0x00,0x20,0x00,0x4C,0x7C,0x61,0x2A,0x24,0x54,0xCC,0xA6,0x6A,0x96,0x6B,0x96,0xAB,0x86,0xAB,0x8E,0xAA,0x8E,0xA8,0x8E,0x68,0x86,0x8C,0x96,0x60,0x1A,0x05,0x4C,0xAD,0x96,0x69,0x86,0x69,0x8E,0x6B,0x96,0x69,0x75,0xE0,0x00,0xA0,0x00,0x60,0x00, +0x00,0x00,0x00,0x08,0x20,0x08,0x00,0x00,0x00,0x00,0x20,0x00,0x20,0x00,0x00,0x00,0x41,0x00,0x20,0x00,0x40,0x00,0x40,0x00,0x00,0x00,0x02,0x08,0x21,0x00,0x40,0x00,0xC0,0x00,0x4B,0x6C,0x4A,0x64,0x68,0x64,0x6C,0x96,0x8B,0x8E,0x8B,0x8E,0xCC,0x8E,0x8A,0x86,0xA9,0x8E,0xAA,0x8E,0x8B,0x8E,0x8B,0x8E,0x8A,0x8E,0x89,0x8E,0x89,0x96,0x8A,0x8E,0x8A,0x8E,0x8A,0x8E,0x8A,0x8E,0x8A,0x8E,0x8A,0x8E,0x8A,0x8E,0x8A,0x8E,0x8A,0x8E,0x8A,0x8E,0x8A,0x8E,0x8A,0x8E,0x8A,0x8E,0x8A,0x8E,0x8A,0x8E,0x8A,0x8E,0x4A,0x86,0xAB,0x8E,0x8A,0x86,0xCB,0x8E,0x07,0x6E,0x60,0x24,0x22,0x2D,0xC0,0x1C,0xC0,0x24,0x84,0x45,0x0B,0x7F,0xAA,0x7E,0xAA,0x8E,0x49,0x86,0xCB,0x96,0xAA,0x8E, +0x6B,0x96,0xAA,0x8E,0xA9,0x86,0x8B,0x8E,0x6C,0x96,0x8A,0x8E,0xA8,0x8E,0xC8,0x86,0x8A,0x86,0x8C,0x8E,0x4B,0x8E,0xCE,0xA6,0x64,0x4B,0x01,0x22,0x25,0x3B,0x6F,0x96,0x8B,0x8E,0xCC,0x96,0x6B,0x8E,0x6A,0x86,0xAB,0x8E,0x6A,0x86,0xAA,0x8E,0xAA,0x8E,0xAA,0x8E,0xAA,0x8E,0x8A,0x8E,0x8A,0x8E,0x8A,0x8E,0x8A,0x8E,0x8A,0x8E,0x8A,0x8E,0x8A,0x8E,0x8A,0x8E,0x8A,0x8E,0x8A,0x8E,0x8A,0x8E,0x8A,0x8E,0x8A,0x8E,0x8A,0x8E,0x8A,0x8E,0x8A,0x8E,0x8A,0x8E,0x8A,0x8E,0x8A,0x8E,0x8A,0x8E,0x8A,0x8E,0x8A,0x8E,0xAB,0x86,0x8A,0x86,0x8A,0x8E,0x6A,0x96,0x8A,0x8E,0xC9,0x86,0xC9,0x86,0x8B,0x8E,0xED,0x95,0x20,0x01,0x8A,0x75,0x0C,0x97,0x69,0x86,0x8A,0x96,0x8B,0x8E,0x8B,0x7E, +0xAA,0x86,0xAA,0x86,0xAA,0x8E,0x6A,0x8E,0x6A,0x96,0x2D,0xAF,0x2E,0xAF,0x2E,0xAF,0x0D,0xA7,0xED,0xA6,0x8B,0x96,0x6A,0x8E,0x8B,0x8E,0x8B,0x8E,0x6A,0x8E,0x0C,0x9F,0xA9,0x8E,0x89,0x8E,0xCA,0x8E,0xCA,0x86,0xA9,0x7E,0xEA,0x8E,0xE9,0x96,0x07,0x97,0x26,0x97,0x27,0x97,0x07,0x97,0x07,0x97,0xE6,0x86,0x2C,0x9F,0xE7,0x53,0x00,0x00,0x40,0x00,0x2D,0x7C,0x25,0x3A,0x80,0x00,0xE7,0x5C,0x0D,0x9F,0x6B,0x8E,0x6C,0x96,0x8A,0x8E,0xA9,0x8E,0xA9,0x8E,0x8B,0x8E,0x8B,0x86,0xAB,0x86,0xAB,0x8E,0x8A,0x8E,0x89,0x8E,0xAA,0x8E,0xAA,0x86,0xAB,0x8E,0x8A,0x8E,0x6B,0x8E,0xAC,0x8E,0xCC,0x7E,0x0B,0x7F,0x09,0x7F,0xA8,0x86,0xAB,0x96,0x6C,0x96,0x6C,0x8E,0xCC,0x8E,0x89,0x7E, +0xED,0x9E,0xCF,0x9E,0xC7,0x5C,0x80,0x2B,0x47,0x7E,0xCA,0x9E,0x4C,0x9E,0x4C,0x96,0xEB,0x96,0x87,0x86,0xAA,0x96,0x6A,0x96,0x8A,0x96,0xA8,0x8E,0xA9,0x8E,0xCB,0x8E,0xAC,0x96,0xA8,0x75,0x65,0x54,0xCB,0x7D,0x2C,0x86,0xE2,0x43,0x2A,0x86,0xCA,0x9E,0x89,0x8E,0x69,0x96,0xCC,0x9E,0x2B,0x8E,0x27,0x6D,0x43,0x4C,0x8C,0x9E,0x4A,0x96,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x03,0x00,0x20,0x00,0x41,0x3B,0x89,0x96,0xA8,0x86,0xAA,0x8E,0x6A,0x86,0x69,0x86,0x69,0x86,0x8A,0x86,0x29,0x7E,0x4A,0x86,0x6C,0x8E,0xAA,0x7D,0x8B,0x85,0x8D,0x85,0xC9,0x85,0xCD,0x85,0xCE,0x85,0xAA,0x7D,0x69,0x8E,0xA8,0x8E,0x69,0x86,0x8B,0x8E,0x8A,0x8E,0xAA,0x8E,0x8A,0x8E,0x8B,0x8E,0x8A,0x8E,0x8A,0x8E,0x8A,0x8E,0x8A,0x8E, +0x8A,0x8E,0x8A,0x8E,0x8A,0x8E,0x8B,0x8E,0x6B,0x8E,0x8B,0x8E,0x8B,0x8E,0xAA,0x86,0xAA,0x86,0xA9,0x86,0x8A,0x8E,0x8A,0x8E,0x8B,0x8E,0x8A,0x8E,0xAA,0x86,0xAA,0x86,0x8A,0x8E,0xAA,0x8E,0x89,0x8E,0x8A,0x8E,0x8B,0x8E,0x6B,0x86,0x8B,0x86,0xAC,0x8E,0x8B,0x86,0x0D,0x9F,0x49,0x86,0xAA,0x96,0x69,0x86,0xAA,0x8E,0x8A,0x86,0xAB,0x86,0xAB,0x86,0xAB,0x86,0x8B,0x86,0x8A,0x8E,0x8A,0x8E,0x8A,0x8E,0x89,0x8E,0x89,0x8E,0x89,0x8E,0x8A,0x8E,0x8A,0x8E,0x8B,0x8E,0x8B,0x8E,0x8B,0x8E,0x8A,0x8E,0x8A,0x8E,0x8A,0x8E,0x8A,0x8E,0x8A,0x86,0x8A,0x8E,0x8A,0x8E,0x8A,0x8E,0xAA,0x86,0x8A,0x8E,0xAB,0x96,0x49,0x86,0x4E,0xA7,0xA0,0x22,0x20,0x00,0x01,0x00,0x00,0x00,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,0x01,0x00,0x00,0x00,0x00,0x09,0x4D,0x8E,0xAB,0x8E,0x8A,0x86,0x8B,0x8E,0x8A,0x8E,0xAA,0x8E,0xA9,0x8E,0x8A,0x8E,0x8A,0x86,0xAA,0x86,0xAA,0x86,0xAA,0x8E,0x27,0x87,0x27,0x87,0x89,0x97,0x07,0x97,0x06,0x9F,0x04,0x97,0x45,0x8F,0x27,0x8F,0x0B,0xA7,0x60,0x22,0xC0,0x00,0x4F,0x8D,0x80,0x00,0x42,0x22,0x8D,0x96,0xC8,0x86, +0x4B,0x85,0xC3,0x4B,0x4F,0xB7,0xC4,0x5C,0x29,0x86,0x6B,0x96,0x65,0x5C,0x2A,0x6C,0x20,0x00,0x21,0x00,0x20,0x00,0xE2,0x21,0xE4,0x53,0xED,0xA6,0x09,0x86,0xAD,0x96,0xCC,0x86,0x6B,0x86,0x6A,0x8E,0x89,0x8E,0x89,0x8E,0xAE,0x9E,0x00,0x12,0x07,0x54,0x4C,0x8E,0x8A,0x96,0x8B,0x96,0x6C,0x9E,0x6D,0x9E,0xED,0x85,0xA8,0x43,0x63,0x09,0x00,0x00,0x00,0x00,0x00,0x00,0x20,0x08,0x00,0x00,0x00,0x00,0x01,0x00,0x02,0x00,0x02,0x00,0x61,0x00,0x40,0x00,0x20,0x00,0x00,0x00,0x02,0x00,0x40,0x00,0x60,0x00,0x60,0x00,0x80,0x00,0x80,0x00,0x28,0x5C,0xAE,0x9E,0x83,0x54,0xED,0x9E,0xA3,0x4C,0x8A,0x86,0xA9,0x8E,0xAA,0x8E,0x8A,0x8E,0x8A,0x8E,0x8A,0x8E,0x89,0x8E,0x89,0x8E, +0x8A,0x8E,0x8A,0x8E,0x8A,0x8E,0x8A,0x8E,0x8A,0x8E,0x8A,0x8E,0x8A,0x8E,0x8A,0x8E,0x8A,0x8E,0x8A,0x8E,0x8A,0x8E,0x8A,0x8E,0x8A,0x8E,0x8A,0x8E,0x8A,0x8E,0x8A,0x8E,0xCB,0x96,0x8A,0x86,0x8A,0x86,0xAA,0x86,0x2B,0x8F,0x07,0x5E,0xE6,0x55,0x88,0x6E,0x88,0x66,0x0A,0x7F,0xEA,0x86,0xCA,0x86,0x8A,0x86,0xAA,0x8E,0x8A,0x86,0x8A,0x86,0x6B,0x8E,0x8A,0x8E,0xAA,0x86,0x8A,0x8E,0x6B,0x8E,0x8A,0x8E,0xA9,0x8E,0xA9,0x86,0x8B,0x8E,0x2C,0x86,0xF0,0xA6,0x84,0x43,0x60,0x00,0x80,0x00,0x60,0x00,0xE5,0x32,0xAD,0x96,0x2B,0x86,0xCC,0x96,0x6A,0x8E,0x8A,0x8E,0x8A,0x8E,0xAA,0x8E,0xAA,0x8E,0xAA,0x86,0x8A,0x86,0x8A,0x8E,0x8A,0x8E,0x8A,0x8E,0x8A,0x8E,0x8A,0x8E,0x8A,0x8E, +0x8A,0x8E,0x8A,0x8E,0xAA,0x8E,0x8A,0x8E,0x8A,0x8E,0x8A,0x86,0x8A,0x8E,0x8A,0x8E,0x8A,0x8E,0x8A,0x8E,0x8A,0x8E,0x8A,0x8E,0x8A,0x8E,0x8A,0x8E,0x8A,0x8E,0x8A,0x8E,0xAB,0x86,0x8A,0x86,0x8A,0x8E,0x6A,0x96,0x8A,0x8E,0xAA,0x86,0xCA,0x86,0xAA,0x8E,0xCD,0xA6,0x01,0x33,0xE2,0x2A,0x8E,0x96,0x8B,0x8E,0xA9,0x8E,0x89,0x86,0xCC,0x8E,0xAA,0x86,0xAA,0x86,0x8A,0x8E,0x8A,0x8E,0xAB,0x96,0x2D,0xA7,0xEC,0xA6,0xCC,0x9E,0x0D,0xAF,0xCC,0x9E,0x4A,0x8E,0x6A,0x8E,0x8A,0x8E,0x8A,0x8E,0x6A,0x8E,0xEC,0x9E,0x8A,0x8E,0x8A,0x8E,0xAA,0x86,0xC9,0x86,0x09,0x87,0xE9,0x86,0xE7,0x8E,0x67,0x97,0x65,0x8F,0x65,0x97,0x46,0x97,0x46,0x97,0x25,0x8F,0x8B,0x9F,0x06,0x5C,0x00,0x00, +0x40,0x00,0x0C,0x74,0x4C,0x74,0x80,0x00,0xE0,0x22,0x2F,0xA7,0x2A,0x86,0x8B,0x8E,0x8A,0x8E,0xA9,0x8E,0x89,0x8E,0x8A,0x8E,0x8B,0x86,0x8B,0x86,0x8B,0x86,0x8A,0x8E,0x6A,0x96,0x8A,0x8E,0xAA,0x86,0xAA,0x7E,0xAB,0x86,0xAC,0x8E,0x8C,0x86,0xAC,0x7E,0x8B,0x76,0xAA,0x7E,0xEB,0x8E,0xAA,0x86,0xAB,0x86,0x6B,0x7E,0x6C,0x86,0xCE,0x9E,0x48,0x6D,0xE0,0x01,0xE5,0x43,0x0D,0x97,0xA8,0x7E,0xA8,0x86,0x6A,0x8E,0x4B,0x8E,0x6A,0x7E,0x89,0x7E,0x69,0x86,0x69,0x8E,0x69,0x86,0x68,0x7E,0x2C,0x9F,0xC9,0x7D,0xC2,0x43,0x28,0x6D,0x4C,0x8E,0xE7,0x64,0xA4,0x5C,0xAB,0x96,0xCA,0x96,0x48,0x86,0xCA,0x96,0xCC,0x9E,0x68,0x6D,0x65,0x4C,0x89,0x75,0x2E,0xA7,0x69,0x8E,0xCA,0x96, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,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,0x08,0x20,0x00,0x40,0x09,0x6D,0x96,0x8A,0x86,0xCA,0x86,0x2B,0x97,0xEB,0x96,0xEC,0x96,0xED,0x9E,0x2E,0xA7,0xED,0x9E,0x6D,0x96,0x20,0x1A,0x40,0x00,0x60,0x10,0x60,0x00,0x41,0x00,0x61,0x00,0xE0,0x00,0x88,0x75,0xAA,0x8E,0x6A,0x86,0xAC,0x8E,0xAA,0x86,0xA9,0x8E,0x8A,0x8E,0x8B,0x8E,0x8B,0x8E,0x8A,0x8E,0x8A,0x8E,0x8B,0x8E,0x8A,0x8E,0x8A,0x8E,0x8A,0x8E,0x8A,0x8E,0x8B,0x8E,0x8B,0x8E,0x8B,0x8E,0xAA,0x86,0xAA,0x86,0xAA,0x86,0x8A,0x86,0x8B,0x8E,0x8B,0x8E,0x8B,0x8E,0x8A,0x86,0xAA,0x86,0x6C,0x8E,0x89,0x8E,0xA8,0x86,0xA9,0x86,0x6B,0x86,0x6C,0x86,0xAC,0x96,0x4D,0x96,0x0E,0x8E,0xE9,0x6C,0xCD,0xA6,0x68,0x8E,0xA9,0x8E,0xAB,0x8E,0x6A,0x86,0xC9,0x86, +0xAB,0x86,0xAB,0x86,0x8B,0x86,0x8B,0x86,0x8A,0x8E,0x8A,0x8E,0x8A,0x8E,0x8A,0x8E,0x8A,0x8E,0x8A,0x8E,0x8A,0x8E,0x8A,0x8E,0x8A,0x8E,0x8A,0x8E,0x8A,0x8E,0x8A,0x8E,0x8A,0x8E,0x8A,0x8E,0xAA,0x86,0x8A,0x8E,0x8A,0x8E,0x8A,0x8E,0xAA,0x86,0x8A,0x8E,0xAB,0x96,0x49,0x86,0x4E,0xA7,0xC1,0x2A,0x20,0x00,0x01,0x00,0x00,0x00,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,0x01,0x00,0x00,0x00,0x00,0x09,0x4D,0x8E,0xAA,0x86,0x8A,0x86,0x8B,0x8E,0x8A,0x8E,0x8A,0x8E,0x8A,0x8E,0x8A,0x8E,0x8A,0x86,0xAA,0x86,0xA9,0x86,0xC9,0x8E,0x46,0x97,0x47,0x97,0xE7,0x96,0xEC,0xC7,0xEE,0xD7,0x69,0xA7,0xAA,0xAF,0x4A,0xA7,0x4E,0xB7,0xE0,0x21,0x40,0x00,0x81,0x08,0x20,0x00,0x43,0x2A,0xCF,0x9E,0x89,0x7E,0x6A,0x7D,0x24,0x4C,0x2F,0xAF,0xC5,0x5C,0x29,0x86,0xAB,0x8E,0x85,0x5C,0xC7,0x5B,0x20,0x00,0x02,0x00,0x01,0x00,0xC2,0x19,0x25,0x4C,0x4D,0x9F,0x49,0x7E,0xAC,0x8E,0x8B,0x7E,0x8B,0x86,0xAA,0x8E,0xA9,0x8E,0x8A,0x8E,0x8F,0x96,0x22,0x1A,0x29,0x54,0x8E,0x96,0x89,0x8E,0x6A,0x96,0x6B,0x96,0x6B,0x8E,0x8C,0x8E,0xD0,0xA6,0x31,0x9E, +0xAD,0x74,0xA1,0x11,0x81,0x11,0xC5,0x3A,0xA4,0x32,0xC4,0x32,0xC4,0x3A,0xA5,0x32,0xE6,0x3A,0xE4,0x32,0xA1,0x2A,0xE4,0x3A,0x61,0x21,0x22,0x19,0x23,0x2A,0x43,0x3B,0xE0,0x19,0x06,0x43,0x01,0x1A,0xE6,0x53,0xAD,0x9E,0xE1,0x43,0xED,0x9E,0x60,0x2B,0x6B,0x86,0xAA,0x8E,0xAA,0x8E,0x8B,0x8E,0x8B,0x8E,0x8A,0x8E,0x89,0x8E,0x89,0x8E,0x8A,0x8E,0x8A,0x8E,0x8A,0x8E,0x8A,0x8E,0x8A,0x8E,0x8A,0x8E,0x8A,0x8E,0x8A,0x8E,0x8A,0x8E,0x8A,0x8E,0x8A,0x8E,0x8A,0x8E,0x8A,0x8E,0x8A,0x8E,0x8A,0x8E,0x8A,0x8E,0x8A,0x86,0x8A,0x8E,0xAA,0x86,0xAA,0x7E,0xA9,0x76,0x0B,0x87,0xAA,0x86,0xCA,0x86,0xEA,0x86,0x69,0x76,0x89,0x7E,0x8A,0x86,0xAA,0x86,0xAA,0x86,0xAA,0x86,0x8A,0x8E, +0x8A,0x8E,0x8A,0x8E,0x8B,0x86,0x8A,0x8E,0x8A,0x8E,0x8A,0x8E,0x8A,0x8E,0x8B,0x86,0x6B,0x86,0xCE,0x9E,0xE9,0x6C,0xC0,0x00,0xE4,0x29,0x20,0x00,0xA4,0x19,0xE0,0x00,0x65,0x4C,0x0F,0xA7,0x2B,0x86,0x6B,0x8E,0xAB,0x8E,0xAA,0x8E,0x89,0x86,0xAA,0x86,0xAA,0x86,0x8A,0x86,0x8A,0x86,0x8A,0x8E,0x8A,0x8E,0x8A,0x8E,0x8A,0x8E,0x8A,0x8E,0x8A,0x86,0x8A,0x8E,0x8A,0x8E,0xAA,0x8E,0xAA,0x8E,0xAA,0x8E,0xAA,0x8E,0xAA,0x8E,0x8A,0x8E,0x8A,0x8E,0x8A,0x8E,0x8A,0x8E,0x8A,0x8E,0x8A,0x8E,0x8A,0x8E,0x8A,0x8E,0xAA,0x86,0x8A,0x8E,0x8A,0x8E,0x89,0x8E,0x8A,0x8E,0x8B,0x86,0x8B,0x86,0xAA,0x86,0xCA,0x96,0xCA,0x85,0xA0,0x00,0xAF,0x8D,0x4C,0x8E,0xC9,0x86,0xA9,0x86,0x8B,0x86, +0x8A,0x86,0x8A,0x86,0x8A,0x8E,0xAB,0x96,0x0C,0x9F,0x4E,0xAF,0xAC,0x9E,0x8B,0x96,0x8B,0x96,0x8B,0x96,0x6A,0x8E,0xAB,0x96,0x8A,0x8E,0x6A,0x8E,0xAB,0x8E,0x4D,0xA7,0x6A,0x8E,0xAB,0x8E,0x89,0x86,0xE9,0x86,0x4A,0x87,0x6A,0x8F,0x8B,0x9F,0x48,0x8F,0x46,0x87,0x46,0x8F,0x26,0x8F,0x65,0x8F,0x45,0x8F,0xAA,0xA7,0x26,0x5C,0x20,0x00,0x40,0x00,0x88,0x5B,0xCF,0x9D,0xE0,0x00,0x80,0x01,0x8F,0x9E,0x6C,0x8E,0xAA,0x8E,0xAA,0x8E,0x89,0x8E,0x89,0x8E,0x8A,0x8E,0x8B,0x86,0x8B,0x86,0x8B,0x86,0x8A,0x8E,0x8B,0x96,0x6A,0x8E,0xAA,0x86,0x8A,0x7E,0xCC,0x7E,0xCD,0x86,0x8C,0x7E,0xEE,0x96,0x30,0xA7,0x8E,0x8E,0xAD,0x86,0x8B,0x76,0xEB,0x7E,0xEC,0x86,0xF0,0x9E,0xCB,0x6C, +0xC5,0x3B,0x84,0x3B,0xE8,0x64,0xEA,0x75,0x2D,0x8F,0xEB,0x86,0xCC,0x8E,0x0E,0x97,0xCD,0x8E,0xEC,0x86,0x2C,0x97,0xEB,0x8E,0xEC,0x8E,0x4F,0x9F,0x09,0x65,0xE3,0x32,0x63,0x3B,0x6E,0x9E,0x85,0x5C,0xC8,0x7D,0xEC,0xA6,0x49,0x8E,0x8B,0x8E,0xCD,0x96,0xCA,0x75,0x64,0x44,0x67,0x65,0xEC,0x8E,0xEC,0x8E,0x48,0x7E,0xA9,0x86,0xA9,0x86,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x20,0x00,0x40,0x00,0x8B,0x74,0x91,0x9E,0xAA,0x75,0xE6,0x5C,0xC6,0x64,0x26,0x5C,0xC7,0x53,0xA5,0x4B,0x69,0x75,0xAD,0x9E,0x4A,0x7D,0x40,0x00,0x01,0x00,0x01,0x00,0x04,0x00,0x44,0x00,0x60,0x00,0xEC,0x85,0xCB,0x96,0x8B,0x86,0xAC,0x86,0xAA,0x86,0xA9,0x8E,0x8A,0x8E,0x8B,0x8E,0x6B,0x8E,0x8A,0x8E,0x8A,0x86,0x8B,0x86, +0x8B,0x86,0x8B,0x86,0x8A,0x8E,0x8A,0x8E,0x8A,0x8E,0x8A,0x8E,0x8A,0x86,0xAB,0x86,0xAB,0x86,0xAB,0x86,0x8B,0x86,0x8B,0x8E,0x8B,0x8E,0x8B,0x8E,0x8A,0x8E,0x8A,0x86,0x8B,0x8E,0x8A,0x86,0xA9,0x86,0xCB,0x86,0x8B,0x86,0xAC,0x8E,0x8D,0x9E,0x4C,0x85,0x20,0x09,0x80,0x00,0x44,0x43,0xAC,0x9E,0x69,0x8E,0x89,0x8E,0xAA,0x8E,0xAA,0x86,0xAA,0x86,0xAA,0x86,0x8B,0x86,0x8B,0x86,0x8B,0x8E,0x8B,0x8E,0x8A,0x8E,0x8A,0x8E,0x8A,0x8E,0x8A,0x8E,0x89,0x8E,0x89,0x8E,0xA9,0x8E,0xAA,0x8E,0xAA,0x8E,0xAA,0x86,0x8A,0x8E,0x8A,0x8E,0xAA,0x86,0x8A,0x8E,0x8A,0x8E,0x8A,0x8E,0xAA,0x86,0x8A,0x8E,0x8B,0x8E,0x49,0x86,0x4E,0xA7,0xA1,0x22,0x20,0x00,0x02,0x00,0x01,0x08,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,0x01,0x00,0x00,0x00,0x00,0x09,0x6C,0x8E,0xC9,0x86,0x89,0x86,0x8A,0x8E,0x8A,0x8E,0x8A,0x8E,0x8A,0x8E,0x8A,0x8E,0x8A,0x86,0xA9,0x86,0xC9,0x8E,0xE8,0x8E,0x05,0x9F,0xE6,0x9E,0x49,0xAF,0xCD,0xCF,0xCA,0xAE,0xEE,0xCF,0xE9,0x9E,0xEF,0xCF,0x2F,0xC7,0xE0,0x31,0x00,0x00,0x02,0x08,0x01,0x00,0x23,0x32,0xAE,0x9E,0xA9,0x86, +0x89,0x75,0x03,0x44,0x90,0xAF,0xC4,0x54,0x28,0x7E,0xAA,0x8E,0x84,0x54,0xA9,0x6C,0x20,0x00,0x01,0x00,0x20,0x00,0x02,0x1A,0x04,0x44,0x2C,0x97,0x68,0x7E,0xCB,0x86,0xC9,0x7E,0xCA,0x86,0x89,0x86,0xA8,0x86,0xA9,0x86,0x8E,0x96,0x62,0x1A,0xE7,0x43,0x8C,0x8E,0xC8,0x8E,0xA8,0x8E,0xA9,0x8E,0xA8,0x8E,0xC7,0x86,0x88,0x86,0x8A,0x8E,0xF0,0x96,0xC3,0x33,0x25,0x44,0xEF,0x9E,0xCD,0x96,0xCB,0x96,0xCB,0x9E,0xAC,0x9E,0xAC,0x96,0xEC,0x96,0xAA,0x96,0x2F,0xB7,0x85,0x53,0x83,0x32,0x8D,0x85,0x0F,0xA7,0xE4,0x53,0xF1,0xB6,0x0A,0x75,0x86,0x5C,0x8C,0x96,0x22,0x4C,0xEE,0xA6,0xA2,0x33,0x4C,0x86,0x8B,0x8E,0x8B,0x8E,0x6B,0x8E,0x8B,0x8E,0x8A,0x8E,0x89,0x8E,0x89,0x8E, +0x8A,0x8E,0x8A,0x8E,0x8A,0x8E,0x8A,0x8E,0x8A,0x8E,0x8A,0x8E,0x8A,0x8E,0x8A,0x8E,0x8A,0x8E,0x8A,0x8E,0x8A,0x8E,0x8A,0x8E,0x8A,0x8E,0x8A,0x8E,0x8A,0x8E,0x8A,0x8E,0xAA,0x86,0xAB,0x8E,0x8A,0x86,0xCA,0x7E,0xEA,0x7E,0xAA,0x7E,0x69,0x86,0x8A,0x8E,0x8A,0x86,0xCA,0x8E,0x8A,0x86,0xAA,0x8E,0xAA,0x86,0xCA,0x7E,0x8A,0x7E,0x8A,0x8E,0x8A,0x8E,0x8A,0x8E,0xAA,0x86,0x8A,0x8E,0x6A,0x8E,0x8A,0x8E,0x8A,0x8E,0x8B,0x86,0xAC,0x96,0xA9,0x7D,0x21,0x2B,0xA3,0x2A,0x28,0x53,0x20,0x00,0x05,0x32,0x27,0x43,0xE0,0x22,0x28,0x65,0xCD,0x96,0x6B,0x8E,0x8A,0x8E,0x8A,0x8E,0xAA,0x8E,0xAA,0x8E,0xAA,0x86,0x8A,0x86,0x8A,0x86,0x8A,0x8E,0x8A,0x8E,0x8A,0x8E,0x8A,0x8E,0x8A,0x8E, +0x8A,0x8E,0x8A,0x8E,0x8A,0x8E,0x8A,0x8E,0x8A,0x86,0x8A,0x86,0x8A,0x86,0x8A,0x8E,0x8A,0x8E,0x8A,0x8E,0x8A,0x8E,0x8A,0x8E,0x8A,0x8E,0x8A,0x8E,0x8A,0x8E,0x8A,0x8E,0x8A,0x86,0x8A,0x8E,0x8A,0x8E,0xA9,0x8E,0xAA,0x8E,0x8B,0x8E,0x8C,0x8E,0xA9,0x86,0x67,0x7E,0x2F,0xAF,0xE0,0x19,0xC4,0x3A,0xAE,0x9E,0xA8,0x7E,0xC9,0x86,0x8C,0x8E,0xAA,0x8E,0x8A,0x86,0x8A,0x8E,0xCB,0x96,0x4E,0xAF,0xAF,0xB7,0xEC,0x9E,0xCC,0x9E,0xCC,0x9E,0xEC,0x9E,0xEC,0x96,0x0C,0x9F,0xEC,0x96,0x0C,0x9F,0xEC,0x96,0xEC,0x96,0x6B,0x86,0xAB,0x8E,0xA9,0x86,0x29,0x87,0x29,0x7F,0xEE,0xA7,0xF2,0xC7,0xC8,0x7E,0x49,0x8F,0x28,0x8F,0x27,0x8F,0x45,0x8F,0x44,0x8F,0xA9,0xA7,0x44,0x5C,0x20,0x00, +0x20,0x00,0x46,0x4B,0x73,0xBF,0xE0,0x11,0x80,0x00,0x2C,0x7D,0xCD,0x96,0xA9,0x7E,0xA9,0x86,0x8A,0x8E,0x6A,0x96,0x8A,0x8E,0x8B,0x86,0x8B,0x86,0x8B,0x86,0x8A,0x8E,0x8A,0x8E,0x4A,0x8E,0x8B,0x96,0x8B,0x86,0xCC,0x7E,0xCC,0x7E,0xAC,0x7E,0x90,0xA7,0xF7,0xD7,0x10,0x8F,0x8D,0x76,0x0E,0x7F,0xAC,0x7E,0x4C,0x86,0x40,0x0A,0x64,0x3B,0x0D,0x75,0xC6,0x4B,0x63,0x3B,0xC4,0x43,0xC5,0x33,0x4A,0x5D,0x49,0x5D,0xC6,0x4C,0x48,0x5D,0x28,0x5D,0xA6,0x4C,0x48,0x65,0x28,0x65,0xA1,0x1A,0xE6,0x3A,0x09,0x53,0x24,0x3B,0x22,0x3B,0xC8,0x6C,0xCA,0x85,0x6C,0x96,0x8D,0x9E,0x4D,0x8E,0x86,0x4C,0x08,0x5D,0x6D,0x86,0xAC,0x8E,0xCB,0x8E,0x68,0x7E,0xEA,0x8E,0xAA,0x86,0xCA,0x86, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x20,0x00,0x23,0x11,0xCA,0x42,0x40,0x00,0x60,0x00,0x40,0x00,0x20,0x00,0x40,0x00,0x60,0x00,0x81,0x22,0xED,0x9E,0xEE,0xA6,0x63,0x2A,0x20,0x00,0x00,0x00,0x01,0x00,0x01,0x00,0xA0,0x00,0xCA,0x85,0xAA,0x8E,0x8B,0x86,0x8B,0x86,0xAA,0x86,0xA9,0x8E,0xA9,0x8E,0x6A,0x8E,0x8B,0x8E,0xAA,0x8E,0xAA,0x8E,0x8B,0x86,0xAB,0x7E,0xAB,0x86,0xAA,0x8E,0x69,0x86,0xA9,0x8E,0xA9,0x8E,0x8A,0x86,0xAB,0x86,0x8A,0x7E,0xAB,0x86,0x8B,0x86,0xAB,0x8E,0x6B,0x8E,0x8B,0x8E,0x8B,0x8E,0x8A,0x86,0xA9,0x8E,0xAB,0x8E,0x8B,0x86,0x8A,0x7E,0xCA,0x8E,0x6A,0x96,0xAC,0x8D,0xA0,0x00,0x20,0x00,0x20,0x00,0x40,0x00,0xA6,0x4B,0xAD,0x9E,0x68,0x8E,0x89,0x8E,0x8B,0x8E, +0xA9,0x86,0xA9,0x86,0xAA,0x8E,0x8A,0x86,0x8B,0x8E,0x6B,0x86,0xAC,0x8E,0x6A,0x86,0x8A,0x8E,0x8A,0x8E,0x89,0x8E,0xA9,0x8E,0xA9,0x8E,0xA9,0x8E,0xAA,0x86,0xAA,0x86,0x8A,0x8E,0x8A,0x8E,0xAA,0x86,0x8A,0x8E,0x8A,0x8E,0x8A,0x8E,0xAA,0x86,0x8A,0x8E,0x8B,0x8E,0x29,0x86,0x4E,0xA7,0xA1,0x22,0x20,0x00,0x02,0x00,0x01,0x00,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,0x01,0x00,0x00,0x00,0x00,0x09,0x8C,0x96,0xA8,0x86,0xC9,0x8E,0x6A,0x8E,0x8B,0x8E,0x8A,0x8E,0x8A,0x8E,0x8A,0x8E,0x8A,0x8E,0xA9,0x86,0xC8,0x86,0x08,0x97,0x25,0xA7,0xC5,0x9E,0x69,0xB7,0xAC,0xCF,0xC9,0xB6,0xED,0xD7,0xC8,0x9E,0xEE,0xC7,0x4F,0xC7,0xE0,0x31,0x20,0x08,0x02,0x08,0x00,0x00,0x23,0x32,0xCD,0x9E,0xA7,0x7E,0x89,0x6D,0x23,0x44,0x8F,0xAF,0xE4,0x54,0x28,0x7E,0x8A,0x8E,0xA4,0x54,0x2B,0x85,0x20,0x00,0x20,0x00,0x20,0x00,0x02,0x1A,0x05,0x44,0x6E,0xA7,0x89,0x86,0xEB,0x96,0xEA,0x86,0xCA,0x8E,0x89,0x8E,0x09,0x97,0xA9,0x86,0xCE,0x96,0x61,0x12,0x47,0x4C,0xCB,0x8E,0xE8,0x8E,0xC8,0x8E,0xA9,0x8E,0xE8,0x8E,0x07,0x87,0xE7,0x86,0xC8,0x8E, +0x0E,0x9F,0x81,0x2B,0x44,0x4C,0xAD,0x96,0xCB,0x96,0xA8,0x8E,0x67,0x8E,0x67,0x8E,0x48,0x86,0xC8,0x8E,0x88,0x86,0xEC,0xA6,0x64,0x4B,0xA3,0x32,0x6B,0x7D,0xEC,0x96,0xE1,0x43,0xCE,0xA6,0x08,0x6D,0xC6,0x64,0x6B,0x96,0x22,0x44,0xEF,0x9E,0x61,0x2B,0x4B,0x86,0x8B,0x8E,0x6B,0x8E,0x8B,0x8E,0x8B,0x86,0x8A,0x8E,0x8A,0x86,0x8A,0x8E,0x8A,0x8E,0x8A,0x8E,0x8A,0x8E,0x8A,0x8E,0x8A,0x8E,0x8A,0x8E,0x8A,0x8E,0x8A,0x8E,0x8A,0x8E,0x8A,0x8E,0x8A,0x8E,0x8A,0x8E,0x8A,0x8E,0x8A,0x8E,0x8A,0x8E,0x8A,0x8E,0xAA,0x86,0x8A,0x8E,0x8A,0x8E,0xAA,0x86,0xCA,0x7E,0xAA,0x86,0x6A,0x8E,0x6A,0x96,0x8A,0x8E,0x8A,0x8E,0x8A,0x8E,0x8A,0x8E,0xAA,0x86,0xAA,0x7E,0xAA,0x86,0x8A,0x8E, +0x8B,0x8E,0x89,0x86,0xA9,0x86,0x8A,0x86,0x6B,0x8E,0x6A,0x8E,0xAA,0x8E,0x8A,0x86,0x6C,0x8E,0xC2,0x3B,0xC3,0x43,0xA4,0x4B,0x68,0x5B,0x40,0x00,0xC6,0x42,0xE6,0x53,0xC3,0x43,0xC3,0x3B,0x0B,0x86,0x8C,0x8E,0x8A,0x8E,0x8A,0x8E,0x8A,0x8E,0xAA,0x8E,0x8A,0x86,0x8A,0x86,0x8A,0x86,0x8A,0x8E,0x8A,0x8E,0x8A,0x8E,0x89,0x8E,0x89,0x8E,0x8A,0x8E,0x8A,0x8E,0x8A,0x8E,0x8A,0x8E,0x8A,0x8E,0x8A,0x8E,0x8A,0x8E,0x8A,0x8E,0x8A,0x8E,0x8A,0x8E,0x8A,0x8E,0x8A,0x8E,0x8A,0x8E,0x8A,0x8E,0x8A,0x8E,0xAA,0x8E,0x8A,0x8E,0x8B,0x8E,0x8A,0x8E,0xA9,0x86,0xA9,0x86,0x8A,0x8E,0x6B,0x8E,0xAA,0x86,0xA9,0x86,0xCC,0x96,0x89,0x6C,0xC0,0x00,0xCB,0x85,0xCA,0x8E,0x69,0x7E,0x8D,0x8E, +0xAA,0x8E,0x8A,0x86,0x8A,0x8E,0x8A,0x8E,0xCB,0x96,0xCB,0x96,0x8B,0x96,0x6A,0x8E,0x6A,0x8E,0x6A,0x8E,0x6A,0x8E,0x8A,0x8E,0x8A,0x8E,0x8A,0x8E,0x8A,0x8E,0x8A,0x8E,0x8C,0x86,0x8A,0x86,0xC9,0x86,0x48,0x8F,0x48,0x87,0x29,0x8F,0x0B,0x97,0x6C,0x9F,0x2A,0x97,0x09,0x97,0xCB,0xAF,0x25,0x97,0x44,0x8F,0x89,0x9F,0xA2,0x4B,0x40,0x00,0x00,0x00,0x24,0x3B,0xB0,0xB7,0xA3,0x43,0x60,0x00,0x47,0x4B,0x0F,0x9F,0xA9,0x7E,0xA9,0x86,0x6A,0x96,0x6A,0x96,0x89,0x8E,0xAA,0x86,0x8B,0x86,0x8B,0x8E,0x8A,0x8E,0x8A,0x8E,0x6A,0x8E,0x6B,0x96,0x8B,0x8E,0x8B,0x86,0xAC,0x7E,0xAC,0x76,0xED,0x76,0x90,0x87,0xCC,0x66,0xEE,0x76,0x8F,0x86,0x07,0x44,0x40,0x01,0x67,0x54,0x81,0x2B, +0x46,0x43,0x25,0x3B,0x62,0x2A,0x41,0x22,0x45,0x43,0x45,0x33,0x85,0x2B,0xE5,0x33,0x62,0x2B,0x42,0x33,0xA4,0x3B,0x84,0x3B,0xC0,0x09,0x45,0x4B,0xA2,0x21,0x64,0x29,0xA1,0x2A,0x44,0x43,0xC5,0x4B,0x06,0x54,0xA4,0x43,0x87,0x5C,0x25,0x4C,0x2C,0x86,0x8C,0x8E,0x6B,0x8E,0x6A,0x8E,0xAA,0x8E,0x6A,0x86,0xAB,0x8E,0x6A,0x86,0x8B,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,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,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,0x01,0x00,0x03,0x00,0x03,0x00,0x01,0x08,0x00,0x08,0x00,0x08,0x01,0x08,0x00,0x00,0x23,0x22,0x67,0x5C,0xAB,0x85,0x0C,0x7D,0x80,0x00,0x20,0x08,0x00,0x00,0x40,0x00,0xA0,0x00,0x6D,0xA6,0xAB,0x9E,0x6B,0x8E,0x4B,0x86,0x89,0x86,0x88,0x86,0xA8,0x86,0xAA,0x8E,0x8A,0x86,0x89,0x86,0x8A,0x86,0x8B,0x8E, +0xCB,0x86,0x8A,0x7E,0x8A,0x86,0xA9,0x8E,0x68,0x86,0xA9,0x8E,0x89,0x86,0xAA,0x86,0xAB,0x86,0xAB,0x86,0x8B,0x86,0x6A,0x8E,0x6A,0x8E,0x8A,0x8E,0x49,0x86,0xAA,0x8E,0xA8,0x86,0x8A,0x86,0x8B,0x86,0x69,0x86,0xCA,0x9E,0x8B,0x85,0x80,0x00,0x40,0x00,0x00,0x00,0x40,0x08,0x00,0x00,0x40,0x00,0xE4,0x3A,0x0E,0xAF,0x49,0x8E,0x6B,0x8E,0xA8,0x8E,0x89,0x86,0x89,0x86,0xAA,0x8E,0x8A,0x86,0x8B,0x8E,0x6B,0x86,0xAB,0x8E,0x8A,0x8E,0x8A,0x8E,0x89,0x8E,0xA9,0x8E,0x89,0x8E,0xAA,0x8E,0x8A,0x86,0x8A,0x86,0x8A,0x8E,0x8A,0x8E,0xAA,0x86,0x8A,0x8E,0x8A,0x8E,0x8A,0x8E,0x8A,0x8E,0x8A,0x8E,0x8B,0x8E,0x29,0x86,0x4E,0xA7,0x81,0x22,0x20,0x00,0x02,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,0x21,0x00,0x01,0x00,0x00,0x00,0x20,0x11,0x4B,0x8E,0xA8,0x86,0xA9,0x8E,0x6A,0x8E,0x6A,0x8E,0x8A,0x86,0x6A,0x8E,0x6A,0x8E,0x8A,0x86,0xA9,0x86,0xE8,0x8E,0x28,0x97,0x05,0x97,0xE5,0x9E,0x89,0xB7,0xAC,0xCF,0x6C,0xCF,0xEC,0xCF,0xE5,0x96,0x27,0x9F,0x8D,0xBF,0xE0,0x21,0x40,0x00,0x20,0x00,0x60,0x00,0xC1,0x19,0xAD,0x96,0xE7,0x7E, +0x6C,0x6D,0x04,0x44,0x6F,0xAF,0xC3,0x54,0x4A,0x86,0xCA,0x7D,0x60,0x22,0x0E,0x8D,0x00,0x00,0x00,0x00,0x00,0x00,0x62,0x19,0x66,0x4B,0xCC,0x8D,0x49,0x75,0x69,0x7D,0x8A,0x75,0x8B,0x7D,0xAB,0x8D,0x68,0x7D,0x89,0x7D,0x8C,0x85,0xE1,0x19,0x86,0x4B,0xAB,0x85,0xC9,0x85,0xAA,0x85,0x8C,0x85,0xAB,0x85,0xEA,0x7D,0xC9,0x7D,0xAA,0x7D,0x6C,0x85,0xA0,0x09,0x61,0x2A,0x0B,0x7D,0x8B,0x85,0x2B,0x96,0xCD,0xAE,0xAC,0xA6,0xED,0xA6,0x8A,0x8E,0x4A,0x86,0x8D,0x9E,0x64,0x43,0xC2,0x2A,0x8A,0x75,0x0B,0x8F,0x02,0x44,0xAE,0x9E,0x09,0x6D,0x07,0x65,0xCD,0x9E,0x02,0x44,0xCE,0x9E,0x81,0x33,0x4A,0x86,0xAA,0x8E,0x89,0x8E,0x8A,0x8E,0x8A,0x86,0x8A,0x86,0x8A,0x86,0xAA,0x86, +0x8A,0x8E,0x8A,0x8E,0x8A,0x8E,0x8A,0x8E,0x8A,0x8E,0x8A,0x8E,0x8A,0x8E,0x8A,0x8E,0x8A,0x8E,0x8A,0x8E,0x8A,0x8E,0x8A,0x8E,0x8A,0x8E,0x8A,0x8E,0x8A,0x8E,0x8A,0x8E,0xAA,0x86,0x8A,0x8E,0x8A,0x8E,0xAA,0x86,0xAA,0x86,0xAA,0x86,0x6A,0x8E,0x6A,0x96,0x8A,0x8E,0xAA,0x86,0x8A,0x8E,0x6A,0x8E,0x8A,0x8E,0xAA,0x86,0xAA,0x86,0x8A,0x8E,0x6A,0x86,0xA9,0x86,0xA9,0x86,0xAB,0x8E,0x4B,0x8E,0x6B,0x8E,0x69,0x86,0xEC,0x96,0x24,0x44,0x24,0x4C,0x85,0x5C,0xC3,0x4B,0xAC,0x7C,0x60,0x00,0x46,0x4B,0x86,0x64,0x66,0x54,0x45,0x54,0x03,0x44,0x6B,0x8E,0x6B,0x8E,0x6A,0x86,0xAA,0x8E,0x69,0x86,0x8A,0x86,0x8A,0x86,0x8A,0x8E,0x8A,0x8E,0x8A,0x8E,0x8A,0x86,0x89,0x86,0x89,0x8E, +0x8A,0x8E,0x8A,0x8E,0x8A,0x8E,0x8A,0x8E,0x8A,0x8E,0x8A,0x8E,0x8A,0x8E,0x8A,0x8E,0x8A,0x8E,0x8A,0x8E,0x8A,0x8E,0x8A,0x8E,0x8A,0x8E,0x8A,0x8E,0x8A,0x8E,0xAA,0x8E,0x8A,0x8E,0x8B,0x8E,0x8B,0x86,0xAA,0x86,0xA9,0x86,0x8A,0x8E,0x8B,0x8E,0x8A,0x8E,0xAA,0x86,0x6B,0x86,0xD0,0xAE,0x80,0x09,0xE0,0x32,0x0D,0xA7,0x4A,0x7E,0xAC,0x86,0x8A,0x86,0x8A,0x86,0x8A,0x8E,0x8A,0x8E,0x8A,0x8E,0x8A,0x8E,0x6A,0x8E,0x6A,0x8E,0x8A,0x8E,0x8A,0x8E,0x8A,0x8E,0x8A,0x8E,0x8A,0x8E,0x8A,0x8E,0x8A,0x8E,0x8A,0x8E,0x8C,0x86,0x8A,0x86,0xE8,0x8E,0x46,0x8F,0x05,0x87,0x47,0x97,0xA7,0x96,0xEF,0xC7,0xAD,0xB7,0xED,0xBF,0xEC,0xBF,0x05,0x97,0x44,0x97,0xCA,0xA7,0xA3,0x4B,0x40,0x00, +0x00,0x00,0xE2,0x32,0x4C,0x9F,0xAA,0x7D,0x80,0x00,0xA1,0x21,0xCE,0x96,0xA8,0x76,0xA9,0x86,0x4B,0x96,0x6A,0x96,0x89,0x8E,0xAA,0x86,0x8B,0x86,0x8B,0x86,0x89,0x8E,0x89,0x8E,0x8A,0x8E,0x8B,0x8E,0x4A,0x86,0x6A,0x8E,0x8B,0x86,0xAC,0x7E,0xED,0x76,0xAC,0x5E,0xED,0x6E,0x2F,0x87,0xA4,0x33,0xC3,0x22,0xCE,0x7D,0xCB,0x75,0x29,0x76,0x6A,0x75,0x0F,0x8E,0x25,0x3B,0xA0,0x00,0x05,0x43,0xEF,0x95,0x6B,0x6D,0xED,0x75,0x88,0x54,0x2B,0x75,0xA9,0x64,0xC7,0x53,0x2D,0x8D,0x20,0x11,0xC0,0x00,0x2E,0x8D,0xCB,0x7D,0x8A,0x75,0x0D,0x86,0x6A,0x75,0x82,0x33,0x85,0x54,0x2D,0xA7,0x89,0x8E,0x68,0x8E,0x89,0x8E,0x6A,0x8E,0x8B,0x96,0x4A,0x8E,0x8B,0x96,0x6B,0x8E,0x8B,0x96, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x20,0x00,0x62,0x00,0x02,0x00,0x03,0x00,0x01,0x00,0x00,0x08,0x00,0x08,0x00,0x00,0x00,0x00,0x20,0x00,0x40,0x00,0x40,0x00,0x40,0x00,0x40,0x00,0x00,0x08,0x00,0x00,0x00,0x00,0xA0,0x08,0xEB,0x84,0xCB,0x95,0x0C,0x8E,0xEF,0x9E,0xEC,0x9E,0xA9,0x86,0x88,0x86,0x89,0x86,0xCA,0x8E,0x89,0x86,0xAA,0x8E,0x6A,0x86,0xAA,0x7E,0xAA,0x86,0x8A,0x8E,0x69,0x8E,0xA9,0x96,0x88,0x8E,0xA8,0x86,0xA9,0x86,0x8A,0x7E,0x8B,0x86,0x4A,0x86,0x8A,0x8E,0x69,0x8E,0x89,0x8E,0xAA,0x8E,0x69,0x86,0x8A,0x86,0xAA,0x8E,0x68,0x86,0x0C,0xA7,0x4A,0x7D,0xA0,0x00,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x21,0x00,0x20,0x00,0x84,0x32,0x8F,0xA6,0x4A,0x8E, +0x88,0x8E,0xA9,0x96,0x89,0x8E,0x89,0x8E,0x8A,0x86,0x6A,0x86,0x8B,0x8E,0x6B,0x86,0x8B,0x8E,0x8A,0x8E,0x89,0x8E,0x89,0x8E,0x89,0x8E,0x8A,0x86,0x8B,0x86,0x8B,0x86,0x8A,0x8E,0x8A,0x86,0xAA,0x86,0x8A,0x86,0x8A,0x8E,0x8A,0x86,0x8A,0x86,0x8A,0x8E,0x8B,0x8E,0x29,0x86,0x4E,0xA7,0x81,0x22,0x20,0x00,0x02,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,0x01,0x00,0x00,0x00,0x00,0x09,0x6C,0x96,0xA8,0x86,0xA9,0x86,0x8A,0x8E,0x6A,0x86,0x8A,0x8E,0x8A,0x8E,0x6A,0x8E,0x8A,0x86,0xA8,0x86,0xE7,0x8E,0x28,0x97,0x47,0x97,0xE6,0x8E,0x29,0xA7,0xEF,0xD7,0xCE,0xD7,0xCB,0xC7,0xE4,0x96,0x47,0x9F,0xC9,0x9E,0x40,0x1A,0xA0,0x00,0xCB,0x7C,0x60,0x00,0xE2,0x19,0x8E,0x8E,0xC8,0x76,0x4E,0x75,0xC5,0x43,0x90,0xB7,0xA3,0x5C,0xEB,0x85,0x85,0x43,0x60,0x00,0x40,0x00,0x00,0x08,0x00,0x08,0x01,0x08,0x00,0x00,0x20,0x00,0x80,0x00,0x40,0x00,0x60,0x00,0x40,0x00,0x20,0x00,0x00,0x00,0x40,0x00,0x40,0x00,0x20,0x00,0x00,0x00,0x00,0x00,0x60,0x00,0x60,0x00,0x40,0x00,0x20,0x00,0x40,0x00,0x60,0x00,0x60,0x00,0x40,0x00, +0x20,0x00,0x20,0x00,0x20,0x00,0x20,0x00,0x40,0x00,0x40,0x11,0x21,0x2A,0x05,0x43,0x08,0x5C,0x6B,0x75,0x0D,0x86,0x12,0xAF,0xA6,0x4B,0xE3,0x32,0x88,0x75,0x09,0x8F,0xE2,0x43,0xAF,0x9E,0x0A,0x6D,0x86,0x5C,0x6C,0x96,0xE1,0x43,0xEE,0xA6,0x60,0x2B,0x49,0x8E,0xA9,0x8E,0x88,0x8E,0xAA,0x8E,0x8A,0x86,0x8A,0x86,0x8A,0x86,0x8B,0x86,0x8A,0x86,0x8A,0x86,0x8A,0x86,0x8A,0x86,0x8A,0x86,0x8A,0x86,0x8A,0x86,0x8A,0x86,0x8A,0x86,0x8A,0x86,0x8A,0x8E,0x8A,0x8E,0x8A,0x8E,0x8A,0x8E,0x8A,0x8E,0x8A,0x8E,0x8A,0x86,0x6A,0x8E,0x6A,0x96,0x8A,0x8E,0xAA,0x86,0x8A,0x86,0x8A,0x8E,0x8A,0x8E,0xAA,0x86,0x8A,0x86,0x6A,0x8E,0x6A,0x96,0x6A,0x8E,0x8A,0x86,0x8A,0x86,0x6A,0x8E, +0x69,0x86,0xCA,0x8E,0xAA,0x86,0x8A,0x86,0x6B,0x8E,0x4A,0x8E,0x0E,0x9F,0x44,0x44,0x07,0x5D,0xA5,0x5C,0xC6,0x64,0x67,0x64,0x4B,0x74,0x80,0x00,0x65,0x4B,0x65,0x5C,0x08,0x6D,0xA6,0x5C,0xE7,0x64,0x23,0x4C,0xCC,0x96,0x8B,0x8E,0x49,0x86,0xAB,0x8E,0x8A,0x86,0x8A,0x86,0x8A,0x86,0x8A,0x86,0x8A,0x86,0x8A,0x86,0x8A,0x8E,0x89,0x8E,0x8A,0x86,0x8A,0x86,0x8A,0x86,0x8A,0x86,0x8A,0x86,0x8A,0x86,0x8A,0x86,0x8A,0x86,0x8A,0x86,0x8A,0x86,0x8A,0x86,0x8A,0x86,0x8A,0x86,0x8A,0x86,0x89,0x86,0x89,0x86,0x6A,0x8E,0x8A,0x8E,0x8A,0x86,0x8A,0x86,0xA9,0x86,0x89,0x86,0x8A,0x86,0x8B,0x8E,0x8A,0x8E,0x49,0x86,0xEE,0x9E,0x87,0x5C,0xA0,0x00,0xCC,0x8D,0xAD,0x96,0x69,0x7E, +0x89,0x86,0x8A,0x86,0x8A,0x8E,0x8A,0x8E,0x6A,0x8E,0x69,0x86,0x6A,0x8E,0x8A,0x8E,0x8A,0x8E,0x8A,0x8E,0x8A,0x86,0x8A,0x86,0x8A,0x86,0x8A,0x86,0x8A,0x8E,0x8A,0x8E,0x8B,0x86,0x89,0x86,0x07,0x8F,0x65,0x97,0x24,0x97,0x46,0xA7,0x65,0x96,0xCC,0xCF,0x6B,0xBF,0xCD,0xC7,0x8B,0xBF,0x05,0x9F,0x24,0x8F,0xAA,0xA7,0x83,0x43,0x20,0x00,0x01,0x08,0x44,0x3B,0x0A,0x8F,0x8C,0x96,0xA1,0x21,0x40,0x00,0x0C,0x86,0xC9,0x7E,0xAA,0x86,0x4B,0x96,0x4A,0x96,0x89,0x86,0xA9,0x86,0x8B,0x86,0x6B,0x8E,0x69,0x8E,0xA9,0x86,0xA9,0x86,0xAA,0x86,0xCB,0x8E,0x8A,0x8E,0x8B,0x8E,0xAB,0x86,0x8A,0x76,0x0E,0x87,0x8E,0x7E,0xE1,0x12,0xA7,0x44,0xEF,0x86,0x0E,0x87,0xEE,0x86,0xAC,0x86, +0xED,0x86,0xCD,0x86,0x2E,0x86,0xA3,0x2A,0xE1,0x19,0x2A,0x75,0xEE,0x96,0x0F,0x8F,0x8C,0x6D,0x48,0x4C,0x0A,0x6D,0x0A,0x7D,0x62,0x32,0xE0,0x21,0x26,0x5C,0xCC,0x96,0x8B,0x8E,0x4E,0xA7,0x26,0x5D,0x26,0x5D,0x8B,0x8E,0x6D,0xA7,0x48,0x7E,0xA8,0x8E,0xA8,0x8E,0x88,0x86,0xAA,0x8E,0x49,0x86,0x8A,0x8E,0x8B,0x8E,0x6A,0x86,0x6A,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,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x00,0x00,0x20,0x00,0x20,0x00,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x40,0x00,0x20,0x00,0x21,0x00,0x02,0x08,0x00,0x00,0x00,0x08,0x00,0x08,0x00,0x00,0x22,0x08,0x02,0x00,0x00,0x00,0x40,0x00,0xA0,0x00,0xA0,0x00,0xE0,0x11,0x46,0x54,0xCD,0x96,0x6A,0x8E,0xAA,0x8E,0x89,0x86,0xAA,0x8E,0x69,0x8E,0x8B,0x8E, +0xCA,0x86,0x6A,0x7E,0x4B,0x8E,0x6B,0x96,0x4A,0x8E,0x8A,0x96,0x67,0x86,0xC9,0x86,0xCA,0x86,0xAB,0x86,0x8B,0x8E,0x8A,0x8E,0x89,0x96,0x89,0x8E,0x68,0x86,0xCB,0x8E,0xAB,0x86,0x48,0x86,0xEA,0xA6,0x65,0x64,0xC0,0x00,0x00,0x00,0x42,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x08,0x02,0x00,0x21,0x00,0xA4,0x32,0x6D,0x9E,0x6A,0x96,0x49,0x8E,0x69,0x8E,0xAA,0x8E,0xAA,0x8E,0x8A,0x8E,0x8A,0x86,0x8B,0x8E,0x8B,0x86,0x8A,0x8E,0x8A,0x8E,0x8A,0x8E,0x8A,0x8E,0x8A,0x8E,0x8B,0x86,0x8B,0x86,0x8A,0x8E,0x8A,0x86,0x8A,0x86,0x8A,0x86,0x8A,0x8E,0x89,0x86,0x8A,0x86,0x8A,0x8E,0x8A,0x8E,0x29,0x86,0x4E,0xA7,0x81,0x22,0x20,0x00,0x02,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,0x02,0x08,0x01,0x08,0x00,0x09,0x6C,0x96,0xA9,0x86,0x89,0x86,0x8A,0x8E,0x6B,0x8E,0x8A,0x8E,0x8A,0x8E,0x6A,0x8E,0x8A,0x8E,0xA8,0x86,0xC8,0x8E,0x28,0x97,0x47,0x97,0x06,0x8F,0xCC,0xBF,0xAF,0xCF,0x6F,0xD7,0xEF,0xDF,0xE6,0x96,0x07,0x97,0x0B,0x9F,0x80,0x01,0xA0,0x2A,0x11,0xBF,0x44,0x32,0x42,0x09,0xD1,0x9E,0x88,0x76, +0x4E,0x75,0xE5,0x43,0x2E,0xAF,0xE5,0x64,0x0D,0x96,0x64,0x32,0x40,0x00,0x00,0x00,0x00,0x08,0x00,0x08,0x01,0x08,0x02,0x08,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x02,0x00,0x02,0x08,0x03,0x10,0x01,0x00,0x01,0x08,0x02,0x08,0x02,0x08,0x02,0x08,0x00,0x00,0x00,0x00,0x02,0x00,0x04,0x08,0x04,0x00,0x03,0x00,0x02,0x00,0x02,0x00,0x00,0x00,0x00,0x00,0x01,0x08,0x01,0x00,0x01,0x00,0x00,0x00,0x20,0x00,0x40,0x00,0x40,0x00,0xA0,0x00,0xE0,0x00,0xC1,0x19,0x23,0x2A,0x42,0x2A,0x8A,0x7D,0xEA,0x96,0xE3,0x43,0xD0,0xA6,0xC9,0x64,0xA3,0x43,0x8D,0x9E,0x23,0x4C,0xCE,0xA6,0x80,0x33,0x49,0x8E,0xA9,0x8E,0x89,0x8E,0x8A,0x8E,0x8A,0x86,0x8A,0x86,0x8A,0x86,0x8A,0x86, +0x8A,0x86,0x8A,0x86,0x8A,0x86,0x8A,0x86,0x8A,0x86,0x8A,0x86,0x8A,0x8E,0x8A,0x8E,0x8A,0x8E,0x8A,0x8E,0x8A,0x8E,0x8A,0x8E,0x8A,0x8E,0x8A,0x8E,0x8A,0x8E,0x8A,0x8E,0x8A,0x86,0x6A,0x8E,0x6A,0x96,0x6A,0x8E,0x8A,0x86,0x8A,0x86,0x8A,0x86,0xAA,0x86,0xAA,0x7E,0xAA,0x86,0x6A,0x8E,0x4A,0x96,0x6A,0x96,0x8A,0x8E,0x8A,0x8E,0x8A,0x8E,0x89,0x8E,0xAA,0x86,0x8A,0x86,0x8A,0x8E,0x4A,0x8E,0xAC,0x96,0xC6,0x54,0x49,0x65,0x65,0x4C,0x06,0x65,0xC6,0x64,0x0B,0x75,0x0A,0x64,0x80,0x00,0xC7,0x5B,0xC8,0x64,0x69,0x75,0xA7,0x5C,0xC6,0x5C,0x68,0x75,0x43,0x4C,0xCC,0x96,0x29,0x86,0x8B,0x8E,0x8A,0x8E,0x8A,0x86,0x8A,0x86,0x8A,0x86,0x8A,0x86,0x8A,0x8E,0x8A,0x8E,0x8A,0x8E, +0x8A,0x8E,0x8A,0x8E,0x8A,0x8E,0x8A,0x8E,0x8A,0x8E,0x8A,0x8E,0x8A,0x8E,0x8A,0x8E,0x8A,0x8E,0x8A,0x8E,0x8A,0x8E,0x8A,0x8E,0x8A,0x8E,0x8A,0x8E,0x89,0x8E,0x89,0x8E,0x6A,0x8E,0x8A,0x8E,0x8A,0x86,0x8A,0x86,0x8A,0x86,0xAA,0x86,0x8A,0x86,0x8A,0x8E,0x4A,0x8E,0x89,0x8E,0x69,0x86,0xAD,0x96,0x40,0x01,0xC4,0x3A,0xAE,0xA6,0xA8,0x86,0x8A,0x8E,0x8A,0x8E,0x8A,0x8E,0x8A,0x8E,0x6A,0x8E,0x6A,0x8E,0x8A,0x8E,0x8A,0x8E,0x8A,0x8E,0x8A,0x86,0x8A,0x86,0x8A,0x86,0x8A,0x86,0x8A,0x86,0x8A,0x8E,0x8A,0x8E,0xCB,0x8E,0x88,0x86,0xE6,0x8E,0x45,0x97,0x44,0x97,0x46,0xAF,0x6A,0xC7,0xCD,0xD7,0x8C,0xC7,0xAD,0xCF,0xAC,0xCF,0xCA,0xBF,0x46,0x9F,0x8A,0xA7,0xA4,0x4B,0x20,0x00, +0x02,0x00,0x03,0x3B,0x4B,0x97,0x8A,0x8E,0x29,0x6C,0x60,0x00,0xC8,0x64,0xCB,0x8E,0x8A,0x86,0x6B,0x96,0x6A,0x96,0x89,0x86,0xA9,0x86,0x8B,0x86,0x6A,0x8E,0x69,0x8E,0xA9,0x86,0xA9,0x86,0x88,0x7E,0xA9,0x86,0x69,0x86,0x6A,0x8E,0x6A,0x8E,0xAB,0x96,0xA9,0x75,0x80,0x12,0x4A,0x5D,0x0E,0x7F,0xEB,0x6E,0xEA,0x6E,0x8B,0x76,0x6D,0x86,0xEA,0x6E,0xEA,0x6E,0xAC,0x76,0x88,0x54,0x06,0x3B,0x00,0x12,0x4C,0x7E,0xA8,0x55,0xC3,0x1B,0x46,0x3C,0x49,0x6D,0x42,0x3B,0x20,0x2A,0x04,0x43,0xAA,0x75,0xE9,0x7E,0x4C,0x8E,0x43,0x4C,0x67,0x6D,0x0A,0x86,0xC9,0x7D,0xA8,0x75,0x2B,0x8E,0x2B,0x86,0x4B,0x86,0x6B,0x8E,0x8A,0x8E,0xAA,0x8E,0x89,0x86,0x89,0x86,0xCB,0x8E,0xAA,0x86, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x20,0x00,0x00,0x00,0x00,0x08,0x00,0x00,0x20,0x00,0x00,0x00,0x01,0x00,0x01,0x00,0x01,0x00,0x00,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x00,0x02,0x00,0x02,0x00,0x00,0x00,0x20,0x00,0x20,0x00,0x40,0x00,0x60,0x00,0x21,0x1A,0x4E,0x96,0x6C,0x8E,0x4A,0x86,0xA9,0x8E,0x68,0x86,0x89,0x8E,0x88,0x7E,0xCC,0x96,0xEC,0x85,0xA8,0x6C,0x6E,0xA6,0x2A,0x96,0x89,0x8E,0xA9,0x86,0x89,0x7E,0x8A,0x86,0x6A,0x86,0x69,0x8E,0x68,0x8E,0x68,0x8E,0xAA,0x8E,0x69,0x86,0x29,0x86,0xCC,0xA6,0x29,0x7D,0xA0,0x00,0x00,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x21,0x00,0x40,0x00,0x06,0x43, +0x6D,0x9E,0x6C,0x96,0x2A,0x8E,0x69,0x8E,0x89,0x8E,0x89,0x86,0x8A,0x86,0x6A,0x86,0x8A,0x86,0x6A,0x8E,0x6A,0x8E,0x6A,0x8E,0x6A,0x8E,0x8A,0x8E,0x8A,0x86,0x6B,0x86,0x6A,0x8E,0x8A,0x8E,0x8A,0x86,0x8A,0x86,0x8A,0x8E,0x89,0x86,0x89,0x86,0x6A,0x8E,0x8A,0x8E,0x29,0x86,0x2E,0xA7,0x80,0x22,0x20,0x00,0x02,0x00,0x01,0x00,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,0x01,0x00,0x00,0x00,0x40,0x11,0x0C,0x8E,0xCA,0x8E,0x8A,0x86,0x6B,0x8E,0x6B,0x8E,0x8A,0x8E,0x8A,0x8E,0x8A,0x8E,0x8A,0x8E,0x88,0x86,0xA8,0x86,0x09,0x97,0x46,0x8F,0x46,0x97,0xCB,0xBF,0xB0,0xD7,0xD2,0xE7,0xAE,0xCF,0x89,0xAF,0xE7,0x96,0x0C,0x9F,0x60,0x01,0x60,0x22,0xD1,0xBE,0xC2,0x29,0x82,0x19,0x90,0x9E,0xA8,0x86,0x4B,0x75,0x03,0x44,0x4E,0xAF,0xA3,0x5C,0x6B,0x7D,0x00,0x09,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x00,0x00,0x01,0x00,0x01,0x00,0x01,0x00,0x01,0x08,0x00,0x00,0x01,0x00,0x02,0x08,0x02,0x08,0x01,0x00,0x01,0x00,0x01,0x00,0x02,0x08,0x01,0x00,0x00,0x00,0x00,0x00,0x01,0x00,0x02,0x00,0x02,0x00,0x01,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x08,0x00,0x00,0x00,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x40,0x00,0x20,0x00,0x60,0x00,0x40,0x00,0x40,0x08,0x00,0x00,0x22,0x2A,0x09,0x75,0x83,0x4B,0xD1,0xAE,0xEB,0x74,0x22,0x33,0x8D,0x9E,0x03,0x4C,0xAE,0x9E,0x81,0x33,0x4A,0x86,0x8A,0x8E,0x6A,0x86,0x8A,0x8E,0x6A,0x86,0x8A,0x86,0x8A,0x86,0x8A,0x86,0x8A,0x8E,0x8A,0x8E,0x8A,0x8E,0x8A,0x8E,0x8A,0x8E,0x8A,0x8E,0x8A,0x8E,0x8A,0x8E,0x8A,0x8E,0x8A,0x8E,0x8A,0x8E,0x8A,0x8E,0x8A,0x8E,0x8A,0x8E,0x8A,0x8E,0x8A,0x8E,0x8A,0x86,0x6A,0x8E,0x6A,0x96,0x6A,0x8E,0x8A,0x8E,0x8A,0x86,0x8A,0x86,0xAA,0x86,0xAA,0x7E,0x8A,0x86,0x6A,0x8E,0x4A,0x96,0x6A,0x96,0x6A,0x8E,0x8A,0x8E,0x6A,0x8E, +0x89,0x8E,0x89,0x86,0xAA,0x86,0x8A,0x8E,0x6B,0x96,0x68,0x75,0x07,0x5D,0x08,0x5D,0x29,0x65,0x28,0x6D,0x28,0x6D,0x0B,0x75,0x6C,0x74,0x60,0x00,0x86,0x4B,0x6A,0x75,0xE7,0x64,0x28,0x6D,0xE7,0x64,0xE7,0x64,0x07,0x65,0xE5,0x5C,0xED,0x9E,0x4A,0x86,0x8A,0x8E,0x8A,0x8E,0x8A,0x8E,0x8A,0x8E,0x8A,0x8E,0x8A,0x8E,0x8A,0x8E,0x8A,0x8E,0x8A,0x8E,0x8A,0x8E,0x8A,0x8E,0x8A,0x8E,0x8A,0x8E,0x8A,0x8E,0x8A,0x8E,0x8A,0x8E,0x8A,0x8E,0x8A,0x8E,0x8A,0x8E,0x8A,0x8E,0x8A,0x8E,0x8A,0x8E,0x89,0x8E,0x89,0x8E,0x6A,0x8E,0x89,0x8E,0x89,0x86,0x8A,0x86,0x8A,0x86,0x8A,0x86,0x8A,0x86,0x6A,0x8E,0x6A,0x96,0x89,0x8E,0x88,0x7E,0x8C,0x8E,0x28,0x5C,0x60,0x00,0x0D,0x96,0x68,0x86, +0x8A,0x8E,0x8A,0x8E,0x69,0x8E,0x8A,0x8E,0x8A,0x8E,0x8A,0x8E,0x8A,0x8E,0x8A,0x8E,0x8A,0x86,0x8A,0x86,0x8A,0x86,0x8A,0x86,0x8A,0x86,0x8A,0x8E,0x8A,0x8E,0x8A,0x8E,0x89,0x86,0x88,0x86,0xE7,0x8E,0x46,0x97,0x05,0x97,0x07,0xA7,0xAC,0xC7,0x8C,0xC7,0x0B,0xB7,0x0B,0xB7,0x6C,0xBF,0xEC,0xC7,0x27,0x9F,0x6B,0xA7,0xA4,0x4B,0x20,0x00,0x22,0x00,0x61,0x22,0x0B,0x9F,0x49,0x86,0xCD,0x95,0x80,0x00,0xC1,0x2A,0xAD,0x96,0x8B,0x86,0x6A,0x8E,0x6A,0x8E,0x89,0x86,0xAA,0x86,0xAB,0x86,0x8A,0x8E,0x69,0x8E,0x89,0x7E,0xAA,0x8E,0xC9,0x8E,0x88,0x86,0x89,0x86,0x49,0x86,0xAC,0x96,0xE6,0x64,0xA0,0x1A,0x0B,0x76,0xED,0x7E,0xEB,0x76,0x8A,0x6E,0xEB,0x7E,0xAB,0x76,0xAC,0x7E, +0x0A,0x67,0xC9,0x66,0xEC,0x7E,0x4A,0x6D,0xE5,0x32,0xC5,0x2A,0x04,0x23,0x65,0x3C,0x84,0x3C,0xEA,0x75,0x8A,0x75,0x28,0x64,0x00,0x2A,0xE7,0x5B,0x4D,0x96,0xC8,0x65,0x25,0x4B,0x25,0x4B,0x62,0x32,0x40,0x11,0xE0,0x00,0xC0,0x00,0xE0,0x00,0xE2,0x19,0xE5,0x32,0xA9,0x64,0xAB,0x7D,0x8C,0x8E,0x6A,0x86,0x8A,0x86,0x69,0x7E,0xCA,0x86,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,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,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x00,0x08,0x00,0x08,0x00,0x00,0x00,0x00,0x01,0x00,0x01,0x00,0x00,0x00,0x20,0x00,0x40,0x00,0x20,0x00,0x00,0x00,0x00,0x00,0x01,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x20,0x00,0x20,0x00,0x60,0x00,0x20,0x01,0xAE,0x8D,0x4C,0x96,0x49,0x8E,0x68,0x86,0xA8,0x8E, +0x88,0x86,0xCD,0x9E,0x69,0x64,0x60,0x00,0x87,0x53,0xAF,0xAE,0x29,0x86,0xA9,0x8E,0xAA,0x86,0x8A,0x86,0x8B,0x8E,0x49,0x8E,0x69,0x8E,0x69,0x8E,0x8A,0x8E,0x69,0x7E,0xCD,0xAE,0xC9,0x74,0x60,0x00,0x00,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x00,0x00,0x00,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xC2,0x32,0xB0,0xAE,0xEB,0x8D,0x6A,0x96,0x89,0x8E,0xA9,0x8E,0xA9,0x86,0xAA,0x8E,0x8A,0x86,0x6A,0x8E,0x6A,0x8E,0x6A,0x8E,0x8A,0x8E,0x8A,0x8E,0x8A,0x8E,0x8A,0x86,0x6A,0x8E,0x89,0x8E,0x8A,0x86,0x8A,0x8E,0x6A,0x8E,0x89,0x8E,0x89,0x86,0x6A,0x8E,0x8A,0x8E,0x28,0x86,0x2E,0xA7,0x80,0x22,0x20,0x00,0x01,0x00,0x00,0x00,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,0x20,0x00,0x00,0x00,0x01,0x08,0xC0,0x08,0x0D,0x8E,0x4A,0x7E,0x4A,0x7E,0x4B,0x8E,0x6A,0x86,0x69,0x86,0x69,0x86,0x69,0x8E,0x89,0x8E,0x89,0x86,0xA8,0x86,0xE9,0x96,0x45,0x97,0x24,0x97,0xEB,0xC7,0xAE,0xD7,0xB0,0xDF,0xEF,0xDF,0x88,0xAF,0x08,0x97,0xAA,0x96,0xA0,0x09,0xA0,0x00,0xC8,0x6B,0x20,0x00,0x82,0x21,0x6E,0x9E,0xA7,0x86, +0x4A,0x7D,0x23,0x54,0xB0,0xBF,0xE7,0x6C,0xE0,0x19,0x40,0x00,0x20,0x00,0x00,0x00,0x00,0x00,0x40,0x00,0x20,0x00,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x20,0x00,0x20,0x00,0x00,0x00,0x00,0x00,0x20,0x00,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x20,0x00,0x40,0x00,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x08,0x02,0x10,0x00,0x00,0x40,0x00,0x80,0x00,0xA4,0x3A,0xC4,0x3A,0x81,0x2A,0x2D,0x9E,0xC2,0x43,0xCF,0xA6,0x61,0x33,0x4A,0x86,0x8B,0x8E,0x6A,0x86,0x8B,0x86,0x6A,0x86,0x8A,0x8E,0x89,0x86,0x8A,0x8E, +0x8A,0x8E,0x8A,0x8E,0x8A,0x8E,0x8A,0x8E,0x8A,0x8E,0x8A,0x8E,0x8A,0x8E,0x8A,0x8E,0x8A,0x8E,0x8A,0x8E,0x8A,0x8E,0x8A,0x8E,0x8A,0x8E,0x8A,0x8E,0x8A,0x8E,0x8A,0x8E,0x8A,0x86,0x8A,0x8E,0x6A,0x8E,0x8A,0x8E,0x8A,0x86,0x8A,0x86,0x8A,0x86,0x8A,0x86,0x8A,0x86,0x8A,0x86,0x6A,0x8E,0x6A,0x8E,0x6A,0x8E,0x8A,0x8E,0x8A,0x86,0x8A,0x8E,0x8B,0x8E,0x69,0x86,0x89,0x86,0x6A,0x8E,0x6C,0x96,0x23,0x4C,0xE9,0x7D,0x45,0x4C,0x0D,0x86,0x08,0x6D,0x47,0x6D,0x4A,0x7D,0x4C,0x6C,0x80,0x00,0x45,0x3B,0x4C,0x8E,0xA6,0x64,0x48,0x75,0xA9,0x7D,0x85,0x5C,0xEA,0x85,0xA5,0x54,0xC9,0x75,0xAC,0x96,0x8A,0x8E,0x8A,0x8E,0x89,0x8E,0x89,0x8E,0x89,0x8E,0x8A,0x8E,0x8A,0x8E,0x8A,0x8E, +0x8A,0x8E,0x8A,0x8E,0x8A,0x8E,0x8A,0x8E,0x89,0x8E,0x8A,0x8E,0x8A,0x8E,0x8A,0x8E,0x8A,0x8E,0x8A,0x8E,0x8A,0x8E,0x8A,0x8E,0x8A,0x8E,0x8A,0x8E,0x89,0x8E,0x89,0x8E,0x6B,0x8E,0x8A,0x8E,0x89,0x8E,0x89,0x86,0x8A,0x86,0x8A,0x86,0x8A,0x86,0x8A,0x8E,0x8A,0x8E,0x69,0x86,0xA8,0x86,0x8A,0x86,0x8F,0x96,0xE0,0x00,0x63,0x43,0x8D,0xA6,0x69,0x86,0x69,0x86,0x8A,0x8E,0x8A,0x8E,0x6A,0x8E,0x8A,0x8E,0x69,0x8E,0x69,0x86,0x8A,0x86,0x8A,0x86,0x8A,0x86,0x8A,0x86,0x8A,0x86,0x8A,0x8E,0x8A,0x8E,0x6A,0x8E,0x89,0x86,0x89,0x8E,0xA7,0x8E,0x27,0x97,0xE6,0x8E,0x49,0xA7,0xAB,0xBF,0xED,0xC7,0xCC,0xBF,0xAC,0xBF,0xAC,0xBF,0xEB,0xBF,0x67,0x9F,0x8B,0xA7,0x83,0x43,0x20,0x00, +0x01,0x00,0x42,0x2A,0xEC,0xA6,0x89,0x8E,0x8E,0x96,0xC0,0x11,0x00,0x01,0xEC,0x95,0x6B,0x8E,0x8A,0x86,0x69,0x86,0x69,0x86,0x8A,0x86,0xAA,0x86,0x8A,0x86,0x69,0x96,0x8A,0x8E,0x6A,0x8E,0x8A,0x96,0x28,0x86,0xAA,0x8E,0xEC,0x9E,0xA2,0x33,0x41,0x2B,0xAD,0x86,0x2C,0x7F,0xA9,0x66,0xCB,0x76,0xAC,0x86,0x4B,0x7E,0x0C,0x87,0xA9,0x6E,0x0B,0x77,0x8A,0x6E,0x0E,0x8F,0x2D,0x8E,0x24,0x33,0x23,0x1A,0x60,0x01,0x44,0x2B,0xEE,0x9E,0xCA,0x7D,0x81,0x22,0xA0,0x19,0x47,0x53,0x28,0x6C,0x07,0x5C,0x80,0x01,0x60,0x10,0x20,0x08,0x20,0x08,0x00,0x00,0x01,0x00,0x01,0x00,0x02,0x00,0x00,0x00,0x40,0x00,0x40,0x00,0xE0,0x00,0x03,0x3B,0x0A,0x75,0x2C,0x96,0xEE,0xA6,0x47,0x6D, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,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,0x01,0x00,0x00,0x00,0x00,0x00,0x40,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x20,0x00,0x00,0x00,0x00,0x08,0x01,0x00,0x22,0x08,0x00,0x00,0x40,0x09,0x4B,0x7D,0xEE,0x9E,0x89,0x86,0x88,0x86,0x68,0x86,0x6D,0x96,0xC1,0x19,0x40,0x00,0x80,0x00,0xEF,0x9D,0x6C,0x96,0x48,0x86,0xA9,0x86,0x6A,0x7E,0x8B,0x8E,0x29,0x86,0x8A,0x96,0x8A,0x8E,0x49,0x7E,0x0D,0x97,0x49,0x74,0x60,0x00,0x20,0x00,0x02,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x20,0x00,0x20,0x00,0x20,0x00,0x00,0x08,0x01,0x08, +0x60,0x00,0xA4,0x32,0x90,0xA6,0x6C,0x96,0x48,0x86,0xA9,0x8E,0x88,0x86,0x69,0x86,0x8A,0x86,0x6A,0x86,0x6A,0x86,0x6A,0x8E,0x69,0x8E,0x69,0x8E,0x89,0x86,0x89,0x86,0x69,0x8E,0x89,0x86,0x89,0x86,0x6A,0x86,0x6A,0x8E,0x89,0x86,0x89,0x86,0x6A,0x8E,0x8A,0x8E,0x28,0x86,0x2E,0xA7,0x80,0x22,0x20,0x00,0x01,0x00,0x00,0x00,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, +0x20,0x00,0x00,0x00,0x01,0x08,0x21,0x11,0x90,0x9E,0x2E,0x9F,0xCD,0x96,0x8C,0x96,0x6B,0x8E,0x89,0x8E,0x88,0x8E,0x69,0x8E,0x69,0x8E,0x89,0x86,0x89,0x86,0xA9,0x8E,0x25,0x97,0x04,0x97,0x68,0xAF,0xED,0xD7,0xAE,0xD7,0x8A,0xBF,0xE4,0x8E,0x26,0x8F,0xEA,0x9E,0x60,0x09,0x40,0x00,0x20,0x00,0x00,0x00,0x61,0x19,0x4C,0x96,0xA6,0x86,0x2A,0x8D,0xE0,0x11,0xA9,0x6C,0xA4,0x2A,0x40,0x00,0x21,0x00,0x01,0x00,0x00,0x00,0x20,0x00,0x40,0x00,0x20,0x00,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x20,0x00,0x20,0x00,0x00,0x00,0x20,0x00,0x20,0x00,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x20,0x00,0x20,0x00,0x00,0x00, +0x01,0x00,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x08,0x02,0x10,0x01,0x08,0x21,0x08,0x40,0x00,0x20,0x00,0x20,0x00,0x60,0x00,0x80,0x11,0x2E,0x9E,0xC3,0x4B,0xCE,0xA6,0x60,0x33,0x4A,0x86,0xAA,0x8E,0x69,0x86,0x8A,0x86,0x6A,0x86,0x69,0x8E,0x69,0x8E,0x89,0x8E,0x6A,0x86,0x6A,0x86,0x6A,0x86,0x6A,0x86,0x6A,0x86,0x6A,0x86,0x6A,0x86,0x6A,0x86,0x6A,0x86,0x69,0x86,0x69,0x8E,0x69,0x8E,0x69,0x8E,0x69,0x8E,0x69,0x8E,0x69,0x8E,0x89,0x86,0x89,0x86,0x89,0x86,0x89,0x86,0x89,0x86,0x89,0x86,0x69,0x8E,0x6A,0x8E,0x6A,0x8E,0x69,0x8E,0x69,0x8E,0x69,0x86,0x89,0x86,0x89,0x86,0x89,0x86,0x89,0x86, +0x6A,0x8E,0x8A,0x86,0x8A,0x86,0xAB,0x96,0xC1,0x43,0x4B,0x96,0x84,0x54,0x6C,0x8E,0x45,0x4C,0x0B,0x8E,0xE5,0x64,0x0C,0x8E,0x2A,0x64,0x60,0x00,0x44,0x3B,0xCC,0x96,0x64,0x5C,0x6C,0x96,0x23,0x4C,0xAE,0x9E,0xE3,0x43,0xAD,0x9E,0xA1,0x33,0x8B,0x8E,0x8A,0x8E,0x8A,0x8E,0x89,0x8E,0x89,0x86,0x89,0x86,0x69,0x86,0x6A,0x86,0x6A,0x86,0x69,0x86,0x69,0x86,0x69,0x86,0x89,0x86,0x89,0x86,0x89,0x86,0x69,0x86,0x6A,0x86,0x6A,0x86,0x6A,0x86,0x6A,0x86,0x6A,0x86,0x6A,0x86,0x69,0x86,0x89,0x86,0x89,0x86,0x4B,0x8E,0x6A,0x8E,0x88,0x8E,0x88,0x86,0x89,0x86,0x89,0x86,0x8A,0x86,0x6A,0x86,0x6A,0x86,0x8A,0x8E,0x8A,0x8E,0x69,0x86,0xCC,0x96,0xC3,0x3B,0xA0,0x00,0xF0,0xAD, +0x69,0x86,0x69,0x8E,0x8A,0x8E,0x8A,0x8E,0x69,0x8E,0x69,0x86,0x69,0x8E,0x69,0x86,0x69,0x86,0x89,0x86,0x89,0x86,0x89,0x86,0x69,0x86,0x6A,0x86,0x6A,0x86,0x6A,0x86,0x69,0x8E,0x69,0x8E,0xA8,0x86,0x28,0x8F,0x27,0x8F,0x48,0x97,0x07,0x97,0x26,0x9F,0x26,0x97,0x26,0x9F,0x27,0x9F,0x26,0x97,0x25,0x8F,0x8B,0xA7,0xA3,0x4B,0x20,0x00,0x20,0x00,0x84,0x32,0xAD,0xA6,0x68,0x86,0x8C,0x8E,0x48,0x5C,0x80,0x00,0x2B,0x85,0x6B,0x8E,0x89,0x86,0x89,0x86,0x6A,0x8E,0x8A,0x86,0xAA,0x7E,0x8A,0x86,0x49,0x96,0x8A,0x8E,0x6A,0x86,0x2A,0x8E,0xCD,0x9E,0xCA,0x85,0x00,0x23,0xC6,0x5C,0x2F,0x9F,0xAC,0x7E,0xAA,0x76,0xCB,0x76,0xCB,0x7E,0x8B,0x76,0xAC,0x7E,0xAB,0x76,0xEA,0x76, +0xCB,0x76,0xEE,0x86,0x6A,0x6D,0x09,0x65,0x05,0x44,0xE3,0x2A,0x45,0x3B,0x08,0x54,0xA9,0x64,0x27,0x54,0x66,0x4B,0x47,0x53,0xC8,0x5B,0x42,0x2A,0xE0,0x08,0x20,0x00,0x00,0x00,0x00,0x00,0x22,0x08,0x01,0x00,0x02,0x08,0x02,0x08,0x01,0x00,0x01,0x08,0x21,0x08,0x41,0x08,0x20,0x00,0x20,0x00,0x40,0x00,0xC1,0x21,0xAB,0x7C,0x40,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,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,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,0x00,0x21,0x00,0x00,0x00,0x00,0x00,0x20,0x00,0x00,0x00,0x21,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x03,0x00,0x03,0x00,0x01,0x08,0x00,0x08,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x01,0x08,0x02,0x08,0x01,0x00,0x40,0x00,0xA0,0x00,0x86,0x5C,0xCC,0x8E,0x89,0x7E, +0xA9,0x96,0xE8,0x6C,0x60,0x00,0x41,0x00,0x20,0x00,0x21,0x22,0x8D,0x9E,0x69,0x86,0x89,0x86,0xAB,0x8E,0x2A,0x86,0x8B,0x96,0x49,0x8E,0x49,0x86,0x0C,0x97,0x63,0x3C,0x40,0x00,0x00,0x00,0x21,0x00,0x01,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x20,0x00,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x60,0x00,0x60,0x00,0xA2,0x2A,0x8D,0x9E,0x69,0x8E,0x88,0x8E,0xA8,0x86,0x89,0x86,0x8A,0x86,0x6A,0x86,0x6A,0x86,0x6A,0x8E,0x69,0x8E,0x89,0x8E,0x88,0x86,0x88,0x86,0x69,0x8E,0x89,0x86,0x89,0x86,0x6A,0x86,0x6A,0x8E,0x89,0x86,0x89,0x86,0x6A,0x8E,0x8A,0x8E,0x28,0x86,0x2E,0xA7,0x80,0x22,0x20,0x00,0x01,0x00,0x00,0x00,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,0x08,0x00,0x00,0x60,0x00,0xA0,0x01,0x00,0x1B,0x43,0x44,0xA9,0x75,0x6B,0x8E,0xCA,0x96,0xA9,0x96,0x69,0x8E,0x69,0x8E,0xAA,0x86,0x89,0x86,0x69,0x86,0xC5,0x86,0x26,0x97,0xE6,0x9E,0xA8,0xA6,0xE9,0xAE,0xE6,0x9E,0x44,0x8F,0x45,0x8F,0xC9,0x96,0x80,0x09,0x40,0x00,0x02,0x00,0x01,0x00,0x00,0x11,0x6D,0x96,0xC6,0x7E, +0x4D,0x9D,0x60,0x00,0x60,0x00,0x40,0x00,0x02,0x00,0x03,0x00,0x02,0x08,0x00,0x08,0x00,0x00,0x00,0x00,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x03,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x00,0x00,0x40,0x00,0x01,0x00,0x22,0x00,0x01,0x00,0xA0,0x00,0x50,0xA6,0x65,0x5C,0xCE,0xA6,0x80,0x2B,0x49,0x86,0xA8,0x8E,0x88,0x86,0x89,0x86,0x69,0x86,0x69,0x8E,0x69,0x8E,0x69,0x8E, +0x6A,0x86,0x6A,0x86,0x6A,0x86,0x6A,0x86,0x6A,0x86,0x6A,0x86,0x6A,0x86,0x6A,0x86,0x69,0x86,0x69,0x8E,0x69,0x8E,0x69,0x8E,0x69,0x8E,0x69,0x8E,0x69,0x8E,0x69,0x8E,0x89,0x86,0x89,0x86,0x89,0x86,0xA9,0x7E,0x89,0x86,0x89,0x86,0x69,0x8E,0x49,0x8E,0x49,0x96,0x69,0x8E,0x69,0x8E,0x89,0x86,0x89,0x86,0x89,0x86,0x89,0x86,0x89,0x86,0x6A,0x8E,0x4A,0x7E,0x0D,0x97,0x42,0x44,0xE8,0x85,0xA8,0x7D,0xA5,0x5C,0x4C,0x8E,0x43,0x4C,0xEC,0xA6,0x42,0x4C,0x6D,0x9E,0x69,0x6C,0x80,0x00,0x82,0x3B,0xCB,0x96,0x64,0x5C,0x4C,0x96,0xC6,0x64,0x89,0x7D,0x28,0x6D,0xE7,0x64,0x6C,0x8E,0x63,0x4C,0x8A,0x8E,0x8A,0x8E,0x89,0x8E,0x89,0x86,0x89,0x86,0x69,0x86,0x6A,0x86,0x6A,0x86, +0x69,0x86,0x69,0x86,0x89,0x86,0x89,0x86,0x89,0x86,0x89,0x86,0x69,0x86,0x6A,0x86,0x6A,0x86,0x6A,0x86,0x6A,0x86,0x6A,0x86,0x6A,0x86,0x69,0x86,0x89,0x86,0x89,0x86,0x4C,0x8E,0x6A,0x8E,0x88,0x8E,0x88,0x86,0xA8,0x86,0x89,0x86,0x6A,0x86,0x8A,0x86,0x8B,0x86,0x6B,0x86,0x49,0x8E,0xA9,0x8E,0xA8,0x86,0x4A,0x7E,0xC0,0x00,0xE9,0x5A,0x8A,0x8E,0x8A,0x8E,0x69,0x8E,0x69,0x8E,0x69,0x8E,0x8A,0x8E,0x8A,0x8E,0x69,0x86,0x89,0x86,0x89,0x86,0x89,0x86,0x89,0x86,0x89,0x86,0x69,0x86,0x6A,0x8E,0x6A,0x8E,0x6A,0x8E,0x69,0x8E,0xA8,0x86,0xC7,0x86,0x47,0x8F,0x06,0x87,0x66,0x97,0x23,0x8F,0x63,0x8F,0x23,0x8F,0x25,0x97,0x24,0x8F,0x24,0x8F,0x8A,0xA7,0x83,0x4B,0x20,0x00, +0x40,0x00,0x22,0x2A,0xAE,0xAE,0x68,0x86,0x6A,0x7E,0x0D,0x8E,0x40,0x00,0x85,0x53,0x6C,0x8E,0xA9,0x7E,0x89,0x86,0x6A,0x86,0x8A,0x86,0xAA,0x7E,0x89,0x86,0x49,0x96,0xA9,0x86,0x69,0x86,0xED,0x9E,0xC7,0x64,0x84,0x43,0xEC,0x8D,0xAD,0x96,0x4A,0x7E,0x6A,0x7E,0x8C,0x86,0x8C,0x86,0xAB,0x76,0xCA,0x6E,0x0A,0x77,0xAA,0x76,0x8B,0x7E,0xCC,0x76,0xA6,0x44,0x0B,0x6D,0x47,0x54,0x29,0x65,0x24,0x44,0x42,0x3B,0xC7,0x4B,0xC5,0x2A,0x67,0x43,0x67,0x4B,0xC0,0x19,0x63,0x2A,0xE0,0x00,0x20,0x00,0x00,0x08,0x00,0x00,0x20,0x00,0x00,0x00,0x40,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x00,0x00,0x01,0x00,0x00,0x00,0x20,0x00,0x00,0x00,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,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x20,0x00,0x20,0x00,0x20,0x00,0x20,0x00,0x0B,0x74,0xF1,0xAD,0xAB,0x96,0x88,0x6C,0x20,0x00,0x02,0x00,0x03,0x19,0x40,0x09,0x65,0x5C,0xAC,0x96,0x6B,0x8E,0x6B,0x86,0xA9,0x86,0xC6,0x7E,0xA7,0x7E,0x8D,0x96,0x2D,0x6C,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,0x03,0x00,0x00,0x00,0x04,0x43,0x8A,0x9E,0x68,0x8E,0x49,0x86,0x8A,0x8E,0x68,0x86,0x6A,0x8E,0x0D,0x86,0xED,0x85,0xAC,0x96,0x66,0x7E,0xA7,0x86,0x8A,0x86,0x49,0x8E,0x6A,0x8E,0x8A,0x8E,0x88,0x7E,0xA8,0x7E,0x8B,0x8E,0xF0,0xAE,0xB0,0xBE,0x0F,0xCF,0x6A,0xB6,0xB1,0xDF,0x82,0x42,0x00,0x00,0x00,0x00,0x20,0x00,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,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x19,0x24,0x3A,0xC9,0x63,0x0C,0x85,0xAD,0x95,0x0D,0x9E,0x4D,0x9E,0x6D,0x9E,0x8B,0x8E,0xA8,0x86,0x06,0x87,0x25,0x8F,0x25,0x8F,0x06,0x8F,0x27,0x97,0x08,0x9F,0x8B,0x9E,0x60,0x01,0x60,0x00,0x00,0x00,0x00,0x08,0xE0,0x20,0x2E,0xA6,0x6B,0x86,0x6E,0x85,0x60,0x00,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,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xC6,0x31,0x83,0x21,0x0D,0x7D,0x42,0x33,0x4B,0x86,0x8B,0x8E,0x4B,0x86,0x6B,0x8E,0x6A,0x86,0x89,0x8E,0x68,0x86,0x89,0x86,0x69,0x86,0x69,0x86,0x69,0x86,0x69,0x86,0x69,0x86,0x69,0x86,0x69,0x86,0x69,0x86,0x69,0x86,0x69,0x86,0x69,0x86,0x69,0x86,0x69,0x86,0x69,0x86,0x69,0x86,0x69,0x86,0x6A,0x86,0x69,0x86,0x69,0x86,0x69,0x86,0x69,0x86,0x6A,0x86,0x6A,0x86,0x6A,0x86,0x8A,0x8E,0x69,0x86,0x89,0x8E,0x6A,0x86,0x6A,0x8E,0x6A,0x86,0x69,0x86,0x88,0x86, +0x2B,0x8E,0xAC,0x96,0x06,0x65,0xE5,0x64,0x6C,0x96,0x02,0x44,0xAD,0x96,0xE6,0x5C,0xC9,0x7D,0x09,0x7E,0xE4,0x5C,0x6D,0x96,0x49,0x6C,0x80,0x00,0x44,0x43,0x8D,0x8E,0x47,0x6D,0xA8,0x75,0xE9,0x7D,0xC5,0x5C,0xAC,0x96,0x22,0x44,0x6C,0x96,0x06,0x65,0xA4,0x54,0xCC,0x96,0x4A,0x86,0x6A,0x86,0x69,0x86,0xAA,0x8E,0x89,0x86,0x89,0x86,0x69,0x86,0x69,0x86,0x69,0x86,0x6A,0x86,0x6A,0x86,0x6A,0x86,0x6A,0x86,0x6A,0x86,0x6A,0x86,0x6A,0x86,0x69,0x8E,0x69,0x8E,0x69,0x8E,0x69,0x8E,0x69,0x8E,0x69,0x8E,0x6A,0x86,0x6A,0x86,0x88,0x86,0xA8,0x7E,0xA8,0x7E,0x88,0x86,0x69,0x86,0x4A,0x8E,0x69,0x96,0x69,0x8E,0x88,0x86,0xA8,0x7E,0x89,0x7E,0x0F,0x9F,0xA2,0x2A,0xC0,0x00, +0x2A,0x8E,0x69,0x8E,0xA7,0x86,0xC7,0x7E,0xC9,0x86,0x6A,0x7E,0x8B,0x8E,0x6A,0x8E,0x8A,0x8E,0x69,0x8E,0x6A,0x8E,0x6B,0x96,0x4B,0x8E,0x4A,0x8E,0x6A,0x8E,0x6A,0x86,0x6A,0x86,0xAA,0x8E,0x69,0x7E,0x69,0x86,0xA9,0x8E,0x09,0x97,0x28,0x8F,0x45,0x8F,0x43,0x8F,0x44,0x97,0x44,0x97,0x45,0x8F,0x25,0x8F,0x4A,0xA7,0x63,0x43,0x20,0x00,0x00,0x00,0xE4,0x21,0xAE,0x9E,0xA6,0x86,0x86,0x86,0x8E,0x9E,0xA2,0x09,0xA1,0x09,0x8C,0x9E,0x47,0x8E,0x8A,0x96,0x2B,0x8E,0x6A,0x86,0xA8,0x86,0x89,0x86,0x4B,0x86,0x6B,0x96,0x6B,0x8E,0xA4,0x54,0xE4,0x5C,0x8A,0x96,0x69,0x86,0x8A,0x86,0x8A,0x86,0xAA,0x7E,0xAA,0x7E,0xAB,0x7E,0x6B,0x76,0x6B,0x76,0xED,0x8E,0x8C,0x86,0x68,0x65, +0x67,0x44,0xAA,0x6D,0x84,0x3C,0x29,0x66,0xEC,0x7E,0xE6,0x54,0xC1,0x22,0x42,0x22,0xC2,0x11,0x41,0x09,0x44,0x32,0x02,0x3A,0xA0,0x08,0x20,0x00,0x01,0x00,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,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,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,0x00,0x00,0x00,0x20,0x00,0x40,0x00,0x40,0x00,0x40,0x00,0xEE,0x8C, +0x87,0x8E,0xA7,0x6C,0x80,0x00,0x00,0x00,0x24,0x32,0x6F,0xA6,0x20,0x2B,0x6C,0x8E,0x4C,0x86,0x6B,0x86,0x88,0x86,0x88,0x7E,0xED,0x96,0x28,0x54,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,0x01,0x00,0x00,0x00,0x60,0x00,0x82,0x32,0xAD,0xA6,0x69,0x8E,0x28,0x86,0x8B,0x96,0xAC,0x85,0xE0,0x00,0x80,0x09,0x8C,0x85,0x8C,0x9E,0x48,0x86,0xC9,0x86,0x6B,0x8E,0x29,0x86,0x49,0x7E,0xA9,0x86,0x89,0x86,0xAA,0x8E,0x4E,0xB7,0xD2,0xD7,0xF2,0xDF,0x2E,0xC7,0xF3,0xE7,0xC3,0x4A,0x00,0x00,0x01,0x00,0x00,0x00,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,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x20,0x00,0x40,0x00,0x40,0x00,0x40,0x00,0xC0,0x00,0xE0,0x19,0x24,0x43,0x07,0x5C,0x6A,0x7D,0x2B,0x8E,0xEB,0x96,0xEA,0x9E,0xCA,0x9E,0xE9,0x9E,0xA8,0x96,0x48,0x8E,0x0B,0x8E,0xC0,0x00,0x60,0x00,0xC0,0x08,0x00,0x00,0x40,0x21,0x0C,0x96,0x8A,0x7E, +0x4D,0x85,0x60,0x00,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,0x20,0x00,0x40,0x00,0x21,0x1A,0xA0,0x01,0x4A,0x86,0x8B,0x8E,0x4A,0x86,0x6A,0x8E,0x6A,0x86,0x69,0x8E,0x69,0x86,0x89,0x86, +0x69,0x86,0x69,0x86,0x69,0x86,0x69,0x86,0x69,0x86,0x69,0x86,0x69,0x86,0x69,0x86,0x69,0x86,0x69,0x86,0x69,0x86,0x69,0x86,0x69,0x86,0x69,0x86,0x69,0x86,0x69,0x86,0x6A,0x86,0x69,0x86,0x69,0x86,0x69,0x86,0x69,0x86,0x6A,0x86,0x6A,0x86,0x6A,0x86,0x6A,0x86,0x8A,0x8E,0x69,0x86,0x8A,0x8E,0x6A,0x86,0x8A,0x8E,0x69,0x86,0x89,0x8E,0x6B,0x96,0x0A,0x86,0x22,0x44,0xAD,0x9E,0x47,0x75,0x05,0x5D,0x0E,0x9F,0x03,0x44,0x8D,0x96,0x87,0x6D,0x45,0x65,0x6D,0x96,0x29,0x64,0x80,0x00,0x44,0x3B,0xAC,0x96,0xE9,0x7D,0xC5,0x5C,0x2E,0xA7,0x22,0x44,0x8C,0x96,0xA9,0x7D,0x85,0x54,0xED,0x9E,0xC3,0x54,0x46,0x65,0xCD,0x9E,0x2A,0x86,0x8A,0x8E,0x68,0x86,0x89,0x86,0x6A,0x86, +0x69,0x86,0x69,0x86,0x69,0x86,0x6A,0x86,0x6A,0x86,0x6A,0x86,0x6A,0x86,0x6A,0x86,0x6A,0x86,0x6A,0x86,0x6A,0x86,0x69,0x8E,0x69,0x8E,0x69,0x8E,0x69,0x8E,0x69,0x8E,0x6B,0x86,0x6A,0x86,0x88,0x86,0xA8,0x86,0x88,0x86,0x89,0x86,0x6A,0x86,0x4A,0x8E,0x49,0x8E,0x48,0x86,0x89,0x86,0xA9,0x86,0x8A,0x86,0x4B,0x8E,0x6E,0x9E,0x20,0x01,0x24,0x43,0x51,0xBF,0xE8,0x7D,0x49,0x7E,0x4A,0x7E,0x4B,0x86,0x0B,0x86,0x09,0x86,0x48,0x86,0x27,0x7E,0x48,0x7E,0x69,0x86,0x89,0x86,0x88,0x86,0xC8,0x7E,0xE8,0x7E,0x88,0x8E,0x68,0x86,0xA9,0x86,0x88,0x86,0x68,0x86,0x88,0x86,0xE8,0x8E,0x27,0x8F,0x46,0x97,0x26,0x97,0x07,0x97,0x07,0x8F,0xE6,0x86,0x0B,0x9F,0x24,0x43,0x20,0x00, +0x00,0x00,0x24,0x2A,0xCD,0x9E,0x85,0x7E,0x86,0x86,0xD0,0xA6,0x8A,0x4B,0x80,0x00,0xCB,0x85,0x89,0x9E,0x28,0x8E,0x4A,0x8E,0xAA,0x8E,0x26,0x76,0xEB,0x96,0xAD,0x96,0x47,0x6D,0xC1,0x3B,0xC8,0x7D,0x8B,0x96,0xAB,0x96,0x49,0x86,0xAA,0x8E,0x8A,0x7E,0x8A,0x7E,0x8A,0x76,0x6A,0x76,0xED,0x86,0xCD,0x86,0x68,0x5D,0xE6,0x4C,0x48,0x5D,0x4A,0x65,0xA6,0x4C,0xCD,0x86,0xCB,0x76,0xAA,0x76,0xAE,0x8E,0x28,0x54,0x63,0x2A,0xC9,0x53,0x07,0x43,0x69,0x5B,0x00,0x19,0x20,0x00,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,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x20,0x00,0x40,0x00,0x60,0x00,0x20,0x19,0x28,0x9F,0x29,0x75,0x40,0x00,0x40,0x00,0x00,0x22,0x2E,0xAF,0xAA,0x8E,0x6B,0x86,0x6C,0x8E,0x49,0x86,0xA8,0x8E,0xAC,0x96,0x49,0x54,0x60,0x00,0x20,0x08,0x00,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,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,0x40,0x00,0xA3,0x32,0x8B,0x9E,0xEC,0x9E,0x6B,0x7D,0xA0,0x00,0x40,0x00,0x60,0x00,0xA0,0x00,0x4E,0x85,0xAE,0x9E,0x66,0x86,0x6B,0x7E,0x6A,0x86,0x69,0x86,0x8A,0x8E,0x69,0x86,0x89,0x96,0x2B,0xAF,0x0B,0xAF,0x2D,0xB7,0x8D,0xA6,0xB2,0xCF,0xA2,0x3A,0x00,0x00,0x01,0x00,0x01,0x00,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,0x20,0x00,0x60,0x00,0x60,0x00,0x40,0x00,0x40,0x00,0x40,0x00,0x40,0x00,0x40,0x00,0x20,0x09,0x41,0x22,0x24,0x43,0x48,0x6C,0x4A,0x85,0x2C,0x96,0xAF,0xA6,0x0E,0x96,0xC0,0x00,0x00,0x01,0x4F,0x8D,0x60,0x00,0x20,0x11,0x4C,0x8E,0xC8,0x76,0x4D,0x85,0x60,0x00,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,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x20,0x00,0xE4,0x29,0x74,0xC7,0xA1,0x3B,0x29,0x86,0x8A,0x8E,0x69,0x86,0x6A,0x8E,0x69,0x86,0x6A,0x8E,0x69,0x86,0x89,0x86,0x69,0x86,0x69,0x86,0x69,0x86,0x69,0x86,0x69,0x86,0x69,0x86,0x69,0x86,0x69,0x86,0x69,0x86,0x69,0x86,0x69,0x86,0x69,0x86,0x69,0x86,0x69,0x86,0x69,0x86,0x69,0x86,0x69,0x86,0x69,0x86,0x6A,0x86,0x6A,0x86,0x6A,0x86,0x69,0x86,0x69,0x86,0x69,0x86,0x6A,0x86,0x8A,0x8E,0x49,0x86,0x8A,0x8E,0x48,0x86,0x8A,0x8E,0x49,0x86,0x6A,0x86, +0x6A,0x96,0xE1,0x3B,0x8D,0x96,0x0B,0x8E,0xC1,0x43,0x4E,0xA7,0x46,0x65,0x28,0x65,0xAE,0x9E,0x04,0x5D,0xC6,0x75,0x6C,0x96,0x4A,0x6C,0x80,0x00,0x23,0x3B,0x8B,0x8E,0x2A,0x86,0x84,0x54,0xEC,0x9E,0x66,0x6D,0xE5,0x5C,0xEF,0xA6,0x23,0x44,0x09,0x86,0x8A,0x96,0x42,0x44,0xCA,0x7D,0x8D,0x8E,0x69,0x86,0x67,0x86,0x68,0x86,0x6B,0x86,0x69,0x86,0x69,0x86,0x69,0x86,0x69,0x86,0x6A,0x86,0x6A,0x86,0x6A,0x86,0x6A,0x86,0x6A,0x86,0x6A,0x86,0x6A,0x86,0x69,0x86,0x69,0x86,0x69,0x86,0x69,0x86,0x69,0x8E,0x6B,0x86,0x6A,0x86,0x89,0x86,0x88,0x86,0x89,0x86,0x6A,0x86,0x4A,0x8E,0x6A,0x8E,0x68,0x86,0xAA,0x86,0x49,0x7E,0xAB,0x8E,0x6A,0x86,0x29,0x86,0xAC,0x9E,0x89,0x7D, +0x60,0x08,0xE2,0x29,0xCD,0x95,0x30,0xAF,0x8E,0x9E,0x4E,0x96,0xAF,0xA6,0x0E,0xA7,0x0C,0x9F,0x2B,0x9F,0xEB,0x96,0xAA,0x86,0xAA,0x86,0xA9,0x86,0xA8,0x7E,0x87,0x76,0x88,0x8E,0x68,0x8E,0x68,0x86,0xA9,0x8E,0x48,0x86,0x69,0x86,0x68,0x86,0xA7,0x86,0xC7,0x86,0xA8,0x8E,0x88,0x86,0x88,0x86,0x88,0x86,0xEC,0x9E,0x25,0x43,0x20,0x00,0x00,0x00,0xA0,0x19,0xAC,0x96,0xA5,0x86,0x66,0x86,0x4D,0x96,0x50,0x7D,0xA0,0x00,0x25,0x54,0xCB,0x9E,0x07,0x86,0x8A,0x8E,0x28,0x7E,0x8D,0xA7,0xA8,0x6D,0x83,0x33,0x63,0x4C,0xAC,0x96,0xAB,0x96,0x29,0x86,0x4A,0x86,0x8A,0x8E,0x49,0x7E,0x8A,0x86,0x8A,0x7E,0xAB,0x7E,0x2D,0x8F,0xA8,0x5D,0xC5,0x44,0xC9,0x65,0x88,0x65,0xE6,0x4C, +0x89,0x65,0xAE,0x8E,0x2A,0x6E,0xEB,0x7E,0xEB,0x7E,0x49,0x65,0x83,0x22,0x80,0x00,0xA4,0x32,0x43,0x2A,0x40,0x00,0x20,0x00,0x00,0x00,0x00,0x00,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,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,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,0x20,0x00,0x20,0x00,0x40,0x00,0x20,0x00, +0x40,0x4C,0x70,0xA6,0x81,0x00,0x40,0x00,0xE0,0x19,0x0C,0xA7,0x06,0x76,0x69,0x86,0x89,0x8E,0x67,0x8E,0xA8,0x96,0xA8,0x75,0xA0,0x00,0x21,0x00,0x00,0x08,0x00,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,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,0x08,0x02,0x00,0x02,0x00,0x40,0x00,0xC8,0x74,0xC7,0x6C,0xC0,0x00,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xA0,0x08,0x2B,0x85,0x69,0x96,0x89,0x7E,0x69,0x7E,0x8A,0x8E,0x28,0x86,0x69,0x8E,0x69,0x8E,0x48,0x8E,0x69,0x8E,0x49,0x8E,0x09,0x7E,0x10,0xAF,0x42,0x32,0x00,0x00,0x00,0x08,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,0x01,0x00,0x01,0x00,0x01,0x00,0x01,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x20,0x00,0x40,0x00,0x41,0x00,0x00,0x00,0x20,0x00,0x20,0x00,0x00,0x00,0x00,0x00,0x40,0x00,0x60,0x11,0xA3,0x32,0x90,0x8D,0xA0,0x00,0x01,0x2B,0x71,0xA6,0x86,0x3A,0x60,0x00,0x6D,0x8E,0xE6,0x6E, +0x2C,0x7D,0x60,0x00,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,0x40,0x08,0x00,0x00,0x00,0x00,0x61,0x19,0xB0,0xAE,0xE1,0x43,0x29,0x7E,0x8A,0x86,0x69,0x86,0x69,0x86,0x69,0x86,0x6A,0x8E,0x6A,0x86,0x89,0x86, +0x69,0x86,0x69,0x86,0x69,0x86,0x69,0x86,0x69,0x86,0x69,0x86,0x69,0x86,0x69,0x86,0x69,0x86,0x69,0x86,0x69,0x86,0x69,0x86,0x69,0x86,0x69,0x86,0x69,0x86,0x69,0x86,0x89,0x86,0x69,0x86,0x6A,0x86,0x6A,0x86,0x6A,0x86,0x69,0x86,0x88,0x86,0x69,0x86,0x8A,0x8E,0x4A,0x86,0x6A,0x8E,0x69,0x86,0x69,0x86,0x69,0x86,0x6A,0x8E,0x8B,0x8E,0x41,0x4C,0xC8,0x7D,0xAD,0x96,0x24,0x4C,0xE9,0x85,0x8A,0x96,0xA3,0x4C,0x2C,0x86,0x2C,0x8E,0xA4,0x54,0x27,0x7E,0x4B,0x8E,0x6B,0x6C,0x40,0x00,0x24,0x3B,0x6A,0x8E,0x4B,0x8E,0xC4,0x54,0x6A,0x8E,0xAB,0x96,0x23,0x44,0x8D,0x96,0x0B,0x86,0x42,0x4C,0x8A,0x96,0x4A,0x86,0x03,0x44,0x4B,0x86,0x69,0x86,0xA8,0x8E,0x69,0x86,0x4B,0x86, +0x69,0x86,0x69,0x86,0x69,0x86,0x69,0x86,0x69,0x86,0x6A,0x86,0x6A,0x86,0x6A,0x86,0x6A,0x86,0x6A,0x86,0x6A,0x86,0x69,0x86,0x69,0x86,0x69,0x86,0x69,0x86,0x69,0x86,0x4A,0x8E,0x69,0x86,0x89,0x86,0x69,0x86,0x6A,0x86,0x4A,0x8E,0x4A,0x8E,0x6A,0x86,0x8A,0x86,0x8A,0x7E,0x8A,0x86,0x69,0x86,0x4A,0x8E,0x09,0x86,0xCB,0x9E,0x03,0x5D,0x00,0x00,0x20,0x00,0x21,0x22,0x80,0x22,0xC0,0x01,0x80,0x01,0xA0,0x09,0x60,0x22,0x00,0x33,0x03,0x4C,0xE7,0x6C,0x6A,0x7D,0xEC,0x8D,0x2D,0x96,0x6C,0x96,0x8D,0x96,0x4C,0x8E,0x4C,0x96,0x4B,0x8E,0x0A,0x86,0x8C,0x96,0x4A,0x86,0x8A,0x8E,0x68,0x7E,0x88,0x86,0x68,0x86,0x49,0x86,0x69,0x86,0x68,0x7E,0xCC,0x96,0x25,0x43,0x20,0x00, +0x01,0x00,0x81,0x11,0xAC,0x96,0x86,0x7E,0x87,0x86,0x2A,0x86,0x4F,0x96,0x00,0x0A,0xA0,0x1A,0x2C,0xA7,0x49,0x8E,0x6B,0x8E,0x8C,0x8E,0xE2,0x33,0x40,0x23,0xCB,0x7D,0xAC,0x96,0x6A,0x8E,0x29,0x86,0x8A,0x8E,0x49,0x86,0x6A,0x86,0x8A,0x86,0x6A,0x86,0x8B,0x7E,0x4A,0x76,0x63,0x34,0x67,0x55,0x4B,0x76,0xC6,0x44,0x48,0x5D,0x4C,0x7E,0xAC,0x86,0x6C,0x86,0xAD,0x86,0x28,0x66,0x81,0x2C,0xEC,0x75,0x0A,0x54,0xA1,0x11,0xA7,0x53,0x04,0x3B,0x40,0x00,0x02,0x00,0x02,0x00,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,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,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,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x20,0x00,0xC0,0x09,0x13,0xA6,0x86,0x21,0x00,0x00,0x20,0x09,0xEC,0x8D,0xAB,0x96,0xCA,0x96,0x68,0x8E,0x88,0x96,0x47,0x8E,0xE9,0x85,0xE0,0x09,0x60,0x00,0x00,0x00,0x01,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,0xE0,0x08,0x88,0x5B,0xE0,0x00,0x40,0x00,0x00,0x00,0x01,0x00,0x00,0x08,0x00,0x00,0x20,0x00,0x00,0x09,0x6D,0x95,0xC9,0x86,0x68,0x86,0x69,0x8E,0x88,0x96,0x47,0x8E,0x6A,0x8E,0x4A,0x8E,0x49,0x86,0xA9,0x86,0x27,0x7E,0xEF,0xA6,0x62,0x2A,0x20,0x00,0x00,0x08,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,0x01,0x00,0x01,0x00,0x01,0x00,0x01,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x00,0x01,0x00,0x02,0x00,0x01,0x08,0x00,0x00,0x20,0x00,0x40,0x00,0xEF,0x7C,0xE0,0x00,0x01,0x33,0x91,0xAE,0xA6,0x42,0x40,0x00,0x4D,0x8E,0xC6,0x76,0x0C,0x7D,0x60,0x00,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,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xA2,0x21,0xD0,0xAE,0x00,0x44,0x28,0x7E,0x8A,0x86,0x68,0x86,0x88,0x86,0x69,0x86,0x6B,0x86,0x6A,0x86,0x69,0x86,0x69,0x86,0x69,0x86,0x69,0x86,0x69,0x86,0x69,0x86,0x69,0x86,0x69,0x86,0x69,0x86,0x69,0x86,0x69,0x86,0x69,0x86,0x69,0x86,0x69,0x86,0x69,0x86,0x69,0x86,0x69,0x86,0x89,0x86,0x69,0x86,0x6A,0x86,0x6A,0x86,0x6A,0x86,0x69,0x86,0x88,0x86,0x69,0x86,0x69,0x86,0x6A,0x86,0x6A,0x8E,0x69,0x86,0x69,0x86,0x69,0x86,0xCB,0x96,0xA4,0x54, +0x05,0x65,0xED,0x9E,0x47,0x65,0xE6,0x64,0x6C,0x96,0x28,0x86,0xA3,0x4C,0x4C,0x8E,0x4D,0x8E,0xA4,0x54,0x88,0x86,0x2A,0x8E,0x4A,0x6C,0x40,0x00,0x44,0x3B,0x8A,0x8E,0x4B,0x86,0x83,0x4C,0x28,0x7E,0x6A,0x8E,0xE6,0x5C,0x48,0x6D,0xED,0x9E,0x04,0x5D,0x05,0x65,0xCD,0x9E,0x27,0x65,0xE4,0x5C,0xAB,0x8E,0x49,0x86,0x6A,0x86,0x6A,0x86,0x69,0x86,0x69,0x86,0x69,0x86,0x69,0x86,0x69,0x86,0x6A,0x86,0x6A,0x86,0x6A,0x86,0x6A,0x86,0x6A,0x86,0x6A,0x86,0x69,0x86,0x69,0x86,0x69,0x86,0x69,0x86,0x69,0x86,0x4A,0x8E,0x69,0x8E,0x69,0x86,0x6A,0x86,0x4B,0x8E,0x4A,0x8E,0x69,0x8E,0x6A,0x86,0xAB,0x86,0x6A,0x7E,0x89,0x86,0x89,0x8E,0x4A,0x8E,0x2A,0x8E,0x8A,0x96,0xC6,0x75, +0x01,0x00,0x60,0x00,0xC0,0x00,0x46,0x54,0xA4,0x43,0xA1,0x22,0x20,0x1A,0xE0,0x11,0x80,0x09,0x20,0x01,0xA0,0x00,0x80,0x00,0xE0,0x00,0x40,0x11,0x21,0x2A,0xE4,0x42,0xE7,0x53,0xEA,0x6C,0xCD,0x85,0x2D,0x8E,0x4D,0x96,0x4C,0x96,0x4A,0x86,0x89,0x86,0x88,0x86,0x69,0x8E,0x6A,0x86,0x69,0x86,0x88,0x7E,0xCC,0x96,0x24,0x43,0x20,0x00,0x02,0x00,0x82,0x19,0x6C,0x96,0x88,0x86,0xC8,0x8E,0x49,0x8E,0x0D,0xA7,0xA0,0x3B,0xC0,0x1A,0xAB,0x9E,0x6B,0x8E,0x48,0x6D,0x00,0x1B,0x65,0x44,0xCE,0x96,0x4B,0x86,0x4A,0x86,0x6A,0x86,0x8A,0x8E,0x49,0x86,0x29,0x86,0x8A,0x8E,0x8A,0x8E,0x09,0x7E,0x26,0x5D,0xE5,0x4C,0xAC,0x86,0xC9,0x65,0xA4,0x3C,0x0A,0x6E,0x8C,0x7E,0x8C,0x86, +0xAB,0x86,0x0B,0x76,0xC5,0x44,0x03,0x45,0xCA,0x76,0x6D,0x86,0xAC,0x6C,0x23,0x22,0x00,0x1A,0xA0,0x11,0x60,0x00,0x03,0x00,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,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,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,0x08,0x00,0x00,0x00,0x00,0x00,0x00, +0x40,0x00,0xE1,0x10,0xA2,0x10,0x20,0x00,0x40,0x00,0xA0,0x00,0xA5,0x4B,0xE8,0x6C,0x28,0x75,0xAA,0x8D,0xCE,0xAE,0x4A,0x96,0x6C,0x96,0x26,0x5C,0x81,0x19,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,0x60,0x00,0x28,0x53,0x4D,0x7C,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x40,0x00,0x40,0x00,0xC1,0x10,0x88,0x75,0xCC,0x9E,0xE6,0x7D,0x87,0x8E,0x68,0x86,0x6A,0x8E,0x6B,0x8E,0x4A,0x86,0x89,0x86,0x27,0x76,0xED,0x9E,0xA1,0x2A,0x20,0x00,0x00,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,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,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,0x02,0x00,0x00,0x08,0x00,0x00,0x00,0x00,0x20,0x00,0x8D,0x7C,0x40,0x01,0x00,0x01,0x4F,0x8D,0x60,0x08,0xA0,0x00,0x0C,0x8E,0xA7,0x7E, +0xEC,0x7C,0x60,0x00,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,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x02,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x21,0x00,0x81,0x19,0xCF,0xAE,0x40,0x4C,0x27,0x7E,0x89,0x86,0x68,0x86,0x88,0x86,0x69,0x86,0x6B,0x86,0x6A,0x86,0x69,0x86, +0x69,0x86,0x69,0x86,0x69,0x86,0x69,0x86,0x69,0x86,0x69,0x86,0x69,0x86,0x69,0x86,0x69,0x86,0x69,0x86,0x69,0x86,0x69,0x86,0x69,0x86,0x69,0x86,0x69,0x86,0x69,0x86,0x69,0x86,0x69,0x86,0x69,0x86,0x69,0x86,0x69,0x86,0x69,0x86,0x69,0x86,0x69,0x86,0x69,0x86,0x6A,0x8E,0x29,0x86,0x8A,0x8E,0x49,0x86,0xAB,0x96,0x26,0x65,0x63,0x4C,0x8C,0x96,0xAB,0x96,0x01,0x44,0x6C,0x96,0x4B,0x8E,0x25,0x65,0x65,0x65,0x8C,0x8E,0x2C,0x86,0x83,0x4C,0xA9,0x8E,0x4A,0x8E,0x29,0x64,0x60,0x00,0x24,0x3B,0x8A,0x8E,0x8C,0x96,0x04,0x5D,0xA6,0x75,0x8B,0x8E,0x0B,0x7E,0x84,0x54,0xEC,0x9E,0x6A,0x8E,0x23,0x44,0x0B,0x86,0x0C,0x9F,0xC2,0x54,0xE4,0x5C,0xAD,0x96,0x2A,0x86,0x89,0x8E, +0x69,0x86,0x69,0x86,0x69,0x86,0x69,0x86,0x69,0x86,0x69,0x86,0x69,0x86,0x69,0x86,0x69,0x86,0x69,0x86,0x69,0x86,0x69,0x86,0x69,0x86,0x69,0x86,0x69,0x86,0x69,0x86,0x49,0x8E,0x69,0x8E,0x69,0x86,0x4A,0x86,0x4A,0x86,0x6A,0x86,0x69,0x86,0x69,0x86,0x49,0x7E,0x8A,0x86,0x69,0x7E,0x68,0x86,0x8A,0x8E,0x09,0x86,0xEE,0xA6,0x40,0x33,0x21,0x00,0x40,0x00,0xE6,0x53,0xAD,0x9E,0xEE,0xA6,0xAE,0x9E,0xAF,0xA6,0xAE,0xA6,0x6C,0x9E,0xEC,0x8D,0x6B,0x7D,0xEB,0x7C,0x6A,0x6C,0x86,0x53,0xA2,0x32,0x20,0x22,0xC0,0x09,0xC0,0x09,0x40,0x01,0x80,0x01,0x80,0x1A,0x4B,0x8E,0x6A,0x8E,0x48,0x7E,0x68,0x86,0x69,0x86,0x6A,0x8E,0x6A,0x86,0x88,0x7E,0xCC,0x96,0x25,0x43,0x20,0x00, +0x03,0x08,0x00,0x09,0x6C,0x96,0x68,0x86,0x88,0x86,0x08,0x7E,0x49,0x8E,0x0D,0xA7,0xAD,0x96,0x68,0x75,0x60,0x2B,0xA0,0x33,0xEA,0x75,0x0F,0x9F,0x2A,0x86,0x49,0x86,0x6A,0x8E,0x29,0x7E,0x4A,0x86,0x8A,0x8E,0xAB,0x96,0xA7,0x75,0xC4,0x54,0x05,0x5D,0x0A,0x7E,0x2B,0x7E,0xA5,0x4C,0x26,0x55,0xAD,0x86,0xED,0x8E,0xAC,0x86,0x0A,0x6E,0x04,0x55,0xA5,0x4C,0x2B,0x6E,0x2C,0x87,0xA8,0x76,0xEE,0x96,0xA3,0x2A,0x40,0x09,0xCB,0x74,0x26,0x43,0x40,0x00,0x03,0x00,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,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,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,0x01,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x00,0x08,0x00,0x00,0x20,0x00,0x40,0x00,0x40,0x00,0x40,0x00,0xA0,0x00,0x04,0x43,0xCB,0x8D,0xAB,0x9E,0x8B,0x9E,0x4F,0x9E,0x20,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,0x21,0x00,0x20,0x00,0x6A,0x5B,0xAD,0x84,0x40,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x00,0x00,0x00,0x00,0x20,0x00,0x60,0x00,0x00,0x00,0x01,0x00,0xC0,0x00,0x6B,0x85,0xAB,0x9E,0x68,0x8E,0x68,0x7E,0x69,0x7E,0x69,0x86,0x69,0x86,0x89,0x86,0x28,0x76,0x0D,0x9F,0x02,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,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x20,0x00,0x4C,0x74,0xE0,0x00,0x60,0x00,0x80,0x08,0x00,0x00,0xA0,0x08,0xCC,0x8D,0x89,0x86,0xCC,0x74,0x60,0x00,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,0x00,0x00,0x00,0x00,0x00,0x00,0x00,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,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xA1,0x19,0xCF,0xAE,0x00,0x44,0x27,0x7E,0x89,0x86,0x68,0x86,0x88,0x86,0x69,0x86,0x6B,0x86,0x6A,0x86,0x69,0x86,0x69,0x86,0x69,0x86,0x69,0x86,0x69,0x86,0x69,0x86,0x69,0x86,0x69,0x86,0x69,0x86,0x69,0x86,0x69,0x86,0x69,0x86,0x69,0x86,0x69,0x86,0x69,0x86,0x69,0x86,0x69,0x86,0x6A,0x86,0x69,0x86,0x69,0x86,0x69,0x86,0x69,0x86,0x69,0x86,0x69,0x86,0x69,0x86,0x89,0x8E,0x69,0x86,0x69,0x8E,0x49,0x86,0x6B,0x8E,0xE9,0x7D,0x01,0x3C,0xEC,0x9E, +0x4C,0x8E,0xE4,0x54,0x24,0x65,0x8C,0x96,0x4C,0x8E,0x42,0x44,0x69,0x86,0x8B,0x8E,0xAA,0x75,0xC5,0x54,0xAA,0x8E,0x4A,0x8E,0x29,0x64,0x80,0x00,0x24,0x3B,0x8A,0x8E,0x8C,0x8E,0x66,0x6D,0x24,0x65,0x8B,0x8E,0x6C,0x8E,0x83,0x4C,0x29,0x86,0x6A,0x8E,0xCA,0x7D,0x44,0x44,0xAB,0x96,0x89,0x8E,0x83,0x4C,0x28,0x65,0xCD,0x96,0x47,0x86,0x69,0x86,0x69,0x86,0x69,0x86,0x69,0x86,0x69,0x86,0x69,0x86,0x69,0x86,0x69,0x86,0x69,0x86,0x69,0x86,0x69,0x86,0x69,0x86,0x69,0x86,0x69,0x86,0x69,0x86,0x69,0x86,0x68,0x8E,0x49,0x8E,0x4A,0x8E,0x6A,0x86,0x69,0x86,0x69,0x86,0x69,0x86,0x69,0x86,0x68,0x86,0x89,0x8E,0x8A,0x86,0x69,0x86,0x68,0x86,0xAB,0x96,0x29,0x75,0xC0,0x00, +0xA2,0x10,0x60,0x00,0xEC,0x95,0x4A,0x8E,0x08,0x7E,0x29,0x86,0x08,0x86,0x08,0x86,0x48,0x86,0x8A,0x86,0xAC,0x8E,0xAD,0x96,0xAD,0x96,0xED,0x9E,0x2E,0x9F,0x2D,0x9F,0xCE,0xA6,0x6C,0x96,0x4B,0x8E,0xC8,0x7D,0x67,0x75,0x4A,0x8E,0x29,0x86,0x89,0x86,0x69,0x86,0x6A,0x8E,0x4B,0x86,0x4A,0x86,0x69,0x7E,0xAD,0x96,0x05,0x43,0x00,0x00,0x02,0x00,0x00,0x09,0x0A,0x8E,0x89,0x86,0x69,0x86,0x8B,0x8E,0xAD,0x9E,0x07,0x65,0xE4,0x3B,0x82,0x33,0x67,0x6D,0xEB,0x9E,0x8A,0x86,0x29,0x7E,0x6A,0x8E,0x89,0x8E,0x4A,0x86,0xCC,0x96,0x8B,0x8E,0x86,0x6D,0xA3,0x54,0xA3,0x54,0x8B,0x8E,0x2A,0x86,0xE5,0x5C,0xC5,0x54,0x0A,0x76,0x0E,0x97,0xAC,0x86,0xA8,0x65,0x06,0x4D,0x26,0x55, +0x08,0x76,0xCC,0x8E,0xCC,0x86,0x68,0x6E,0xA8,0x76,0x8C,0x8E,0x65,0x43,0xE1,0x19,0x42,0x2A,0x40,0x09,0x20,0x00,0x02,0x00,0x01,0x00,0x20,0x00,0x20,0x00,0x01,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,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,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,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x01,0x00,0x00,0x08,0x00,0x00,0x00,0x08,0x00,0x00,0x22,0x00,0x02,0x00,0x03,0x00,0x02,0x00,0x01,0x00,0x20,0x00,0x60,0x09,0x25,0x5C,0x8D,0x9E,0x0D,0x96,0xA0,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,0x00,0x00,0x00,0x00,0x00,0x40,0x00,0x42,0x19,0x40,0x00,0x40,0x00,0x20,0x00,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x41,0x00,0x01,0x00,0x00,0x00,0x80,0x00,0x4B,0x85,0x6B,0x8E,0x89,0x86,0xA8,0x86,0x87,0x86,0x89,0x8E,0x8A,0x8E,0x29,0x7E,0x2E,0x9F,0x23,0x33,0x40,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,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x20,0x00,0x4B,0x7C,0xA0,0x00,0x40,0x00,0x01,0x00,0x00,0x08,0xA0,0x08,0xEC,0x95,0x69,0x86, +0xCC,0x74,0x60,0x00,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,0x01,0x00,0x00,0x00,0x20,0x00,0x00,0x00,0x20,0x00,0x81,0x19,0xB0,0xAE,0x21,0x4C,0x28,0x7E,0xA9,0x8E,0x69,0x86,0x68,0x86,0x69,0x86,0x6A,0x86,0x6A,0x86,0x69,0x86, +0x69,0x86,0x69,0x86,0x69,0x86,0x69,0x86,0x69,0x86,0x69,0x86,0x69,0x86,0x69,0x86,0x69,0x86,0x69,0x86,0x69,0x86,0x69,0x86,0x69,0x86,0x69,0x86,0x69,0x86,0x69,0x86,0x6A,0x86,0x69,0x86,0x69,0x86,0x88,0x86,0x69,0x86,0x69,0x86,0x69,0x86,0x69,0x86,0x68,0x86,0x68,0x86,0x89,0x8E,0x29,0x86,0x4B,0x86,0x22,0x44,0x2A,0x86,0x4A,0x8E,0x2B,0x86,0x41,0x44,0xA9,0x8E,0x2A,0x86,0x89,0x75,0xE5,0x5C,0xEB,0x96,0x49,0x86,0x48,0x6D,0x88,0x6D,0xCA,0x8E,0x2A,0x8E,0x28,0x64,0x60,0x00,0x44,0x3B,0x8B,0x8E,0x6A,0x8E,0xE8,0x75,0xE4,0x5C,0x6B,0x8E,0x6B,0x8E,0x67,0x6D,0xE4,0x5C,0x8B,0x8E,0x6C,0x8E,0xA4,0x54,0xA7,0x75,0x6A,0x8E,0x8B,0x8E,0x23,0x44,0xC8,0x75,0x8A,0x8E, +0x69,0x86,0x69,0x86,0x69,0x86,0x69,0x86,0x69,0x86,0x69,0x86,0x69,0x86,0x69,0x86,0x69,0x86,0x69,0x86,0x69,0x86,0x69,0x86,0x69,0x86,0x69,0x86,0x69,0x86,0x69,0x86,0x67,0x8E,0x69,0x8E,0x4A,0x8E,0x69,0x86,0x88,0x86,0x89,0x7E,0x89,0x7E,0x69,0x86,0x68,0x8E,0x68,0x8E,0x49,0x86,0x6A,0x86,0x69,0x7E,0xCC,0x96,0x40,0x01,0x05,0x22,0x08,0x42,0x40,0x00,0x6A,0x85,0x69,0x8E,0x88,0x8E,0x68,0x86,0xA9,0x8E,0x88,0x86,0xA8,0x86,0x87,0x7E,0x68,0x7E,0x68,0x7E,0x48,0x7E,0x68,0x7E,0x87,0x7E,0x66,0x76,0x27,0x86,0x68,0x8E,0x48,0x86,0x48,0x8E,0x6A,0x8E,0x6A,0x8E,0x6A,0x86,0x69,0x86,0x69,0x86,0x4A,0x86,0x4B,0x86,0x4A,0x86,0x69,0x7E,0xAC,0x96,0x25,0x43,0x20,0x00, +0x00,0x00,0x20,0x11,0x0B,0x8E,0x6A,0x86,0x8B,0x86,0x48,0x6D,0xE2,0x43,0xC2,0x3B,0x28,0x65,0x8D,0x96,0x8A,0x8E,0x47,0x86,0x68,0x86,0x8A,0x86,0x49,0x86,0x49,0x8E,0xAC,0x96,0x26,0x65,0x42,0x4C,0x46,0x6D,0x2A,0x86,0xCC,0x9E,0x84,0x54,0xA4,0x54,0xC9,0x7D,0x8C,0x8E,0xCD,0x96,0xC9,0x6D,0x84,0x44,0x26,0x5D,0x6A,0x7E,0x8B,0x86,0xA9,0x86,0x4A,0x7E,0x6A,0x7E,0xC9,0x7E,0x88,0x76,0x8C,0x8E,0x65,0x43,0xA1,0x19,0x6C,0x6C,0x46,0x2A,0x41,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,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,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,0x01,0x00,0x02,0x00,0x03,0x00,0x02,0x00,0x00,0x00,0x00,0x00,0x40,0x00,0x40,0x00,0xE2,0x19,0xCC,0x74,0x20,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,0x20,0x00,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x00,0x01,0x00,0x01,0x00,0x01,0x00,0x21,0x00,0xC0,0x00,0xAD,0x85,0x8B,0x8E,0x48,0x7E,0x89,0x86,0x49,0x86,0x69,0x86,0x29,0x7E,0xEE,0x96,0x24,0x33,0x40,0x00,0x00,0x00,0x02,0x08,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,0x20,0x00,0x4B,0x74,0xC0,0x00,0x20,0x00,0x02,0x00,0x00,0x08,0x80,0x00,0xAA,0x85,0x8A,0x86,0xAB,0x74,0x40,0x00,0x40,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,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,0x20,0x00,0x00,0x00,0x00,0x00,0xA2,0x21,0x70,0xA6,0x22,0x4C,0x28,0x7E,0x89,0x86,0x69,0x86,0x89,0x86,0x69,0x86,0x49,0x86,0x69,0x86,0x69,0x86,0x69,0x86,0x69,0x86,0x69,0x86,0x69,0x86,0x69,0x86,0x69,0x86,0x69,0x86,0x69,0x86,0x69,0x86,0x69,0x86,0x69,0x86,0x69,0x86,0x69,0x86,0x69,0x86,0x69,0x86,0x69,0x86,0x6A,0x86,0x49,0x7E,0x89,0x86,0x88,0x86,0x48,0x86,0x49,0x86,0x6A,0x86,0x49,0x86,0x48,0x86,0xA9,0x8E,0x48,0x86,0x8B,0x8E,0x84,0x4C,0x88,0x75,0x8B,0x96,0x6A,0x8E, +0xA5,0x54,0xA6,0x6D,0xAA,0x8E,0x4A,0x8E,0xC6,0x5C,0x87,0x6D,0xAA,0x8E,0x8A,0x8E,0xA5,0x54,0x0A,0x7E,0x69,0x86,0x4A,0x8E,0x28,0x64,0x80,0x00,0x44,0x3B,0x6B,0x8E,0x49,0x86,0x8B,0x8E,0x83,0x4C,0x8B,0x8E,0x4A,0x86,0x09,0x7E,0x84,0x54,0x4B,0x8E,0x6A,0x8E,0xE8,0x7D,0x43,0x4C,0xAD,0x96,0x4A,0x8E,0x08,0x7E,0x41,0x44,0x4B,0x8E,0x49,0x86,0x8A,0x8E,0x49,0x86,0x69,0x86,0x49,0x86,0x69,0x86,0x49,0x7E,0x89,0x86,0x69,0x86,0x69,0x86,0x69,0x86,0x69,0x86,0x69,0x86,0x69,0x86,0x69,0x86,0x69,0x86,0x67,0x86,0x49,0x86,0x4A,0x86,0x69,0x86,0x88,0x7E,0x87,0x7E,0x88,0x7E,0x69,0x86,0x69,0x8E,0x68,0x8E,0x68,0x8E,0x69,0x86,0xAC,0x8E,0x26,0x4C,0xC0,0x00,0x50,0x8D, +0xC7,0x39,0x60,0x00,0x8A,0x85,0x69,0x8E,0x68,0x86,0x48,0x86,0x69,0x86,0x48,0x86,0x68,0x86,0x69,0x7E,0x89,0x86,0x8A,0x8E,0x48,0x86,0x68,0x86,0x67,0x86,0x88,0x86,0x67,0x86,0x67,0x86,0x88,0x86,0x68,0x86,0x29,0x86,0x4A,0x86,0x6A,0x86,0x68,0x7E,0x68,0x86,0x49,0x86,0x6A,0x86,0x89,0x86,0x88,0x86,0xAB,0x96,0x24,0x43,0x20,0x00,0x00,0x08,0xE0,0x08,0xED,0x8D,0xA9,0x6D,0x24,0x3C,0xE2,0x3B,0x06,0x65,0x6A,0x8E,0x6A,0x8E,0x49,0x86,0x49,0x86,0x69,0x86,0x8A,0x8E,0x6A,0x8E,0x29,0x86,0x46,0x6D,0x43,0x4C,0xE5,0x5C,0xED,0x9E,0xE9,0x7D,0x67,0x6D,0x22,0x44,0xC9,0x7D,0x8C,0x96,0x4B,0x8E,0xA9,0x75,0xA4,0x54,0xC4,0x54,0x29,0x7E,0xAB,0x8E,0x6A,0x7E,0x8A,0x86, +0x87,0x7E,0x89,0x86,0x69,0x7E,0xA8,0x76,0x88,0x7E,0xCD,0x9E,0x61,0x2A,0xA1,0x19,0xAA,0x5B,0x46,0x2A,0x20,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,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,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,0x02,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x40,0x08,0x00,0x00,0x21,0x00,0x00,0x00,0x20,0x00,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,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,0x01,0x00,0x01,0x00,0x01,0x00,0x00,0x00,0x01,0x00,0x01,0x00,0xE0,0x00,0x8B,0x7D,0xAC,0x96,0xE8,0x7D,0x4A,0x86,0x6A,0x86,0x28,0x76,0xEE,0x9E,0x23,0x33,0x40,0x00,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,0x00,0x00,0x00,0x01,0x00,0x01,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x00,0x00,0x00,0x20,0x00,0x4B,0x74,0xC0,0x00,0x00,0x00,0x02,0x00,0x01,0x00,0x80,0x00,0xAA,0x7D,0xA9,0x7E, +0x8B,0x74,0x40,0x00,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,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x20,0x00,0xA3,0x21,0x55,0xC7,0x03,0x44,0x28,0x7E,0x69,0x86,0x49,0x86,0x6A,0x86,0x49,0x86,0x68,0x86,0x68,0x86,0x69,0x86, +0x49,0x86,0x69,0x86,0x69,0x86,0x69,0x86,0x69,0x86,0x69,0x86,0x69,0x86,0x49,0x86,0x69,0x86,0x69,0x86,0x69,0x86,0x69,0x86,0x69,0x86,0x69,0x86,0x69,0x86,0x69,0x86,0x6A,0x86,0x69,0x86,0x28,0x7E,0x48,0x7E,0x89,0x8E,0x89,0x86,0x49,0x86,0x69,0x86,0x89,0x8E,0xE7,0x75,0xEB,0x9E,0xC4,0x54,0xE5,0x5C,0xCC,0x9E,0x0A,0x86,0xC8,0x7D,0x43,0x44,0xEC,0x9E,0x07,0x7E,0x8C,0x96,0xE2,0x43,0xCC,0x96,0x68,0x86,0x8B,0x8E,0x64,0x4C,0x6B,0x86,0x48,0x86,0x4A,0x8E,0x29,0x64,0x60,0x00,0x44,0x43,0x8A,0x8E,0x49,0x86,0x8B,0x8E,0xA4,0x54,0x49,0x86,0x28,0x7E,0xCC,0x96,0x64,0x4C,0xE9,0x7D,0x28,0x7E,0x0B,0x9F,0xA5,0x54,0x69,0x6D,0x09,0x7E,0xEA,0x9E,0x45,0x65,0x85,0x54, +0xCB,0x96,0x08,0x7E,0x69,0x86,0x49,0x86,0x69,0x86,0x69,0x86,0x69,0x86,0x49,0x7E,0x69,0x86,0x69,0x86,0x69,0x86,0x69,0x86,0x69,0x86,0x49,0x86,0x49,0x86,0x49,0x86,0x68,0x86,0x69,0x86,0x4A,0x86,0x4A,0x86,0x68,0x86,0x87,0x7E,0x87,0x7E,0x6A,0x86,0x2A,0x86,0x49,0x8E,0x26,0x86,0x48,0x8E,0xED,0x85,0x80,0x00,0x45,0x3B,0xF0,0xAE,0xE7,0x31,0x80,0x00,0x6A,0x7D,0x8A,0x86,0x88,0x7E,0x69,0x7E,0x6A,0x86,0x4A,0x86,0x4A,0x86,0x8A,0x86,0x2A,0x7E,0x2A,0x86,0x2A,0x8E,0x4A,0x8E,0x49,0x8E,0x69,0x8E,0x68,0x86,0x69,0x86,0x48,0x7E,0x8A,0x86,0x6A,0x8E,0x4A,0x86,0x8A,0x86,0x88,0x86,0x87,0x86,0x88,0x8E,0x28,0x7E,0x47,0x7E,0x46,0x7E,0x0C,0xA7,0x44,0x43,0x20,0x00, +0x00,0x00,0xA0,0x00,0xC5,0x43,0xE2,0x33,0x26,0x5D,0x6B,0x8E,0xAB,0x96,0x28,0x86,0x28,0x86,0xAA,0x8E,0x8B,0x8E,0x2A,0x86,0xA8,0x6D,0xE5,0x54,0x63,0x4C,0x47,0x6D,0xCD,0x9E,0x8C,0x96,0x06,0x65,0xA4,0x54,0x46,0x6D,0xED,0x9E,0x2A,0x86,0x26,0x6D,0xC4,0x5C,0xC4,0x5C,0xE9,0x7D,0xCC,0x96,0x6A,0x8E,0x49,0x86,0x8A,0x86,0x69,0x7E,0x87,0x86,0x69,0x86,0x49,0x7E,0x88,0x7E,0x68,0x7E,0x6C,0x96,0x82,0x2A,0x02,0x2A,0x01,0x22,0xA1,0x11,0x80,0x00,0x01,0x00,0x00,0x00,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,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,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,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x02,0x08,0x01,0x00,0x21,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,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x00,0x00,0x00,0x20,0x00,0x00,0x00,0x21,0x00,0x40,0x00,0xA0,0x00,0xAB,0x85,0x8B,0x96,0x29,0x86,0x49,0x86,0x28,0x76,0x2D,0xA7,0x02,0x33,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,0x01,0x00,0x01,0x00,0x01,0x00,0x01,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x00,0x01,0x00,0x00,0x00,0x20,0x00,0x2C,0x74,0xC0,0x00,0x20,0x00,0x01,0x00,0x01,0x00,0x80,0x00,0xAA,0x75,0xA7,0x76,0x4A,0x6C,0x40,0x00,0x40,0x00,0x00,0x00,0x00,0x00,0x00,0x00,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,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x09,0x8A,0x6C,0x41,0x33,0x29,0x86,0x89,0x86,0x49,0x86,0x6A,0x86,0x49,0x86,0x68,0x86,0x68,0x86,0x69,0x86,0x69,0x86,0x69,0x86,0x69,0x86,0x69,0x86,0x69,0x86,0x69,0x86,0x69,0x86,0x69,0x86,0x69,0x86,0x69,0x86,0x69,0x86,0x69,0x86,0x69,0x86,0x69,0x86,0x69,0x86,0x69,0x86,0x48,0x7E,0x8A,0x8E,0x49,0x86,0x6A,0x86,0x49,0x86,0x48,0x86,0x69,0x86,0x69,0x86,0x28,0x86,0xCC,0x96,0x46,0x65,0x62,0x4C,0xAB,0x96,0x09,0x7E,0xAC,0x96,0xC1,0x3B, +0x8B,0x8E,0x29,0x7E,0xCB,0x96,0x84,0x54,0x67,0x6D,0x8A,0x8E,0x48,0x7E,0x09,0x7E,0x64,0x4C,0xAB,0x96,0x47,0x7E,0x4A,0x8E,0x29,0x64,0x60,0x00,0x44,0x43,0x8A,0x8E,0x28,0x86,0x8B,0x96,0xE5,0x5C,0xE8,0x7D,0x48,0x86,0xAB,0x8E,0x68,0x6D,0xC5,0x54,0x69,0x8E,0x49,0x86,0x8B,0x8E,0xE2,0x3B,0xAB,0x96,0x07,0x7E,0xEB,0x9E,0xA5,0x5C,0xE4,0x5C,0xCB,0x96,0x49,0x86,0x49,0x86,0x49,0x86,0x28,0x7E,0x69,0x86,0x69,0x86,0x69,0x86,0x69,0x86,0x69,0x86,0x69,0x86,0x49,0x86,0x49,0x86,0x49,0x86,0x49,0x86,0x69,0x86,0x69,0x86,0x6A,0x86,0x4A,0x86,0x68,0x86,0x67,0x86,0x67,0x86,0x6A,0x7E,0x4B,0x7E,0x6A,0x8E,0x47,0x8E,0x8B,0x9E,0x00,0x1A,0x20,0x01,0x2E,0x96,0xA9,0x96, +0xE7,0x29,0x80,0x00,0x49,0x75,0x8A,0x86,0x88,0x7E,0x69,0x7E,0x6A,0x7E,0x4A,0x7E,0x6A,0x7E,0x6A,0x7E,0x4A,0x7E,0x6B,0x86,0x4A,0x86,0x28,0x86,0x48,0x86,0x48,0x86,0x68,0x86,0x69,0x7E,0x89,0x86,0x49,0x7E,0x49,0x7E,0x6A,0x86,0x48,0x7E,0x68,0x7E,0x87,0x86,0x68,0x86,0x69,0x8E,0xEB,0x96,0xA9,0x86,0x09,0x86,0xA4,0x32,0x21,0x00,0x00,0x00,0x60,0x00,0xA7,0x64,0x8A,0x8E,0x89,0x86,0x49,0x86,0x09,0x86,0xAC,0x96,0x8B,0x8E,0x67,0x6D,0xC5,0x5C,0xC5,0x5C,0x26,0x65,0xE9,0x7D,0x0E,0xA7,0x6C,0x96,0xC5,0x5C,0x84,0x54,0x88,0x75,0xCD,0x9E,0xE9,0x7D,0xA4,0x54,0x83,0x54,0x46,0x6D,0x29,0x86,0xAC,0x96,0x8B,0x96,0x09,0x86,0x49,0x86,0x69,0x86,0x48,0x7E,0x89,0x86, +0x68,0x86,0x49,0x86,0x4A,0x86,0x88,0x7E,0x88,0x86,0x0B,0x8E,0x00,0x22,0x01,0x2A,0xEE,0x9D,0x8A,0x74,0x60,0x00,0x01,0x00,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,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,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,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,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x00,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x20,0x00,0x20,0x00,0x00,0x00,0x40,0x00,0x20,0x09,0xCA,0x85,0x49,0x8E,0x69,0x8E,0x89,0x86,0x48,0x7E,0xAB,0x96,0x00,0x1A,0x00,0x00,0x00,0x00,0x00,0x00,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,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,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,0x00,0x01,0x00,0x00,0x00,0x20,0x00,0x0B,0x6C,0xA0,0x00,0x20,0x00,0x00,0x08,0x01,0x08,0x80,0x00,0xAA,0x7D,0xC7,0x7E, +0x6A,0x6C,0x60,0x00,0x40,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,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x20,0x00,0xA3,0x21,0x8A,0x6C,0xA0,0x01,0x29,0x86,0x6A,0x86,0x4A,0x86,0x4A,0x86,0x49,0x86,0x68,0x86,0x68,0x86,0x69,0x86, +0x69,0x86,0x69,0x86,0x69,0x86,0x69,0x86,0x69,0x86,0x69,0x86,0x69,0x86,0x69,0x86,0x69,0x86,0x69,0x86,0x69,0x86,0x69,0x86,0x69,0x86,0x69,0x86,0x69,0x86,0x69,0x86,0x89,0x86,0x49,0x86,0x6A,0x86,0x29,0x7E,0x8A,0x8E,0x48,0x86,0x48,0x86,0x48,0x86,0x6A,0x86,0xC8,0x75,0x42,0x44,0x8A,0x8E,0x08,0x7E,0xCB,0x96,0xC4,0x54,0x88,0x75,0x49,0x86,0x8A,0x8E,0x09,0x7E,0x22,0x44,0x8B,0x96,0x48,0x86,0xAA,0x8E,0xA8,0x6D,0xC6,0x5C,0xAB,0x96,0x46,0x7E,0x4A,0x8E,0x29,0x64,0x60,0x00,0x24,0x3B,0x8A,0x8E,0x28,0x86,0xAB,0x96,0x27,0x65,0x87,0x6D,0x48,0x86,0x28,0x7E,0xAB,0x8E,0x22,0x44,0x6B,0x8E,0x49,0x86,0x6A,0x8E,0xE8,0x7D,0x43,0x4C,0xCC,0x9E,0x09,0x86,0x6A,0x8E, +0x82,0x4C,0x66,0x6D,0xAB,0x96,0x28,0x7E,0x49,0x86,0x69,0x86,0x49,0x86,0x49,0x86,0x49,0x86,0x69,0x86,0x69,0x86,0x69,0x86,0x69,0x86,0x49,0x86,0x49,0x86,0x49,0x86,0x6A,0x7E,0x6A,0x7E,0x69,0x86,0x49,0x86,0x48,0x86,0x48,0x86,0x49,0x86,0x6A,0x7E,0x8A,0x7E,0x28,0x7E,0xAC,0x9E,0xA4,0x53,0x60,0x00,0x2B,0x7D,0x8B,0x96,0xE8,0x8E,0xE6,0x31,0x80,0x00,0x07,0x6D,0x89,0x8E,0x68,0x7E,0x69,0x7E,0x6A,0x86,0x69,0x86,0x89,0x86,0x69,0x76,0x89,0x7E,0x89,0x86,0x68,0x7E,0x68,0x7E,0xA8,0x86,0x88,0x7E,0x68,0x86,0x68,0x86,0x48,0x7E,0x69,0x86,0x6A,0x86,0x4A,0x86,0x6A,0x86,0x69,0x7E,0x68,0x86,0x6A,0x8E,0x2A,0x86,0xE4,0x5C,0xA2,0x4C,0x68,0x75,0x84,0x32,0x01,0x00, +0x00,0x00,0x80,0x00,0xEB,0x85,0x89,0x86,0x88,0x86,0x6A,0x8E,0xC9,0x7D,0xA5,0x5C,0x23,0x4C,0x67,0x6D,0xE9,0x7D,0x29,0x86,0x8B,0x8E,0x6B,0x8E,0xC5,0x54,0x25,0x4C,0xA8,0x7D,0x6B,0x8E,0xA8,0x75,0x62,0x4C,0xE4,0x5C,0x08,0x7E,0x49,0x86,0x6A,0x8E,0x6A,0x8E,0x09,0x86,0x29,0x86,0x69,0x8E,0x69,0x86,0x69,0x86,0x89,0x86,0x68,0x7E,0x49,0x86,0x4A,0x86,0x2A,0x7E,0x88,0x7E,0x88,0x86,0xEB,0x8D,0x01,0x22,0x62,0x32,0xA0,0x32,0xA0,0x2A,0x20,0x11,0x01,0x00,0x01,0x00,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,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,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,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x20,0x00,0x00,0x00,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,0x08,0x00,0x00,0x00,0x00,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x00,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x20,0x00,0x60,0x00,0x20,0x00,0xC4,0x42,0xCC,0x95,0x4A,0x96,0x28,0x8E,0x48,0x8E,0x48,0x86,0x49,0x86,0x0C,0x8E,0xE0,0x00,0x20,0x00,0x00,0x08,0x20,0x00,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,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xEA,0x6B,0xA0,0x00,0x20,0x00,0x00,0x08,0x01,0x08,0x60,0x00,0x8A,0x7D,0xC7,0x86,0x2A,0x64,0x60,0x00,0x40,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,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,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,0x19,0xC3,0x32,0x80,0x01,0x29,0x86,0x6A,0x86,0x49,0x86,0x49,0x86,0x49,0x86,0x69,0x86,0x68,0x86,0x68,0x86,0x49,0x86,0x49,0x86,0x49,0x86,0x49,0x86,0x49,0x86,0x49,0x86,0x49,0x86,0x49,0x86,0x49,0x86,0x49,0x86,0x49,0x86,0x49,0x86,0x49,0x86,0x49,0x86,0x49,0x86,0x49,0x86,0x68,0x86,0x69,0x86,0x49,0x86,0x6A,0x86,0x29,0x86,0x69,0x86,0x69,0x86,0x69,0x86,0x8B,0x8E,0x22,0x44,0xE9,0x7D,0x49,0x86,0x6A,0x8E,0x08,0x7E,0x42,0x44,0x6B,0x8E, +0x28,0x86,0x6A,0x8E,0xA8,0x75,0x06,0x65,0x4A,0x8E,0x48,0x86,0xEB,0x96,0xA5,0x54,0x89,0x75,0x8A,0x8E,0x47,0x86,0x4A,0x8E,0x09,0x64,0x60,0x00,0x24,0x3B,0x6A,0x8E,0x48,0x86,0x6A,0x8E,0xA8,0x75,0x05,0x5D,0x49,0x86,0x48,0x86,0xAA,0x8E,0x06,0x5D,0x27,0x65,0x8B,0x8E,0x48,0x86,0x68,0x86,0x84,0x54,0x89,0x75,0x6B,0x8E,0x68,0x8E,0x6A,0x8E,0x00,0x3C,0x09,0x7E,0x6A,0x8E,0x49,0x86,0x49,0x86,0x49,0x86,0x49,0x86,0x69,0x86,0x69,0x86,0x69,0x86,0x69,0x86,0x69,0x86,0x69,0x86,0x69,0x86,0x69,0x86,0x6A,0x7E,0x6A,0x86,0x69,0x86,0x68,0x86,0x48,0x8E,0x2A,0x8E,0x4B,0x86,0x69,0x86,0x88,0x86,0x49,0x86,0xAD,0x85,0xE0,0x00,0xE2,0x3A,0xAC,0xA6,0x05,0x76,0x09,0x8F, +0xC6,0x39,0x80,0x00,0xC6,0x6C,0x88,0x8E,0x67,0x86,0x48,0x86,0x49,0x86,0x49,0x86,0x69,0x86,0x68,0x7E,0x89,0x86,0x48,0x7E,0x48,0x86,0x89,0x8E,0x69,0x86,0x48,0x7E,0x27,0x7E,0x68,0x86,0x89,0x86,0x8A,0x8E,0x4A,0x86,0x2A,0x86,0x4A,0x86,0x29,0x7E,0xA7,0x6D,0xE6,0x5C,0x65,0x54,0x06,0x5D,0x25,0x5D,0xC6,0x64,0xA4,0x3A,0x00,0x00,0x00,0x08,0x60,0x00,0x8A,0x7D,0xC7,0x75,0x44,0x5D,0x63,0x4C,0xC5,0x5C,0xA8,0x75,0x8B,0x96,0x49,0x8E,0x4A,0x8E,0x09,0x86,0x46,0x65,0x84,0x4C,0xAA,0x75,0xEC,0x85,0x05,0x65,0x63,0x54,0x05,0x65,0x8A,0x8E,0x49,0x86,0x49,0x86,0x49,0x86,0x49,0x86,0x29,0x86,0x49,0x86,0x49,0x8E,0x49,0x8E,0x49,0x86,0x48,0x86,0x48,0x7E,0x68,0x86, +0x29,0x86,0x4B,0x8E,0x4B,0x86,0x48,0x7E,0x68,0x86,0xEB,0x8D,0x80,0x11,0xA3,0x42,0x01,0x43,0x83,0x4B,0xA1,0x19,0x20,0x00,0x21,0x00,0x20,0x00,0x20,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,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,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,0x02,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,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,0x08,0x00,0x00,0x00,0x00,0x20,0x00,0x00,0x00,0x01,0x00,0x00,0x00,0x00,0x08,0x00,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x00,0x00,0x00,0x00,0x62,0x19,0xB0,0xAE,0x49,0x96,0x47,0x8E,0x07,0x86,0x29,0x8E,0x6B,0x96,0x8E,0xA6,0x83,0x32,0x40,0x00,0x00,0x00,0x00,0x00,0x00,0x00,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,0x40,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x0A,0x6C,0xA0,0x00,0x40,0x00,0x01,0x00,0x02,0x00,0x40,0x00,0x49,0x75,0xA7,0x86, +0xA8,0x53,0x40,0x00,0x40,0x00,0x00,0x00,0x00,0x08,0x00,0x00,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,0x21,0x00,0x00,0x00,0x00,0x00,0x21,0x08,0x00,0x00,0x01,0x11,0xD2,0xB6,0x40,0x33,0x29,0x86,0x6A,0x86,0x49,0x86,0x48,0x86,0x49,0x86,0x69,0x86,0x49,0x86,0x68,0x86, +0x49,0x86,0x49,0x86,0x49,0x86,0x49,0x86,0x49,0x86,0x49,0x86,0x49,0x86,0x49,0x86,0x49,0x86,0x49,0x86,0x49,0x86,0x49,0x86,0x49,0x86,0x49,0x86,0x49,0x86,0x49,0x86,0x48,0x86,0x49,0x86,0x29,0x86,0x6A,0x86,0x6A,0x86,0x69,0x86,0xC7,0x75,0xAB,0x96,0x62,0x4C,0x87,0x6D,0x8B,0x8E,0x4A,0x86,0x4A,0x86,0x83,0x4C,0x87,0x6D,0x6B,0x8E,0x49,0x86,0xCB,0x96,0x63,0x44,0xC8,0x7D,0x69,0x8E,0x27,0x7E,0xAA,0x8E,0x63,0x4C,0x2A,0x86,0x49,0x86,0x47,0x86,0x2A,0x8E,0x08,0x64,0x60,0x00,0x23,0x3B,0x6B,0x8E,0x48,0x86,0x49,0x8E,0x09,0x86,0x63,0x4C,0xAB,0x96,0x48,0x86,0x48,0x86,0x4A,0x86,0x02,0x3C,0xAB,0x96,0x27,0x7E,0x47,0x86,0x2A,0x86,0x03,0x44,0xAC,0x96,0x27,0x86, +0x6A,0x8E,0xC8,0x7D,0x41,0x44,0x8A,0x8E,0x08,0x7E,0x6A,0x86,0x49,0x86,0x69,0x86,0x69,0x86,0x69,0x86,0x69,0x86,0x69,0x86,0x69,0x86,0x69,0x86,0x69,0x86,0x69,0x86,0x49,0x86,0x49,0x86,0x68,0x86,0x67,0x86,0x48,0x8E,0x2A,0x86,0x4B,0x86,0x69,0x86,0x26,0x7E,0xCD,0x9E,0x41,0x1A,0xA0,0x09,0x4C,0x9E,0x67,0x8E,0x46,0x7E,0x0B,0x8F,0xC6,0x39,0x60,0x00,0x85,0x64,0x89,0x96,0x67,0x86,0x48,0x8E,0x29,0x8E,0x49,0x8E,0x28,0x86,0x48,0x86,0x69,0x8E,0x28,0x86,0x49,0x8E,0x29,0x8E,0x09,0x86,0x4A,0x8E,0xAB,0x96,0x4A,0x86,0x29,0x86,0x87,0x75,0x47,0x6D,0x27,0x6D,0xE6,0x5C,0xE6,0x5C,0xE5,0x5C,0xC7,0x64,0xC7,0x64,0x48,0x6D,0xE8,0x7D,0xEE,0xA6,0xE4,0x3A,0x20,0x00, +0x02,0x08,0x40,0x00,0x05,0x4C,0x46,0x65,0x87,0x6D,0x6B,0x8E,0x8B,0x96,0xAB,0x96,0x28,0x86,0xA6,0x7D,0xE4,0x64,0xA4,0x54,0xE6,0x5C,0x68,0x6D,0xC6,0x54,0x85,0x5C,0xA7,0x75,0x6A,0x8E,0x8A,0x8E,0x28,0x7E,0x69,0x86,0x89,0x86,0x68,0x86,0x48,0x86,0x48,0x86,0x28,0x86,0x28,0x86,0x28,0x86,0x49,0x86,0x48,0x86,0x48,0x7E,0x89,0x86,0x29,0x86,0x29,0x86,0x29,0x86,0x69,0x86,0x09,0x7E,0x6A,0x7D,0xC0,0x21,0xA5,0x42,0x10,0xA6,0xEB,0x7C,0xA1,0x19,0xC0,0x08,0x20,0x00,0x40,0x00,0x00,0x00,0x22,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,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,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,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x21,0x00,0x00,0x00,0x00,0x00,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,0x20,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,0x01,0x08,0x20,0x00,0x60,0x11,0x0C,0x8E,0x27,0x7E,0x68,0x86,0xAB,0x96,0x0C,0x96,0xAA,0x74,0xC2,0x21,0x40,0x00,0x00,0x00,0x00,0x08,0x00,0x00,0x00,0x00,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,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x08,0x00,0x00,0x0A,0x6C,0xA0,0x00,0x20,0x00,0x03,0x00,0x03,0x00,0x40,0x00,0x28,0x75,0xA8,0x8E,0xA8,0x53,0x60,0x00,0x41,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,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,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,0x21,0x11,0x90,0xAE,0x60,0x33,0x29,0x86,0x6A,0x86,0x48,0x86,0x68,0x86,0x48,0x86,0x4A,0x86,0x49,0x86,0x68,0x86,0x49,0x86,0x49,0x86,0x49,0x86,0x49,0x86,0x49,0x86,0x49,0x86,0x49,0x86,0x49,0x86,0x49,0x86,0x49,0x86,0x49,0x86,0x49,0x86,0x49,0x86,0x49,0x86,0x49,0x86,0x49,0x86,0x49,0x86,0x69,0x86,0x48,0x86,0x28,0x86,0x49,0x86,0x29,0x7E,0x0D,0x9F,0xC3,0x54,0xE4,0x5C,0xCB,0x96,0x08,0x7E,0x4A,0x86,0xE9,0x7D,0x83,0x4C,0xAB,0x96,0x29,0x86, +0x49,0x86,0x08,0x7E,0x83,0x4C,0x8B,0x96,0x08,0x86,0x28,0x86,0x8A,0x8E,0x42,0x44,0x6A,0x8E,0x48,0x86,0x68,0x86,0x0B,0x8E,0x29,0x6C,0x80,0x00,0x23,0x3B,0x6B,0x8E,0x49,0x86,0x29,0x86,0x6A,0x8E,0x42,0x44,0x8A,0x8E,0x28,0x86,0x49,0x86,0x8B,0x8E,0xE5,0x5C,0xA7,0x6D,0xAA,0x8E,0x48,0x86,0x8B,0x8E,0xC5,0x54,0x25,0x65,0x89,0x8E,0x09,0x7E,0xAB,0x96,0x05,0x65,0x83,0x4C,0x8A,0x8E,0x49,0x86,0x69,0x86,0x49,0x86,0x49,0x86,0x49,0x86,0x49,0x86,0x48,0x86,0x49,0x86,0x49,0x86,0x49,0x86,0x49,0x86,0x68,0x86,0x68,0x86,0x48,0x8E,0x48,0x8E,0x49,0x8E,0x49,0x86,0x68,0x86,0x48,0x86,0x6B,0x96,0xC8,0x64,0xA0,0x00,0xAC,0x85,0x09,0x86,0x88,0x86,0x67,0x7E,0xCB,0x8E, +0xE7,0x31,0x80,0x00,0x66,0x5C,0x89,0x8E,0x68,0x86,0x49,0x86,0x29,0x86,0x49,0x8E,0x69,0x8E,0x68,0x86,0x48,0x86,0x48,0x86,0x49,0x86,0x09,0x86,0x6B,0x8E,0x0A,0x86,0xA6,0x64,0x07,0x6D,0xC6,0x64,0x26,0x6D,0x67,0x75,0x06,0x6D,0xE5,0x64,0xE5,0x5C,0x26,0x65,0x69,0x75,0x2D,0x96,0x28,0x6D,0x26,0x65,0x85,0x5C,0xA3,0x32,0x00,0x00,0x03,0x00,0x60,0x00,0x8A,0x7D,0xEB,0x96,0xCB,0x96,0x4B,0x8E,0xC9,0x85,0xE5,0x64,0x43,0x4C,0x43,0x4C,0x84,0x54,0xE5,0x5C,0x47,0x65,0x47,0x65,0x29,0x86,0xCA,0x96,0x6A,0x8E,0x29,0x86,0x28,0x7E,0x89,0x86,0x27,0x7E,0x68,0x7E,0x68,0x7E,0x68,0x7E,0x68,0x86,0xAA,0x8E,0xAA,0x8E,0x49,0x86,0x49,0x86,0x89,0x86,0x69,0x86,0x28,0x7E, +0x89,0x8E,0x07,0x86,0x68,0x8E,0x28,0x7E,0x0E,0x9F,0xAD,0x8D,0x00,0x11,0xE4,0x31,0xA3,0x19,0x65,0x32,0x44,0x32,0xA6,0x42,0x65,0x42,0x20,0x00,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,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x20,0x00,0x20,0x00,0x20,0x00,0x20,0x00,0x00,0x00,0x00,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x00,0x02,0x00,0x22,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,0x01,0x00,0x00,0x00,0x00,0x00,0x20,0x00,0x00,0x00,0x01,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x08,0x00,0x00,0x60,0x11,0x2C,0x8E,0x8A,0x7E,0x89,0x7E,0xA3,0x54,0x40,0x01,0x60,0x00,0x01,0x00,0x01,0x00,0x20,0x00,0x00,0x00,0x01,0x08,0x01,0x00,0x22,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x20,0x00,0x00,0x00,0x01,0x08,0x00,0x00,0x00,0x00,0x00,0x08,0x01,0x08,0x00,0x00,0x09,0x6C,0xA0,0x00,0x20,0x00,0x04,0x00,0x03,0x00,0x40,0x00,0x28,0x6D,0xA9,0x8E, +0x87,0x53,0x60,0x00,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,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x02,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x21,0x11,0xB0,0xAE,0x40,0x2B,0x08,0x86,0x6A,0x86,0x48,0x86,0x68,0x86,0x48,0x86,0x4A,0x86,0x49,0x86,0x68,0x86, +0x48,0x86,0x48,0x86,0x49,0x86,0x49,0x86,0x49,0x86,0x49,0x86,0x48,0x86,0x48,0x86,0x49,0x86,0x49,0x86,0x49,0x86,0x49,0x86,0x49,0x86,0x49,0x86,0x49,0x86,0x49,0x86,0x49,0x86,0x28,0x86,0x68,0x86,0x48,0x86,0x28,0x86,0x8B,0x8E,0x46,0x65,0x83,0x4C,0x8A,0x8E,0x49,0x86,0x49,0x86,0x8B,0x8E,0x22,0x44,0x09,0x7E,0x49,0x86,0x28,0x86,0x6A,0x8E,0x04,0x5D,0x25,0x65,0x6A,0x8E,0x49,0x8E,0x6A,0x8E,0xE8,0x75,0xA3,0x54,0x6A,0x8E,0x48,0x86,0x49,0x86,0x0B,0x8E,0x49,0x6C,0x60,0x00,0x43,0x43,0x4C,0x8E,0x49,0x8E,0x08,0x86,0xCB,0x96,0xA3,0x54,0xA7,0x75,0xAA,0x8E,0x29,0x7E,0x29,0x86,0xE8,0x7D,0x82,0x4C,0x8A,0x8E,0x29,0x86,0x09,0x7E,0x6A,0x8E,0x41,0x4C,0x29,0x86, +0x4A,0x8E,0x29,0x86,0x8B,0x96,0xC4,0x54,0x04,0x5D,0x8A,0x8E,0x08,0x7E,0x69,0x86,0x48,0x86,0x48,0x86,0x48,0x86,0x48,0x86,0x48,0x86,0x48,0x86,0x49,0x86,0x49,0x86,0x68,0x86,0x47,0x86,0x47,0x8E,0x29,0x8E,0x2A,0x86,0x68,0x86,0x66,0x86,0x48,0x86,0xED,0x8D,0xE0,0x00,0xE5,0x4B,0x6B,0x8E,0x69,0x86,0x49,0x7E,0x49,0x7E,0xCA,0x8E,0xE8,0x31,0x80,0x00,0x46,0x54,0x8A,0x86,0x69,0x7E,0x49,0x7E,0x29,0x86,0x49,0x86,0x48,0x7E,0x87,0x7E,0x67,0x7E,0x68,0x86,0x47,0x7E,0x49,0x86,0x8A,0x86,0x42,0x3C,0x40,0x1A,0xC8,0x6C,0xCB,0x85,0xC5,0x64,0x84,0x5C,0x46,0x75,0xC8,0x7D,0x49,0x8E,0x6A,0x96,0x4C,0x96,0xC0,0x22,0x41,0x2B,0x2A,0x86,0xAE,0x9E,0x06,0x43,0x00,0x00, +0x05,0x08,0x40,0x00,0x89,0x7D,0x67,0x86,0x64,0x65,0x42,0x4C,0xC2,0x43,0xE5,0x4B,0xA9,0x5C,0x2A,0x75,0xCA,0x85,0x2A,0x86,0x49,0x86,0x8A,0x8E,0x67,0x86,0x45,0x86,0x29,0x86,0x69,0x8E,0x28,0x86,0x48,0x7E,0x89,0x86,0x68,0x7E,0x47,0x76,0xA9,0x86,0x48,0x7E,0xA6,0x6D,0xC7,0x75,0x49,0x86,0x49,0x86,0x48,0x7E,0x8A,0x86,0xAA,0x86,0x47,0x86,0x46,0x86,0x67,0x8E,0x69,0x86,0x44,0x4C,0x20,0x01,0x40,0x00,0x20,0x00,0x20,0x00,0x60,0x00,0x80,0x00,0x20,0x11,0x4B,0x7C,0x85,0x42,0x20,0x00,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,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x02,0x00,0x40,0x00,0xE0,0x00,0xEA,0x8D,0x2B,0x96,0x69,0x6C,0x20,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,0x00,0x00,0x00,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,0x01,0x00,0x01,0x00,0x00,0x00,0x20,0x00,0x49,0x63,0x80,0x00,0x00,0x00,0x02,0x00,0x01,0x00,0x60,0x00,0xE9,0x7C,0x29,0x9E,0xA9,0x52,0x00,0x00,0x40,0x00,0x20,0x00,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,0xE0,0x10,0x70,0xAE,0x40,0x33,0x28,0x7E,0x69,0x7E,0x69,0x7E,0x69,0x86,0x48,0x86,0x49,0x8E,0x29,0x8E,0x29,0x8E,0x87,0x7E,0x68,0x86,0x49,0x86,0x69,0x7E,0x68,0x7E,0x68,0x7E,0x48,0x86,0x48,0x86,0x68,0x7E,0x69,0x7E,0x49,0x86,0x29,0x8E,0x48,0x86,0x68,0x7E,0x49,0x86,0x29,0x8E,0x28,0x86,0x69,0x86,0x48,0x86,0x48,0x86,0x6A,0x8E,0x09,0x7E,0x42,0x44,0x29,0x86,0x49,0x86,0x27,0x7E,0xAA,0x8E,0x04,0x5D,0xE4,0x5C,0x8B,0x8E,0x08,0x7E,0x48,0x86, +0x2A,0x8E,0x83,0x54,0x08,0x7E,0x47,0x86,0x46,0x8E,0xAA,0x9E,0xE6,0x64,0x49,0x6D,0x49,0x86,0x86,0x7E,0x66,0x7E,0x0B,0x8E,0xEA,0x6B,0x40,0x00,0x04,0x43,0x4B,0x8E,0x49,0x86,0x48,0x86,0x89,0x8E,0x65,0x65,0x04,0x5D,0xAB,0x96,0x08,0x7E,0x49,0x86,0x2A,0x86,0x63,0x4C,0x09,0x86,0x48,0x86,0x46,0x86,0xA8,0x8E,0x25,0x65,0xE6,0x5C,0x67,0x8E,0x27,0x86,0x2A,0x86,0x6D,0x96,0x24,0x44,0xA6,0x75,0xA7,0x8E,0x46,0x86,0x48,0x86,0x09,0x7E,0x4A,0x86,0x49,0x86,0x48,0x86,0x48,0x86,0x68,0x86,0x67,0x86,0x4A,0x86,0x48,0x7E,0x68,0x86,0x29,0x86,0x49,0x86,0x67,0x86,0x46,0x86,0x6C,0x96,0x26,0x33,0x60,0x01,0xAE,0x9E,0x25,0x86,0x86,0x86,0x69,0x86,0x27,0x7E,0x09,0x97, +0x06,0x32,0x60,0x00,0x45,0x5C,0x4A,0x96,0x49,0x86,0x4B,0x86,0x2B,0x86,0x49,0x86,0x48,0x86,0x47,0x86,0x48,0x86,0x6A,0x8E,0xCA,0x7D,0x6C,0x7D,0x05,0x3B,0xA5,0x32,0xC5,0x31,0x60,0x11,0x40,0x1A,0x04,0x54,0x27,0x5C,0x29,0x5C,0xC7,0x53,0x08,0x64,0x66,0x5B,0xA1,0x29,0x44,0x3A,0x82,0x2A,0x47,0x54,0x6B,0x7D,0xA5,0x42,0x00,0x08,0x00,0x00,0x20,0x00,0xC3,0x42,0x40,0x3B,0xC0,0x3B,0x44,0x5D,0x45,0x55,0xAB,0x86,0x6A,0x7E,0x6A,0x7E,0x6A,0x86,0x8A,0x86,0x69,0x86,0x69,0x7E,0x68,0x7E,0x67,0x7E,0x89,0x7E,0x89,0x7E,0x48,0x7E,0x67,0x86,0x47,0x8E,0x28,0x96,0x0C,0x9E,0xE5,0x4A,0xC0,0x08,0x00,0x00,0x40,0x08,0x82,0x10,0xA3,0x10,0x82,0x10,0xE2,0x18,0x67,0x42, +0x2E,0x95,0xD1,0xA5,0x30,0x95,0x83,0x21,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x81,0x10,0xC7,0x39,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x02,0x00,0x20,0x00,0x00,0x01,0xAA,0x85,0x2C,0x96,0x60,0x09,0x40,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,0x00,0x00,0x00,0x00,0x00,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,0x01,0x00,0x00,0x00,0x00,0x00,0x60,0x08,0x40,0x00,0x00,0x00,0x22,0x00,0x21,0x00,0x40,0x00,0x28,0x6C,0xAD,0xB6, +0x89,0x4A,0x40,0x08,0x40,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,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x20,0x11,0xB1,0xB6,0x40,0x2B,0x48,0x7E,0x89,0x7E,0x48,0x76,0x69,0x86,0x68,0x86,0x28,0x86,0x28,0x86,0x28,0x8E, +0x68,0x7E,0x48,0x86,0x48,0x86,0x69,0x86,0x68,0x7E,0x68,0x7E,0x48,0x86,0x48,0x86,0x48,0x7E,0x49,0x7E,0x49,0x86,0x28,0x8E,0x48,0x86,0x68,0x7E,0x49,0x7E,0x29,0x86,0x48,0x86,0x48,0x86,0x28,0x7E,0x28,0x86,0x8B,0x8E,0x01,0x3C,0xE9,0x7D,0x6A,0x8E,0x28,0x86,0x48,0x86,0x49,0x86,0x00,0x3C,0x8B,0x8E,0x08,0x7E,0x69,0x8E,0x48,0x86,0xC8,0x7D,0x63,0x4C,0xAA,0x8E,0x47,0x86,0x06,0x86,0x8A,0x96,0xC6,0x5C,0x8A,0x75,0x49,0x86,0x86,0x7E,0x66,0x7E,0x0B,0x8E,0xEA,0x6B,0x60,0x00,0x24,0x43,0x6B,0x8E,0x49,0x86,0x28,0x86,0x69,0x86,0x08,0x7E,0x62,0x4C,0x8B,0x8E,0x08,0x7E,0x49,0x86,0x6A,0x8E,0x05,0x5D,0x26,0x65,0x69,0x8E,0x47,0x86,0x47,0x86,0xAB,0x96,0xE2,0x3B, +0x07,0x7E,0x8A,0x8E,0x0A,0x86,0x0A,0x86,0x6B,0x8E,0xA0,0x33,0x69,0x86,0x48,0x86,0x68,0x86,0x69,0x86,0x29,0x86,0x28,0x7E,0x69,0x86,0x48,0x86,0x48,0x86,0x47,0x86,0x68,0x86,0x28,0x7E,0x49,0x86,0x49,0x86,0x47,0x86,0x06,0x7E,0xCB,0x9E,0xE7,0x64,0xE0,0x00,0x8C,0x7D,0x2B,0x8E,0x27,0x86,0x47,0x86,0x26,0x7E,0x68,0x86,0xC9,0x8E,0x06,0x32,0x80,0x00,0xA3,0x43,0x4A,0x8E,0x6A,0x86,0x09,0x76,0x6A,0x86,0x28,0x7E,0x47,0x86,0x07,0x7E,0xAA,0x96,0x47,0x6D,0xA6,0x5C,0x40,0x12,0xC1,0x2A,0xA4,0x4B,0x67,0x53,0xA0,0x00,0x23,0x3B,0x84,0x43,0xC4,0x43,0xA0,0x22,0xA3,0x43,0x60,0x2A,0x01,0x2A,0x80,0x00,0xC5,0x3A,0xC6,0x4B,0xE3,0x3B,0xC4,0x43,0x20,0x09,0x00,0x00, +0x01,0x00,0x20,0x00,0xC6,0x5B,0xEB,0x8D,0x8B,0x96,0x4A,0x7E,0xCC,0x8E,0x4A,0x7E,0x48,0x7E,0x67,0x86,0x26,0x7E,0xE6,0x75,0x49,0x86,0x29,0x86,0x08,0x7E,0x47,0x7E,0x06,0x76,0x27,0x76,0x89,0x86,0x29,0x86,0x2B,0x96,0x2A,0x7D,0x60,0x11,0x60,0x00,0x00,0x00,0x00,0x00,0x20,0x00,0x00,0x00,0x00,0x00,0x20,0x00,0x00,0x00,0x40,0x00,0x60,0x00,0x64,0x3A,0x40,0x00,0x40,0x00,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x41,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,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,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,0x20,0x00,0x00,0x01,0xEC,0x95,0x6A,0x85,0x80,0x00,0x20,0x00,0x01,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,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x20,0x00,0x20,0x00,0x00,0x00,0x02,0x00,0x02,0x00,0x20,0x00,0xC0,0x00,0xC0,0x21,0xC2,0x10,0x00,0x00,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,0x20,0x00,0x00,0x00,0x20,0x08,0x00,0x00,0x21,0x11,0x90,0xAE,0x40,0x2B,0x07,0x7E,0x89,0x86,0x48,0x7E,0x48,0x7E,0x48,0x7E,0x48,0x86,0x48,0x86,0x68,0x86,0x49,0x7E,0x48,0x86,0x48,0x86,0x48,0x86,0x49,0x7E,0x48,0x86,0x28,0x86,0x28,0x86,0x49,0x7E,0x49,0x7E,0x48,0x86,0x28,0x86,0x48,0x86,0x69,0x7E,0x48,0x7E,0x48,0x86,0x48,0x86,0x69,0x86,0x49,0x86,0x8B,0x8E,0x83,0x4C,0x26,0x65,0x8A,0x8E,0x49,0x86,0x08,0x7E,0xEB,0x96,0x41,0x44,0xE8,0x7D,0x2A,0x86,0x6A,0x86,0x28,0x7E,0x89,0x8E, +0xA4,0x5C,0xA8,0x6D,0x8A,0x86,0x48,0x86,0x47,0x86,0x49,0x8E,0xA5,0x54,0xEB,0x7D,0x49,0x7E,0x87,0x7E,0x66,0x7E,0x0B,0x8E,0x0A,0x6C,0x60,0x00,0x23,0x3B,0x6B,0x8E,0x49,0x86,0x28,0x7E,0x48,0x86,0x8A,0x8E,0x42,0x44,0x4A,0x86,0x29,0x7E,0x49,0x86,0x4A,0x86,0x2A,0x86,0x63,0x4C,0x6A,0x8E,0x48,0x86,0x48,0x86,0x49,0x86,0x0A,0x7E,0xE1,0x3B,0x8C,0x96,0x09,0x7E,0x48,0x86,0x68,0x86,0xE8,0x7D,0xE2,0x3B,0x6C,0x8E,0x28,0x7E,0x47,0x7E,0x69,0x86,0x6A,0x86,0xE8,0x7D,0x89,0x86,0x68,0x7E,0x48,0x7E,0x67,0x86,0x29,0x86,0x4B,0x86,0x47,0x86,0x86,0x8E,0x28,0x86,0x4D,0x8E,0x60,0x01,0x03,0x4C,0xCB,0x9E,0xE9,0x85,0x4A,0x8E,0x28,0x86,0x67,0x86,0x47,0x86,0xAB,0x8E, +0xC6,0x31,0x80,0x00,0xA4,0x4B,0x4A,0x8E,0x49,0x7E,0x89,0x7E,0x48,0x7E,0x68,0x86,0x27,0x86,0x69,0x96,0xA9,0x7D,0x65,0x54,0xE7,0x64,0x47,0x6D,0xEC,0xA6,0x8A,0x96,0xAD,0x9E,0x80,0x22,0x60,0x09,0xCF,0x95,0xF0,0xA6,0x67,0x6D,0xA5,0x5C,0x8C,0x85,0x47,0x53,0x60,0x00,0x49,0x64,0x89,0x75,0xA4,0x4C,0xC3,0x43,0xA4,0x3A,0x20,0x00,0x02,0x00,0x20,0x00,0x0B,0x85,0x4B,0x96,0xE8,0x7D,0x2A,0x86,0x0A,0x76,0x4A,0x7E,0x48,0x86,0x46,0x86,0xA8,0x96,0xCC,0xA6,0xEA,0x8D,0x2C,0x96,0xAD,0xA6,0xAC,0x9E,0x0A,0x9F,0xAA,0x96,0xE8,0x85,0x4D,0x96,0x6A,0x6C,0x60,0x00,0x20,0x00,0x61,0x00,0x21,0x00,0x20,0x00,0x00,0x00,0x00,0x00,0x20,0x00,0x40,0x00,0x00,0x00,0x21,0x00, +0x60,0x00,0x40,0x00,0x40,0x00,0x20,0x00,0x00,0x00,0x00,0x00,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,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x02,0x00,0x00,0x00,0x20,0x09,0xCD,0x95,0x4C,0x85,0x80,0x00,0x20,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,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x20,0x00,0x01,0x00,0x02,0x00,0x01,0x00,0x00,0x00,0x40,0x00,0x60,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,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,0x21,0x00,0x01,0x00,0x01,0x00,0x22,0x11,0x70,0xA6,0x60,0x33,0x28,0x86,0x69,0x86,0x48,0x7E,0x48,0x7E,0x49,0x86,0x69,0x86,0x28,0x7E,0x88,0x86, +0x4A,0x86,0x29,0x86,0x28,0x8E,0x48,0x86,0x49,0x7E,0x49,0x86,0x29,0x86,0x29,0x86,0x48,0x7E,0x68,0x7E,0x48,0x86,0x48,0x86,0x48,0x86,0x69,0x7E,0x68,0x7E,0x47,0x86,0x67,0x86,0x07,0x7E,0x8B,0x8E,0xE6,0x5C,0x84,0x4C,0xAB,0x8E,0x28,0x86,0x48,0x86,0x69,0x8E,0x45,0x65,0xA4,0x54,0x4A,0x86,0x6A,0x86,0x29,0x86,0x28,0x7E,0x69,0x86,0x22,0x44,0xAB,0x96,0x08,0x76,0x48,0x86,0x48,0x86,0x29,0x86,0x84,0x4C,0x2B,0x86,0x49,0x7E,0x67,0x7E,0x66,0x7E,0x2B,0x8E,0x0A,0x64,0x60,0x00,0x23,0x3B,0x6A,0x86,0x49,0x86,0x48,0x86,0x48,0x86,0x69,0x86,0xA4,0x54,0x09,0x7E,0x2A,0x86,0x29,0x86,0x29,0x7E,0x6B,0x8E,0xA4,0x54,0xC7,0x75,0x48,0x86,0x28,0x7E,0x08,0x7E,0x8B,0x8E, +0x07,0x65,0xE5,0x5C,0xAA,0x8E,0x46,0x7E,0x67,0x86,0x6B,0x8E,0x08,0x65,0xC6,0x54,0x8A,0x8E,0x68,0x86,0x26,0x7E,0x48,0x86,0x49,0x86,0x28,0x7E,0x48,0x7E,0x68,0x86,0x67,0x86,0x49,0x86,0x09,0x7E,0x47,0x86,0x25,0x7E,0x0C,0x9F,0x01,0x23,0x21,0x2B,0x8A,0x96,0x47,0x86,0x07,0x86,0x2A,0x86,0x29,0x86,0x88,0x86,0x27,0x7E,0xAC,0x8E,0xE7,0x39,0x40,0x00,0xE5,0x53,0x6A,0x8E,0x68,0x7E,0x48,0x76,0xA9,0x86,0x27,0x7E,0x48,0x86,0xE8,0x85,0x44,0x54,0xC7,0x64,0x65,0x54,0x69,0x8E,0x05,0x7E,0x65,0x86,0x66,0x86,0x68,0x7D,0x40,0x09,0x84,0x32,0x8C,0x7D,0xE0,0x1A,0x23,0x44,0x23,0x3B,0x60,0x00,0x06,0x43,0x0D,0x8E,0x61,0x44,0xA2,0x4C,0xAF,0xA6,0x06,0x43,0x20,0x00, +0x22,0x00,0x40,0x00,0x06,0x5C,0x49,0x96,0x47,0x8E,0x67,0x86,0x69,0x86,0x29,0x86,0x2A,0x8E,0x0A,0x96,0xC7,0x74,0x20,0x22,0x20,0x09,0x40,0x09,0xE0,0x21,0x00,0x22,0x20,0x12,0xA6,0x6C,0xB0,0xAE,0x6A,0x6C,0x60,0x00,0x41,0x00,0x01,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x20,0x00,0x00,0x00,0x00,0x00,0x22,0x00,0x40,0x00,0x60,0x00,0x20,0x00,0x00,0x00,0x40,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,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,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,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,0x60,0x11,0xF0,0x9D,0xB0,0x95,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,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,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,0x01,0x00,0x20,0x00,0x00,0x00,0x20,0x00,0x00,0x00,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,0x03,0x00,0x02,0x00,0xE2,0x08,0xCB,0x74,0xC0,0x22,0x08,0x86,0x69,0x8E,0x28,0x86,0x28,0x7E,0x29,0x7E,0x49,0x86,0x48,0x7E,0x48,0x76,0x2A,0x86,0x29,0x86,0x28,0x86,0x48,0x86,0x49,0x7E,0x29,0x86,0x29,0x86,0x29,0x86,0x48,0x7E,0x48,0x7E,0x47,0x86,0x28,0x86,0x48,0x86,0x48,0x7E,0x47,0x7E,0x47,0x86,0x47,0x86,0x69,0x86,0x87,0x6D,0x22,0x44,0x8B,0x8E,0x29,0x86,0x28,0x86,0x28,0x7E,0x6A,0x8E,0x42,0x44,0xA8,0x75,0x6A,0x8E,0x28,0x7E,0x08,0x7E,0xAA,0x96,0xE4,0x5C, +0x05,0x65,0x8A,0x8E,0x28,0x76,0x69,0x86,0x28,0x86,0x29,0x86,0xA3,0x54,0x4A,0x86,0x49,0x7E,0x67,0x7E,0x66,0x7E,0x0A,0x8E,0x09,0x64,0x60,0x00,0x23,0x3B,0x69,0x8E,0x48,0x86,0x48,0x86,0x48,0x86,0x28,0x7E,0x25,0x65,0x87,0x6D,0x6A,0x8E,0x28,0x7E,0x07,0x7E,0xAA,0x8E,0x25,0x65,0x45,0x65,0x28,0x7E,0x28,0x86,0x69,0x86,0xE8,0x7D,0x0C,0x86,0x21,0x44,0x47,0x86,0x26,0x7E,0x48,0x86,0xE8,0x7D,0xAC,0x96,0x22,0x44,0x47,0x65,0x8A,0x8E,0x47,0x86,0x46,0x7E,0x48,0x7E,0x49,0x86,0x49,0x86,0x48,0x86,0x27,0x7E,0x28,0x7E,0x6A,0x8E,0x28,0x7E,0x27,0x7E,0x6A,0x8E,0x68,0x6D,0x0A,0x86,0xE8,0x7D,0x68,0x8E,0x47,0x86,0x28,0x86,0x28,0x7E,0x49,0x86,0x29,0x7E,0xAA,0x8E, +0xE8,0x39,0x40,0x00,0x22,0x43,0x8A,0x96,0x68,0x7E,0x68,0x7E,0x28,0x76,0x49,0x86,0x29,0x8E,0xA5,0x5C,0x65,0x5C,0x64,0x54,0x6A,0x8E,0x27,0x7E,0x66,0x86,0x65,0x7E,0x64,0x7E,0x09,0x8E,0x83,0x32,0x04,0x2A,0x60,0x01,0x88,0x5C,0xC9,0x64,0x01,0x1A,0xE1,0x21,0xEA,0x74,0x63,0x54,0x24,0x65,0x2A,0x8E,0x91,0xAE,0xE7,0x42,0x20,0x00,0x01,0x00,0x40,0x00,0x47,0x64,0x6A,0x9E,0x26,0x8E,0x25,0x86,0x47,0x8E,0x4B,0x96,0xAD,0x95,0xC5,0x3A,0x60,0x00,0x20,0x00,0x00,0x00,0x20,0x00,0x20,0x00,0x40,0x00,0x60,0x00,0x40,0x00,0x8C,0x7C,0x82,0x21,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x00, +0x20,0x00,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,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,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x40,0x00,0xE0,0x08,0xCA,0x63,0x89,0x5B,0x60,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,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,0x01,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,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,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x20,0x00,0x00,0x00,0x01,0x00,0x02,0x00,0xE2,0x08,0x86,0x4B,0x40,0x12,0xA7,0x7D,0x49,0x8E,0xE7,0x7D,0x08,0x86,0xE8,0x7D,0x08,0x7E,0x88,0x7E,0x87,0x7E, +0x49,0x7E,0x29,0x86,0x29,0x86,0x48,0x86,0x48,0x7E,0x49,0x7E,0x29,0x86,0x29,0x86,0x48,0x7E,0x47,0x7E,0x47,0x86,0x28,0x86,0x48,0x86,0x47,0x86,0x47,0x86,0x47,0x86,0x48,0x86,0x48,0x86,0xE0,0x3B,0x6A,0x8E,0x29,0x86,0x28,0x86,0x49,0x86,0x49,0x8E,0x26,0x65,0xA4,0x54,0xCB,0x96,0x07,0x7E,0x48,0x86,0x27,0x86,0x8A,0x8E,0x01,0x3C,0x4A,0x86,0x48,0x7E,0x68,0x7E,0x48,0x86,0x49,0x86,0x86,0x6D,0x04,0x5D,0x6A,0x8E,0x48,0x86,0x67,0x7E,0x67,0x7E,0x0A,0x8E,0x09,0x64,0x60,0x00,0x22,0x43,0x68,0x8E,0x28,0x86,0x48,0x86,0x48,0x86,0x48,0x86,0x46,0x65,0x26,0x65,0x8A,0x8E,0x28,0x86,0x48,0x86,0x28,0x86,0x8A,0x8E,0x01,0x3C,0x8A,0x8E,0x28,0x7E,0x49,0x86,0x69,0x8E, +0x4B,0x8E,0x66,0x6D,0xC2,0x54,0x69,0x8E,0x29,0x86,0x28,0x86,0x28,0x86,0x8B,0x8E,0x23,0x44,0xC8,0x75,0x89,0x8E,0x46,0x86,0x67,0x86,0x48,0x86,0x29,0x86,0x49,0x86,0x48,0x86,0x47,0x7E,0x28,0x7E,0x29,0x7E,0x4A,0x86,0x08,0x7E,0x68,0x86,0x28,0x86,0x4A,0x86,0x29,0x86,0x47,0x86,0x46,0x86,0x48,0x86,0x2A,0x86,0x29,0x7E,0xCA,0x8E,0xA8,0x31,0x80,0x00,0x21,0x3B,0x89,0x96,0x27,0x7E,0x89,0x86,0x29,0x7E,0x6B,0x8E,0xE5,0x5C,0xE2,0x43,0x05,0x65,0x8A,0x8E,0x48,0x86,0x27,0x7E,0x68,0x86,0x27,0x7E,0x47,0x86,0xAD,0xA6,0x85,0x4B,0xE0,0x00,0x03,0x22,0xED,0x7C,0x05,0x43,0x21,0x22,0x43,0x43,0xE2,0x4B,0xC8,0x85,0xAC,0xA6,0x47,0x64,0xC2,0x21,0xC1,0x08,0x20,0x00, +0x22,0x00,0x20,0x00,0x60,0x00,0x42,0x43,0x67,0x85,0x4A,0x9E,0xAA,0x8D,0x03,0x3B,0xA0,0x00,0x20,0x00,0x21,0x00,0x01,0x00,0x01,0x00,0x01,0x00,0x21,0x00,0x00,0x00,0x02,0x00,0x21,0x00,0x00,0x00,0x40,0x00,0x20,0x00,0x00,0x00,0x00,0x00,0x20,0x00,0x00,0x00,0x01,0x00,0x01,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x00,0x00,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,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,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x00,0x00,0x20,0x00,0x40,0x00,0x60,0x00,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,0x01,0x00,0x01,0x00,0x00,0x00,0x20,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,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,0x40,0x08,0x00,0x00,0x00,0x00,0x01,0x00,0x00,0x00,0xA3,0x21,0x54,0xC7,0xE3,0x4B,0x6C,0x9E,0x4B,0x9E,0x4B,0x9E,0xAD,0xA6,0x8C,0x9E,0x6A,0x8E,0x47,0x7E,0x65,0x76,0x67,0x7E,0x48,0x7E,0x48,0x7E,0x67,0x7E,0x67,0x7E,0x48,0x7E,0x29,0x7E,0x29,0x7E,0x48,0x7E,0x47,0x7E,0x48,0x86,0x29,0x86,0x28,0x86,0x47,0x86,0x47,0x86,0x28,0x86,0x8A,0x8E,0xE0,0x3B,0xE8,0x7D,0x29,0x86,0x07,0x7E,0x49,0x8E,0x29,0x86,0x4A,0x8E,0x02,0x44,0x6B,0x8E,0xE7,0x7D,0x68,0x8E,0x47,0x86,0xA9,0x96,0x46,0x65,0xE6,0x5C, +0x6A,0x8E,0x48,0x7E,0x48,0x7E,0x29,0x86,0x6B,0x8E,0xC4,0x5C,0x86,0x6D,0x69,0x86,0x29,0x86,0x48,0x86,0x47,0x86,0x0A,0x8E,0x09,0x64,0x40,0x00,0x03,0x43,0x69,0x8E,0x28,0x86,0x28,0x86,0x48,0x86,0x49,0x86,0xC7,0x75,0xA4,0x54,0x6B,0x8E,0x28,0x86,0x48,0x86,0x07,0x7E,0xAB,0x96,0xC4,0x54,0x46,0x65,0xAB,0x96,0xC7,0x75,0x48,0x86,0x08,0x86,0x8A,0x96,0x22,0x44,0x2A,0x86,0xE8,0x7D,0x48,0x86,0x48,0x86,0x28,0x86,0x2A,0x86,0xC1,0x3B,0x4A,0x8E,0x48,0x86,0x26,0x7E,0x47,0x86,0x28,0x86,0x29,0x86,0x47,0x86,0x67,0x86,0x28,0x7E,0x4A,0x86,0x4A,0x86,0x68,0x86,0x66,0x86,0x47,0x7E,0x29,0x86,0x09,0x7E,0x48,0x86,0x26,0x7E,0x69,0x86,0x29,0x7E,0x29,0x7E,0xC9,0x8E, +0xC8,0x31,0x60,0x00,0x42,0x43,0x69,0x96,0x27,0x86,0xE8,0x7D,0x6C,0x96,0xE6,0x5C,0x03,0x44,0xC4,0x54,0x69,0x86,0x07,0x76,0x88,0x86,0x48,0x86,0x2A,0x86,0x4C,0x8E,0xEB,0x8D,0x82,0x3B,0x21,0x33,0x61,0x22,0x43,0x32,0xC0,0x10,0x23,0x32,0x40,0x09,0x65,0x5C,0xAB,0x9E,0x8C,0xA6,0x81,0x32,0x40,0x00,0x20,0x00,0x00,0x00,0x20,0x00,0x03,0x00,0x01,0x00,0x20,0x00,0x40,0x00,0x80,0x00,0x20,0x09,0x60,0x00,0x60,0x00,0x20,0x00,0x40,0x00,0x20,0x00,0x20,0x00,0x01,0x00,0x01,0x00,0x01,0x00,0x01,0x00,0x02,0x00,0x02,0x00,0x01,0x00,0x00,0x00,0x00,0x00,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,0x21,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,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,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x20,0x00,0x20,0x00,0x20,0x00,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,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,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,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x20,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,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x09,0xA3,0x3A,0x20,0x01,0xC1,0x32,0xE0,0x19,0xC0,0x19,0x80,0x11,0xE2,0x3A,0xAB,0x85,0x49,0x86,0x66,0x7E, +0x66,0x7E,0x67,0x7E,0x48,0x7E,0x67,0x7E,0x67,0x7E,0x47,0x7E,0x48,0x7E,0x48,0x7E,0x48,0x7E,0x48,0x7E,0x29,0x86,0x29,0x86,0x28,0x86,0x28,0x86,0x28,0x86,0x09,0x86,0x84,0x54,0x46,0x65,0x69,0x8E,0x27,0x86,0x68,0x8E,0xE7,0x7D,0x8B,0x96,0x43,0x4C,0x48,0x6D,0x4A,0x8E,0x28,0x86,0x26,0x86,0x06,0x7E,0x89,0x8E,0x63,0x4C,0xCA,0x7D,0x29,0x7E,0x27,0x7E,0x68,0x86,0x49,0x86,0x0A,0x8E,0xA3,0x54,0xE7,0x75,0x48,0x86,0x29,0x86,0x48,0x86,0x48,0x7E,0x0B,0x8E,0xEA,0x63,0x40,0x00,0x03,0x43,0x49,0x8E,0x48,0x86,0x28,0x7E,0x48,0x86,0x28,0x86,0x4A,0x86,0x63,0x4C,0x6B,0x8E,0x08,0x7E,0x27,0x86,0x47,0x86,0x08,0x7E,0x4A,0x8E,0x02,0x44,0x6B,0x8E,0x08,0x86,0x48,0x86, +0x27,0x86,0x29,0x86,0x89,0x75,0x43,0x4C,0x6A,0x8E,0x28,0x86,0x08,0x86,0x28,0x86,0x49,0x86,0xA7,0x75,0x22,0x44,0x4A,0x86,0x69,0x8E,0x06,0x7E,0x48,0x86,0x2A,0x86,0x26,0x7E,0x48,0x86,0x29,0x7E,0x2A,0x86,0x08,0x7E,0x47,0x7E,0x46,0x7E,0x67,0x7E,0x28,0x7E,0x29,0x7E,0x49,0x86,0x27,0x7E,0x07,0x7E,0x69,0x86,0x27,0x7E,0xC8,0x8E,0xE8,0x31,0x80,0x00,0xC1,0x32,0x0A,0x96,0x09,0x8E,0x4B,0x96,0xA5,0x5C,0x81,0x33,0x06,0x65,0x8A,0x8E,0x28,0x7E,0x68,0x7E,0x47,0x76,0x29,0x7E,0x4C,0x8E,0x09,0x6D,0x22,0x33,0xE3,0x43,0xEE,0x9E,0x24,0x54,0x21,0x32,0xE3,0x39,0x40,0x19,0x43,0x43,0x2B,0x8E,0x0A,0x86,0x20,0x1A,0x40,0x00,0x41,0x08,0x01,0x00,0x01,0x00,0x00,0x00, +0x02,0x00,0x01,0x00,0x40,0x08,0x00,0x00,0x20,0x00,0x01,0x00,0x02,0x00,0x21,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x01,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,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,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,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,0x02,0x00,0x01,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,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,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,0x01,0x00,0x00,0x00,0xE4,0x29,0xD2,0xA5,0x80,0x00,0x40,0x00,0x20,0x00,0x20,0x00,0x20,0x00,0x40,0x00,0x20,0x01,0x8A,0x7D,0x49,0x8E,0x46,0x86,0x47,0x86,0x27,0x7E,0x28,0x7E,0x48,0x7E,0x47,0x7E,0xA8,0x86,0x27,0x7E,0x49,0x86,0x29,0x7E,0x6A,0x86,0x08,0x7E,0x48,0x86,0x29,0x86,0x6B,0x8E,0x26,0x65,0x43,0x4C,0xAB,0x96,0x28,0x7E,0x27,0x7E,0x48,0x86,0x8A,0x8E,0x87,0x6D,0x64,0x4C,0x4B,0x8E,0x09,0x7E,0x69,0x86,0x27,0x7E,0x68,0x86,0x08,0x7E,0x83,0x4C,0x0A,0x86, +0x49,0x86,0x68,0x86,0x47,0x86,0x49,0x86,0x2A,0x86,0x63,0x4C,0x48,0x86,0x48,0x7E,0x29,0x86,0x49,0x86,0x69,0x86,0xEB,0x85,0x2A,0x64,0x40,0x00,0x24,0x43,0x6A,0x8E,0x48,0x86,0x69,0x86,0x48,0x86,0x28,0x7E,0x6A,0x8E,0x63,0x4C,0x09,0x7E,0x49,0x86,0x48,0x86,0x68,0x86,0x28,0x7E,0x4A,0x86,0xA4,0x54,0xA8,0x75,0x8A,0x8E,0x27,0x7E,0x27,0x86,0x29,0x86,0x8C,0x96,0x64,0x4C,0x67,0x6D,0x6A,0x8E,0x08,0x7E,0x48,0x86,0x27,0x7E,0x8A,0x8E,0xA4,0x54,0x06,0x5D,0x6A,0x8E,0x28,0x7E,0x48,0x86,0x28,0x7E,0x46,0x86,0x69,0x86,0x2A,0x86,0x29,0x7E,0x48,0x7E,0x67,0x7E,0x67,0x7E,0x68,0x7E,0x48,0x7E,0x48,0x7E,0x69,0x86,0x28,0x7E,0x49,0x86,0x68,0x86,0x26,0x7E,0xE8,0x8E, +0x07,0x32,0x40,0x00,0xA2,0x32,0x0C,0x96,0x4C,0x96,0xC6,0x64,0xE0,0x22,0x67,0x75,0x4A,0x8E,0x29,0x7E,0x69,0x7E,0x28,0x76,0x49,0x7E,0x8B,0x8E,0x85,0x54,0x41,0x33,0xC7,0x64,0x6B,0x8E,0x6A,0x86,0x69,0x75,0x80,0x00,0xA1,0x31,0x40,0x00,0x06,0x5C,0x2D,0x8E,0xE1,0x22,0x60,0x00,0x20,0x00,0x00,0x00,0x00,0x00,0x21,0x00,0x00,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x00,0x02,0x00,0x02,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x20,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,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,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,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,0x00,0x00,0x00,0x00,0x00,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,0x02,0x00,0x01,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,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,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,0x01,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x22,0x19,0x04,0x32,0x40,0x00,0x00,0x00,0x02,0x00,0x02,0x00,0x02,0x00,0x00,0x00,0x60,0x00,0x20,0x22,0xCA,0x8D, +0xC8,0x85,0x69,0x96,0x6A,0x96,0x4C,0x96,0x6C,0x96,0xE7,0x7D,0x46,0x7E,0x68,0x86,0x0A,0x7E,0x4C,0x86,0x08,0x76,0x68,0x86,0x06,0x76,0x4A,0x86,0xA8,0x75,0x22,0x3C,0x6B,0x8E,0x28,0x7E,0x27,0x7E,0x47,0x7E,0x27,0x7E,0x49,0x86,0x22,0x3C,0x0A,0x7E,0x09,0x7E,0x28,0x7E,0x48,0x7E,0x48,0x7E,0x69,0x86,0x04,0x5D,0x25,0x5D,0x6A,0x86,0x48,0x7E,0x47,0x7E,0x47,0x86,0x28,0x86,0xE9,0x7D,0x62,0x4C,0x89,0x86,0x28,0x7E,0x29,0x86,0x28,0x7E,0x48,0x7E,0x0B,0x86,0x29,0x5C,0x60,0x00,0x03,0x3B,0x4A,0x8E,0x48,0x7E,0x27,0x7E,0x69,0x86,0x48,0x7E,0x49,0x86,0xE4,0x5C,0x45,0x65,0x69,0x86,0x48,0x86,0x27,0x7E,0x27,0x7E,0x49,0x86,0xA8,0x75,0x63,0x44,0x8A,0x8E,0x47,0x7E, +0x69,0x86,0x28,0x7E,0x07,0x76,0x6A,0x8E,0xE0,0x33,0x4A,0x86,0x28,0x7E,0x48,0x86,0x68,0x86,0x07,0x7E,0xAB,0x8E,0xE1,0x3B,0x87,0x6D,0x6A,0x86,0x07,0x7E,0x67,0x86,0x27,0x86,0x08,0x86,0x0A,0x86,0x2A,0x86,0x49,0x7E,0x47,0x7E,0x47,0x7E,0x48,0x7E,0x68,0x7E,0x27,0x7E,0x48,0x7E,0x28,0x7E,0x49,0x7E,0x48,0x7E,0x26,0x7E,0xC8,0x8E,0xE5,0x31,0x80,0x00,0xA2,0x32,0x6E,0x9E,0xA6,0x5C,0xC0,0x22,0xA8,0x7D,0x69,0x8E,0x08,0x86,0xE8,0x7D,0x6B,0x86,0x2B,0x7E,0xE9,0x75,0xA0,0x33,0x80,0x33,0x88,0x7D,0x89,0x96,0x28,0x7E,0x67,0x6D,0x27,0x5C,0xA1,0x21,0xC4,0x31,0x21,0x19,0x2A,0x6C,0x11,0x96,0x00,0x01,0x40,0x00,0x60,0x00,0x00,0x00,0x20,0x08,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,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,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,0x01,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,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,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,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,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x40,0x00,0x20,0x00,0x20,0x00,0x01,0x00,0x02,0x00,0x01,0x00,0x01,0x00,0x00,0x00,0x20,0x00,0x80,0x00,0xCD,0x9D,0x0E,0xA6,0xA7,0x6C,0x25,0x5C,0x48,0x64,0xEB,0x74,0x6C,0x9E,0x26,0x86,0x48,0x86,0xC3,0x43,0xC1,0x1A,0xED,0x9E,0x25,0x76,0x47,0x86,0x4A,0x86,0xC1,0x33,0x49,0x86,0x09,0x7E,0x28,0x7E,0x48,0x86,0x48,0x7E,0x89,0x86,0x66,0x65,0x83,0x4C,0x6A,0x8E,0x69,0x86,0x47,0x86,0x47,0x7E,0x28,0x7E,0x6A,0x86,0x62,0x44,0x28,0x7E,0x28,0x7E, +0x48,0x7E,0x47,0x7E,0x47,0x86,0x28,0x8E,0x87,0x75,0xC3,0x54,0xCA,0x8E,0x28,0x7E,0x28,0x86,0x28,0x86,0x48,0x7E,0x2B,0x86,0x48,0x64,0x80,0x00,0x23,0x3B,0x4A,0x8E,0x48,0x86,0x27,0x7E,0x48,0x7E,0x28,0x7E,0xAA,0x8E,0x25,0x5D,0x04,0x5D,0x69,0x86,0x27,0x7E,0x68,0x86,0x47,0x7E,0x49,0x86,0x29,0x7E,0x83,0x4C,0x08,0x7E,0x48,0x86,0x09,0x7E,0x68,0x86,0x47,0x86,0x48,0x86,0xA8,0x6D,0x83,0x4C,0xAA,0x8E,0x07,0x7E,0x28,0x7E,0x49,0x86,0x48,0x86,0x69,0x86,0xE1,0x33,0x09,0x7E,0x69,0x86,0x46,0x7E,0x48,0x8E,0x87,0x75,0xC0,0x01,0xCA,0x75,0x2A,0x7E,0x48,0x7E,0x67,0x7E,0x27,0x7E,0x48,0x7E,0x28,0x7E,0x48,0x7E,0x48,0x7E,0x28,0x7E,0x27,0x7E,0x27,0x7E,0xA8,0x86, +0xC5,0x31,0x40,0x00,0xC3,0x3A,0x83,0x43,0x00,0x23,0x4A,0x8E,0x48,0x86,0xE6,0x7D,0x08,0x86,0x6B,0x8E,0xEB,0x7D,0xA6,0x54,0x80,0x2B,0x82,0x54,0x69,0x8E,0x89,0x96,0x84,0x6D,0xA4,0x5C,0xC5,0x53,0x03,0x2A,0xA1,0x08,0x20,0x00,0x20,0x00,0x43,0x19,0xA8,0x42,0xA1,0x00,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x08,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,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,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,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,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,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x20,0x00,0x00,0x00,0x00,0x00,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,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x40,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x00,0x00,0x00,0x08,0x00,0x00,0x20,0x00,0x47,0x53, +0x01,0x19,0x60,0x00,0x80,0x00,0x40,0x00,0x40,0x00,0x60,0x22,0x08,0x8E,0x2A,0x8E,0x03,0x33,0x00,0x12,0xAD,0x96,0xE5,0x75,0x47,0x86,0xE2,0x43,0x68,0x6D,0x29,0x7E,0x08,0x7E,0x08,0x7E,0x08,0x86,0xE8,0x7D,0xC9,0x7D,0x02,0x44,0x2A,0x86,0x08,0x7E,0xE7,0x7D,0x07,0x7E,0x08,0x7E,0xE9,0x7D,0x67,0x6D,0x63,0x4C,0x6A,0x8E,0x07,0x7E,0xE8,0x7D,0x08,0x7E,0xE7,0x7D,0xE8,0x85,0xE5,0x64,0x26,0x65,0x4A,0x86,0x08,0x7E,0xE8,0x85,0x08,0x86,0x08,0x7E,0xCA,0x7D,0x07,0x5C,0x80,0x00,0x43,0x43,0xEA,0x85,0x28,0x7E,0xE8,0x7D,0xE8,0x7D,0x09,0x86,0xE8,0x7D,0xA7,0x75,0x83,0x54,0x2A,0x86,0x09,0x86,0xE7,0x7D,0x08,0x7E,0xE8,0x7D,0x4A,0x8E,0xE5,0x5C,0xE5,0x5C,0x29,0x86, +0x2A,0x86,0xE8,0x7D,0x07,0x7E,0xE7,0x75,0x4A,0x8E,0x42,0x44,0x87,0x75,0x09,0x86,0x09,0x86,0xE8,0x7D,0xC7,0x7D,0xE8,0x7D,0x09,0x86,0xC1,0x3B,0x09,0x86,0x28,0x86,0xE8,0x8D,0x48,0x75,0xC0,0x00,0x8B,0x7D,0x0A,0x86,0x07,0x7E,0x67,0x7E,0x47,0x7E,0x28,0x7E,0x49,0x7E,0x28,0x7E,0x27,0x7E,0x68,0x86,0x27,0x7E,0x28,0x7E,0xCB,0x96,0xC6,0x31,0x20,0x00,0xE0,0x00,0x87,0x64,0x6B,0x8E,0x08,0x7E,0x48,0x86,0x48,0x86,0x6A,0x8E,0xE6,0x64,0x45,0x54,0x04,0x44,0x27,0x6D,0x4A,0x8E,0xE7,0x85,0xA2,0x5C,0xC7,0x64,0x24,0x43,0x20,0x00,0x20,0x00,0x01,0x00,0x21,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x20,0x00,0x00,0x00,0x00,0x08,0x00,0x10,0x00,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,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x20,0x00,0x20,0x00,0x00,0x00,0x01,0x00,0x01,0x00,0x01,0x00,0x00,0x00,0x01,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,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x20,0x00,0x00,0x00,0x40,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x00,0x00,0x00,0x00,0x40,0x00,0x00,0x00,0x40,0x00,0x20,0x00,0x20,0x00,0x41,0x00,0x60,0x00,0x41,0x3B,0x4D,0x9E,0x26,0x43,0x80,0x00,0x80,0x22,0x80,0x12,0xE0,0x01,0x20,0x1A,0x20,0x1A,0x40,0x12,0x40,0x12,0x40,0x12,0x00,0x12,0x80,0x22,0xC0,0x01,0x40,0x12,0x60,0x1A,0x40,0x12,0x60,0x1A,0x60,0x1A,0x00,0x0A,0x80,0x1A,0xE0,0x09,0x00,0x0A,0x40,0x12,0x40,0x12, +0x40,0x12,0x60,0x1A,0x40,0x1A,0x00,0x1A,0xC0,0x11,0x40,0x12,0x60,0x12,0x20,0x12,0x20,0x12,0x60,0x1A,0x60,0x12,0x60,0x1A,0x80,0x11,0x40,0x00,0x20,0x09,0x60,0x1A,0x40,0x12,0x40,0x12,0x60,0x1A,0x40,0x1A,0x40,0x12,0x40,0x12,0xE0,0x09,0x20,0x12,0x20,0x12,0x40,0x1A,0x60,0x1A,0x60,0x1A,0x40,0x12,0x40,0x12,0xC0,0x01,0x20,0x12,0x20,0x12,0x60,0x1A,0x60,0x1A,0x40,0x12,0x60,0x1A,0x40,0x12,0xA0,0x01,0x40,0x12,0x40,0x12,0x40,0x12,0x60,0x1A,0x20,0x12,0x60,0x1A,0x40,0x12,0xA0,0x01,0x40,0x1A,0x40,0x22,0x00,0x1A,0xC0,0x00,0x6C,0x7D,0xEA,0x85,0x27,0x86,0x46,0x7E,0x27,0x7E,0x28,0x7E,0x49,0x86,0x29,0x86,0x07,0x7E,0x07,0x7E,0x27,0x86,0x49,0x86,0x8B,0x8E, +0xC7,0x39,0x40,0x00,0x41,0x2A,0xCB,0x8D,0xE9,0x7D,0x29,0x86,0x28,0x86,0xC7,0x75,0x63,0x54,0x24,0x4C,0xE4,0x43,0xCB,0x85,0x2B,0x8E,0x47,0x75,0x22,0x54,0x27,0x75,0xC7,0x42,0x20,0x00,0x01,0x08,0x01,0x00,0x01,0x00,0x00,0x00,0x40,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x00,0x08,0x00,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,0x01,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x00,0x01,0x00,0x00,0x00,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,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,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,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x00,0x01,0x00,0x00,0x00, +0x01,0x00,0x00,0x00,0x00,0x00,0x01,0x00,0x00,0x00,0x60,0x00,0xA0,0x00,0x6D,0x8D,0xE7,0x4A,0xC3,0x21,0x31,0xA6,0xE9,0x74,0x23,0x43,0x6F,0x9D,0xEE,0x8C,0x4E,0x8D,0x4C,0x8D,0x2D,0x8D,0x2E,0x8D,0x0E,0x85,0x26,0x4B,0x4E,0x8D,0xEC,0x84,0x4D,0x8D,0x2C,0x85,0x4D,0x8D,0x0D,0x85,0x6F,0x95,0x06,0x43,0x6E,0x95,0x2D,0x8D,0x0C,0x85,0x2E,0x85,0x0D,0x85,0x0C,0x8D,0x6E,0x9D,0x66,0x5B,0xED,0x84,0x4E,0x85,0x6E,0x8D,0x4D,0x8D,0x2C,0x85,0x4C,0x85,0x0D,0x85,0x8A,0x63,0x20,0x00,0xA6,0x42,0x4E,0x8D,0x4D,0x8D,0x2D,0x8D,0x0E,0x85,0x0D,0x85,0x4D,0x8D,0x4C,0x8D,0x86,0x53,0x2E,0x8D,0x2F,0x8D,0x2E,0x8D,0x2C,0x8D,0x0B,0x85,0x0C,0x85,0x4E,0x8D,0x67,0x53,0x2E,0x8D, +0x4C,0x8D,0x0D,0x85,0x2E,0x8D,0x4D,0x8D,0x0B,0x85,0x8E,0x95,0x88,0x53,0xED,0x84,0x4E,0x8D,0x0C,0x85,0x2E,0x8D,0x2E,0x8D,0x0C,0x85,0xAE,0x95,0xA7,0x53,0x8D,0x7C,0x2C,0x8D,0xAC,0x74,0xA0,0x00,0x2C,0x7D,0x0A,0x8E,0x06,0x7E,0x47,0x86,0x48,0x86,0x49,0x86,0xE8,0x7D,0x09,0x7E,0x09,0x86,0x49,0x86,0x8A,0x96,0x87,0x75,0xC1,0x3B,0xC3,0x18,0x20,0x00,0xC0,0x19,0x2D,0x9E,0x4B,0x8E,0x87,0x75,0xE4,0x5C,0x62,0x4C,0x43,0x4C,0xC5,0x5C,0xAD,0x9E,0xA9,0x7D,0x23,0x4C,0xC7,0x6C,0xAD,0x95,0x80,0x11,0x21,0x00,0x01,0x00,0x02,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x21,0x08,0x00,0x00,0x00,0x00,0x00,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,0x01,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x00,0x01,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,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,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,0x01,0x00,0x01,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x20,0x00,0x20,0x00,0x01,0x00,0x21,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x00,0x01,0x00,0x40,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x40,0x00,0x60,0x00,0x4F,0x95,0xE8,0x4A,0x20,0x00,0x40,0x00,0x60,0x00,0x40,0x00,0x20,0x00,0x00,0x00,0x00,0x00,0x40,0x00,0x20,0x00,0x40,0x00,0x00,0x00,0x20,0x00,0x40,0x00,0x40,0x00,0x20,0x00,0x20,0x00,0x20,0x00,0x40,0x00,0x20,0x00,0x40,0x00,0x20,0x00,0x20,0x00,0x40,0x00, +0x20,0x00,0x20,0x00,0x20,0x00,0x00,0x00,0x40,0x08,0x40,0x00,0x40,0x00,0x20,0x00,0x20,0x00,0x20,0x00,0x60,0x00,0x60,0x00,0x00,0x00,0x01,0x08,0x00,0x00,0x40,0x00,0x20,0x00,0x00,0x00,0x40,0x00,0x00,0x00,0x40,0x00,0x40,0x00,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x20,0x00,0x60,0x00,0x20,0x00,0x00,0x00,0x40,0x00,0x00,0x00,0x40,0x00,0x20,0x00,0x20,0x00,0x20,0x00,0x40,0x00,0x20,0x00,0x20,0x00,0x20,0x00,0x20,0x00,0x20,0x00,0x20,0x00,0x20,0x00,0x20,0x00,0x20,0x00,0x00,0x00,0x00,0x00,0x40,0x00,0x40,0x00,0x80,0x00,0x6B,0x85,0xA9,0x85,0x27,0x8E,0x06,0x7E,0x07,0x7E,0x08,0x86,0x6A,0x8E,0x29,0x86,0xC9,0x7D,0x48,0x75,0xA1,0x3B,0x00,0x23,0x65,0x6D, +0x64,0x21,0x60,0x00,0xA0,0x19,0x2A,0x7D,0x45,0x5C,0xE6,0x64,0x43,0x54,0xC4,0x5C,0xE9,0x7D,0x2A,0x86,0x63,0x4C,0x83,0x54,0xEA,0x85,0x89,0x6C,0x40,0x00,0x20,0x00,0x01,0x08,0x21,0x00,0x00,0x00,0x00,0x00,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,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,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,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,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x02,0x00,0x02,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x20,0x00,0x20,0x00,0x20,0x00,0x21,0x00,0x00,0x00,0x20,0x00,0x00,0x00,0x00,0x00,0x01,0x00,0x20,0x00,0x20,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x20,0x00,0x00,0x00,0x40,0x00,0x60,0x00,0x49,0x5B,0xE9,0x5A,0x20,0x00,0xA1,0x08,0x20,0x00,0x00,0x00,0x01,0x08,0x02,0x08,0x03,0x08,0x00,0x00,0x21,0x00,0x02,0x00,0x02,0x00,0x01,0x00,0x21,0x00,0x00,0x00,0x00,0x00,0x01,0x00,0x02,0x00,0x01,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x02,0x00,0x02,0x00,0x02,0x00,0x02,0x00,0x01,0x08,0x00,0x08,0x00,0x08,0x01,0x00,0x22,0x00,0x02,0x00,0x20,0x00,0x20,0x00,0x20,0x00,0x00,0x00,0x03,0x08,0x02,0x08,0x02,0x08,0x01,0x00,0x20,0x08,0x02,0x08,0x02,0x00,0x02,0x00,0x21,0x08,0x00,0x00,0x21,0x08,0x02,0x00,0x03,0x00,0x02,0x00,0x00,0x00,0x20,0x08,0x00,0x00,0x22,0x08,0x02,0x00,0x03,0x08, +0x01,0x00,0x00,0x00,0x00,0x00,0x01,0x00,0x01,0x00,0x01,0x00,0x00,0x00,0x01,0x00,0x01,0x00,0x02,0x00,0x01,0x00,0x01,0x08,0x01,0x00,0x02,0x00,0x01,0x00,0x01,0x00,0x01,0x00,0x80,0x00,0x60,0x00,0x4A,0x85,0xE9,0x8D,0x07,0x86,0x06,0x86,0x47,0x86,0x44,0x65,0x21,0x44,0xC3,0x5C,0x43,0x4C,0x42,0x33,0xA7,0x5C,0x2B,0x8E,0x89,0x96,0x63,0x21,0x40,0x00,0x20,0x01,0x88,0x6C,0x49,0x7D,0x04,0x54,0x07,0x6D,0x2A,0x8E,0xA3,0x54,0x82,0x4C,0xC7,0x75,0x6A,0x8E,0x48,0x75,0x80,0x00,0x40,0x00,0x02,0x00,0x00,0x08,0x20,0x00,0x40,0x00,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x20,0x00,0x20,0x00,0x20,0x00,0x00,0x00,0x00,0x00,0x20,0x00,0x40,0x00,0x20,0x00, +0x00,0x00,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,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,0x01,0x00,0x00,0x00,0x00,0x00,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,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x40,0x00,0x60,0x00,0x07,0x3B,0x69,0x4B,0x60,0x00,0x80,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x10,0x04,0x10,0x03,0x08,0x02,0x08,0x02,0x10,0x01,0x08,0x00,0x08,0x00,0x08,0x00,0x08,0x00,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x03,0x00,0x02,0x00,0x01,0x08,0x01,0x00,0x02,0x08,0x03,0x00,0x04,0x08,0x03,0x08,0x02,0x08,0x00,0x00,0x01,0x00,0x02,0x00,0x02,0x00,0x01,0x00,0x00,0x00,0x20,0x00,0x03,0x08,0x02,0x08,0x02,0x08,0x02,0x08,0x02,0x08,0x01,0x08,0x01,0x08,0x01,0x08,0x01,0x08,0x02,0x10,0x02,0x08,0x02,0x08,0x02,0x08,0x02,0x08,0x02,0x08,0x02,0x08,0x01,0x08,0x02,0x08,0x02,0x00,0x03,0x08,0x03,0x08,0x03,0x08,0x02,0x08,0x02,0x08,0x02,0x08,0x02,0x08,0x02,0x00,0x02,0x00,0x01,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x02,0x00,0x01,0x00,0x80,0x00,0x4C,0x7D,0xE9,0x7D,0x26,0x7E,0x26,0x7E,0xC7,0x7D,0x68,0x75,0x48,0x6D,0x43,0x4C,0xE6,0x5C,0x0A,0x86,0xC9,0x7D,0x66,0x75,0x24,0x6D, +0xE2,0x18,0x20,0x00,0x61,0x19,0xAA,0x6C,0x46,0x54,0xCA,0x7D,0x65,0x5D,0xA0,0x3C,0xC3,0x65,0x65,0x7E,0x05,0x7E,0xE7,0x8D,0xA7,0x74,0x40,0x00,0x20,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,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x20,0x00,0x00,0x00,0x01,0x00,0x01,0x00,0x00,0x00,0xE0,0x10,0x05,0x43,0x6C,0x85,0x02,0x3B,0x80,0x00,0x40,0x00,0x20,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x20,0x00,0x60,0x00,0x60,0x00,0x60,0x00,0x40,0x00,0x20,0x00,0x20,0x00,0x40,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x40,0x00,0x20,0x00,0x40,0x00,0x80,0x00,0x40,0x00,0x40,0x00,0x20,0x00,0x40,0x00,0x40,0x00,0x60,0x00,0x40,0x00,0x00,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x40,0x00,0x80,0x00,0x40,0x00,0x40,0x00,0x60,0x00,0x40,0x00,0x60,0x00,0x40,0x00,0x40,0x00,0x40,0x00,0x60,0x00,0x60,0x00,0x40,0x00,0x60,0x00,0x60,0x00,0x40,0x00, +0x40,0x00,0x40,0x00,0x60,0x00,0x40,0x00,0x40,0x00,0x60,0x00,0x60,0x00,0x60,0x00,0x60,0x00,0x40,0x00,0x20,0x00,0x20,0x00,0x00,0x00,0x21,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x60,0x00,0x80,0x00,0x8A,0x7D,0x28,0x86,0x46,0x7E,0x02,0x5D,0xC2,0x54,0x04,0x5D,0x25,0x65,0x49,0x8E,0x87,0x6D,0x83,0x4C,0xA4,0x54,0xE5,0x64,0xC8,0x7D,0x44,0x21,0x40,0x00,0xC0,0x00,0x68,0x6C,0xC6,0x64,0x22,0x44,0xC3,0x54,0x69,0x86,0x8A,0x8E,0x29,0x86,0x6C,0x96,0x2E,0x9E,0x66,0x53,0x20,0x00,0x41,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,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x20,0x00,0x00,0x00,0x22,0x08,0x01,0x00,0x20,0x00,0x40,0x19,0xB1,0xBE,0x4C,0xA6,0xAA,0x8D,0x0B,0x85,0x44,0x3A,0x00,0x00,0x01,0x00,0x22,0x08,0x00,0x00,0x02,0x19,0x03,0x5D,0xA3,0x54,0x84,0x54,0x45,0x54,0xEA,0x6C,0xC8,0x53,0xC0,0x00,0x20,0x00,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x43,0x2A,0xCB,0x74,0x66,0x64,0x44,0x5C,0x84,0x5C,0x64,0x54,0xA6,0x5C,0x65,0x54,0x65,0x5C,0x46,0x5C,0x08,0x64,0xC0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x2B,0xC6,0x6C,0x44,0x54,0x65,0x54,0x66,0x5C,0x66,0x54,0x66,0x54,0x65,0x54,0x65,0x54,0x85,0x5C,0x85,0x54,0x85,0x54,0xA5,0x54,0x85,0x54,0x86,0x54,0xA6,0x54,0xC6,0x64,0x64,0x5C,0x65,0x54,0x85,0x5C,0x84,0x54,0x83,0x54,0xA3,0x5C,0x83,0x5C,0x84,0x64,0x88,0x6C,0x4A,0x6C,0x01,0x11,0x20,0x00,0x00,0x00,0x20,0x08,0x00,0x00,0x20,0x11,0x69,0x6C,0x65,0x5C,0x08,0x86,0x06,0x76,0x26,0x76,0x67,0x7E,0x88,0x8E,0x68,0x86,0x67,0x86,0x26,0x7E,0x07,0x7E,0x49,0x86,0x8C,0x96,0x2C,0x8E,0x48,0x75, +0xC2,0x10,0x20,0x00,0xE0,0x08,0x46,0x6C,0x48,0x7D,0xCC,0xA6,0xCD,0xA6,0x0B,0x8E,0x0A,0x6D,0x6A,0x64,0x26,0x3B,0xA2,0x19,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,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,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,0x40,0x00,0x20,0x09,0xE0,0x19,0x20,0x22,0xE3,0x42,0x61,0x19,0x00,0x00,0x01,0x00,0x01,0x00,0x20,0x00,0x84,0x29,0x6A,0x8E,0x4A,0x86,0x4C,0x8E,0x4E,0x96,0xA6,0x4B,0xC0,0x00,0x60,0x00,0x40,0x00,0x20,0x00,0x01,0x00,0x01,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x60,0x00,0x21,0x1A,0xEC,0x8D,0x29,0x86,0x88,0x8E,0x67,0x7E,0x67,0x7E,0x88,0x86,0x48,0x86,0x09,0x86,0x0D,0x96,0xC0,0x00,0x20,0x00,0x00,0x00,0x00,0x08,0x00,0x08,0xE0,0x43,0xAB,0x9E,0x08,0x86,0x49,0x8E,0x49,0x86,0x48,0x86,0x69,0x86,0x49,0x86,0x6A,0x86,0x29,0x7E,0x49,0x7E,0x49,0x86,0x48,0x7E,0x68,0x7E,0x68,0x7E,0x67,0x7E, +0x45,0x7E,0x67,0x86,0x28,0x7E,0x6B,0x8E,0x6C,0x8E,0x4B,0x8E,0x2A,0x8E,0x4B,0x96,0x2C,0x9E,0xA9,0x74,0xC0,0x00,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x60,0x09,0x4E,0x9E,0x08,0x86,0x46,0x86,0x25,0x76,0x47,0x76,0x48,0x7E,0xE6,0x75,0x05,0x76,0x25,0x7E,0x46,0x86,0x27,0x86,0x65,0x6D,0xE1,0x43,0x41,0x33,0xE4,0x4B,0xE2,0x10,0x40,0x00,0x20,0x11,0x4C,0x8D,0xE9,0x7C,0x42,0x4B,0x20,0x22,0x60,0x09,0xC0,0x00,0x40,0x00,0x20,0x00,0x20,0x00,0x21,0x00,0x41,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,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x20,0x00,0x00,0x00,0x00,0x00,0x20,0x00,0x20,0x00,0x40,0x00,0x40,0x00,0x40,0x00,0x40,0x00,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x40,0x00,0x60,0x09,0xE1,0x19,0x23,0x2A,0x82,0x19,0x60,0x00,0x20,0x00,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x20,0x00,0x40,0x00,0xA0,0x11,0x0B,0x8E,0xE8,0x7D,0x07,0x76,0x67,0x7E,0x26,0x76,0x46,0x76,0x28,0x7E,0xCB,0x85,0x00,0x01,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0xC2,0x43,0x8D,0x9E,0x87,0x7D,0x08,0x86,0x07,0x7E,0x27,0x7E,0x47,0x86,0x07,0x7E,0xC7,0x75,0x09,0x7E,0x09,0x7E,0x08,0x7E,0x28,0x7E,0x06,0x7E,0x25,0x7E,0x45,0x7E,0x25,0x7E,0x07,0x7E,0x2C,0x8E,0x27,0x54,0xC5,0x32,0x81,0x11,0x60,0x11,0x64,0x32,0x2B,0x74,0x41,0x19,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x80,0x00,0xC9,0x6C,0x49,0x8E,0x26,0x7E,0x47,0x7E,0x28,0x76,0x2A,0x7E,0xA8,0x75,0x65,0x6D,0x24,0x65,0xC3,0x5C,0xE1,0x43,0xA0,0x3B,0x65,0x5C,0x09,0x75,0x4B,0x85, +0x44,0x21,0x20,0x00,0x40,0x00,0xC0,0x08,0x40,0x00,0x40,0x00,0x20,0x00,0x20,0x00,0x20,0x00,0x20,0x00,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,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,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,0x01,0x00,0x01,0x00,0x01,0x00,0x21,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x21,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,0x02,0x00,0x21,0x00,0x40,0x00,0xC0,0x19,0xEC,0x95,0x2B,0x8E,0x09,0x86,0xE7,0x75,0xC6,0x75,0xA7,0x75,0x8A,0x7D,0xC0,0x00,0x40,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xC3,0x43,0x8D,0x9E,0x88,0x75,0x29,0x86,0x07,0x7E,0x06,0x7E,0x27,0x7E,0x06,0x7E,0x48,0x86,0x08,0x86,0xC7,0x7D,0xA7,0x7D,0xE8,0x85,0x08,0x86,0xE6,0x7D,0xA5,0x7D, +0x2A,0x96,0xC7,0x6C,0x60,0x09,0x40,0x00,0x00,0x00,0x42,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x20,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x20,0x00,0x20,0x00,0x60,0x00,0x81,0x2A,0x2A,0x8E,0xA5,0x75,0xE7,0x75,0xEA,0x7D,0x2C,0x8E,0xAB,0x85,0x08,0x75,0x6A,0x7D,0x2B,0x7D,0x0B,0x7D,0x07,0x5C,0xC3,0x32,0xC0,0x21,0x60,0x00,0x00,0x00,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x40,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x00,0x02,0x00,0x02,0x00,0x01,0x00,0x00,0x00,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x08,0x01,0x08,0x01,0x08,0x00,0x08,0x00,0x08,0x00,0x08,0x00,0x00,0x00,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x02,0x08,0x00,0x00,0x40,0x08,0x20,0x00,0x00,0x2A,0x6C,0x8D,0x6B,0x85,0x2C,0x9E,0x8D,0xA6,0x2C,0x9E,0x2E,0x9E,0xE0,0x00,0x60,0x00,0x20,0x00,0x00,0x00,0x00,0x00,0xC0,0x3B,0x8B,0x8E,0xE7,0x75,0x48,0x86,0x26,0x76,0x26,0x76,0x26,0x76,0x26,0x7E,0xE6,0x75,0x08,0x86,0x8A,0x96,0x4A,0x8E,0x68,0x7D,0x89,0x7D,0x4C,0x9E,0x6D,0x9E,0x29,0x74,0x80,0x00,0x20,0x00,0x20,0x00,0x21,0x00,0x01,0x00,0x21,0x08,0x20,0x08,0x40,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x40,0x00,0x60,0x11,0xEC,0x95,0xAC,0xA6,0x4B,0x96,0xCB,0x85,0x89,0x6C,0x28,0x64,0x26,0x4B,0x02,0x22,0xA0,0x00,0x40,0x00,0x60,0x00,0x40,0x00,0x20,0x00,0x20,0x00, +0x20,0x00,0x00,0x00,0x01,0x00,0x22,0x08,0x01,0x00,0x02,0x00,0x01,0x00,0x01,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,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,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,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,0x08,0x00,0x08,0x00,0x00,0x20,0x00,0x40,0x00,0x40,0x00,0x00,0x09,0x80,0x19,0x00,0x22,0xE3,0x42,0x87,0x5B,0xA0,0x00,0x20,0x00,0x00,0x00,0x01,0x00,0x01,0x00,0xE2,0x3B,0x8C,0x96,0xC8,0x75,0x07,0x7E,0x26,0x76,0x26,0x7E,0x26,0x7E,0x27,0x7E,0x08,0x86,0x2B,0x8E,0x25,0x54,0xC0,0x09,0xE0,0x00,0xC0,0x00,0x80,0x11,0x46,0x4B, +0x60,0x08,0x00,0x00,0x00,0x00,0x20,0x00,0x00,0x00,0x20,0x00,0x20,0x00,0x20,0x00,0x20,0x00,0x20,0x00,0x00,0x00,0x21,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x20,0x00,0x67,0x53,0xC2,0x3A,0x00,0x1A,0x20,0x01,0x80,0x00,0x40,0x00,0x40,0x00,0x20,0x00,0x40,0x00,0x00,0x00,0x21,0x00,0x41,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x01,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,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x20,0x00,0x20,0x00,0x20,0x00,0x20,0x00,0x20,0x00,0x20,0x00,0x00,0x00,0x01,0x00,0x01,0x00,0x01,0x00,0x62,0x22,0x89,0x64,0x2A,0x75,0x89,0x7D,0x2A,0x8E,0x2A,0x8E,0x4A,0x8E,0xAA,0x85,0xA8,0x6C,0x41,0x22,0x60,0x00,0x40,0x00,0x40,0x00,0x20,0x00,0x20,0x00,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x20,0x00,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x20,0x00,0x40,0x00,0x40,0x00,0x40,0x00,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,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,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,0x01,0x00,0x01,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,0x01,0x00,0x00,0x00,0x00,0x00,0x20,0x00,0x80,0x00,0x40,0x00,0xC0,0x00,0xE0,0x19,0x61,0x2A,0x00,0x22,0x00,0x01,0x60,0x00,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x01,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,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,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,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,0x01,0x00,0x01,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,0x21,0x00,0x20,0x00,0x20,0x00,0x20,0x00,0x20,0x00,0x60,0x00,0x20,0x00,0x40,0x00,0x20,0x00,0x01,0x00,0x01,0x00,0x01,0x00,0x01,0x00,0x01,0x00,0x00,0x00,0x01,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x00,0x08,0x00,0x08,0x00,0x08,0x00,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x01,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,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,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,0x02,0x00,0x02,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,0x08,0x00,0x08,0x00,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x21,0x00,0x21,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,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,0x00,0x00,0x00,0x00,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x00,0x01,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,0x01,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,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x00,0x01,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,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,0x01,0x00,0x01,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,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x00,0x01,0x00,0x02,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,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,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,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x00,0x01,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x20,0x00,0x20,0x00,0x20,0x00,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x02,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x01,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,0x01,0x00,0x01,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,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,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,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x00,0x01,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x02,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x01,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,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,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,0x01,0x00,0x02,0x00,0x20,0x00,0x00,0x00,0x00,0x00,0x01,0x00,0x01,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x00,0x20,0x00,0x00,0x00,0x00,0x00,0x21,0x00,0x01,0x00,0x01,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,0x01,0x00,0x02,0x00,0x03,0x00,0x02,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x00,0x00,0x00,0x20,0x00,0x20,0x00,0x00,0x00,0x01,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,0x01,0x00,0x01,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,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,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,0x20,0x00,0x00,0x08,0x00,0x08,0x00,0x00,0x01,0x00,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,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,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,0x20,0x00,0x20,0x00,0x00,0x00,0x00,0x00,0x01,0x00,0x21,0x00,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,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x20,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,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,0x08,0x20,0x00,0xC0,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,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,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,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,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,0x08,0x40,0x00,0xE8,0x3A,0x25,0x22,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,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,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,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,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,0x18,0x20,0x00,0xE7,0x2A,0x24,0x12,0x40,0x00,0x21,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,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,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,0x08,0x60,0x00,0x28,0x2B,0x64,0x12,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,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,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,0x10,0x60,0x00,0x28,0x2B,0x44,0x12,0x60,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,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,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,0x08,0x40,0x00,0x89,0x3B,0x85,0x1A,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,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x20,0x00,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,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,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,0x08,0x60,0x00,0x69,0x3B,0x65,0x1A,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,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x21,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,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,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,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,0x10,0x40,0x00,0x89,0x43,0x85,0x22,0x20,0x00,0x01,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,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x20,0x00,0x00,0x00,0x20,0x00,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,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,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,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,0x08,0x40,0x00,0xA9,0x3B,0x65,0x22,0x20,0x00,0x00,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,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x20,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x20,0x00,0x60,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x20,0x00,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,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,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,0x08,0x80,0x00,0xCA,0x3B,0x85,0x1A,0x40,0x00,0x00,0x00,0x00,0x00,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,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x20,0x00,0x00,0x00,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x00,0x00,0x00,0x00,0x20,0x00,0x00,0x00,0x40,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,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,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,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,0x10,0x80,0x00,0x0A,0x3C,0xC5,0x1A,0x60,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x20,0x00,0x40,0x00,0xE2,0x08,0x60,0x00,0x60,0x00,0x20,0x00,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x20,0x00,0x40,0x00,0x40,0x00,0x81,0x00,0x20,0x00,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,0x20,0x00,0x00,0x00,0x20,0x00,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,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,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,0x10,0x60,0x00,0x2A,0x2C,0x05,0x0B,0x60,0x00,0x00,0x00,0x00,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,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x20,0x00,0x40,0x00,0x60,0x00,0x68,0x2A,0x87,0x22,0x43,0x01,0x60,0x00,0x60,0x00,0x60,0x00,0x20,0x00,0x20,0x00,0x20,0x00,0x20,0x00,0x60,0x00,0x20,0x00,0x20,0x00,0x20,0x00,0x20,0x00,0x40,0x00,0x40,0x00,0x40,0x00,0x63,0x09,0x26,0x22,0x67,0x32,0x20,0x00,0x20,0x00, +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,0x20,0x00,0x20,0x00,0x20,0x00,0x40,0x00,0x81,0x00,0x81,0x00,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,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,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,0xA0,0x00,0x8B,0x2C,0xE9,0x1B,0x62,0x01,0x00,0x00,0x01,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,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,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x40,0x00,0x60,0x00,0x22,0x01,0x01,0x01,0xE4,0x01,0x82,0x01,0xA4,0x01,0x60,0x00,0x60,0x00,0x40,0x00,0x40,0x00,0x80,0x00,0x40,0x00,0x60,0x00,0x60,0x00,0x80,0x00,0x20,0x00,0x40,0x00,0x60,0x00,0xA0,0x00,0x83,0x01,0x63,0x01,0x05,0x0A,0xE1,0x00,0x60,0x00,0x80,0x00,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,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,0x20,0x00,0x00,0x00,0x20,0x00,0x60,0x00,0x43,0x11,0xE6,0x21,0x64,0x11,0x40,0x00,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,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,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,0xA4,0x11,0x4E,0x45,0x4E,0x45,0xE8,0x2A,0x21,0x08,0x01,0x10,0x00,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,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,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,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,0x08,0x64,0x19,0x26,0x1A,0x05,0x0A,0x45,0x0A,0x08,0x1B,0xA7,0x12,0xC4,0x01,0xE9,0x2A,0x46,0x22,0x43,0x09,0x64,0x09,0x26,0x22,0xC4,0x11,0x63,0x09,0xC4,0x11,0x06,0x22,0x84,0x11,0x63,0x09,0x05,0x12,0x09,0x2B,0xE4,0x01,0xE8,0x1A,0xC7,0x12,0x66,0x12,0x83,0x01,0xC4,0x09, +0x45,0x21,0xA2,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x20,0x00,0xE2,0x08,0xA5,0x21,0xE6,0x21,0xE6,0x21,0xE6,0x19,0xC5,0x11,0x61,0x08,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,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x00,0x00,0x20,0x00,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x42,0x00,0x05,0x02,0xCF,0x35,0xAD,0x3D,0xA6,0x23,0xA0,0x00,0x21,0x01,0x60,0x00,0x00,0x00,0x00,0x10,0x00,0x08,0x00,0x00,0x20,0x00,0x00,0x00,0x00,0x08,0x00,0x08,0x20,0x00,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,0x08,0x00,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,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x20,0x00,0x60,0x00,0x43,0x01,0x26,0x12,0x05,0x0A,0x42,0x01,0xC7,0x12,0x04,0x02,0xC7,0x12,0xC2,0x01,0x89,0x0B,0x06,0x03,0x02,0x02,0x24,0x02,0xC3,0x09,0x45,0x0A,0xE3,0x01,0x45,0x0A,0xC4,0x09,0x26,0x12,0xC3,0x01,0x86,0x02,0x04,0x0A,0xC4,0x11,0xA2,0x01,0xC8,0x03,0xE8,0x03,0xE3,0x01,0x06,0x22,0xC5,0x11,0x86,0x02,0x22,0x01,0xA4,0x09,0x26,0x1A,0x44,0x09,0x81,0x00,0x20,0x00,0x00,0x00,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, +0x02,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x40,0x00,0xA0,0x00,0x61,0x01,0xE4,0x09,0x05,0x0A,0x25,0x12,0x66,0x1A,0x46,0x1A,0x05,0x12,0x06,0x0A,0x64,0x01,0x60,0x00,0x41,0x00,0x00,0x00,0x00,0x08,0x20,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x00,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,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,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,0x20,0x08,0x20,0x00,0x40,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x20,0x00,0x43,0x01,0xEB,0x2B,0x6D,0x35,0x8C,0x35,0x0A,0x3D,0x6A,0x3C,0xCE,0x54,0x83,0x09,0x20,0x00,0x00,0x08,0x00,0x08,0x20,0x00,0x40,0x00,0x20,0x00,0x00,0x00,0x00,0x08, +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,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,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,0x00,0xA5,0x11,0xE2,0x00,0xC1,0x00,0xA4,0x09,0x62,0x01,0xA3,0x01,0x42,0x01,0x42,0x01,0x69,0x23,0xE9,0x13,0x88,0x0B,0x20,0x01,0x63,0x11,0x42,0x01,0x01,0x01,0x42,0x01,0x46,0x1A,0x02,0x01,0x02,0x01,0x42,0x01,0xA3,0x01,0x20,0x01,0x48,0x1B,0x2A,0x24,0x06,0x03,0x00,0x01,0x02,0x09,0x64,0x11,0x22,0x01, +0x22,0x01,0x02,0x01,0x43,0x09,0xC5,0x19,0x81,0x00,0x20,0x00,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,0x01,0x00,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x00,0x41,0x00,0xE2,0x08,0x62,0x09,0xE4,0x11,0x25,0x12,0x25,0x0A,0x45,0x12,0x85,0x1A,0x85,0x1A,0x86,0x22,0xE5,0x09,0x06,0x12,0xA5,0x09,0x61,0x00,0x21,0x00,0x00,0x08,0x00,0x00,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x00,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,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x00,0x00,0x00,0x00,0x20,0x00,0x00,0x00,0x00,0x00,0x20,0x00,0xC6,0x21,0x27,0x1B,0xCD,0x34,0x30,0x4E,0xCC,0x3D,0xEC,0x45,0x8C,0x45,0xF1,0x65,0xE4,0x01,0x20,0x00,0x00,0x00,0x00,0x08,0x20,0x00,0x20,0x00,0x20,0x00,0x00,0x00,0x00,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,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,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,0x20,0x00,0xC2,0x08,0x20,0x00,0x20,0x00,0x00,0x00,0xC2,0x08,0x60,0x00,0x40,0x00,0x20,0x00,0x20,0x00,0xE4,0x11,0xA6,0x02,0x27,0x0B,0x82,0x01,0x20,0x00,0x00,0x00,0x40,0x00,0x80,0x00,0x23,0x01,0x00,0x00,0x00,0x00,0x20,0x00,0xA0,0x00,0x44,0x02,0x68,0x13,0x48,0x2B,0xE0,0x00,0x80,0x00,0x20,0x00,0x20,0x00,0x00,0x00,0x60,0x00,0x40,0x00,0xC2,0x00,0x40,0x00,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, +0x01,0x00,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x02,0x00,0xC4,0x08,0x65,0x19,0xA4,0x11,0xE4,0x11,0x05,0x12,0x25,0x12,0x65,0x12,0x84,0x1A,0xC4,0x1A,0xE5,0x22,0x86,0x1A,0x05,0x0A,0x88,0x22,0xE2,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x61,0x00,0x47,0x22,0xC4,0x02,0x8B,0x24,0x71,0x56,0x2F,0x46,0x6F,0x56,0x0E,0x4E,0x72,0x66,0x24,0x02,0x80,0x00,0x40,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x21,0x00,0x01,0x00,0x00,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,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x20,0x00,0x61,0x08,0xA2,0x08,0x00,0x00,0x20,0x08,0xE3,0x20,0x40,0x08,0x00,0x00,0x00,0x00,0x00,0x08,0x20,0x08,0x60,0x00,0xA7,0x12,0x07,0x13,0xC7,0x1A,0x21,0x01,0x00,0x08,0x20,0x00,0xA0,0x00,0x23,0x11,0x00,0x08,0x00,0x10,0x40,0x00,0x45,0x02,0x88,0x03,0x48,0x0B,0xE4,0x11,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x08, +0x40,0x00,0x03,0x09,0xA1,0x00,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,0x01,0x00,0x00,0x00,0x00,0x00,0x20,0x00,0x01,0x00,0x63,0x00,0x46,0x19,0x85,0x11,0xA4,0x11,0xE5,0x11,0x25,0x12,0x65,0x12,0xA5,0x1A,0xC4,0x1A,0xE4,0x22,0x25,0x2B,0x07,0x2B,0x45,0x0A,0x66,0x12,0x63,0x09,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,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x20,0x00,0x20,0x00,0x00,0x00,0x00,0x08,0x00,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x00,0x00,0x20,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x40,0x00,0x87,0x12,0x8A,0x1C,0x2C,0x2D,0xAE,0x35,0x6C,0x2D,0x6C,0x35,0x6C,0x3D,0x6D,0x35,0xED,0x24,0xCE,0x34,0x88,0x22,0x00,0x00,0x00,0x08,0x01,0x08,0x01,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,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x40,0x00,0x81,0x00,0x20,0x00,0x00,0x00,0x20,0x00,0x81,0x08,0x20,0x00,0x00,0x00,0x00,0x08,0x00,0x08,0x00,0x00,0x40,0x00,0x21,0x01,0xA7,0x12,0xC7,0x12,0x65,0x0A,0x40,0x08,0x40,0x00,0xE2,0x00,0x03,0x11,0x00,0x08,0x00,0x08,0xC1,0x00,0xE7,0x02,0x88,0x03,0x03,0x02,0xA0,0x00,0x20,0x00,0x00,0x00,0x20,0x00,0x00,0x00,0x00,0x08,0x81,0x08,0x81,0x08,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, +0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x41,0x00,0x05,0x09,0x86,0x11,0xA5,0x11,0xE5,0x11,0x25,0x12,0x45,0x12,0x85,0x1A,0xA5,0x1A,0xE4,0x1A,0x04,0x23,0x45,0x2B,0x46,0x2B,0xE6,0x1A,0x44,0x0A,0x46,0x1A,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,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x20,0x00,0x20,0x00,0x00,0x00,0x00,0x08,0x00,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x60,0x00,0xE5,0x09,0x6A,0x1B,0xAA,0x1C,0x0F,0x3E,0x6C,0x25,0xCD,0x35,0x8D,0x3D,0x6C,0x3D,0xAD,0x35,0x0F,0x36,0x11,0x46,0x68,0x13,0xA0,0x00,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,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x80,0x00,0xA1,0x00,0x40,0x00,0x20,0x00,0x03,0x11,0x40,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x00,0x00,0x40,0x00,0x40,0x00,0xC1,0x00,0x46,0x12,0xE7,0x0A,0x03,0x02,0xC5,0x19,0x80,0x00,0xE2,0x00,0xE3,0x10,0x00,0x00,0xC1,0x00,0x04,0x02,0x06,0x03,0xE6,0x02,0x25,0x02,0xE2,0x00,0x00,0x00,0x20,0x00,0x20,0x00,0x20,0x00,0x41,0x00, +0xC3,0x18,0x00,0x00,0x20,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,0x01,0x00,0x01,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,0x01,0x00,0x00,0x00,0x00,0x00,0x20,0x00,0xC2,0x00,0x85,0x11,0x85,0x09,0xC4,0x11,0x04,0x12,0x45,0x12,0x65,0x1A,0x85,0x1A,0xC5,0x1A,0xE5,0x22,0x25,0x23,0x45,0x23,0x66,0x33,0x86,0x2B,0x64,0x0A,0x86,0x1A,0x60,0x00,0x00,0x00,0x00,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,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x20,0x00,0x20,0x00,0x00,0x00,0x00,0x08,0x00,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x20,0x00,0x68,0x2A,0x29,0x23,0x2C,0x24,0x2B,0x2D,0xAC,0x35,0x8B,0x2D,0x8C,0x2D,0x8D,0x2D,0xAC,0x2D,0xAB,0x2D,0x6B,0x25,0x8C,0x35,0xAB,0x24,0x09,0x24,0xC6,0x22,0x40,0x00,0x00,0x08,0x00,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,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x20,0x00,0x20,0x00, +0x03,0x09,0x60,0x00,0x40,0x00,0xA1,0x00,0x61,0x00,0x40,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x20,0x00,0x20,0x00,0x80,0x00,0xE5,0x11,0x45,0x02,0x48,0x0B,0x04,0x02,0x46,0x1A,0xC1,0x00,0x20,0x00,0x40,0x00,0x87,0x12,0xE7,0x02,0x89,0x0B,0xE3,0x01,0x05,0x1A,0x20,0x00,0x20,0x08,0x00,0x00,0x20,0x00,0x81,0x00,0x04,0x19,0x00,0x00,0x20,0x08,0x00,0x00,0x20,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,0x01,0x00,0x00,0x00,0x40,0x00,0x43,0x09,0xC5,0x11,0xC4,0x09,0x04,0x12,0x24,0x12,0x64,0x1A,0x85,0x1A,0xC5,0x22,0x06,0x23,0x25,0x23,0x46,0x23,0x66,0x2B,0x85,0x33,0x07,0x3C,0x25,0x1B,0x64,0x12,0x01,0x01,0x20,0x00,0x00,0x00,0x00,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,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x00,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x20,0x00,0x40,0x00,0x80,0x00,0xE9,0x2A,0xE7,0x0A,0xEE,0x2C,0x6D,0x35,0x8C,0x35,0x8C,0x2D,0x8D,0x2D,0xAE,0x25,0xAD,0x1D,0xCC,0x2D,0x6B,0x35,0x6C,0x3D,0x6D,0x2D,0x30,0x36,0x49,0x1C,0x80,0x00,0x00,0x08,0x00,0x10,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x20,0x00,0x20,0x00,0xC3,0x18,0x20,0x00,0x61,0x00,0x03,0x09,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x23,0x09,0xC4,0x01,0xE7,0x0A,0xA6,0x02,0x66,0x1A,0x02,0x01,0x60,0x00,0x62,0x01,0x28,0x13,0x28,0x13,0x24,0x02,0xC4,0x01,0xE2,0x08,0x00,0x08,0x00,0x08,0x00,0x00,0x81,0x00,0x03,0x09,0x00,0x00, +0x00,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,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x20,0x00,0xC1,0x00,0x84,0x11,0xC4,0x09,0x05,0x12,0x24,0x12,0x65,0x12,0x65,0x1A,0x85,0x22,0xC5,0x22,0x05,0x23,0x24,0x23,0x45,0x23,0xA6,0x2B,0xC5,0x3B,0xE5,0x33,0x28,0x3C,0xE5,0x1A,0x42,0x01,0x20,0x00,0x21,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,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x20,0x00,0x40,0x00,0xE1,0x00,0x05,0x0A,0xA7,0x0A,0x27,0x03,0x2E,0x2D,0x6D,0x35,0x6D,0x35,0x8E,0x35,0x6E,0x2D,0xB0,0x25,0xAE,0x1D,0x8C,0x25,0x8C,0x35,0x6E,0x3D,0x4D,0x2D,0xEE,0x2D,0xEB,0x24,0xC2,0x01,0x00,0x00,0x01,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,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x20,0x00,0xE3,0x10, +0x00,0x08,0x00,0x00,0xE3,0x10,0x40,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x20,0x00,0x20,0x00,0x20,0x00,0x00,0x00,0x00,0x08,0x80,0x00,0x42,0x01,0xE7,0x12,0xA2,0x01,0x08,0x23,0xE4,0x09,0x41,0x01,0xE7,0x12,0x65,0x02,0x65,0x02,0xC3,0x01,0xE5,0x19,0x00,0x00,0x00,0x10,0x00,0x08,0x00,0x00,0x03,0x11,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,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x20,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x20,0x00,0x22,0x09,0xA4,0x11,0xE4,0x09,0x04,0x0A,0x65,0x12,0x65,0x1A,0xA5,0x22,0x84,0x1A,0xC3,0x22,0x85,0x33,0xC6,0x3B,0xA4,0x2B,0x83,0x2B,0xC3,0x33,0x05,0x3C,0x68,0x3C,0xA7,0x2B,0xE3,0x09,0x20,0x00,0x00,0x00,0x00,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,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,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,0x00,0x26,0x02,0x08,0x13,0x89,0x1B,0xCD,0x2C,0x4E,0x25,0x2B,0x35,0xCA,0x24,0x0C,0x2D,0x4E,0x2D,0xEC,0x24,0x2B,0x25,0x6A,0x35,0x09,0x25,0xEC,0x24,0x4D,0x35,0xCA,0x24,0x0B,0x3D,0x8D,0x4C,0x81,0x00,0x01,0x00,0x01,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x08,0x01,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,0x21,0x00,0x00,0x00,0x00,0x00,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,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x40,0x00,0x00,0x00,0x00,0x00,0x20,0x00,0xA2,0x08,0x61,0x00,0x00,0x00,0xA2,0x10,0x61,0x08,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x20,0x00,0x20,0x00,0x00,0x00,0x00,0x08,0x00,0x00,0x22,0x01,0x66,0x02,0xC7,0x12,0x23,0x02,0xC2,0x01,0x89,0x1B,0xE2,0x01,0xE2,0x01,0x24,0x02,0x46,0x12,0x80,0x00,0x00,0x00,0x00,0x00,0x40,0x00,0xC2,0x10,0x20,0x00,0x20,0x00,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,0x61,0x00,0xA5,0x19,0xA4,0x09,0x45,0x12,0x65,0x12,0x65,0x12,0x23,0x0A,0x83,0x1A,0xA6,0x3B,0x6C,0x75,0xD1,0x9E,0x31,0xA7,0x6D,0x86,0x28,0x5D,0x65,0x4C,0x45,0x44,0x26,0x34,0xCA,0x54,0x84,0x1A,0x60,0x00,0x00,0x00,0x00,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,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,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,0x00,0x67,0x12,0x6A,0x1B,0xCB,0x1B,0x89,0x0B,0x4A,0x14,0xAF,0x2D,0x68,0x4D,0xF0,0x76,0x8C,0x3D,0x2C,0x35,0x4F,0x66,0xAA,0x5D,0x07,0x45,0xF0,0x66,0x4F,0x4E,0xE9,0x2C,0x8E,0x86,0x6A,0x6D,0xE9,0x43,0x80,0x00,0x41,0x00,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,0x01,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,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,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x40,0x00,0x40,0x00,0x81,0x08,0x20,0x00, +0x40,0x00,0xC3,0x10,0x00,0x00,0x00,0x00,0x20,0x00,0x20,0x00,0x00,0x00,0x00,0x08,0x00,0x00,0x20,0x00,0x20,0x00,0x20,0x00,0x00,0x00,0x40,0x00,0x60,0x00,0x08,0x1B,0x65,0x02,0xC9,0x1B,0xE9,0x0B,0xA8,0x0B,0xA9,0x1B,0x27,0x13,0x07,0x13,0x25,0x0A,0x40,0x00,0x40,0x00,0x40,0x00,0x03,0x09,0xA1,0x00,0x00,0x00,0x00,0x00,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,0x01,0x00,0x01,0x08,0x01,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, +0x20,0x00,0x20,0x00,0x04,0x09,0xC5,0x19,0xC3,0x09,0x23,0x0A,0xE1,0x01,0xA4,0x12,0xE8,0x43,0xEF,0x85,0x12,0xA7,0xD0,0x9E,0xAE,0x96,0xEF,0x9E,0xEF,0x96,0x2F,0x9F,0xEF,0x9E,0x0C,0x7E,0xC8,0x4C,0x68,0x44,0x29,0x4C,0x60,0x00,0x00,0x00,0x00,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,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x65,0x11,0xAC,0x33,0xCB,0x1B,0xEA,0x13,0xC9,0x0B,0xAB,0x1C,0x8E,0x2D,0xA6,0x65,0xF3,0xAF,0xEC,0x4D,0x6A,0x35,0xB1,0x97,0x6A,0x8E,0xC4,0x5C,0xF5,0xAF,0x52,0x77,0xC6,0x34,0xF1,0xCF,0x4C,0xA6,0x08,0x54,0xA0,0x00,0x81,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x20,0x00,0x40,0x00,0x40,0x00,0x20,0x00,0x20,0x00,0x20,0x00,0x00,0x00,0x00,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,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,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xC2,0x08,0x81,0x08,0x20,0x00,0xE2,0x00,0x81,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x20,0x00,0xC1,0x00,0x46,0x12,0x40,0x01,0xC6,0x02,0x23,0x02,0x88,0x0B,0x22,0x02,0x43,0x02,0xC2,0x01,0x21,0x01,0x20,0x00,0x40,0x00,0xE2,0x00,0x81,0x00,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,0x01,0x08,0x01,0x00,0x00,0x00,0x00,0x00,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x00,0x01,0x00,0x22,0x08,0x01,0x00,0x02,0x08,0x01,0x00,0x00,0x00,0x62,0x00,0x45,0x11,0xC5,0x19,0x24,0x12,0x83,0x1A,0x68,0x4C,0x90,0x8E,0x12,0x9F,0xD0,0x96,0xAE,0x96,0xCE,0x96,0xCE,0x96,0xAE,0x96,0xCE,0x96,0xEE,0x96,0xAE,0x96,0xEF,0x9E,0xCF,0x96,0x09,0x55,0xCA,0x54,0x23,0x1A,0x20,0x00,0x20,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,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x65,0x09,0xAC,0x2B,0x8A,0x0B,0xEA,0x0B,0xE9,0x0B,0xCB,0x24,0xAE,0x35,0x44,0x6D,0xF2,0xAF,0xEC,0x4D,0xAA,0x35,0x8F,0x8F,0x48,0x8E,0x83,0x64,0xF4,0xB7,0x12,0x7F,0xC5,0x3C,0xEF,0xC7,0x4A,0xA6,0x28,0x5C,0x80,0x00,0x21,0x00,0x20,0x08,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,0x40,0x00,0x40,0x00,0x40,0x00,0x60,0x00,0x60,0x00,0x40,0x00,0x20,0x00,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,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x40,0x00,0x20,0x00,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,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x20,0x00,0x00,0x00,0x40,0x00,0xE3,0x10,0x40,0x00,0xA2,0x08, +0xC2,0x08,0x20,0x00,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x20,0x00,0x00,0x00,0x60,0x00,0x22,0x09,0x40,0x00,0x07,0x03,0xC6,0x0A,0x65,0x02,0x20,0x01,0xE5,0x02,0xC5,0x02,0x04,0x02,0x60,0x00,0x40,0x00,0xC2,0x00,0x81,0x00,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,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,0x01,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x20,0x00,0x40,0x00,0x80,0x00,0x20,0x00,0x41,0x00,0x21,0x00,0x01,0x00,0x01,0x00,0x01,0x00,0x01,0x00,0x01,0x00, +0x40,0x00,0x24,0x09,0x65,0x11,0x63,0x09,0x22,0x12,0x0F,0x86,0x11,0x9F,0xAF,0x8E,0xCF,0x96,0xCE,0x96,0xED,0x96,0xED,0x96,0xEE,0x96,0xCE,0x96,0xCE,0x96,0x8E,0x8E,0xAE,0x96,0x8E,0x8E,0xCF,0x96,0x8E,0x86,0xC9,0x54,0x83,0x1A,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,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x64,0x01,0x8B,0x23,0xAA,0x0B,0x0A,0x14,0x87,0x03,0x49,0x14,0xCF,0x3D,0x67,0x7D,0xF3,0xAF,0xCC,0x45,0x6A,0x2D,0x90,0x8F,0xAA,0x9E,0xE4,0x6C,0xB3,0xB7,0xD2,0x7E,0xC6,0x3C,0xF0,0xCF,0x8A,0xA6,0x08,0x54,0xA2,0x00,0x01,0x00,0x00,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,0x40,0x00,0x60,0x00,0x80,0x00,0x81,0x09,0x63,0x1A,0xC0,0x00,0x60,0x00,0x80,0x00,0x20,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,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x80,0x00,0x60,0x00,0x02,0x09,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,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x20,0x00,0x00,0x00,0x00,0x00,0x20,0x00,0xE3,0x10,0x40,0x00,0x20,0x00,0xE3,0x10,0x00,0x00,0x00,0x00,0x20,0x00,0x00,0x00,0x00,0x08,0x00,0x00,0x00,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x20,0x00,0x20,0x00,0x03,0x11,0x20,0x00,0x60,0x00,0xA5,0x02,0xAA,0x2B,0x86,0x1A,0x68,0x23,0x26,0x03,0xEA,0x23,0xE4,0x09,0x40,0x00,0xC2,0x08,0xE3,0x08,0x21,0x00,0x00,0x08,0x00,0x00,0x20,0x00,0x00,0x00,0x00,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,0x20,0x00,0xA1,0x00,0x02,0x09,0x64,0x11,0x65,0x11,0xC2,0x00,0x40,0x00,0x81,0x00,0x20,0x00,0x40,0x00,0x20,0x00,0x20,0x19,0x26,0x2A,0x64,0x09,0x64,0x09,0x82,0x01,0x8A,0x5C,0x52,0xAF,0x6D,0x86,0xEE,0x96,0xCE,0x8E,0xEE,0x96,0xCC,0x8E,0xAC,0x8E,0xCE,0x96,0xCF,0x96,0xAF,0x8E,0xD0,0x96,0xAE,0x96,0xAE,0x96,0xAE,0x8E,0xAF,0x86,0x6B,0x5D,0xE4,0x1A,0x41,0x09,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,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,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x20,0x00,0x85,0x09,0x8B,0x1B,0xEB,0x13,0xC9,0x0B,0xA8,0x0B,0xEC,0x2C,0x8D,0x35,0x47,0x6D,0xD3,0x9F,0xB0,0x56,0x2E,0x46,0x2F,0x8F,0x08,0x86,0xE4,0x5C,0xF4,0xA7,0x12,0x77,0xE6,0x3C,0xCD,0xB7,0x68,0x96,0x68,0x54,0x60,0x00,0x02,0x00,0x00,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x20,0x00,0x40,0x00,0x80,0x00,0x80,0x01,0x47,0x3B,0x45,0x23,0xA3,0x1A,0x40,0x01,0x60,0x00,0x20,0x00,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,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x20,0x00,0xC0,0x00,0xB0,0x6C,0x67,0x2A,0x40,0x00,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,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x20,0x00,0x81,0x08,0x61,0x00,0x20,0x00,0xE3,0x10,0x40,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x40,0x00,0x00,0x00,0x00,0x00,0xE3,0x10,0x61,0x00,0x40,0x00,0x02,0x11,0x44,0x02,0x8A,0x2B,0xE4,0x09,0x20,0x01,0xA5,0x02,0x0A,0x2C,0x83,0x01,0xC1,0x00,0xA2,0x00,0x20,0x00,0x21,0x00,0x00,0x08,0x00,0x08,0x00,0x00,0x20,0x00,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,0x40,0x00,0x03,0x09,0x85,0x11,0x85,0x11,0x65,0x09,0x44,0x01,0x06,0x1A,0xE4,0x19,0x20,0x01,0xE0,0x19,0xE5,0x5B,0x4D,0xAE,0x91,0xD7, +0x33,0x9E,0x82,0x01,0x21,0x01,0xA5,0x22,0xD2,0x9E,0xAE,0x96,0xEE,0x96,0xAD,0x8E,0xEE,0x8E,0xAD,0x8E,0xEC,0x8E,0xED,0x8E,0xAD,0x8E,0xAE,0x8E,0xAF,0x96,0x8F,0x8E,0xCE,0x96,0x8D,0x8E,0x8D,0x8E,0xEF,0x8E,0xF0,0x8E,0x6D,0x65,0x24,0x1A,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,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,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x20,0x00,0x84,0x01,0xAB,0x23,0xA9,0x0B,0xA9,0x0B,0xC8,0x13,0x69,0x1C,0x0F,0x46,0xCE,0x96,0xF7,0xB7,0xF6,0x87,0xF5,0x87,0xF6,0xC7,0xCC,0x9E,0x45,0x5D,0xF2,0x8F,0x31,0x67,0x27,0x45,0xEE,0xBF,0xA8,0x96,0xC7,0x4C,0x80,0x00,0x01,0x00,0x00,0x18, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x20,0x00,0x80,0x00,0x40,0x01,0xC1,0x09,0x62,0x12,0x81,0x0A,0xE0,0x01,0xE1,0x09,0xA2,0x11,0xC0,0x00,0x00,0x00,0x00,0x00,0x00,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,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x20,0x00,0x41,0x08,0xAF,0x5C,0xAB,0x3B,0x60,0x00,0x60,0x00,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,0x82,0x08,0xA2,0x08,0x20,0x00,0xA2,0x08,0xA1,0x00,0x20,0x00,0x20,0x00,0x00,0x00,0x00,0x00,0x20,0x00,0x00,0x00,0x20,0x00,0x00,0x00,0x00,0x00,0x20,0x00,0x20,0x00,0x40,0x00,0xA1,0x00,0xA2,0x10,0x00,0x00,0x03,0x19,0x40,0x00,0xE3,0x01,0x45,0x02,0x65,0x0A,0x27,0x1B,0x27,0x0B,0xE2,0x01,0x45,0x12,0xA0,0x00,0x20,0x00,0x20,0x00,0x00,0x00,0x01,0x10,0x00,0x08,0x00,0x00,0x20,0x00,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,0x20,0x00,0x20,0x00,0x40,0x00,0xA2,0x00,0x45,0x11,0x86,0x11,0x66,0x09,0xA6,0x09,0x85,0x09,0xE5,0x11,0xC1,0x09,0x8D,0x85,0x71,0xC7,0xF0,0xDF,0xCD,0xCF,0x8A,0xC7,0x4A,0x5C,0x20,0x01,0xC2,0x09,0x0D,0x6D,0x90,0x96,0xAD,0x96,0xAD,0x8E,0xCE,0x8E,0xAE,0x8E,0xCE,0x8E,0xCD,0x8E,0xCD,0x8E,0xCE,0x8E,0xAF,0x8E,0x8F,0x8E,0x8F,0x8E,0x6D,0x8E,0xCE,0x96,0x8D,0x8E,0xAE,0x86,0x8E,0x7E,0xB1,0x8E,0xCE,0x6C,0x80,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x20,0x00,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,0x20,0x00,0x00,0x00,0x00,0x00,0x20,0x00,0x20,0x00,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x00,0x01,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,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x20,0x00,0x42,0x01,0xEB,0x2B,0x69,0x03,0xEC,0x0B,0xAA,0x03,0xAB,0x14,0xF5,0x6F,0xB3,0xB7,0xFA,0xC7,0x3B,0xAF,0xFA,0xA6,0xF9,0xCF,0xF4,0xC7,0xAC,0x7E,0xF4,0x97,0x10,0x77,0x06,0x45,0xEF,0xB7,0x6B,0x96,0x49,0x5C,0x40,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x40,0x00,0x40,0x00,0x00,0x00,0x01,0x08,0x00,0x00,0x60,0x00,0x40,0x00,0x01,0x08,0x01,0x08,0x60,0x00,0x00,0x01,0xA1,0x01,0x63,0x11,0x00,0x01,0x00,0x0A,0xA3,0x1A,0xC0,0x00,0x82,0x11,0x80,0x00,0x62,0x09,0xA2,0x09,0x80,0x00,0x20,0x00,0x00,0x08,0x00,0x00,0x20,0x00,0x40,0x00,0x60,0x00,0x01,0x00,0x00,0x08,0x00,0x10, +0x00,0x08,0x00,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x00,0x01,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,0x01,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,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x20,0x00,0x20,0x00,0x20,0x00,0x20,0x00,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,0x08,0x00,0x00,0x00,0x00,0x01,0x08,0x01,0x10,0x01,0x10,0xA0,0x00,0x69,0x24,0x6D,0x6B,0x00,0x00,0x00,0x00,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,0x08,0x00,0x00,0x20,0x00,0x20,0x00,0x23,0x09,0x40,0x00,0x81,0x00,0xE3,0x10,0x00,0x00,0x00,0x08, +0x20,0x00,0x00,0x00,0x00,0x00,0x20,0x00,0x20,0x00,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x61,0x00,0xE3,0x08,0x60,0x00,0x03,0x09,0x61,0x00,0x00,0x08,0x85,0x02,0xA7,0x12,0x66,0x22,0xC6,0x12,0x66,0x03,0x66,0x03,0xA5,0x02,0x60,0x00,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x00,0x08,0x01,0x08,0x03,0x00,0x02,0x00,0x40,0x00,0x20,0x00,0x01,0x08,0x03,0x10,0x02,0x10,0x00,0x08,0x00,0x00,0x43,0x11,0x84,0x09,0xC5,0x11,0xA5,0x09,0x86,0x09,0xC7,0x09,0xA2,0x01,0x69,0x7D,0xEE,0xD7,0xAD,0xC7,0xCF,0xC7,0x8D,0xB7,0xCB,0xAF, +0xE9,0x2A,0x20,0x01,0x87,0x3B,0x6F,0x96,0xAE,0x96,0xAD,0x96,0xCE,0x96,0xAE,0x8E,0xAF,0x8E,0xAF,0x8E,0xAE,0x8E,0xAE,0x8E,0xAD,0x8E,0xAD,0x8E,0xAD,0x8E,0x8D,0x8E,0xAF,0x86,0x6E,0x86,0x6E,0x8E,0x8E,0x96,0x8D,0x8E,0x6D,0x86,0xAF,0x8E,0xA3,0x22,0x60,0x00,0x20,0x00,0x00,0x00,0x00,0x08,0x00,0x00,0x00,0x00,0x01,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,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,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xA4,0x09,0x6A,0x23,0x8A,0x03,0xEC,0x13,0x48,0x03,0x6E,0x35,0xF6,0x7F,0xB4,0xBF,0xFA,0xC7,0xFF,0xD7,0x1B,0xB7,0xF9,0xD7,0xF4,0xC7,0x90,0x9F,0xF4,0x97,0x11,0x7F,0x06,0x4D,0xEF,0xB7,0x6B,0x96,0x4A,0x5C,0x60,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x00,0x08,0x00,0x08,0x01,0x00,0x20,0x00,0x40,0x00,0xC0,0x08,0xC2,0x19,0x80,0x00,0x81,0x09,0x80,0x00,0xC1,0x11,0x62,0x1A,0x60,0x00,0xA0,0x00,0xC2,0x09,0xC0,0x00,0xE0,0x00,0x61,0x19,0x22,0x21,0x20,0x00,0x60,0x00,0x40,0x00,0x00,0x00,0x00,0x00,0x21,0x00,0x00,0x00,0x00,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,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,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,0x00,0x40,0x00,0xEB,0x43,0x6E,0x55,0x20,0x00,0x00,0x00,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,0x20,0x00,0x00,0x00,0x23,0x11,0x81,0x00,0x60,0x00,0x03,0x09,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x20,0x00,0x23,0x11,0x60,0x00,0xE2,0x00,0x61,0x00,0x00,0x00,0x00,0x00,0x64,0x02,0x6D,0x44,0x40,0x01,0x60,0x01,0xC4,0x02,0x8C,0x2C,0x45,0x02,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,0x08,0x00,0x08,0x00,0x00,0x02,0x00,0x22,0x00,0x40,0x00,0x40,0x00,0x20,0x00,0x00,0x00,0xA0,0x00,0xA0,0x00,0x60,0x00,0xA3,0x11,0xC5,0x11,0xC5,0x11,0xA5,0x11,0xC6,0x11,0x64,0x09,0xE8,0x53,0xF2,0xD7,0x6C,0xBF,0xAD,0xC7,0x0D,0xAF,0x2D,0xAF,0x6E,0xAF,0x62,0x01,0xE2,0x09,0x30,0x8E,0xB0,0x9E,0x8E,0x96,0x8D,0x8E,0xAE,0x8E,0xAE,0x8E,0x8E,0x8E,0x8F,0x8E,0x8E,0x8E,0x8E,0x8E,0x8D,0x8E,0x8D,0x8E,0x8D,0x8E,0x8D,0x8E,0x8E,0x86,0x8E,0x8E,0x8E,0x96,0x4D,0x8E,0x8E,0x96,0x6D,0x86,0xB0,0x96,0x10,0x8E,0xA2,0x11,0x20,0x00,0x61,0x08,0x00,0x08,0x00,0x00,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,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,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x84,0x09,0x6A,0x23,0x69,0x0B,0xAB,0x0B,0x28,0x03,0x31,0x56,0xF7,0x8F,0x74,0xC7,0xFB,0xD7,0xBE,0xD7,0x5C,0xCF,0xFA,0xDF,0xD3,0xC7,0xF2,0xB7,0xB3,0x97,0xF1,0x7E,0x26,0x55,0xCE,0xBF,0x6B,0x96,0x6A,0x5C,0x60,0x00,0x01,0x00,0x00,0x08,0x20,0x00,0x00,0x00,0x01,0x00,0x01,0x00,0x00,0x08,0x00,0x08,0x02,0x08,0x01,0x00,0x80,0x00,0x81,0x09,0x21,0x11,0x20,0x00,0x60,0x00,0x82,0x09,0xA0,0x00,0xA2,0x19,0x62,0x1A,0x80,0x00,0x40,0x00,0xE0,0x00,0x22,0x12,0x80,0x00,0x40,0x00,0xC0,0x10,0xA1,0x19,0x00,0x01,0x40,0x00,0x01,0x08,0x01,0x08,0x00,0x00,0x20,0x00,0x00,0x00, +0x20,0x00,0x20,0x00,0x20,0x00,0x20,0x00,0x20,0x00,0x20,0x00,0x20,0x00,0x20,0x00,0x20,0x00,0x20,0x00,0x20,0x00,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,0x20,0x00,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,0x08,0x00,0x08,0x00,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,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x20,0x00,0x00,0x00,0x00,0x00,0x20,0x00,0xA0,0x00,0x2B,0x3C,0x33,0x7E,0x61,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,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,0x40,0x00,0xE3,0x08,0x20,0x00,0x23,0x11,0x20,0x00,0x00,0x00,0x00,0x00,0x20,0x08, +0x00,0x08,0x00,0x00,0x20,0x00,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xE3,0x10,0x40,0x00,0x43,0x01,0x81,0x00,0x00,0x00,0x00,0x08,0x00,0x08,0x64,0x02,0x47,0x13,0x06,0x03,0xC8,0x03,0xC9,0x0B,0x48,0x1B,0x05,0x12,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,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x40,0x00,0xA0,0x00,0x04,0x33,0x0A,0x4D,0xEB,0x54,0x26,0x2B,0xE3,0x09,0x05,0x1A,0xA5,0x11,0xC6,0x19,0xC5,0x19,0x02,0x1A,0x11,0xBF,0x6F,0xBF,0x4C,0xB7,0x8D,0xB7,0xED,0x9E,0x71,0xB7,0x4A,0x6D, +0x60,0x01,0xCC,0x64,0xF3,0xA6,0x8F,0x96,0x8E,0x8E,0xAE,0x96,0xAE,0x8E,0x8E,0x8E,0x8E,0x8E,0x8F,0x8E,0x8E,0x8E,0x8E,0x8E,0x8D,0x8E,0x8D,0x8E,0x8E,0x8E,0x6E,0x8E,0x8E,0x86,0x6E,0x86,0x8E,0x8E,0x4D,0x86,0x8E,0x8E,0x6E,0x8E,0x2E,0x86,0x50,0x8E,0xF1,0x95,0x20,0x09,0x20,0x00,0x00,0x00,0x00,0x00,0x21,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,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x20,0x00,0x63,0x09,0x6A,0x23,0x49,0x0B,0x6A,0x0B,0x28,0x03,0x31,0x66,0xF7,0x97,0x96,0xCF,0xDB,0xDF,0xBF,0xDF,0x5D,0xD7,0xD9,0xDF,0xF4,0xCF,0xF2,0xB7,0xD3,0x9F,0xF0,0x86,0x27,0x5D,0xAE,0xBF,0x6B,0x96,0x8A,0x5C,0x60,0x00,0x01,0x00,0x00,0x08, +0x00,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x40,0x00,0x60,0x00,0xC3,0x11,0x21,0x01,0x80,0x00,0x40,0x00,0x66,0x21,0x81,0x00,0x80,0x00,0xE0,0x09,0xC0,0x02,0xC0,0x00,0x00,0x00,0x00,0x00,0x81,0x00,0x43,0x11,0x60,0x00,0x20,0x00,0x40,0x00,0x01,0x09,0x43,0x19,0x00,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x00,0x08,0x00,0x08,0x00,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,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x08,0x00,0x08,0x00,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,0x00,0x00,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x21,0x00,0x21,0x00,0x00,0x00,0x40,0x00,0xC5,0x0A,0x73,0x6E,0xC2,0x01,0x20,0x00,0x40,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,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,0x40,0x00,0x23,0x11,0x20,0x00,0xE3,0x08,0x61,0x00,0x00,0x00,0x00,0x00,0x20,0x00,0x00,0x00,0x00,0x08,0x00,0x00,0x00,0x00,0x20,0x00,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xC2,0x08,0xA1,0x00,0x02,0x01,0xA1,0x00,0x20,0x00,0x00,0x00,0x00,0x08,0x00,0x08,0x05,0x03,0xA3,0x02,0x06,0x03,0xA8,0x0B,0xE5,0x02,0xA6,0x0A,0xC5,0x11,0x40,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x20,0x00, +0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x20,0x00,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x01,0x08,0xA1,0x00,0xAA,0x64,0x88,0x6D,0xA7,0x45,0x6B,0x4D,0x06,0x1B,0x03,0x0A,0x04,0x12,0x26,0x12,0xC6,0x09,0xE3,0x11,0x84,0x43,0xD1,0xCF,0xEC,0xAE,0x4D,0xAF,0x2D,0x9F,0xCC,0x8E,0x72,0xAF,0x08,0x44,0xA3,0x1A,0xD3,0x9E,0x2F,0x8E,0x6E,0x8E,0xAE,0x96,0x8D,0x8E,0x8D,0x8E,0x8E,0x8E,0x8E,0x8E,0x8E,0x8E,0x8E,0x8E,0x8E,0x8E,0x6E,0x8E,0x6E,0x8E,0x6E,0x8E,0x6E,0x8E,0x4D,0x86,0x4D,0x86,0x6D,0x86,0x6E,0x8E,0x4D,0x86,0x4E,0x8E,0x4F,0x8E,0x0F,0x86,0x30,0x8E,0x0D,0x75,0x60,0x00,0x00,0x00,0x00,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,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x00,0x08,0x00,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x20,0x00,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,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x64,0x09,0x6A,0x23,0x29,0x0B,0x6A,0x13,0xE7,0x02,0xAF,0x55,0xF7,0x9F,0x76,0xCF,0xDB,0xDF,0xDF,0xE7,0x3C,0xD7,0xD9,0xE7,0xF4,0xD7,0xF2,0xB7,0x72,0x97,0xD0,0x86,0x47,0x65,0x8D,0xB7,0x6B,0x96,0xAA,0x5C,0x80,0x00,0x01,0x00,0x00,0x08,0x02,0x08,0x00,0x00,0x40,0x00,0x00,0x00,0x00,0x08,0x40,0x00,0xC0,0x00,0xC1,0x09,0x80,0x00,0x20,0x00,0x60,0x00,0x63,0x11,0x83,0x08,0x01,0x00,0x00,0x01,0x60,0x13,0x40,0x04,0x20,0x02,0x20,0x00,0x03,0x10,0x03,0x08,0x24,0x11,0x00,0x01,0x60,0x00,0x20,0x00,0x00,0x00,0x60,0x00,0xC4,0x19,0x42,0x01,0x60,0x00,0x00,0x00,0x00,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,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,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x00,0x21,0x00,0x20,0x00,0x86,0x22,0x32,0x7E,0xE5,0x12,0x60,0x00,0x00,0x08,0x00,0x00,0x00,0x00,0x20,0x00,0x00,0x00,0x00,0x00,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,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x20,0x08,0x20,0x00,0x20,0x00,0x03,0x09,0x60,0x00,0xA2,0x08,0xC2,0x08,0x00,0x00,0x00,0x00,0x20,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x20,0x00,0x00,0x00,0x00,0x08,0x61,0x08,0xA1,0x00,0x02,0x01,0x60,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x20,0x00,0x00,0x00,0x07,0x04,0x46,0x03,0x23,0x02,0xE0,0x00,0x84,0x02,0x89,0x1B,0xA8,0x22,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x20,0x00,0x20,0x00,0x20,0x00,0x20,0x00,0x20,0x00,0x20,0x00,0x20,0x00,0x20,0x00,0x00,0x08,0x00,0x00,0xC5,0x21,0x0B,0x6D,0x46,0x5D,0x68,0x55,0x68,0x44,0x03,0x02,0x65,0x12,0x44,0x0A,0x46,0x0A,0x66,0x0A,0x21,0x0A,0xCA,0x85,0x8E,0xB7,0x0D,0xA7,0xED,0x96,0x0D,0x97,0xCC,0x86,0xCF,0x8E,0xC6,0x33, +0xEB,0x64,0xB1,0x96,0x4E,0x8E,0x6E,0x8E,0xAE,0x96,0x6D,0x86,0x6D,0x8E,0x8E,0x8E,0x8E,0x8E,0x6E,0x8E,0x6E,0x8E,0x6E,0x8E,0x6E,0x8E,0x6E,0x8E,0x4E,0x8E,0x4F,0x8E,0x6E,0x8E,0xAE,0x8E,0x4D,0x86,0x6E,0x86,0x4E,0x86,0x0E,0x86,0x2F,0x8E,0x2E,0x8E,0x2E,0x86,0x50,0x96,0x67,0x43,0x40,0x00,0x00,0x00,0x00,0x00,0x40,0x08,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,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,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x20,0x00,0x64,0x09,0x6A,0x23,0x29,0x03,0x8A,0x13,0xE7,0x02,0xCB,0x3C,0xF6,0x9F,0xB5,0xC7,0xFA,0xD7,0xB9,0xB6,0xB8,0xBE,0xD7,0xD7,0xF4,0xD7,0xB0,0xA7,0xD2,0x9F,0xB0,0x86,0x68,0x65,0x6D,0xAF,0x6B,0x8E,0xAA,0x5C,0x80,0x00,0x21,0x00,0x00,0x08, +0x02,0x00,0x41,0x00,0x00,0x00,0x00,0x08,0x00,0x08,0xC1,0x08,0xC2,0x19,0xA0,0x00,0x00,0x00,0x40,0x00,0x00,0x09,0x42,0x09,0x20,0x00,0x00,0x00,0xC0,0x01,0xA2,0x1C,0xC0,0x04,0x03,0x1C,0x80,0x00,0x02,0x08,0x02,0x08,0x40,0x00,0x22,0x12,0x00,0x01,0x20,0x00,0x01,0x00,0x20,0x00,0x60,0x00,0x20,0x01,0xA3,0x09,0xE0,0x00,0x40,0x00,0x40,0x00,0x20,0x00,0x20,0x00,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,0x20,0x00,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,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x20,0x00,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,0x20,0x00,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x08,0x00,0x00,0x25,0x1A,0x94,0x8E,0x6C,0x5C,0x40,0x00,0x40,0x08,0x00,0x00,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,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xA2,0x08,0x81,0x00,0x40,0x00,0xA2,0x08,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x81,0x00,0x03,0x09,0xE2,0x00,0xA1,0x00,0x20,0x00,0x00,0x00,0x00,0x08,0x00,0x00,0x00,0x00,0x20,0x00,0x89,0x04,0x67,0x03,0x04,0x0A,0x45,0x0A,0x64,0x02,0x89,0x0B,0xE8,0x1A,0x40,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x08,0x00,0x00,0x00,0x00,0x20,0x00,0x20,0x00,0x20,0x00,0x20,0x00,0x20,0x00,0x20,0x00,0x00,0x00,0x00,0x00,0x20,0x00,0x40,0x00,0xA6,0x2A,0x4C,0x65,0xE6,0x4C,0xCA,0x5C,0x06,0x23,0x25,0x0A,0x65,0x0A,0x65,0x0A,0x85,0x0A,0x02,0x02,0x84,0x2B,0x90,0xAF,0xEC,0x9E,0xED,0x96,0xCE,0x8E,0xCC,0x86,0xAB,0x7E,0x6C,0x7E,0x8F,0x8E,0xD1,0x9E,0x6E,0x8E,0x8F,0x96,0x6E,0x8E,0x8D,0x8E,0x8E,0x8E,0x6D,0x86,0x6E,0x8E,0x6E,0x8E,0x6E,0x86,0x6E,0x8E,0x6E,0x8E,0x6E,0x86,0x4E,0x8E,0x4F,0x8E,0x4F,0x8E,0x4E,0x8E,0x4D,0x86,0x4D,0x86,0x4E,0x86,0x4E,0x86,0x4F,0x8E,0x2E,0x86,0x2E,0x86,0x4D,0x86,0x2D,0x7E,0xD3,0xA6,0xE7,0x42,0x40,0x00,0x00,0x00,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,0x20,0x00,0x40,0x00,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,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x20,0x00,0x43,0x01,0x6A,0x23,0x29,0x03,0x4A,0x0B,0x28,0x0B,0x6A,0x2C,0x52,0x77,0xF5,0xBF,0xFA,0xD7,0x99,0xB7,0xB9,0xC7,0xF8,0xDF,0xF3,0xC7,0x2A,0x76,0x72,0x8F,0xCF,0x7E,0x88,0x65,0x4D,0xAF,0x6B,0x96,0xCB,0x5C,0x80,0x00,0x20,0x00,0x00,0x08,0x00,0x00,0x00,0x00,0x01,0x08,0x00,0x00,0xC2,0x08,0x44,0x19,0x00,0x00,0x00,0x00,0x40,0x00,0x40,0x00,0x00,0x09,0x00,0x00,0x00,0x08,0x60,0x00,0x00,0x02,0xE2,0x03,0x20,0x03,0x82,0x13,0x60,0x00,0x41,0x00,0x00,0x00,0x80,0x00,0x60,0x00,0xA3,0x19,0xA1,0x00,0x20,0x00,0x20,0x00,0x20,0x00,0x40,0x00,0x80,0x00,0xA1,0x09,0xC1,0x09, +0xA0,0x00,0x80,0x00,0x40,0x00,0x20,0x00,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x20,0x00,0x20,0x00,0x20,0x00,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,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x20,0x00,0x20,0x00,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,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xC0,0x00,0x94,0x96,0xAD,0x4C,0x80,0x00,0x00,0x08,0x00,0x08,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x20,0x00,0x00,0x00,0x00,0x00,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,0x20,0x00,0x00,0x00,0x20,0x00,0x00,0x00,0x40,0x00,0x03,0x11,0x20,0x00,0x23,0x11,0x20,0x00,0x00,0x00,0x20,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x81,0x00,0x02,0x01,0x02,0x01,0xA1,0x00,0x00,0x00,0x00,0x00,0x20,0x08,0x00,0x00,0x00,0x00,0x40,0x00,0xC1,0x00,0x09,0x04,0x27,0x03,0xA6,0x12,0x69,0x2B,0xE6,0x02,0x68,0x0B,0xE7,0x12,0x40,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x20,0x00,0x20,0x00,0x00,0x00,0x01,0x00,0x01,0x00,0x21,0x00,0xC2,0x08,0xA0,0x00,0xE0,0x00,0x6A,0x4C,0x2B,0x55,0x0A,0x4D,0xEB,0x53,0x24,0x12,0xA7,0x1A,0x86,0x12,0x45,0x0A,0xA6,0x1A,0x80,0x01,0x0D,0x86,0x8D,0x8E,0xEE,0x8E,0xAD,0x7E,0x6D,0x76,0x8C,0x7E,0x6B,0x7E,0xAD,0x8E,0x6D,0x8E, +0x6E,0x8E,0x6D,0x8E,0x6E,0x8E,0x8E,0x8E,0x6D,0x86,0x6E,0x8E,0x4E,0x86,0x6E,0x8E,0x6E,0x86,0x6E,0x86,0x6E,0x86,0x4E,0x86,0x4E,0x8E,0x4E,0x8E,0x4F,0x86,0x2F,0x8E,0x4E,0x86,0x2D,0x86,0x8F,0x8E,0x4E,0x86,0x0E,0x86,0x2F,0x86,0x2E,0x86,0x4D,0x7E,0x6D,0x7E,0x4D,0x7E,0x0E,0x86,0xF2,0x95,0x87,0x3A,0x20,0x00,0x20,0x00,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,0x20,0x00,0x40,0x00,0xC0,0x00,0x00,0x01,0x80,0x00,0x40,0x00,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,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,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,0x01,0x09,0x1B,0x49,0x0B,0x29,0x03,0x27,0x03,0xAA,0x2C,0x0D,0x4E,0x2C,0x7E,0xF5,0xAF,0xD7,0xAF,0x96,0xA7,0xB3,0xAF,0x4B,0x7E,0xE9,0x65,0x92,0x8F,0xD0,0x76,0xA9,0x65,0x6D,0xA7,0x8B,0x96,0xCB,0x64,0x60,0x00,0x20,0x00,0x00,0x00, +0x20,0x00,0x20,0x00,0x80,0x00,0xC3,0x01,0xA1,0x01,0x80,0x00,0x40,0x00,0x40,0x00,0x80,0x00,0x20,0x01,0x01,0x09,0x00,0x08,0x00,0x10,0x60,0x00,0xC0,0x01,0x26,0x1C,0x00,0x03,0x45,0x2B,0x40,0x00,0x00,0x00,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x43,0x19,0x80,0x00,0x00,0x00,0x01,0x10,0x00,0x08,0x20,0x00,0x60,0x00,0x80,0x00,0x43,0x21,0xC1,0x10,0x40,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x00,0x01,0x00,0x01,0x00,0x01,0x00,0x01,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x00,0x08,0x00,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,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x20,0x00,0x20,0x00,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,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0xF1,0x85,0x2E,0x65,0xA0,0x00,0x20,0x00,0x00,0x10,0x00,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,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,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x61,0x00,0xE3,0x08,0x61,0x00,0xE3,0x08,0x40,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x61,0x00,0x03,0x01,0x23,0x01,0xA1,0x00,0x00,0x00,0x00,0x08,0x00,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0xE2,0x08,0xC2,0x00,0xAA,0x1B,0xE7,0x02,0x44,0x02,0x00,0x01,0x43,0x02,0x27,0x13,0x48,0x23,0xC0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x20,0x00,0x00,0x00,0x01,0x00,0x00,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x00,0x02,0x08,0x63,0x08,0x65,0x19,0xC3,0x09,0xC3,0x12,0x0A,0x4D,0xEA,0x44,0x8B,0x3C,0x88,0x1A,0x86,0x1A,0x85,0x12,0x86,0x12,0x87,0x1A,0xE3,0x11,0x25,0x3B,0x8F,0x9E,0xCF,0x96,0x6D,0x76,0x8E,0x76,0x8D,0x76,0x2C,0x76,0x8E,0x8E,0x4C,0x8E,0x6D,0x96,0x6D,0x8E,0x8E,0x8E,0x4D,0x86,0x6E,0x8E,0x6E,0x86,0x4E,0x86,0x8F,0x8E,0x4E,0x86,0x4E,0x86,0x4E,0x86,0x4D,0x86,0x4D,0x86,0x4E,0x86,0x2E,0x86,0x2E,0x86,0x2F,0x86,0x2E,0x86,0x2D,0x86,0x2E,0x86,0x0E,0x86,0x4F,0x8E,0x0E,0x86,0x0D,0x7E,0x4D,0x7E,0x2C,0x76,0x6D,0x7E,0x0D,0x7E,0xCF,0x85,0x91,0x95,0x22,0x11,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,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x20,0x00,0x20,0x00,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xC3,0x08,0x64,0x11,0x4A,0x3B,0x6D,0x54,0xEF,0x64,0xAA,0x43,0xA3,0x09,0xC0,0x00,0x20,0x00,0x00,0x00,0x01,0x08,0x00,0x00,0x21,0x00,0x00,0x00,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,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,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,0x43,0x09,0x29,0x1B,0x09,0x03,0x49,0x0B,0xE7,0x02,0x8A,0x2C,0x6F,0x56,0x0A,0x6E,0x30,0x8F,0x2E,0x66,0xCC,0x5D,0xCE,0x86,0xAC,0x8E,0xE9,0x65,0x51,0x87,0xD0,0x76,0xC9,0x5D,0x6D,0x9F,0x8B,0x96,0xCA,0x64,0x80,0x00,0x20,0x00,0x00,0x00,0x40,0x00,0x40,0x01,0x30,0x56,0xEE,0x3D,0x6D,0x35,0x0C,0x3D,0x8B,0x34,0x2B,0x2C,0x0B,0x2C,0xA7,0x12,0x82,0x01,0x20,0x00,0x40,0x00,0x60,0x00,0xA0,0x01,0x00,0x03,0xA3,0x13,0xA0,0x01,0x20,0x00,0x00,0x08,0x20,0x00,0x00,0x00,0x00,0x00,0x20,0x00,0x80,0x00,0xC2,0x19,0x20,0x00,0x20,0x08,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x08, +0x20,0x00,0xE1,0x10,0x43,0x21,0x60,0x08,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x01,0x00,0x21,0x00,0x01,0x00,0x21,0x00,0x21,0x00,0x00,0x08,0x00,0x08,0x00,0x08,0x01,0x08,0x00,0x00,0x01,0x00,0x21,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,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x20,0x00,0x20,0x00,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,0x08,0x00,0x08,0x00,0x00,0x20,0x00,0x20,0x00,0x00,0x00,0x80,0x00,0x4F,0x6D,0xF4,0x8E,0xC1,0x01,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,0x20,0x00,0x20,0x00,0x23,0x11,0x20,0x00,0x03,0x09,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x40,0x00,0x02,0x01,0x43,0x01,0xA1,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x00,0x08,0x00,0x00,0x40,0x00,0x02,0x01,0xA1,0x00,0xA1,0x00,0x69,0x1B,0x07,0x0B,0x44,0x02,0x40,0x01,0x22,0x02,0x06,0x0B,0x07,0x1B,0xC0,0x00,0x20,0x00,0x00,0x00,0x20,0x00,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x40,0x00,0xE0,0x00,0x20,0x00,0x01,0x00,0x00,0x08,0x00,0x08,0x00,0x08,0x00,0x00,0x01,0x00,0x01,0x00,0x26,0x19,0x64,0x09,0xE2,0x01,0x84,0x23,0x4A,0x55,0x48,0x3C,0xE7,0x1A,0x67,0x1A,0xA6,0x1A,0xC4,0x1A,0x85,0x12,0xA7,0x22,0x24,0x1A,0x0B,0x6D,0x8F,0x96,0x8E,0x86,0x2E,0x6E,0x2C,0x66,0x6D,0x76,0x8E,0x86,0x6F,0x8E,0x4E,0x8E,0x4D,0x96, +0x6D,0x8E,0x6D,0x86,0x6E,0x86,0x4E,0x86,0x4E,0x86,0x4E,0x86,0x4E,0x86,0x4E,0x86,0x4E,0x86,0x4D,0x86,0x4D,0x86,0x4D,0x86,0x2D,0x86,0x2E,0x86,0x2E,0x86,0x2E,0x86,0x4D,0x7E,0x2E,0x86,0x2E,0x86,0x0E,0x86,0x0E,0x86,0x2D,0x86,0x2D,0x7E,0x2D,0x7E,0x2D,0x7E,0x2D,0x7E,0x0D,0x7E,0x0E,0x86,0xF0,0x8D,0x0B,0x64,0x20,0x00,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,0x40,0x00,0x00,0x00,0x20,0x00,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x04,0x09,0x71,0x6C,0xB1,0x6C,0xD0,0x64,0xCF,0x54,0xAD,0x4C,0x2F,0x65,0x50,0x75,0x4D,0x64,0xC8,0x42,0x43,0x19,0x20,0x00,0x00,0x00,0x00,0x00,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,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,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,0x23,0x09,0xE8,0x1A,0xE8,0x02,0x49,0x0B,0x07,0x03,0x8A,0x2C,0x4E,0x56,0x4A,0x7E,0x6F,0x97,0x6D,0x66,0x2C,0x66,0xED,0x86,0x8B,0x86,0xC9,0x6D,0x51,0x8F,0xF0,0x7E,0xEA,0x65,0x6D,0x9F,0x8C,0x96,0xCB,0x6C,0x60,0x00,0x20,0x00,0xA0,0x10, +0x60,0x01,0xA4,0x0B,0x50,0x4F,0x8E,0x36,0x0F,0x46,0xCD,0x3D,0x8B,0x2D,0xEE,0x2D,0x2F,0x35,0x89,0x1B,0xA7,0x2B,0x20,0x02,0x00,0x02,0xE0,0x01,0xC0,0x02,0x61,0x14,0x43,0x0C,0x01,0x03,0xA0,0x09,0x60,0x09,0x60,0x01,0xC0,0x01,0xA0,0x01,0x80,0x01,0x60,0x01,0x00,0x02,0x41,0x12,0x40,0x01,0x00,0x01,0x21,0x01,0x21,0x09,0xC0,0x00,0x40,0x01,0x00,0x01,0x40,0x01,0xE0,0x09,0x01,0x12,0x60,0x01,0x00,0x01,0x20,0x01,0xE0,0x00,0x20,0x01,0x00,0x01,0x24,0x12,0x07,0x2B,0xC7,0x1A,0xA6,0x1A,0x62,0x01,0xC0,0x00,0xC0,0x00,0x80,0x00,0x80,0x00,0x80,0x00,0x60,0x00,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,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x00,0x08,0x00,0x08,0x00,0x10,0x00,0x08,0x00,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,0x08,0x00,0x08,0x20,0x00,0x20,0x00,0x60,0x00,0x40,0x00,0x4C,0x5C,0x35,0x9F,0xE5,0x1A,0x60,0x00,0x20,0x08,0x00,0x00,0x01,0x00,0x21,0x00,0x00,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,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x20,0x00,0xE2,0x08,0x81,0x00,0xE2,0x08,0x61,0x00,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x20,0x00,0x44,0x09,0x43,0x01,0x81,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x20,0x00,0xE2,0x08,0xE2,0x00,0x40,0x00,0x44,0x19,0x43,0x02,0x07,0x0B,0xC6,0x12,0x68,0x23,0x06,0x0B,0xC5,0x02,0xE7,0x12,0xA1,0x00,0x00,0x00,0x00,0x00,0x01,0x00,0x00,0x00,0x40,0x08,0x20,0x00,0xC0,0x00,0xA8,0x4B, +0xB0,0x85,0xAA,0x4B,0x22,0x11,0x00,0x00,0x00,0x00,0x00,0x08,0x00,0x00,0x20,0x00,0xA2,0x00,0xC7,0x19,0xC5,0x09,0x02,0x02,0xEA,0x5C,0x88,0x4C,0x05,0x23,0xA7,0x22,0xC8,0x2A,0x84,0x1A,0xE4,0x2A,0x84,0x1A,0xA6,0x1A,0xC5,0x1A,0xEE,0x75,0x4D,0x76,0x0C,0x66,0x2D,0x66,0x4D,0x6E,0x6E,0x7E,0x6E,0x86,0x4F,0x8E,0x4F,0x8E,0x6F,0x8E,0x6D,0x86,0x4D,0x86,0x4E,0x86,0x4E,0x86,0x4F,0x86,0x4F,0x86,0x4E,0x86,0x4E,0x86,0x4D,0x86,0x4D,0x86,0x4D,0x86,0x2D,0x86,0x2D,0x86,0x2E,0x86,0x2E,0x86,0x2E,0x86,0x2D,0x7E,0x0E,0x86,0x0E,0x86,0x0E,0x86,0x0E,0x86,0x2D,0x7E,0x2D,0x7E,0x2D,0x76,0x2E,0x7E,0x2D,0x7E,0x2D,0x7E,0x0D,0x7E,0x0E,0x86,0xB0,0x8D,0xE1,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,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x20,0x00,0x00,0x00,0x00,0x00,0x21,0x00,0x01,0x00,0x22,0x08,0x02,0x00,0x02,0x00,0x6C,0x3B,0x4F,0x5C,0xED,0x4B,0x6E,0x4C,0x8E,0x54,0xAE,0x54,0xCE,0x54,0x8D,0x4C,0xEF,0x64,0xEF,0x74,0x31,0x85,0xC8,0x42,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x00,0x00,0x23,0x11,0xC8,0x1A,0xC8,0x02,0x09,0x0B,0xE7,0x0A,0x8A,0x34,0x4F,0x5E,0x09,0x7E,0x4E,0x97,0x6C,0x66,0x4B,0x66,0x0D,0x8F,0x8B,0x8E,0xCA,0x7D,0x31,0x97,0xB0,0x76,0xEA,0x65,0x4D,0x9F,0x6B,0x96,0xEB,0x6C,0x60,0x00,0x40,0x00,0x63,0x29,0xA6,0x2B,0x00,0x03,0x10,0x47,0x4F,0x36,0xCF,0x3D,0x4C,0x35,0x8C,0x2D,0x4C,0x1D,0xCC,0x1C,0x86,0x03,0x66,0x24,0x40,0x03,0xA0,0x03,0x80,0x03,0x00,0x04,0x21,0x15,0xC0,0x04,0x23,0x1D,0x80,0x03,0x81,0x13,0x81,0x0B,0xC0,0x03,0x00,0x04,0x60,0x03,0xE0,0x02,0x00,0x03,0x20,0x03,0xC2,0x1B,0xC0,0x02,0x03,0x13,0x02,0x0B,0x41,0x0B, +0x61,0x03,0x61,0x03,0x40,0x03,0x40,0x03,0x40,0x03,0xA0,0x0B,0x80,0x0B,0x60,0x03,0x20,0x03,0x81,0x03,0x20,0x03,0x6A,0x3D,0x8F,0x5E,0xCD,0x45,0x8C,0x3D,0x06,0x04,0xA0,0x03,0xA0,0x03,0x81,0x03,0x42,0x13,0x24,0x23,0x02,0x12,0x80,0x00,0x40,0x00,0x00,0x00,0x00,0x00,0x00,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,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x00,0x00,0x00,0x08,0x00,0x08,0x00,0x08,0x00,0x08,0x00,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x20,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x21,0x08,0x40,0x00,0x0B,0x4C,0x97,0xA7,0x88,0x33,0x60,0x00,0x20,0x00,0x00,0x00,0x00,0x00,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,0x20,0x00,0xA2,0x08,0xA1,0x00,0xE2,0x00,0xA2,0x00,0x20,0x00,0x00,0x00,0x00,0x00,0x20,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x40,0x00,0x44,0x11,0x03,0x09,0x60,0x00,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x40,0x00,0xE2,0x08,0x60,0x00,0x40,0x00,0x60,0x00,0x84,0x11,0x66,0x03,0x47,0x13,0x24,0x12,0x24,0x12,0x64,0x02,0xC6,0x02,0xCB,0x2B,0x03,0x01,0x00,0x00,0x00,0x00,0x21,0x00,0x40,0x00,0x40,0x00,0xE6,0x42,0xAF,0x8D,0x71,0x96,0x0F,0x86,0x50,0x96,0x32,0x9E,0x62,0x11,0x20,0x00,0x00,0x00,0x00,0x00,0x20,0x00,0x64,0x11,0x06,0x12,0xC4,0x01,0x67,0x23,0x29,0x3C,0x05,0x23,0xA5,0x1A,0x86,0x22,0xA6,0x1A,0xC5,0x22,0xC4,0x22,0xE5,0x2A,0x05,0x23,0xA6,0x23,0x4E,0x6E,0x2C,0x5E,0x0C,0x5E,0x4D,0x76,0x8E,0x86,0x6E,0x8E,0x4E,0x86,0x4E,0x86,0x6F,0x86,0x6F,0x7E, +0x4D,0x86,0x4D,0x86,0x4E,0x86,0x2F,0x86,0x2F,0x86,0x2E,0x86,0x2E,0x86,0x2E,0x86,0x2D,0x86,0x2D,0x86,0x2D,0x86,0x2D,0x86,0x2E,0x86,0x0D,0x86,0x0D,0x86,0x2D,0x86,0x2E,0x7E,0x0E,0x7E,0xEE,0x85,0xEE,0x85,0x0E,0x86,0x0D,0x7E,0x2D,0x7E,0x0D,0x7E,0x0E,0x7E,0xED,0x7D,0x0D,0x76,0x4D,0x7E,0xCC,0x75,0x30,0x96,0x69,0x4B,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,0x20,0x00,0x60,0x00,0x60,0x00,0x60,0x00,0x46,0x32,0x87,0x3A,0xA1,0x00,0x40,0x00,0x48,0x3A, +0x8E,0x4C,0x8E,0x54,0x6E,0x4C,0x8E,0x54,0x8E,0x54,0xAF,0x5C,0x8E,0x54,0xEF,0x5C,0xCE,0x54,0xCD,0x54,0xEE,0x5C,0x0F,0x75,0x87,0x32,0x20,0x00,0x20,0x08,0x00,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,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,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,0x11,0xE8,0x22,0xC8,0x0A,0xC8,0x0A,0x86,0x02,0x4A,0x34,0x70,0x6E,0x0A,0x8E,0x4F,0x9F,0x6C,0x6E,0x4B,0x66,0xCD,0x8E,0x4B,0x96,0xEA,0x85,0xF1,0x96,0xD0,0x86,0x0B,0x6E,0x6D,0x9F,0x6C,0x96,0xEB,0x74,0x60,0x00,0x20,0x00,0x42,0x21, +0x40,0x02,0xA1,0x02,0x90,0x4E,0x50,0x3E,0xEF,0x35,0x6D,0x35,0x6D,0x35,0x4D,0x2D,0x0C,0x25,0xE5,0x03,0x45,0x1C,0x00,0x03,0xA0,0x0B,0xA0,0x03,0x20,0x04,0x01,0x0D,0x80,0x04,0x62,0x15,0xC0,0x03,0xC0,0x03,0x80,0x03,0xC0,0x03,0xC0,0x03,0x80,0x03,0x00,0x03,0x41,0x03,0x00,0x03,0x61,0x1B,0x01,0x0B,0x01,0x0B,0x81,0x03,0x60,0x03,0x82,0x03,0x61,0x03,0x81,0x03,0xE2,0x13,0xA0,0x0B,0xA0,0x0B,0xA0,0x0B,0xE1,0x0B,0x80,0x03,0x02,0x14,0xC2,0x03,0x69,0x35,0x2D,0x4E,0xAC,0x3D,0xAC,0x35,0x27,0x04,0x20,0x04,0x01,0x04,0x02,0x0C,0xA3,0x1B,0x43,0x23,0x21,0x12,0x80,0x00,0x20,0x00,0x00,0x00,0x00,0x08,0x00,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,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x20,0x00,0x00,0x00,0x00,0x00,0x40,0x00,0x20,0x00,0x44,0x11,0xC2,0x00,0x40,0x00,0x40,0x00,0x40,0x00,0x40,0x00,0x40,0x00,0x40,0x00,0x20,0x00,0x20,0x00,0x20,0x00,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x00,0x08,0xE8,0x3A,0x98,0xAF,0x8B,0x44,0x60,0x00,0x20,0x08,0x00,0x08,0x20,0x00,0x00,0x00,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,0xA2,0x08,0xC2,0x08,0xA1,0x00,0xA2,0x00,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x41,0x00,0x20,0x00,0x00,0x00,0x00,0x00,0x20,0x00,0x44,0x11,0x43,0x09,0x20,0x00,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x40,0x00,0xE2,0x08,0x40,0x00,0x20,0x00,0x20,0x00,0x40,0x00,0x06,0x1A,0x45,0x03,0x67,0x13,0x20,0x01,0x80,0x00,0x61,0x01,0x48,0x03,0x28,0x0B,0x84,0x01,0x00,0x00,0x00,0x00,0x20,0x00,0x82,0x11,0xAD,0x6C,0x31,0x96,0xAE,0x7D,0xED,0x75, +0x2E,0x7E,0xAB,0x6D,0x6F,0x8E,0x4A,0x5C,0x20,0x00,0x00,0x08,0x00,0x08,0x20,0x08,0xC5,0x21,0x06,0x0A,0x45,0x02,0x4B,0x2C,0xEA,0x23,0x2C,0x34,0xAA,0x23,0x8A,0x23,0xEA,0x1B,0x27,0x13,0x06,0x1B,0xE5,0x22,0xE3,0x12,0x2B,0x4D,0x2D,0x66,0xEB,0x55,0x6D,0x6E,0x6E,0x7E,0x6E,0x8E,0x4E,0x8E,0x4D,0x86,0x6D,0x86,0x6E,0x7E,0x6E,0x7E,0x4D,0x86,0x4E,0x86,0x2E,0x86,0x2F,0x86,0x2F,0x86,0x2E,0x86,0x2E,0x86,0x2D,0x86,0x2D,0x86,0x2D,0x86,0x2D,0x86,0x2E,0x86,0x0E,0x86,0x0E,0x86,0x0D,0x86,0x0D,0x86,0x0E,0x7E,0x0E,0x7E,0xEE,0x85,0xEE,0x85,0x0E,0x7E,0x0D,0x7E,0x0D,0x7E,0x0E,0x7E,0xEE,0x7D,0xED,0x7D,0x0D,0x7E,0xEC,0x75,0xED,0x75,0xEF,0x85,0x0E,0x7D,0xC0,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x60,0x00,0x60,0x00,0x20,0x01,0x04,0x33,0x0B,0x75,0x4F,0x96,0xF1,0xA6,0x12,0xAF,0x90,0x9E,0xC9,0x6C,0xCA,0x74,0xAB,0x44,0x6B,0x44,0x4B,0x44,0x8E,0x54,0x4E,0x54,0x6E,0x5C,0xAF,0x5C,0xAE,0x54,0xEE,0x54,0x0E,0x55,0xED,0x4C,0xEE,0x5C,0xAE,0x6C,0x22,0x09,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,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x20,0x00,0x00,0x00,0x20,0x00,0x20,0x00,0x00,0x00,0x00,0x00,0x22,0x09,0xA7,0x1A,0xE8,0x0A,0xC8,0x0A,0x87,0x0A,0x2B,0x3C,0x50,0x76,0xEB,0x8D,0xEF,0x96,0x6C,0x6E,0x4B,0x6E,0xCD,0x96,0x4B,0x96,0xEB,0x85,0xF1,0x96,0xAF,0x86,0xEA,0x6D,0x2D,0x9F,0x6C,0x8E,0x0C,0x75,0x60,0x00,0x40,0x00,0xC2,0x18,0x60,0x01,0xA3,0x12,0x92,0x66,0x6F,0x3E,0x6F,0x2E,0x0E,0x2E,0x6D,0x25,0x4E,0x35,0xED,0x2C,0xC8,0x13,0xC8,0x23,0xE1,0x01,0x01,0x0A,0x20,0x02,0x40,0x03,0xE3,0x04,0x40,0x04,0x83,0x14,0x00,0x02,0x00,0x02,0xE0,0x01,0xC0,0x01,0x81,0x09,0x81,0x09,0xA0,0x01,0xC0,0x01,0xE1,0x09,0x40,0x01,0x60,0x01,0x80,0x01,0xC0,0x01,0xA0,0x01, +0x61,0x01,0x80,0x01,0x40,0x01,0x60,0x01,0x00,0x01,0x40,0x01,0x40,0x01,0x40,0x01,0x40,0x01,0x60,0x01,0x20,0x01,0x23,0x0A,0xA5,0x12,0xE7,0x1A,0x86,0x0A,0xC3,0x01,0x20,0x01,0x00,0x01,0x20,0x01,0xE0,0x00,0xE0,0x00,0xA0,0x00,0x20,0x00,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,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x20,0x00,0x20,0x00,0x20,0x00,0x23,0x01,0x2E,0x5C,0xF1,0x6C,0xAF,0x5C,0xEC,0x4C,0x09,0x34,0xE5,0x12,0x43,0x02,0xC1,0x01,0x00,0x01,0x80,0x00,0xA0,0x00,0x60,0x00,0x20,0x00,0x20,0x00,0x20,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x01,0x08, +0x40,0x00,0x40,0x00,0x00,0x00,0x41,0x08,0x20,0x00,0x14,0x9E,0x53,0x8E,0x00,0x01,0x20,0x00,0x00,0x08,0x00,0x08,0x00,0x00,0x00,0x00,0x20,0x00,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,0x61,0x00,0xE3,0x10,0x81,0x00,0xC2,0x08,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x20,0x00,0x20,0x00,0x20,0x00, +0x23,0x11,0xE2,0x08,0x40,0x00,0x40,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x20,0x00,0xA1,0x00,0xE2,0x08,0x20,0x00,0x00,0x00,0x00,0x00,0x40,0x00,0x40,0x00,0xE5,0x19,0x46,0x03,0x67,0x0B,0xC2,0x01,0x62,0x01,0xE4,0x01,0x28,0x13,0x69,0x13,0xA3,0x01,0x40,0x00,0x20,0x00,0x2C,0x64,0x52,0x8E,0xEF,0x7D,0xAE,0x7D,0xEE,0x7D,0xED,0x75,0xED,0x7D,0xEC,0x75,0x2C,0x7E,0xCE,0x85,0xC3,0x19,0x00,0x00,0x20,0x08,0x00,0x00,0xC6,0x21,0x26,0x0A,0xA7,0x02,0xEF,0x34,0x31,0x3D,0x11,0x35,0x52,0x3D,0x51,0x3D,0x91,0x2D,0x10,0x35,0xCB,0x1B,0x06,0x13,0xC6,0x2B,0x8C,0x5D,0xCC,0x5D,0x6E,0x76,0x6E,0x7E,0x4D,0x86,0x2E,0x8E,0x2E,0x8E,0x4E,0x86,0x6D,0x86,0x6D,0x86,0x4D,0x86, +0x4D,0x86,0x2E,0x86,0x2E,0x86,0x2F,0x86,0x2F,0x86,0x2E,0x86,0x2E,0x86,0x2D,0x86,0x2D,0x86,0x2D,0x86,0x0E,0x7E,0x0E,0x7E,0x0E,0x7E,0x0E,0x7E,0x0D,0x7E,0x0D,0x7E,0x0E,0x7E,0xEE,0x7D,0xEE,0x7D,0xEE,0x7D,0xEE,0x7D,0xED,0x7D,0xED,0x7D,0xEE,0x7D,0xEE,0x7D,0xED,0x7D,0xED,0x7D,0xED,0x75,0x0E,0x7E,0x8D,0x75,0xF1,0x8D,0x81,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,0x00,0x01,0x00,0x21,0x00,0x00,0x00,0x40,0x00,0x20,0x00,0x40,0x00,0xE0,0x00,0x91,0xA6,0x31,0xAF,0x90,0xAF,0x0C,0x97,0xEC,0x8E,0xCB,0x8E,0x0C,0x97,0x4E,0xA7,0x0D,0x9F, +0xD0,0x86,0x4F,0x76,0x6E,0x6D,0xAC,0x54,0x6D,0x54,0x8E,0x5C,0x6E,0x54,0xCF,0x54,0xEE,0x54,0x0E,0x4D,0x0E,0x55,0x2F,0x65,0xCE,0x64,0x6E,0x6C,0x60,0x00,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,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x20,0x00,0x40,0x00,0x20,0x00,0x20,0x00,0x40,0x00,0x20,0x00,0x40,0x00,0x42,0x01,0xA7,0x12,0xC8,0x02,0x88,0x02,0x66,0x0A,0x0A,0x3C,0x30,0x76,0x4E,0x96,0xF0,0x96,0x6D,0x76,0x2C,0x6E,0xEE,0x96,0x8C,0x96,0x0B,0x86,0xF0,0x96,0xD0,0x8E,0x2B,0x76,0x0D,0x9F,0x6C,0x96,0x0C,0x6D,0x60,0x00,0x20,0x00,0x00,0x00, +0x40,0x00,0x80,0x00,0xAC,0x44,0x0B,0x2D,0xEB,0x1C,0xA9,0x14,0x8A,0x1C,0x6C,0x24,0xCC,0x2B,0x2A,0x23,0x47,0x1A,0x81,0x00,0x21,0x00,0x40,0x00,0x80,0x02,0x82,0x04,0x40,0x04,0xC3,0x23,0x40,0x00,0x40,0x08,0x21,0x00,0x01,0x00,0x03,0x08,0x01,0x08,0x40,0x00,0x20,0x00,0x20,0x00,0x21,0x08,0x00,0x00,0x40,0x00,0x00,0x00,0x00,0x08,0x01,0x00,0x00,0x00,0x00,0x00,0x01,0x08,0x00,0x08,0x00,0x08,0x00,0x08,0x00,0x08,0x00,0x08,0x00,0x00,0x01,0x00,0x41,0x08,0x01,0x00,0x62,0x00,0x01,0x00,0x22,0x00,0x00,0x10,0x00,0x08,0x01,0x08,0x00,0x08,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,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x40,0x00,0x60,0x00,0x40,0x00,0x60,0x00,0xC0,0x00,0xE5,0x09,0x25,0x0B,0x8B,0x34,0x8F,0x5D,0xF1,0x6D,0x53,0x7E,0x74,0x86,0xB1,0x75,0xCF,0x64,0x2C,0x54,0x4A,0x3B,0x26,0x22,0x43,0x09,0xA1,0x00,0x40,0x00,0x20,0x00,0x20,0x00,0x60,0x00,0x60,0x00,0x40,0x00,0x60,0x00,0x24,0x12,0xB6,0xA6,0xC0,0x00,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x00,0x08,0x00,0x00,0x40,0x00,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,0x20,0x00,0x61,0x00,0xC2,0x00,0xC2,0x08,0x61,0x00,0x40,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x20,0x00,0x00,0x00,0x20,0x00,0x20,0x00,0xA5,0x21,0x23,0x09,0x40,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xA2,0x08,0x03,0x09,0x40,0x00,0x40,0x08,0x00,0x08,0x00,0x00,0x40,0x00,0x60,0x00,0x43,0x09,0x47,0x0B,0xE5,0x02,0x64,0x02,0xAB,0x3B,0x67,0x1A,0x04,0x02,0x68,0x0B,0xE2,0x01,0x80,0x00,0xE9,0x63,0x34,0xAF,0xCD,0x65,0x0E,0x76,0xAD,0x75,0xCE,0x75,0x0E,0x76, +0xCD,0x75,0xCC,0x75,0xEC,0x75,0xCE,0x7D,0x2E,0x75,0xA0,0x00,0x81,0x00,0xA2,0x00,0x48,0x1A,0x2B,0x1B,0x4E,0x34,0x8F,0x2C,0x6F,0x1C,0x90,0x1C,0x90,0x1C,0x8E,0x14,0xAE,0x14,0x8F,0x1C,0xD0,0x2C,0x68,0x0B,0x29,0x2C,0xED,0x65,0x0D,0x6E,0x6F,0x86,0x4D,0x86,0x2D,0x86,0x2D,0x86,0x2E,0x86,0x2E,0x86,0x2D,0x86,0x2D,0x86,0x4D,0x86,0x2D,0x86,0x2E,0x86,0x2E,0x86,0x2E,0x86,0x0E,0x86,0x2E,0x86,0x2D,0x86,0x2D,0x86,0x2D,0x7E,0x0D,0x7E,0x0E,0x7E,0x0F,0x7E,0xEF,0x7D,0x0E,0x7E,0x0D,0x7E,0x0D,0x7E,0xEE,0x85,0xED,0x7D,0xEE,0x7D,0xEE,0x75,0xEE,0x75,0xEE,0x7D,0xCE,0x7D,0xCE,0x85,0xCE,0x7D,0xED,0x7D,0xCD,0x75,0x0F,0x7E,0xCE,0x75,0x8D,0x75,0x51,0x96,0x04,0x2B, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x60,0x00,0x40,0x00,0xCC,0x74,0x91,0x9E,0x6E,0x8E,0x8D,0x86,0xEC,0x86,0x0D,0x8F,0x0D,0x8F,0xED,0x8E,0x6C,0x86,0xAD,0x8E,0xEE,0x8E,0xAE,0x8E,0xF1,0x9E,0xF0,0x7D,0x8C,0x54,0x6D,0x54,0xAF,0x54,0xAF,0x54,0xCF,0x54,0xAE,0x4C,0x2F,0x5D,0xCE,0x5C,0xEF,0x64,0x10,0x75,0xA8,0x32,0x60,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x20,0x00,0x61,0x00,0xE2,0x00,0xE1,0x00,0xE1,0x00,0xE1,0x00,0xE2,0x00,0xC1,0x00,0xC4,0x09,0x08,0x13,0x09,0x0B,0xC8,0x0A,0xA8,0x12,0x2B,0x44,0xF0,0x75,0x8D,0x75,0x90,0x86,0xAF,0x7E,0x4D,0x6E,0xAD,0x8E,0x8C,0x96,0x0B,0x86,0xF0,0x96,0x8F,0x86,0x2B,0x7E,0xEC,0x9E,0x6C,0x8E,0x2D,0x75,0x60,0x00,0x21,0x00,0x00,0x00,0x01,0x00,0x40,0x00,0x60,0x00,0x80,0x00,0xA0,0x00,0xA0,0x00,0x80,0x00,0x60,0x00,0x40,0x00,0x61,0x00,0x20,0x00,0x00,0x00,0x22,0x08,0x40,0x00,0x81,0x0A,0x00,0x0C,0x80,0x04,0x42,0x13,0x60,0x00,0x02,0x10,0x02,0x08,0x02,0x08,0x01,0x00,0x01,0x08,0x21,0x08,0x00,0x08,0x00,0x00,0x00,0x08,0x21,0x00,0x01,0x00,0x01,0x08,0x00,0x08, +0x00,0x00,0x00,0x08,0x01,0x08,0x00,0x00,0x01,0x08,0x01,0x08,0x01,0x08,0x01,0x08,0x02,0x08,0x01,0x08,0x01,0x08,0x00,0x00,0x21,0x00,0x45,0x21,0xA2,0x10,0x20,0x00,0x01,0x10,0x01,0x08,0x01,0x08,0x01,0x08,0x01,0x00,0x01,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,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x40,0x00,0x40,0x00,0x20,0x00,0x60,0x00,0x60,0x00,0x60,0x00,0x60,0x00,0x80,0x00,0x21,0x01,0x04,0x1A,0x29,0x3B,0x6D,0x5C,0x91,0x7D,0x33,0x96,0x17,0xAF,0x57,0xAF,0xD5,0x9E,0x53,0x8E,0xB0,0x75,0xED,0x5C, +0xEC,0x53,0x69,0x3B,0xE2,0x01,0x46,0x1B,0x2E,0x55,0x82,0x01,0x40,0x00,0x21,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x00,0x08,0x00,0x00,0x00,0x00,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,0x20,0x00,0x61,0x00,0xC2,0x08,0xC2,0x00,0xA1,0x00,0x20,0x00,0x00,0x00,0x00,0x00,0x20,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xC6,0x29,0xA2,0x00, +0x60,0x00,0x00,0x00,0x00,0x08,0x00,0x00,0x00,0x00,0x20,0x00,0x03,0x11,0x81,0x00,0x20,0x00,0x20,0x00,0x00,0x00,0x00,0x08,0x00,0x00,0x40,0x00,0x40,0x00,0xC6,0x21,0x26,0x03,0x47,0x13,0xE4,0x01,0x84,0x01,0x05,0x0A,0x85,0x02,0xC8,0x13,0x00,0x02,0x00,0x0A,0xF2,0xAE,0x0C,0x76,0x2C,0x6E,0xEC,0x6D,0xAD,0x75,0xCE,0x75,0xAE,0x65,0xAE,0x65,0xEF,0x75,0x8D,0x75,0xAD,0x75,0xCE,0x75,0x2F,0x5D,0x4F,0x3C,0xCF,0x23,0xCA,0x02,0xAC,0x1B,0xAC,0x1B,0xCE,0x1B,0xEF,0x1B,0xEF,0x1B,0xCE,0x13,0xEE,0x13,0xCE,0x23,0xAE,0x1B,0xCE,0x13,0x2D,0x1C,0x6E,0x45,0x0B,0x4D,0xED,0x6D,0x4F,0x86,0x2D,0x86,0x4C,0x86,0x4D,0x86,0x2E,0x86,0x0F,0x86,0x0F,0x86,0x0E,0x7E,0x0D,0x7E, +0x2D,0x86,0x2E,0x86,0x0E,0x86,0x0E,0x7E,0x0E,0x7E,0x0D,0x7E,0x0D,0x7E,0x0D,0x7E,0x0D,0x7E,0x0E,0x7E,0xEE,0x7D,0xEF,0x7D,0xEF,0x7D,0xEE,0x7D,0xED,0x7D,0x0D,0x7E,0xCD,0x85,0xED,0x7D,0xED,0x75,0xEE,0x75,0xEE,0x75,0xCE,0x7D,0xAE,0x7D,0xAE,0x85,0xAD,0x7D,0xCD,0x7D,0xEE,0x75,0xAE,0x75,0xAE,0x75,0xCF,0x7D,0xAD,0x7D,0x0A,0x65,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x00,0x00,0x20,0x00,0x66,0x3A,0x94,0xB6,0x51,0x9E,0x90,0x96,0xAF,0x8E,0xCF,0x8E,0xCF,0x86,0xAF,0x86,0xB0,0x86,0xD1,0x96,0x91,0x8E, +0xAC,0x96,0xAD,0x8E,0x8E,0x8E,0xD2,0x96,0xF1,0x7D,0x6D,0x4C,0x8E,0x4C,0xAF,0x54,0x8E,0x54,0xCF,0x5C,0x8D,0x54,0xCF,0x64,0xEF,0x64,0xAF,0x64,0xF1,0x6C,0x84,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,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x20,0x00,0x61,0x00,0x24,0x09,0x06,0x22,0x46,0x22,0x46,0x22,0x67,0x22,0x47,0x22,0x47,0x22,0x66,0x12,0xC6,0x02,0xA7,0x02,0xC8,0x0A,0x67,0x0A,0x64,0x0A,0x83,0x0A,0x40,0x02,0xCA,0x4C,0xB0,0x7E,0x8E,0x76,0xAD,0x8E,0x8C,0x8E,0x2B,0x7E,0xF0,0x96,0x8F,0x86,0x4C,0x86,0xCC,0x9E,0x6C,0x8E,0x4D,0x75,0x60,0x00,0x21,0x00,0x00,0x08, +0x02,0x00,0x02,0x00,0x01,0x08,0x01,0x10,0x01,0x18,0x00,0x18,0x01,0x10,0x00,0x08,0x00,0x08,0x00,0x08,0x00,0x08,0x00,0x00,0x20,0x00,0x80,0x00,0x40,0x02,0x80,0x03,0x00,0x04,0x40,0x03,0x80,0x00,0x01,0x00,0x01,0x00,0x20,0x00,0x60,0x00,0x40,0x00,0x00,0x00,0x01,0x00,0x00,0x00,0x20,0x00,0x40,0x00,0x20,0x00,0x00,0x00,0x20,0x00,0x40,0x00,0x40,0x00,0x60,0x00,0x20,0x00,0x40,0x00,0x20,0x00,0x20,0x00,0x20,0x00,0x20,0x00,0x40,0x00,0x20,0x00,0x40,0x00,0x60,0x00,0x41,0x09,0x00,0x01,0x80,0x00,0x20,0x00,0x20,0x00,0x20,0x00,0x20,0x00,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,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x20,0x00,0x20,0x00,0x20,0x00,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x00,0x00,0x00,0x08,0x00,0x08,0x02,0x18,0x02,0x18,0x01,0x10,0x00,0x10,0x01,0x08,0x00,0x00,0x20,0x00,0x60,0x00,0x80,0x00,0x00,0x01,0xE0,0x01,0xA2,0x02,0xA5,0x13,0x6B,0x45,0xAF,0x6E,0xCF,0x6E,0x72,0x7D,0x0E,0x55,0x50,0x5E,0xB1,0x66,0xCF,0x5D,0xCB,0x3B,0x40,0x00,0x01,0x00,0x01,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x00,0x08,0x00,0x00,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,0x20,0x00,0xA2,0x08,0x03,0x19,0xC1,0x00,0x40,0x00,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x40,0x00,0x24,0x19,0x61,0x00,0x40,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x20,0x08,0xE3,0x10,0xC1,0x00,0x40,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x40,0x00,0x20,0x00,0x20,0x00,0xC9,0x42,0xC4,0x02,0x28,0x13,0x80,0x00,0x40,0x00,0xE1,0x00,0x88,0x0B,0x45,0x03,0x23,0x0B,0x2E,0x7E,0xAE,0x8E,0x0A,0x6E,0xCA,0x65,0xCC,0x6D,0x8C,0x6D,0x8E,0x6D,0xF0,0x6D, +0xD0,0x65,0x6F,0x65,0x8F,0x75,0x8D,0x6D,0xCD,0x65,0xD0,0x55,0x11,0x2D,0x14,0x25,0xD2,0x24,0x4F,0x24,0x6B,0x13,0x0B,0x13,0x2D,0x1B,0x0C,0x13,0x0C,0x1B,0x2C,0x1B,0xCB,0x2A,0x0C,0x23,0x0C,0x0B,0xCC,0x0B,0x4B,0x1C,0x89,0x2C,0x6F,0x7E,0x2E,0x86,0x2D,0x86,0x4C,0x86,0x4C,0x86,0x2D,0x7E,0x0F,0x7E,0x10,0x86,0x0F,0x86,0x0E,0x7E,0x0D,0x7E,0x0E,0x7E,0x0E,0x7E,0x0E,0x7E,0x0E,0x7E,0x0D,0x7E,0x0C,0x7E,0x0C,0x7E,0x0D,0x7E,0xEE,0x7D,0xEE,0x7D,0xEF,0x7D,0xEF,0x7D,0xEE,0x7D,0xED,0x7D,0xED,0x7D,0xAD,0x85,0xCD,0x7D,0xED,0x75,0xEE,0x6D,0xEE,0x75,0xAF,0x7D,0x8E,0x85,0xAD,0x85,0xAD,0x7D,0xCD,0x75,0x8D,0x6D,0xCF,0x75,0xB0,0x7D,0x6E,0x75,0xAD,0x75,0xEC,0x7D, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,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,0x08,0x01,0x08,0x00,0x00,0x40,0x00,0xC0,0x00,0xCA,0x5C,0xCF,0x96,0xAD,0x8E,0xCD,0x8E,0xAE,0x8E,0x8F,0x8E,0x8F,0x96,0x8F,0x96,0x8F,0x8E,0xAE,0x8E,0xAD,0x8E,0xAE,0x8E,0x8D,0x8E,0xAE,0x8E,0x8D,0x86,0xAF,0x8E,0xED,0x75,0x89,0x4C,0xCD,0x54,0x8E,0x54,0xB0,0x54,0x70,0x54,0xF1,0x5C,0xAF,0x5C,0xCE,0x5C,0x4F,0x65,0x09,0x44,0x20,0x00,0x20,0x00,0x00,0x00,0x00,0x08,0x00,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x00,0x00,0x20,0x00,0x20,0x00,0x20,0x00,0x20,0x00,0x20,0x00, +0x00,0x10,0x00,0x08,0x20,0x00,0x20,0x00,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,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,0x01,0x00,0x02,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,0x08,0x00,0x00,0x20,0x00,0x40,0x00,0x20,0x00,0x00,0x00,0x00,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x00,0x00,0x20,0x00,0x60,0x00, +0xC0,0x00,0x25,0x02,0xE7,0x12,0x08,0x13,0xC7,0x0A,0xA7,0x12,0x68,0x12,0x68,0x1A,0x88,0x1A,0x88,0x12,0x69,0x12,0x69,0x1A,0x89,0x1A,0x88,0x1A,0x45,0x12,0x28,0x2B,0x4E,0x5E,0xB0,0x7E,0x4E,0x7E,0x4E,0x8E,0x8D,0x8E,0xAD,0x8E,0x4C,0x86,0xAF,0x96,0x6F,0x8E,0x4D,0x86,0xCD,0x8E,0x8D,0x8E,0x2D,0x7D,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,0x01,0x08,0x60,0x00,0xA1,0x0A,0xC0,0x03,0x40,0x02,0x85,0x3B,0x40,0x00,0x00,0x00,0x00,0x00,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x20,0x00,0x20,0x00, +0x00,0x08,0x00,0x08,0x00,0x00,0x20,0x00,0x20,0x00,0x00,0x00,0x00,0x08,0x00,0x00,0x41,0x00,0x00,0x00,0x00,0x10,0x00,0x00,0xC0,0x00,0xE7,0x1A,0xE0,0x00,0x00,0x10,0x00,0x00,0x00,0x00,0x01,0x08,0x01,0x00,0x00,0x00,0x41,0x00,0x00,0x00,0x00,0x08,0x00,0x10,0x00,0x00,0x40,0x00,0x20,0x00,0x20,0x00,0x00,0x08,0x00,0x00,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,0x01,0x00,0x01,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,0x20,0x00,0x20,0x00,0x00,0x00,0x02,0x08,0x01,0x00,0x00,0x00,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, +0x20,0x00,0x00,0x00,0xE5,0x19,0x51,0x76,0x8F,0x66,0x4D,0x55,0x06,0x22,0x20,0x00,0x20,0x00,0x20,0x00,0x00,0x00,0x02,0x00,0x01,0x00,0x20,0x00,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,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x20,0x00,0x60,0x00,0xE2,0x00,0x03,0x09,0x61,0x00,0x00,0x00,0x00,0x08,0x00,0x08,0x00,0x00,0x00,0x00,0x20,0x00,0x20,0x00,0x40,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x81,0x08,0x24,0x11,0x20,0x00,0x20,0x00,0x20,0x00, +0x00,0x00,0x00,0x00,0x20,0x00,0x82,0x00,0xA3,0x08,0x21,0x08,0x00,0x08,0x00,0x08,0x00,0x00,0x20,0x00,0x40,0x00,0x40,0x00,0x20,0x00,0x40,0x00,0x40,0x00,0x86,0x19,0x4A,0x04,0x05,0x03,0xE2,0x01,0x81,0x01,0xE2,0x01,0x66,0x03,0xC6,0x0B,0x09,0x45,0xAE,0x7E,0x6D,0x76,0xCC,0x5D,0x91,0x76,0xF4,0x8E,0x15,0x9F,0x93,0x86,0xCF,0x6D,0xED,0x5D,0xCE,0x65,0x6D,0x65,0xAE,0x75,0x6D,0x6D,0x0F,0x76,0x8F,0x55,0xCF,0x2C,0xF3,0x24,0xF6,0x2C,0xB4,0x34,0x71,0x34,0x8C,0x2B,0x88,0x12,0x8A,0x12,0x6B,0x12,0x87,0x03,0xE9,0x03,0x8A,0x14,0x8B,0x1D,0xCA,0x25,0x0B,0x4E,0x2E,0x7E,0xEF,0x8D,0xEF,0x85,0x2E,0x7E,0x2D,0x7E,0x0E,0x86,0xEE,0x85,0x0E,0x86,0x0D,0x7E,0x0C,0x7E, +0x0E,0x7E,0x0E,0x7E,0x0E,0x7E,0x0E,0x7E,0xEE,0x7D,0xEE,0x7D,0xEE,0x7D,0xEE,0x7D,0xEE,0x7D,0xEE,0x7D,0xEE,0x7D,0xEE,0x7D,0xEE,0x7D,0xEE,0x7D,0xCE,0x7D,0xCE,0x7D,0xCF,0x75,0xCF,0x75,0xCF,0x75,0xCE,0x75,0xCE,0x75,0xCE,0x75,0xCD,0x75,0xCD,0x75,0xCD,0x75,0xAD,0x75,0xAD,0x75,0xAD,0x75,0xAD,0x75,0xAD,0x75,0xAE,0x75,0xAE,0x75,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,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,0x10,0x00,0x00,0x40,0x00,0x40,0x00,0x63,0x22,0x33,0xAF,0x4D,0x86,0x8D,0x86,0x8D,0x86,0x8D,0x86,0x6E,0x8E,0x6F,0x8E,0x6F,0x8E,0x6E,0x8E,0x8E,0x8E,0x8D,0x86, +0x8E,0x8E,0x6D,0x8E,0x8D,0x8E,0x6D,0x86,0x8E,0x8E,0xB0,0x8E,0x8D,0x6D,0x6B,0x4C,0xAE,0x54,0xCF,0x5C,0xB0,0x54,0xAF,0x54,0xCF,0x5C,0xEF,0x5C,0x0E,0x65,0x2E,0x65,0x24,0x19,0x20,0x00,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,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x20,0x00,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,0x08,0x00,0x00,0x00,0x00,0x40,0x00,0x20,0x00,0x00,0x00,0x00,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x00,0x00,0x00,0x00,0x81,0x00,0x23,0x01,0x87,0x0A,0x69,0x1B,0x0B,0x24,0x2A,0x1C,0xC8,0x0B,0xA8,0x13,0x88,0x13,0x87,0x13,0x67,0x13,0x67,0x0B,0x68,0x0B,0x68,0x13,0x68,0x13,0x88,0x1B,0x66,0x13,0xE7,0x1B,0x2E,0x5E,0x4E,0x6E,0x8F,0x86,0x6E,0x8E,0x6D,0x8E,0xAD,0x8E,0x6C,0x86,0xAF,0x96,0x6F,0x8E,0x4D,0x86,0xCD,0x8E,0x8D,0x8E,0x4D,0x7D,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,0x08,0x40,0x00,0xA1,0x0A,0x00,0x04,0x80,0x02,0x85,0x33,0x40,0x00,0x00,0x00,0x20,0x00,0x20,0x00,0x20,0x00,0x00,0x00,0x21,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x20,0x00,0x20,0x00,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x40,0x00,0x00,0x00,0xA0,0x00,0x66,0x1A,0x8A,0x33,0x44,0x12,0x80,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x21,0x00,0x20,0x00,0x20,0x00,0x00,0x00,0x00,0x08,0x00,0x08,0x20,0x00,0x20,0x00,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,0x20,0x00,0x40,0x00,0x40,0x00,0x20,0x00,0x01,0x00,0x01,0x08,0x00,0x00,0x00,0x00,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,0x21,0x00,0x60,0x00,0x49,0x3C,0xB0,0x6E,0x8E,0x5D,0x26,0x22,0x00,0x00,0x20,0x00,0x20,0x00,0x00,0x00,0x02,0x00,0x01,0x00,0x20,0x00,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,0x08,0x20,0x00,0x61,0x00,0x23,0x09,0x23,0x09,0x20,0x00,0x00,0x00,0x00,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x20,0x00,0x20,0x00,0x20,0x00,0x24,0x11,0x44,0x19,0x40,0x00,0x20,0x00,0x00,0x00,0x00,0x00,0x20,0x00,0x20,0x00,0xA2,0x08,0xC3,0x08,0x20,0x00,0x00,0x00,0x00,0x08,0x00,0x00,0x00,0x00,0x40,0x00,0x20,0x00,0x20,0x00,0x20,0x00,0x40,0x00,0x61,0x00,0x27,0x22,0x4A,0x04,0x26,0x03,0xE7,0x0A,0x4C,0x3C,0x26,0x03,0xA6,0x03,0x64,0x03,0x2E,0x6E,0x6F,0x7E,0xEC,0x65,0x94,0x9F,0xFA,0xBF,0xFC,0xCF,0xFB,0xCF,0xFB,0xCF,0xF8,0xBF, +0x4F,0x6E,0x8D,0x5D,0x8F,0x6D,0x4E,0x75,0x6E,0x75,0x2D,0x65,0x11,0x76,0x2C,0x24,0x4E,0x24,0x2E,0x1C,0xEC,0x13,0xC9,0x0B,0xC7,0x13,0xA6,0x0B,0xC9,0x13,0xAD,0x2C,0x6F,0x35,0xB1,0x45,0x32,0x56,0x6C,0x2D,0x08,0x1D,0xCB,0x45,0x2E,0x7E,0xEF,0x8D,0xEF,0x85,0x2E,0x7E,0x2D,0x7E,0x0D,0x86,0xEE,0x85,0x0E,0x7E,0x0E,0x7E,0x0D,0x7E,0xEE,0x7D,0xEE,0x7D,0xEE,0x7D,0xEE,0x7D,0xEE,0x7D,0xEE,0x7D,0xEE,0x7D,0xEE,0x7D,0xEE,0x7D,0xEE,0x7D,0xCE,0x7D,0xCE,0x7D,0xCE,0x7D,0xCE,0x7D,0xCE,0x7D,0xCE,0x7D,0xCF,0x75,0xCF,0x75,0xCE,0x75,0xCE,0x75,0xAE,0x75,0xAE,0x75,0xAD,0x75,0xAD,0x75,0xAD,0x75,0xAD,0x75,0xAD,0x75,0xAD,0x75,0xAD,0x75,0x8D,0x75,0x8D,0x75,0x8E,0x75, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,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,0x01,0x00,0x20,0x00,0x81,0x11,0x31,0x96,0x2F,0x8E,0x8E,0x8E,0x8E,0x86,0x8D,0x86,0x6E,0x86,0x6E,0x8E,0x6E,0x8E,0x6E,0x8E,0x6E,0x8E,0x6E,0x86,0x6E,0x86,0x6E,0x86,0x6E,0x8E,0x6D,0x86,0x8E,0x86,0x6E,0x86,0x8F,0x8E,0x70,0x86,0x2C,0x5D,0x8C,0x4C,0xCE,0x54,0xAE,0x54,0xAE,0x54,0xEF,0x5C,0xEF,0x5C,0xEE,0x5C,0x2E,0x65,0x6C,0x63,0x20,0x00,0x40,0x00,0x40,0x00,0x40,0x00,0x00,0x00,0x00,0x08,0x00,0x08,0x00,0x00,0x20,0x00,0x00,0x00,0x00,0x08,0x00,0x08,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x20,0x00,0x20,0x00,0x00,0x00,0x00,0x08,0x00,0x08,0x00,0x00,0x20,0x00,0x20,0x00,0x00,0x00,0x00,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x01,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,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x20,0x00,0x20,0x00,0x00,0x00,0x00,0x08,0x00,0x00,0x00,0x00,0x20,0x00,0x00,0x00,0x00,0x00,0x61,0x00,0xA5,0x09,0xEA,0x2A, +0x6B,0x1B,0xCB,0x1B,0x0D,0x35,0x8D,0x2D,0x6C,0x2D,0x8C,0x2D,0x8C,0x35,0x8B,0x35,0xAC,0x35,0xAC,0x2D,0xAC,0x2D,0xAD,0x35,0x8D,0x35,0xAD,0x3D,0x8C,0x35,0x8B,0x35,0xE9,0x34,0x09,0x45,0x6E,0x7E,0x8E,0x8E,0x8D,0x8E,0xCD,0x8E,0x6C,0x86,0x6E,0x86,0x6F,0x8E,0x6D,0x86,0xAD,0x8E,0x8D,0x8E,0x4D,0x7D,0x40,0x00,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x20,0x00,0x00,0x00,0x01,0x08,0x40,0x00,0xA1,0x0A,0x61,0x04,0xE0,0x03,0x26,0x2C,0x80,0x00,0x00,0x00,0x00,0x00,0x20,0x00,0x20,0x00,0x00,0x00,0x00,0x00,0x01,0x08,0x00,0x08,0x00,0x08,0x00,0x08,0x01,0x08,0x00,0x00,0x00,0x00, +0x00,0x08,0x00,0x00,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x20,0x00,0xC1,0x00,0x67,0x1A,0xC8,0x2A,0x80,0x00,0x87,0x1A,0x24,0x02,0x20,0x00,0x21,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x20,0x00,0x40,0x00,0x40,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x00,0x00,0x40,0x00,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,0x20,0x00,0x40,0x00,0x20,0x00,0x01,0x00,0x01,0x08,0x00,0x00,0x00,0x00,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,0x41,0x00,0x80,0x00,0x46,0x1B,0x8F,0x5E,0x10,0x66,0xA0,0x00,0x20,0x00,0x20,0x00,0x20,0x00,0x00,0x00,0x01,0x08,0x00,0x00,0x20,0x00,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,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x61,0x00,0x23,0x11,0xE2,0x00,0x20,0x00,0x20,0x00,0x00,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x00,0x00,0x00,0x00,0x20,0x00,0xC5,0x19,0x23,0x09,0x81,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x20,0x00,0xE3,0x10,0xA2,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x20,0x00,0x40,0x00,0x67,0x1A,0x25,0x03,0x0A,0x1C,0xC6,0x0A,0x43,0x02,0x24,0x0B,0xA4,0x13,0xEE,0x65,0x91,0x7E,0xEE,0x6D,0x12,0x8F,0xF9,0xBF,0xDA,0xC7,0xF9,0xBE,0x3A,0xC7,0x78,0xBF,0xF8,0xBF,0xF8,0xB7,0x6D,0x65,0x4E,0x65,0x0E,0x6D,0x8F,0x75,0x6F,0x6D,0x73,0x86,0xAC,0x3C,0xE5,0x02,0xA8,0x0B,0x49,0x14,0xEA,0x1C,0x4B,0x25,0x0D,0x36,0xD0,0x4E,0xD0,0x46,0x4F,0x35,0xEE,0x3C,0xAC,0x34,0x86,0x0B,0x09,0x2D,0xCC,0x55,0x4F,0x86,0x0F,0x86,0xEE,0x85,0x2D,0x7E,0x0D,0x7E,0x0D,0x7E,0xEE,0x7D,0xEE,0x7D,0xEE,0x7D,0xED,0x7D, +0xEE,0x7D,0xEE,0x7D,0xEE,0x7D,0xEE,0x7D,0xEE,0x7D,0xED,0x7D,0xCE,0x7D,0xCE,0x7D,0xCE,0x7D,0xCE,0x7D,0xCD,0x75,0xCD,0x75,0xCE,0x75,0xCE,0x75,0xCE,0x75,0xCE,0x75,0xAE,0x75,0xAE,0x75,0xAE,0x75,0xAE,0x75,0xAD,0x75,0xAD,0x75,0xAD,0x75,0xAD,0x75,0xAD,0x75,0xAD,0x75,0x8D,0x75,0x8D,0x75,0x8E,0x75,0x8D,0x75,0x8E,0x75,0x8E,0x75,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,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,0x20,0x00,0x60,0x00,0x0E,0x7D,0x0F,0x8E,0x6F,0x8E,0x2D,0x7E,0x8F,0x8E,0x6E,0x86,0x6E,0x86,0x6E,0x86,0x4E,0x8E,0x6E,0x86,0x6E,0x86,0x6E,0x86,0x6E,0x86, +0x4E,0x86,0x6F,0x8E,0x4E,0x86,0x6E,0x8E,0x6E,0x86,0x4D,0x7E,0x6F,0x86,0x2F,0x86,0x8E,0x6D,0x4A,0x44,0xCD,0x5C,0xEE,0x5C,0xAD,0x54,0xEE,0x5C,0xCD,0x5C,0xEE,0x5C,0xAF,0x6C,0xA1,0x00,0x20,0x00,0x20,0x00,0x20,0x00,0x20,0x00,0x00,0x08,0x00,0x10,0x00,0x00,0x20,0x00,0x00,0x00,0x00,0x08,0x00,0x08,0x00,0x00,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x20,0x00,0x20,0x00,0x20,0x00,0x00,0x00,0x00,0x08,0x00,0x08,0x00,0x00,0x20,0x00,0x20,0x00,0x00,0x00,0x00,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x01,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,0x01,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x00,0x02,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x00,0x00,0x20,0x00,0x00,0x00,0x00,0x00,0x81,0x00,0xC9,0x22,0x0A,0x23,0x8B,0x2B,0xAC,0x1B,0xAB,0x13,0x0E,0x2D,0x6D,0x2D,0x8D,0x2D,0x6C,0x2D,0x6B,0x2D,0x8B,0x35,0x6B,0x2D,0xAB,0x2D,0x8C,0x2D,0x8D,0x2D,0x6D,0x2D,0x6D,0x2D,0x6C,0x2D,0x8B,0x2D,0x6B,0x3D,0x4A,0x45,0xAF,0x86,0x6E,0x86,0x4D,0x86,0xAD,0x86,0xAD,0x8E,0x8E,0x8E,0x6E,0x8E,0x8E,0x86,0xAC,0x86,0x8D,0x8E,0x4D,0x7D,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,0x08,0x20,0x00,0x80,0x02,0x41,0x04,0x20,0x04,0xE3,0x1B,0x80,0x00,0x00,0x00,0x62,0x08,0xC3,0x08,0x20,0x00,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x01,0x08,0x01,0x00,0x01,0x00,0x00,0x00,0x21,0x00,0x20,0x00,0x00,0x00,0x00,0x10,0x00,0x10,0x00,0x08,0x00,0x00,0x00,0x00,0x44,0x19,0x26,0x1A,0x05,0x0A,0x40,0x00,0x00,0x00,0x03,0x11,0xC5,0x11,0xE6,0x19,0x20,0x00,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x20,0x00,0x00,0x00,0x20,0x00,0x61,0x08,0x20,0x00,0x00,0x00,0x00,0x00,0x00,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,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,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,0x60,0x00,0xE5,0x19,0x60,0x00,0x00,0x00,0x00,0x08,0x00,0x08,0x00,0x00,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,0x62,0x08,0x40,0x00,0xC8,0x2B,0x8C,0x3D,0xB6,0x97,0xC7,0x2A,0x60,0x00,0x20,0x00,0x20,0x00,0x00,0x00,0x01,0x08,0x00,0x00,0x20,0x00,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,0x60,0x00,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x00,0x00,0x40,0x00,0xC1,0x00,0x64,0x09,0xC2,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x20,0x00,0x81,0x00,0x85,0x19,0xA1,0x00,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x40,0x00,0x81,0x00,0xC3,0x08,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x20,0x00,0x00,0x00,0x21,0x00,0x00,0x00,0x00,0x08,0x00,0x10,0x00,0x08,0x40,0x00,0x80,0x00,0xE8,0x22,0x6A,0x14,0xA8,0x13,0x07,0x0B,0xA7,0x23,0xE5,0x23,0x4E,0x76,0x6F,0x7E,0xEF,0x6D,0xEF,0x6D,0xF8,0xAF,0xF9,0xBF,0xBB,0xCF,0x3D,0xDF,0x9E,0xE7,0x58,0xBF,0xF8,0xBF, +0xF9,0xBF,0x55,0x9F,0x4C,0x5D,0x8D,0x5D,0xAE,0x5D,0x28,0x2C,0x08,0x1C,0xCB,0x2C,0x6E,0x3D,0x8F,0x35,0x0D,0x25,0x73,0x4E,0xF0,0x3D,0xEB,0x14,0x2B,0x1D,0x05,0x04,0xCB,0x2C,0x6A,0x34,0xC0,0x01,0x82,0x02,0xEA,0x44,0x4F,0x76,0xEE,0x75,0xEE,0x7D,0x0E,0x7E,0x0D,0x7E,0x0D,0x7E,0xED,0x7D,0xEE,0x7D,0xEE,0x7D,0xEE,0x7D,0xED,0x7D,0xEE,0x7D,0xED,0x7D,0xED,0x7D,0xED,0x7D,0xCE,0x7D,0xCE,0x7D,0xCE,0x7D,0xCD,0x75,0xCD,0x75,0xCE,0x75,0xCE,0x75,0xAD,0x75,0xAD,0x75,0xAD,0x75,0xAD,0x75,0xAD,0x75,0xAD,0x75,0xAD,0x75,0xAD,0x75,0xAD,0x75,0xAD,0x75,0xAD,0x75,0x8D,0x75,0x8D,0x75,0x8D,0x75,0x8D,0x75,0x8D,0x75,0x8E,0x75,0x8E,0x6D,0x6E,0x6D,0x6E,0x6D,0x6E,0x6D, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x20,0x00,0x40,0x00,0x03,0x22,0x31,0x9E,0x0E,0x8E,0x6F,0x8E,0x4E,0x86,0x6E,0x86,0x4E,0x86,0x4E,0x86,0x4E,0x86,0x4E,0x8E,0x4D,0x86,0x4E,0x86,0x6E,0x86,0x6E,0x86,0x2E,0x86,0x4F,0x8E,0x4E,0x86,0x4E,0x86,0x6E,0x86,0x4E,0x86,0x4E,0x86,0x6F,0x86,0x50,0x86,0x10,0x7E,0xEC,0x5C,0x8B,0x4C,0xED,0x5C,0xEE,0x5C,0xEE,0x5C,0xEE,0x5C,0x0F,0x5D,0x83,0x19,0x00,0x08,0x00,0x08,0x00,0x00,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x20,0x00,0x00,0x00,0x00,0x08,0x00,0x08,0x20,0x00,0x20,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x00,0x08,0x00,0x00,0x20,0x00,0x20,0x00,0x00,0x00,0x00,0x08,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x01,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,0x01,0x00,0x02,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x00,0x08,0x00,0x00,0x00,0x00,0x20,0x00,0x84,0x01,0xAC,0x2B,0x6A,0x13,0x8B,0x1B, +0x8D,0x1B,0x8B,0x13,0x0E,0x35,0x4E,0x35,0x4D,0x35,0x8A,0x24,0x29,0x1C,0x49,0x24,0x49,0x24,0x6A,0x24,0x49,0x1C,0x4A,0x1C,0x4B,0x1C,0x4A,0x1C,0x8A,0x1C,0x6D,0x35,0x4B,0x35,0x4A,0x45,0xAF,0x86,0x8F,0x8E,0x8D,0x86,0xAD,0x86,0xAD,0x8E,0x4D,0x86,0x6E,0x8E,0xAE,0x8E,0x8C,0x86,0x8D,0x8E,0x6D,0x7D,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,0x01,0x08,0x40,0x00,0xC1,0x0A,0x61,0x0C,0x40,0x04,0x44,0x24,0xA0,0x00,0x00,0x00,0x83,0x10,0xE3,0x08,0x40,0x00,0xC2,0x08,0x00,0x00,0x00,0x00,0x40,0x00,0x40,0x00,0x20,0x00,0x82,0x10,0x01,0x00,0x01,0x00, +0x01,0x08,0x01,0x00,0x20,0x00,0x00,0x08,0x00,0x10,0x00,0x08,0x81,0x10,0x60,0x00,0x63,0x21,0xE5,0x29,0x42,0x09,0x84,0x19,0x20,0x00,0x00,0x10,0x00,0x00,0xC6,0x31,0x21,0x01,0xA3,0x11,0x20,0x00,0x20,0x00,0x00,0x00,0x00,0x08,0x00,0x08,0x00,0x00,0x20,0x00,0x03,0x09,0x20,0x00,0x82,0x08,0x00,0x08,0x00,0x10,0x00,0x10,0x00,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,0x00,0x00,0x00,0x00,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,0x01,0x00,0x00,0x08,0x00,0x08,0x20,0x00,0xAB,0x4B,0xA3,0x09,0x20,0x00,0x00,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,0x21,0x00,0x40,0x00,0xA8,0x2B,0x6C,0x45,0x34,0x87,0xD2,0x85,0x40,0x00,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x00,0x00,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,0x20,0x00,0x20,0x00,0x20,0x00,0x20,0x00,0x20,0x00,0x40,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x20,0x00,0xE2,0x00,0xA4,0x01,0xE2,0x00,0x00,0x00,0x00,0x08,0x00,0x08,0x00,0x00,0x20,0x00,0x40,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x20,0x00,0xC2,0x00,0x64,0x11,0xA1,0x00,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x61,0x00,0xE2,0x08, +0x20,0x00,0x40,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x20,0x00,0x00,0x00,0x00,0x08,0x00,0x10,0x00,0x08,0x20,0x00,0x80,0x00,0x68,0x2B,0x28,0x1C,0xA0,0x01,0x88,0x23,0x4D,0x5D,0x6F,0x7E,0x0D,0x76,0x0F,0x7E,0x6E,0x65,0x72,0x7E,0xF9,0xAF,0xF9,0xB7,0x9C,0xCF,0x3E,0xDF,0x7F,0xE7,0xBB,0xC7,0xFA,0xBF,0xFA,0xA7,0x76,0x8F,0x68,0x24,0x46,0x14,0x46,0x0C,0x0E,0x46,0xCE,0x35,0x8D,0x2D,0x72,0x4E,0x8F,0x35,0x0E,0x2D,0xEF,0x2C,0x2C,0x1C,0x4B,0x24,0x45,0x03,0x85,0x13,0x85,0x24,0x08,0x4D,0xC0,0x22,0x05,0x4C,0x4B,0x6D,0x50,0x86,0x0F,0x7E,0x0E,0x7E,0x0D,0x7E,0x0D,0x76,0xED,0x7D,0xEE,0x7D,0xCE,0x7D,0xEE,0x7D,0xEE,0x7D,0xCD,0x7D, +0xCE,0x7D,0xCE,0x7D,0xCE,0x7D,0xCE,0x7D,0xCD,0x75,0xCD,0x75,0xCD,0x75,0xCE,0x75,0xAD,0x75,0xAD,0x75,0xAD,0x75,0xAD,0x75,0xAD,0x75,0xAD,0x75,0xAD,0x75,0xAD,0x75,0xAD,0x75,0xAD,0x75,0xAD,0x75,0xAD,0x75,0x8D,0x75,0x8D,0x75,0x8D,0x75,0x8D,0x75,0x8E,0x75,0x8E,0x6D,0x6E,0x6D,0x6E,0x6D,0x6E,0x6D,0x6E,0x6D,0x6E,0x6D,0x6E,0x6D,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x60,0x00,0x60,0x00,0xED,0x74,0x50,0x96,0x2E,0x86,0x2D,0x86,0x6E,0x86,0x2E,0x7E,0x4E,0x86,0x2E,0x86,0x2E,0x86,0x2D,0x86,0x4D,0x86,0x4D,0x86,0x4E,0x86,0x4E,0x7E, +0x4F,0x86,0x0E,0x86,0x2E,0x86,0x4E,0x86,0x4E,0x86,0x4E,0x86,0x4D,0x86,0x2D,0x7E,0x2E,0x7E,0x70,0x86,0x70,0x8E,0x8E,0x6D,0xCC,0x5C,0xCC,0x5C,0xCD,0x5C,0xEE,0x64,0x4F,0x5D,0x28,0x43,0x00,0x00,0x00,0x08,0x00,0x00,0x00,0x00,0x21,0x00,0x00,0x00,0x20,0x00,0x20,0x00,0x20,0x00,0x00,0x00,0x00,0x08,0x00,0x08,0x00,0x08,0x00,0x10,0x00,0x00,0x00,0x00,0x00,0x08,0x00,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x20,0x00,0x20,0x00,0x00,0x00,0x00,0x08,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,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,0x08,0x00,0x00,0x40,0x00,0xA4,0x01,0xEC,0x1B,0x6A,0x03,0x8B,0x13,0x8A,0x13,0xA9,0x0B,0x4D,0x35,0x6D,0x35,0x6D,0x3D,0xE9,0x1B,0x07,0x13,0x07,0x1B,0x07,0x13,0x27,0x13,0x07,0x13,0x08,0x0B,0x29,0x13,0x28,0x0B,0x67,0x0B,0x0D,0x35,0x6C,0x3D,0x8B,0x4D,0xAF,0x86,0xAF,0x8E,0x8E,0x86,0x8D,0x86,0xCD,0x8E,0x4D,0x86,0x6E,0x8E,0xCE,0x8E,0x6C,0x7E,0x8D,0x8E,0x6E,0x85,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,0x21,0x08,0x60,0x00,0xC1,0x0A,0x00,0x04,0x40,0x03,0x24,0x24,0x80,0x00,0x00,0x00,0x62,0x10,0xA1,0x00,0xC1,0x00,0xC5,0x21,0x20,0x00,0x20,0x00,0x83,0x01,0x45,0x0A,0xA0,0x00,0x67,0x32,0x20,0x00,0x41,0x00,0x00,0x00,0x00,0x00,0x20,0x00,0x20,0x00,0x80,0x00,0xC0,0x00,0x81,0x01,0x44,0x1A,0x81,0x01,0x80,0x00,0x65,0x22,0x60,0x00,0x00,0x00,0x00,0x00,0x20,0x00,0x81,0x00,0x25,0x22,0x01,0x01,0x41,0x01,0x40,0x00,0x20,0x08,0x00,0x10,0x00,0x18,0x00,0x00,0x40,0x00,0xE6,0x11,0x81,0x00,0x86,0x21,0x21,0x00,0x00,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,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x08,0x00,0x08,0x20,0x00,0xA3,0x01,0x4D,0x5C,0x40,0x00,0x20,0x08,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,0x41,0x00,0x40,0x00,0x2B,0x3C,0x8E,0x4D,0x91,0x6E,0x15,0x97,0x82,0x09,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,0x20,0x00,0x20,0x00, +0x20,0x00,0x61,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x20,0x00,0x20,0x00,0x43,0x09,0x64,0x09,0x80,0x00,0x20,0x00,0x00,0x08,0x00,0x08,0x00,0x08,0x00,0x00,0x20,0x00,0x00,0x00,0x20,0x00,0x20,0x00,0x00,0x00,0x61,0x00,0x44,0x09,0x23,0x09,0x61,0x00,0x00,0x00,0x00,0x00,0x20,0x00,0x20,0x00,0x40,0x00,0x24,0x19,0x61,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x00,0x00,0x00,0x00,0x20,0x00,0x00,0x00,0x01,0x00,0x01,0x08,0x00,0x08,0x20,0x08,0x60,0x00,0xA0,0x00,0x26,0x1B,0x69,0x34,0x2C,0x55,0x92,0x86,0x50,0x7E,0x2F,0x7E,0xCD,0x75,0x4D,0x6D,0x2D,0x5D,0x31,0x6E,0xFA,0xAF,0xFA,0xB7,0xBC,0xCF,0x7E,0xE7,0x7E,0xDF,0x15,0x8E,0x53,0x6E, +0xD3,0x45,0x12,0x4E,0x0F,0x46,0x4E,0x46,0xAB,0x2D,0x32,0x5F,0x8D,0x35,0x2B,0x2D,0x4F,0x56,0x62,0x03,0x67,0x2C,0xC2,0x02,0xE3,0x0A,0x88,0x4C,0x6E,0x8E,0xAE,0x96,0xEA,0x7E,0xAD,0xAF,0xCF,0xCF,0xD1,0xCF,0xAF,0xA6,0xCE,0x7D,0xEF,0x75,0xEE,0x75,0x0D,0x76,0x0D,0x76,0xED,0x7D,0xCE,0x7D,0xCE,0x7D,0xEE,0x7D,0xED,0x75,0xCD,0x7D,0xCD,0x75,0xCD,0x75,0xCD,0x75,0xCE,0x75,0xCE,0x75,0xCE,0x75,0xAD,0x75,0xAD,0x75,0xAD,0x75,0xAD,0x75,0xAD,0x75,0xAD,0x75,0xAD,0x75,0xAD,0x75,0xAD,0x75,0xAD,0x75,0xAD,0x75,0x8D,0x75,0x8D,0x75,0x8D,0x75,0x8D,0x75,0x8D,0x6D,0x8E,0x6D,0x8E,0x6D,0x6E,0x6D,0x6E,0x6D,0x6E,0x6D,0x6E,0x6D,0x6E,0x6D,0x6E,0x6D,0x6D,0x6D,0x6D,0x6D, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x80,0x00,0x47,0x3B,0x31,0x96,0xEE,0x85,0x2E,0x86,0x2D,0x7E,0x0D,0x7E,0x2E,0x7E,0x2E,0x7E,0x0E,0x86,0x0E,0x86,0x0D,0x86,0x2D,0x86,0x2D,0x7E,0x2E,0x7E,0x2E,0x7E,0x4F,0x86,0x0E,0x7E,0x0E,0x7E,0x2E,0x86,0x2D,0x7E,0x0D,0x7E,0x2D,0x86,0x2D,0x86,0x2D,0x7E,0x2D,0x7E,0x0E,0x7E,0x2F,0x86,0x10,0x7E,0x4E,0x6D,0xED,0x5C,0xAC,0x5C,0xED,0x54,0x2F,0x6D,0xC4,0x19,0x40,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x20,0x00,0x20,0x00,0x00,0x00,0x21,0x00,0x00,0x00,0x00,0x00,0x00,0x08, +0x40,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x00,0x08,0x00,0x08,0x00,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x20,0x00,0x20,0x00,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,0x01,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,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x20,0x08,0x00,0x00,0x00,0x00,0xA1,0x00,0x29,0x1B,0xCB,0x0B,0xAA,0x03,0x8A,0x13, +0xC9,0x0B,0xC8,0x03,0x4C,0x2D,0x8C,0x35,0x8D,0x45,0xA8,0x1B,0x07,0x13,0xE8,0x22,0xE8,0x1A,0xE7,0x1A,0x08,0x1B,0x09,0x1B,0x29,0x13,0x28,0x0B,0x67,0x0B,0x6D,0x45,0x6C,0x3D,0x6B,0x4D,0x8F,0x86,0xAF,0x8E,0x6D,0x7E,0x8D,0x7E,0xEE,0x8E,0x4C,0x86,0x6E,0x8E,0xEF,0x96,0x6C,0x7E,0x8E,0x8E,0x6E,0x85,0x40,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x20,0x00,0x80,0x02,0x60,0x03,0x20,0x02,0xA4,0x1B,0x60,0x00,0x01,0x08,0x83,0x18,0xA1,0x00,0xC1,0x00,0x85,0x19,0xA1,0x00,0x84,0x09,0x8A,0x2B,0xEE,0x44,0x22,0x02,0xE3,0x11,0x40,0x00,0x00,0x00, +0x40,0x00,0x41,0x08,0x00,0x00,0xE5,0x11,0x47,0x03,0xA7,0x03,0x2D,0x35,0x26,0x0B,0x83,0x02,0xE9,0x23,0x64,0x02,0xA2,0x09,0x83,0x11,0x42,0x01,0xE4,0x01,0x45,0x02,0x06,0x22,0x21,0x01,0xE6,0x12,0xA2,0x01,0x40,0x00,0x00,0x08,0x00,0x10,0x20,0x00,0x22,0x01,0x26,0x0A,0x60,0x00,0x65,0x19,0x61,0x00,0xE6,0x21,0xE1,0x00,0x20,0x00,0x00,0x00,0x20,0x00,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,0x20,0x10,0x20,0x00,0x60,0x00,0x2C,0x54,0x04,0x22,0x20,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,0x08,0x40,0x00,0x60,0x00,0xEA,0x3B,0x6E,0x55,0x0B,0x3D,0x76,0x97,0x07,0x2B,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x20,0x00,0x20,0x00,0xE6,0x21,0x23,0x09,0x40,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x40,0x00,0xC2,0x00,0x23,0x09,0xE2,0x08,0x40,0x00,0x00,0x00,0x00,0x00,0x20,0x00,0x20,0x00,0xC2,0x00,0xC2,0x00,0x40,0x00,0x00,0x00,0x00,0x08, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x20,0x00,0xA0,0x00,0x02,0x0A,0x4E,0x65,0x50,0x7E,0x2F,0x76,0xCE,0x6D,0xCE,0x6D,0xEF,0x75,0x2D,0x65,0x4E,0x6D,0x4E,0x65,0xCF,0x5D,0xF8,0x9F,0xFA,0xAF,0xBB,0xBF,0x3C,0xC7,0x3C,0xC7,0x15,0x7E,0x37,0x87,0xFC,0x87,0x73,0x4E,0x70,0x4E,0x4A,0x2D,0x67,0x1C,0x8C,0x45,0xC9,0x34,0xE9,0x44,0xAC,0x86,0xC7,0x6D,0x06,0x7E,0xAD,0xB7,0xCE,0xBF,0x6C,0xB7,0xAC,0xC7,0x8B,0xBF,0xEC,0xB7,0x6A,0xB7,0x09,0xB7,0xAB,0xAE,0x8B,0x85,0xEF,0x85,0xEF,0x7D,0x0E,0x76,0x0D,0x76,0xED,0x75,0xCE,0x7D,0xAE,0x7D,0xCE,0x7D,0xCD,0x75,0xCD,0x75,0xCD,0x75, +0xCE,0x75,0xAD,0x75,0xAD,0x75,0xAD,0x75,0xAD,0x75,0xAD,0x75,0xAD,0x75,0xAD,0x75,0xAD,0x75,0xAD,0x75,0x8D,0x75,0x8D,0x75,0x8D,0x75,0x8D,0x75,0x8D,0x75,0x8D,0x75,0x8D,0x75,0x8D,0x75,0x8D,0x75,0x6D,0x75,0x6D,0x75,0x6D,0x75,0x6E,0x6D,0x6E,0x6D,0x6E,0x6D,0x6E,0x6D,0x6E,0x6D,0x6D,0x6D,0x4D,0x6D,0x4D,0x6D,0x6D,0x6D,0x6D,0x6D,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,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,0x09,0x10,0x8E,0xEF,0x85,0x0E,0x86,0x0D,0x7E,0x2E,0x7E,0x2D,0x7E,0x2E,0x7E,0x0E,0x7E,0x0E,0x7E,0x0E,0x86,0x0E,0x86,0x0E,0x7E,0x0E,0x7E,0x2E,0x7E,0x2E,0x7E, +0xED,0x7D,0x2E,0x86,0x0E,0x7E,0x0E,0x7E,0x2E,0x7E,0x0E,0x7E,0x2E,0x86,0x0D,0x7E,0x2D,0x7E,0x0D,0x7E,0x4E,0x86,0x0E,0x7E,0xEE,0x7D,0x30,0x86,0xAF,0x75,0x0D,0x65,0x0D,0x5D,0xD0,0x65,0xCC,0x3C,0x86,0x12,0x20,0x00,0x00,0x08,0x00,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x61,0x00,0x84,0x09,0xA4,0x01,0x42,0x01,0xE1,0x00,0xE4,0x01,0x02,0x01,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,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,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x00,0x08,0xA2,0x00,0x8B,0x1B,0x8A,0x03,0xCB,0x0B,0x6A,0x0B,0xA9,0x0B,0xC8,0x03,0x6C,0x35,0xCC,0x3D,0xAC,0x45,0xA7,0x1B,0xE6,0x12,0xA6,0x12,0xC7,0x1A,0xA6,0x12,0xE7,0x12,0xC7,0x0A,0xC8,0x0A,0x07,0x0B,0x46,0x0B,0x4D,0x45,0x8D,0x3D,0x6B,0x4D,0xB0,0x8E,0xD0,0x96,0x4D,0x7E,0xAD,0x86,0xEE,0x8E,0x4C,0x86,0x6E,0x8E,0xEF,0x96,0x4C,0x7E,0x8E,0x8E,0x8E,0x85,0x40,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,0x40,0x00,0x02,0x13,0xC0,0x03,0xA0,0x02,0xC5,0x23,0x80,0x00,0x01,0x00,0x42,0x10,0xC2,0x08,0xC1,0x00,0xA5,0x19,0xA2,0x00,0xE5,0x09,0x8E,0x3C,0x06,0x03,0x88,0x13,0x08,0x33,0x20,0x00,0x00,0x08,0x40,0x00,0x20,0x08,0x00,0x08,0xC9,0x3A,0x13,0x5E,0xF1,0x3D,0x8F,0x35,0x2E,0x3D,0x0E,0x3D,0x8C,0x2C,0x4B,0x34,0xCB,0x33,0xAA,0x33,0x49,0x13,0xAA,0x13,0xCA,0x13,0xAA,0x2A,0xE5,0x01,0x50,0x4D,0x70,0x55,0x05,0x0A,0x82,0x08,0x00,0x00,0x20,0x00,0x05,0x12,0xC3,0x09,0x60,0x00,0x85,0x19,0x40,0x00,0x26,0x1A,0xA0,0x00,0xA5,0x19, +0x00,0x00,0x41,0x00,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,0x20,0x00,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,0x20,0x00,0x20,0x00,0x24,0x1A,0xA8,0x43,0x60,0x00,0x00,0x00,0x01,0x00,0x00,0x00,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,0x10,0x20,0x00,0xA0,0x00,0xEB,0x3B,0xB0,0x65,0xC7,0x13,0x71,0x6E,0xCE,0x64,0x00,0x00,0x00,0x00,0x00,0x00,0x20,0x00,0x00,0x00,0x00,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,0x20,0x00,0x00,0x00,0xC2,0x00,0xC6,0x21,0x61,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x00,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x20,0x00,0x81,0x00,0x03,0x09,0x03,0x09,0x81,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x40,0x00,0x24,0x11,0x60,0x00,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,0x20,0x00,0x20,0x00,0x40,0x00,0xA2,0x11,0xCD,0x6C,0xF0,0x85,0xCF,0x7D,0xCD,0x75,0xED,0x75,0xCD,0x75,0xEF,0x75,0x6E,0x65,0x0E,0x5D,0xEE,0x64,0x4E,0x5D,0x2C,0x45,0xF3,0x6E,0xFA,0xA7,0xFA,0xB7,0x7A,0xB7,0x7B,0xB7,0xFC,0xAF,0xFC,0x9F, +0xB9,0x8F,0x49,0x24,0x0D,0x5E,0x68,0x55,0x68,0x55,0x50,0x9F,0x4C,0x86,0xAC,0x96,0x8D,0xB7,0xAB,0xBF,0xA9,0xC7,0x88,0xC7,0x47,0xBF,0xA8,0xC7,0x67,0xBF,0xA8,0xC7,0x49,0xB7,0x69,0xBF,0x6A,0xC7,0x6A,0xA6,0xCC,0x8D,0xAE,0x7D,0xAE,0x75,0x0E,0x76,0x0C,0x76,0xED,0x75,0xCD,0x7D,0xAE,0x7D,0xAE,0x7D,0xAD,0x7D,0xCD,0x75,0xCE,0x75,0xAD,0x75,0xAD,0x75,0xAD,0x75,0xAD,0x75,0xAD,0x75,0xAD,0x75,0xAE,0x75,0x8D,0x75,0x8D,0x75,0x8D,0x75,0x8D,0x75,0x8E,0x75,0x8D,0x75,0x8D,0x75,0x8D,0x6D,0x8D,0x6D,0x6D,0x75,0x6D,0x75,0x6D,0x75,0x6D,0x75,0x6D,0x6D,0x6E,0x6D,0x4E,0x6D,0x4E,0x6D,0x4D,0x6D,0x4D,0x6D,0x4D,0x6D,0x6D,0x6D,0x4D,0x6D,0x4D,0x6D,0x4C,0x6D,0x4C,0x6D, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x40,0x00,0x20,0x00,0x48,0x54,0x50,0x8E,0xCE,0x7D,0xEE,0x7D,0x2E,0x7E,0xED,0x75,0x2D,0x7E,0xED,0x75,0x0D,0x7E,0xEE,0x7D,0xEE,0x7D,0xEE,0x7D,0xEE,0x7D,0xEE,0x7D,0x0D,0x7E,0x0D,0x7E,0xED,0x7D,0xED,0x7D,0xEE,0x7D,0xEE,0x7D,0xEE,0x7D,0x0E,0x7E,0x0D,0x7E,0x0D,0x7E,0x0D,0x7E,0x0D,0x7E,0x0D,0x7E,0x0D,0x7E,0x0E,0x7E,0xEF,0x7D,0xEF,0x7D,0xF0,0x7D,0xD0,0x6D,0xAE,0x45,0xCF,0x3D,0xA8,0x1B,0x40,0x00,0x00,0x08,0x00,0x00,0x20,0x00,0x40,0x00,0x41,0x00,0x00,0x00,0xA1,0x00,0x51,0x4D,0x53,0x46,0xD0,0x2D,0xD0,0x2D, +0x12,0x36,0x8A,0x1B,0x40,0x00,0x00,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x08,0x00,0x00,0x00,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,0x20,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x20,0x00,0x20,0x00,0x03,0x3A,0xA2,0x29,0x20,0x00,0x40,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,0x08,0x00,0x08,0xC2,0x00,0x6A,0x1B,0xAA,0x03,0x8A,0x03,0x6A,0x13, +0x6A,0x13,0x88,0x0B,0x4C,0x3D,0xAC,0x45,0x8D,0x4D,0x67,0x1B,0x86,0x0A,0x87,0x12,0x86,0x12,0xA6,0x12,0xA6,0x0A,0xA7,0x12,0xA7,0x0A,0xC7,0x0A,0xE6,0x0A,0x4D,0x4D,0x8D,0x3D,0xAC,0x55,0xAF,0x8E,0xCF,0x96,0x4D,0x7E,0xAD,0x86,0x0F,0x97,0x0C,0x86,0x4D,0x8E,0x10,0x9F,0x2B,0x76,0x8E,0x8E,0x6E,0x85,0x40,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,0x20,0x00,0x00,0x00,0x00,0x00,0x40,0x00,0x02,0x13,0x00,0x04,0xA0,0x03,0x05,0x24,0xC0,0x00,0x00,0x00,0x82,0x10,0xA1,0x00,0xC1,0x00,0xA6,0x19,0xC2,0x00,0x63,0x01,0x4A,0x13,0xE7,0x02,0x82,0x01,0xE9,0x3A,0x20,0x08,0x01,0x10, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x60,0x00,0xA4,0x01,0x8A,0x23,0xC7,0x02,0xC7,0x02,0xE7,0x0A,0xE8,0x12,0x09,0x1B,0x08,0x13,0x08,0x0B,0x6A,0x1B,0xCC,0x2B,0x6D,0x2B,0xE9,0x1A,0x69,0x1B,0xEB,0x2B,0xCC,0x33,0x89,0x32,0x81,0x08,0x20,0x00,0xC3,0x19,0xC3,0x11,0x60,0x00,0x64,0x19,0x40,0x00,0xE5,0x21,0xA0,0x00,0xC5,0x21,0x00,0x00,0xC2,0x10,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,0x20,0x00,0x00,0x00,0x20,0x00,0x20,0x00, +0xC0,0x21,0x84,0x42,0x80,0x08,0x20,0x00,0x00,0x00,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,0x08,0x20,0x00,0x40,0x00,0x00,0x00,0x00,0x00,0x80,0x00,0x6B,0x4C,0x20,0x01,0x00,0x00,0x01,0x08,0x00,0x00,0x40,0x00,0x00,0x00,0x00,0x08,0x00,0x00,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,0x08,0x40,0x00,0x60,0x00,0x2C,0x44,0x8F,0x5D,0x85,0x0B,0x8A,0x34,0x34,0x8E,0x20,0x00,0x00,0x00,0x00,0x00,0x20,0x00,0x00,0x00,0x00,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,0x08,0x00,0x00,0x00,0x08,0x00,0x08,0x00,0x08,0x00,0x00,0x40,0x00,0x03,0x01,0xA5,0x19,0x40,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x20,0x00,0x20,0x00,0x20,0x00,0x60,0x00,0xA1,0x00,0xC2,0x00,0xE2,0x08,0x61,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x20,0x00,0xE2,0x00,0xA1,0x00,0x40,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x20,0x00, +0x00,0x00,0x00,0x00,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x60,0x00,0x61,0x09,0x0B,0x5C,0xD0,0x85,0xCF,0x7D,0x8E,0x75,0xAE,0x7D,0xCC,0x7D,0xCC,0x7D,0xCD,0x75,0x6D,0x65,0xED,0x54,0x30,0x65,0xCF,0x5C,0x2E,0x5D,0x4D,0x4D,0x4C,0x45,0x34,0x7F,0xF9,0xA7,0xFB,0xBF,0xFB,0xB7,0xFB,0xAF,0xF9,0x97,0xCC,0x65,0xC7,0x4C,0xEC,0x96,0x88,0x8E,0x4A,0xAF,0x09,0xA7,0x8C,0xAF,0x8C,0xAF,0x6B,0xAF,0x8A,0xB7,0x69,0xBF,0x68,0xC7,0x69,0xCF,0x48,0xCF,0x48,0xC7,0x68,0xC7,0x4A,0xC7,0x09,0xBF,0x4B,0xBF,0x0A,0x8E,0xCD,0x85,0xAF,0x7D,0xCF,0x7D,0xED,0x75,0xEC,0x75,0xCC,0x75,0xAD,0x7D,0x8E,0x7D,0x8E,0x7D,0x8D,0x7D,0xAE,0x75,0xAE,0x6D, +0xAE,0x75,0xAE,0x75,0x8D,0x75,0x8D,0x75,0x8D,0x75,0x8D,0x75,0x8D,0x75,0x8E,0x75,0x8D,0x75,0x8D,0x75,0x8D,0x75,0x8D,0x6D,0x8D,0x6D,0x8E,0x6D,0x8E,0x6D,0x8E,0x6D,0x4D,0x6D,0x8E,0x75,0x6E,0x6D,0x2D,0x6D,0x6E,0x75,0x6E,0x6D,0x2D,0x6D,0x4D,0x6D,0x4D,0x6D,0x4D,0x6D,0x4D,0x6D,0x4C,0x6D,0x6D,0x6D,0x8D,0x6D,0x0B,0x65,0x88,0x4C,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x40,0x00,0x20,0x00,0x84,0x21,0x2E,0x86,0x0E,0x7E,0xEE,0x7D,0x2F,0x7E,0xEE,0x75,0x0D,0x76,0x2E,0x7E,0x0D,0x7E,0x0D,0x7E,0xEE,0x7D,0xEE,0x7D,0xEF,0x7D,0xEF,0x7D,0xEE,0x7D,0x0E,0x7E,0x0D,0x7E, +0x0D,0x7E,0xED,0x7D,0xEE,0x7D,0xEE,0x7D,0xEE,0x7D,0xEE,0x7D,0xEE,0x7D,0x0E,0x7E,0xED,0x7D,0xED,0x7D,0xED,0x7D,0xED,0x7D,0xED,0x7D,0xEE,0x7D,0xEE,0x7D,0xEF,0x7D,0x10,0x6E,0x4C,0x3D,0xAA,0x1C,0xCC,0x3C,0x20,0x01,0x87,0x2A,0x29,0x23,0x28,0x03,0x28,0x03,0x4A,0x33,0xA9,0x3A,0x80,0x00,0x47,0x03,0x34,0x47,0x54,0x3F,0x76,0x57,0x76,0x4F,0xEB,0x23,0x20,0x00,0x00,0x10,0x00,0x00,0x20,0x00,0x40,0x00,0x66,0x29,0xCC,0x5A,0x21,0x00,0x01,0x08,0x00,0x08,0x00,0x00,0x20,0x00,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,0x40,0x00,0x20,0x00,0xA6,0x63,0xD4,0xE7, +0xB5,0xE7,0xE4,0x4A,0x20,0x00,0x20,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,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0xA2,0x00,0x6A,0x1B,0xAA,0x03,0x8A,0x0B,0x4A,0x1B,0x2B,0x1B,0x49,0x13,0x4D,0x45,0xAC,0x4D,0xAD,0x55,0x47,0x1B,0x66,0x0A,0x66,0x12,0x46,0x0A,0x86,0x12,0x65,0x0A,0x46,0x02,0x67,0x0A,0x86,0x0A,0xA4,0x0A,0x4D,0x55,0xAD,0x45,0x8C,0x5D,0xAF,0x96,0xCF,0x9E,0x4D,0x7E,0xAE,0x86,0x0F,0x97,0x0B,0x86,0x4D,0x8E,0x10,0x9F,0x0B,0x6E,0x8E,0x8E,0xAF,0x8D,0x40,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,0x01,0x08,0x40,0x00,0xE1,0x0A,0x20,0x04,0x20,0x04,0x04,0x24,0xC0,0x00,0x00,0x00,0x61,0x10,0xC1,0x00,0x02,0x01,0x84,0x11,0xE1,0x08,0x21,0x01,0x89,0x2B,0xCB,0x23,0x00,0x01,0x87,0x3A,0x00,0x00,0x02,0x10,0x00,0x08,0x00,0x00,0x20,0x00,0x20,0x08,0x00,0x08,0x41,0x08,0x27,0x2A,0x63,0x01,0x63,0x01,0x43,0x01,0x23,0x01,0x43,0x01,0x63,0x01,0x62,0x01,0xE5,0x09,0x87,0x1A,0x07,0x02,0xA3,0x01,0xA2,0x01,0x41,0x01,0x63,0x01,0x24,0x09,0x20,0x00,0x40,0x00,0xA3,0x21,0xA3,0x19,0x40,0x00,0x43,0x19,0x60,0x00,0x05,0x22,0x80,0x00,0xC5,0x29, +0x00,0x00,0xC2,0x10,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,0x20,0x00,0x00,0x00,0x00,0x00,0x80,0x00,0x40,0x00,0x64,0x19,0xEF,0xC6,0xB4,0xE7,0xB0,0xA5,0x20,0x00,0x00,0x00,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,0x08,0x20,0x00,0x40,0x00,0x01,0x00,0x00,0x10,0x20,0x00,0xA8,0x33,0x2B,0x44,0x20,0x00,0x01,0x10,0x00,0x00,0x20,0x00,0x00,0x00,0x00,0x08,0x00,0x00,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,0x08,0x00,0x00,0x80,0x00,0x0C,0x44,0xD0,0x5D,0x86,0x0B,0x01,0x02,0x75,0x9E,0xC5,0x19,0x20,0x00,0x20,0x00,0x00,0x00,0x00,0x00,0x00,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,0x08,0x00,0x00, +0x00,0x00,0x81,0x08,0x23,0x11,0xA2,0x00,0x20,0x00,0x20,0x00,0x00,0x08,0x00,0x08,0x00,0x00,0x00,0x00,0x40,0x00,0x00,0x00,0x00,0x00,0x40,0x00,0xA2,0x00,0xE2,0x00,0x02,0x01,0xA2,0x00,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x81,0x00,0x03,0x09,0x81,0x00,0x40,0x00,0x00,0x00,0x00,0x08,0x00,0x08,0x00,0x00,0x00,0x00,0x20,0x00,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x21,0x08,0x00,0x00,0x20,0x00,0x20,0x00,0x60,0x00,0x69,0x4B,0x12,0x96,0xF0,0x85,0x8E,0x75,0x8D,0x6D,0xAE,0x75,0xAE,0x7D,0xAC,0x7D,0xAD,0x75,0xAE,0x75,0x2D,0x65,0xCD,0x54,0x0F,0x5D,0xCF,0x5C,0x0F,0x5D,0x4E,0x55,0x4D,0x4D,0x2C,0x45,0xB0,0x5D,0x33,0x76,0x53,0x7E,0xCF,0x65,0x8D,0x55, +0xCB,0x8E,0x69,0x86,0xE9,0x9E,0x28,0xAF,0xE6,0xA6,0x88,0xAF,0x68,0x9F,0xA9,0x9F,0xAA,0x9F,0xAA,0xAF,0x8A,0xB7,0x6A,0xBF,0x6A,0xCF,0x4A,0xCF,0x2A,0xCF,0x4A,0xCF,0x0A,0xCF,0x0B,0xBF,0x2C,0xAF,0xEB,0x85,0xAD,0x7D,0xAF,0x7D,0xAF,0x75,0xCD,0x75,0xCC,0x75,0xCC,0x75,0xAD,0x7D,0x8E,0x7D,0x8E,0x7D,0x8E,0x7D,0xAE,0x75,0xAE,0x6D,0x8D,0x75,0x8D,0x75,0x8D,0x75,0x8E,0x75,0x8E,0x75,0x8D,0x75,0x8D,0x75,0x8D,0x75,0x8D,0x6D,0x8E,0x6D,0x8E,0x6D,0x6D,0x6D,0x6D,0x6D,0x6D,0x6D,0x6D,0x6D,0x6D,0x6D,0x6E,0x75,0x4D,0x6D,0x4E,0x6D,0x6E,0x75,0x4E,0x6D,0x4D,0x6D,0x6E,0x6D,0x4D,0x6D,0x2D,0x65,0x2C,0x65,0x4C,0x6D,0x6C,0x6D,0x0B,0x5D,0x67,0x4C,0x06,0x3C,0x26,0x44, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x40,0x00,0x40,0x00,0x40,0x00,0xF0,0x84,0xED,0x7D,0xAC,0x75,0xEE,0x7D,0xEE,0x7D,0xCE,0x75,0x0E,0x7E,0xED,0x75,0xED,0x7D,0xED,0x7D,0xED,0x7D,0xCE,0x7D,0xCF,0x7D,0xCF,0x7D,0xCE,0x7D,0xED,0x75,0xED,0x75,0xED,0x7D,0xED,0x7D,0xED,0x7D,0xCE,0x7D,0xEE,0x7D,0xCE,0x7D,0xCE,0x7D,0xEE,0x7D,0xEE,0x7D,0xED,0x7D,0xED,0x7D,0xED,0x7D,0xED,0x7D,0xED,0x7D,0xCE,0x7D,0xCE,0x7D,0x10,0x6E,0x0C,0x4D,0x05,0x0B,0x2A,0x34,0x2F,0x4D,0x32,0x5E,0xD4,0x4E,0xF3,0x2E,0xD3,0x2E,0x36,0x6F,0x29,0x2B,0xE0,0x00,0xE0,0x00,0x6F,0x35,0x8B,0x1C,0x23,0x02, +0xE8,0x03,0xEB,0x3B,0x20,0x00,0x00,0x10,0x00,0x00,0xA1,0x08,0x00,0x00,0x34,0x9D,0x9E,0xE7,0xE4,0x10,0x01,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x20,0x00,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x20,0x00,0x20,0x00,0x40,0x00,0x08,0x6C,0xB2,0xDF,0x2D,0xC7,0x0D,0xBF,0xB3,0xDF,0x66,0x53,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,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xA2,0x00,0x4A,0x1B,0x8A,0x03,0x6A,0x0B,0x2A,0x1B, +0x4B,0x1B,0x48,0x13,0x4C,0x45,0xAC,0x4D,0xCE,0x55,0x06,0x13,0x05,0x02,0x47,0x12,0x26,0x0A,0x25,0x0A,0x46,0x0A,0x67,0x12,0x46,0x0A,0x25,0x02,0x64,0x0A,0x4D,0x5D,0xCD,0x45,0xAC,0x5D,0xAF,0x96,0xCF,0x9E,0x4D,0x7E,0x8E,0x7E,0x0F,0x97,0xEB,0x85,0x0D,0x8E,0x31,0x9F,0x2C,0x76,0x6E,0x86,0x8E,0x8D,0x20,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,0x01,0x08,0x20,0x00,0xE2,0x12,0x40,0x04,0xE0,0x03,0x03,0x24,0xE0,0x00,0x00,0x00,0x81,0x10,0xA1,0x00,0xC1,0x00,0xA4,0x19,0xE0,0x08,0x00,0x01,0x24,0x33,0x82,0x12,0xE0,0x00,0xC5,0x42,0x20,0x00,0x20,0x00, +0x00,0x08,0x40,0x00,0x20,0x00,0x20,0x00,0x00,0x08,0x40,0x08,0xC3,0x31,0x40,0x00,0x20,0x00,0x40,0x00,0x40,0x00,0x60,0x00,0x40,0x00,0x40,0x00,0xC0,0x00,0x60,0x01,0x00,0x01,0x60,0x00,0x60,0x00,0x80,0x00,0x40,0x00,0x01,0x00,0x01,0x00,0x20,0x00,0xE4,0x21,0xA3,0x19,0x40,0x00,0x64,0x21,0x40,0x00,0x25,0x1A,0xA0,0x00,0xA4,0x21,0x00,0x00,0xC2,0x10,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,0x40,0x00,0x20,0x00,0x02,0x09,0xAC,0x5B, +0x89,0xAE,0x2F,0xC7,0x0F,0xAE,0x28,0x53,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x00,0x01,0x00,0x00,0x00,0x00,0x00,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,0x08,0x20,0x00,0x20,0x00,0x00,0x00,0x00,0x10,0x00,0x00,0xA2,0x09,0xF2,0x85,0xA3,0x11,0x00,0x00,0x40,0x08,0x00,0x00,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,0x20,0x08,0x40,0x00,0x0B,0x3C,0xF0,0x5D,0x69,0x2C,0xE0,0x00,0xEF,0x74,0xAC,0x4B,0x40,0x00,0x40,0x00,0x00,0x00,0x00,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,0x20,0x00,0x20,0x00,0x00,0x00,0x20,0x00,0x20,0x00,0x61,0x00,0x44,0x11,0x24,0x11,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x40,0x00,0xA2,0x00,0xC2,0x08,0x81,0x00,0xC2,0x10,0xA2,0x00,0x20,0x00,0x20,0x00,0x00,0x00,0x20,0x00,0xE3,0x08,0xC2,0x00,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x20,0x00,0x00,0x00,0x01,0x08,0x00,0x00,0x00,0x00,0x20,0x00,0x60,0x00,0xAA,0x53,0x11,0x96,0x2D,0x6D,0x4C,0x6D,0xCE,0x75,0x8D,0x6D,0x8D,0x75,0x8D,0x6D,0x8B,0x75,0x8D,0x75,0x8F,0x75,0xEE,0x5C,0xCD,0x54,0xEE,0x54,0xCF,0x5C,0xCF,0x5C,0xCE,0x54,0x0D,0x4D,0x4D,0x4D,0xED,0x44,0x8C,0x44,0xCC,0x4C,0xCA,0x4C,0xAE,0x86,0x28,0x87,0x29,0x97,0xC8,0x96,0xE8,0xA6,0x08,0xA7,0x89,0xAF,0xA8,0x9F,0xC8,0x9F,0xC8,0x97,0xC9,0xA7,0xA8,0xAF,0x88,0xBF,0x69,0xC7,0x49,0xCF,0x49,0xC7,0x4A,0xC7,0xC9,0xCE,0x2B,0xC7,0xEC,0xA6,0xEB,0x7D,0xAD,0x75,0xCF,0x7D,0xAE,0x75,0xCD,0x75,0xAC,0x75,0xAD,0x75,0x8D,0x7D,0x6E,0x7D,0x6E,0x7D,0x8E,0x7D,0x8E,0x75,0xAE,0x6D, +0x8E,0x75,0x8E,0x75,0x8D,0x75,0x8D,0x75,0x8D,0x75,0x8E,0x6D,0x8E,0x6D,0x8E,0x6D,0x6D,0x6D,0x6D,0x6D,0x6E,0x6D,0x6E,0x6D,0x6D,0x6D,0x6D,0x6D,0x6D,0x6D,0x4D,0x6D,0x4E,0x6D,0x0D,0x65,0x4E,0x6D,0x2E,0x6D,0x2D,0x6D,0x2D,0x6D,0x2D,0x65,0x6D,0x6D,0x4D,0x6D,0x6D,0x6D,0x0B,0x5D,0x68,0x4C,0x06,0x3C,0x26,0x44,0x46,0x44,0x26,0x3C,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x20,0x00,0x20,0x00,0x40,0x00,0xCA,0x53,0xB1,0x8D,0xAC,0x6D,0xEE,0x7D,0xCE,0x75,0xAD,0x6D,0xCE,0x75,0xCE,0x75,0xCD,0x75,0xCD,0x75,0xCD,0x75,0xCD,0x75,0xAE,0x75,0xAE,0x75,0xAE,0x75,0xCE,0x75,0xCD,0x75,0xCD,0x75, +0xCD,0x75,0xCD,0x75,0xCD,0x75,0xCE,0x75,0xCE,0x75,0xCE,0x75,0xCE,0x75,0xCE,0x75,0xCE,0x75,0xCE,0x75,0xCD,0x75,0xCD,0x75,0xCD,0x75,0xCD,0x75,0xCD,0x75,0xCD,0x75,0xCF,0x75,0x6E,0x75,0x2E,0x6D,0x0D,0x5D,0x6F,0x4D,0x72,0x56,0xB2,0x3E,0x33,0x2F,0x33,0x2F,0x51,0x3E,0x2F,0x55,0x30,0x7D,0xCE,0x6C,0x90,0x75,0xCD,0x64,0x24,0x2A,0x67,0x13,0xE7,0x32,0x40,0x00,0x20,0x08,0x20,0x00,0x80,0x00,0x40,0x00,0x91,0x8C,0x1B,0xCF,0x03,0x09,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x20,0x00,0x00,0x00,0x20,0x00,0x40,0x00,0xA6,0x53,0xB2,0xCF,0x4D,0xBF,0x8C,0xBF, +0x8D,0xBF,0x2D,0xB7,0xB3,0xCF,0x62,0x32,0x40,0x00,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,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xA1,0x00,0x2A,0x1B,0x69,0x0B,0x49,0x0B,0x2A,0x1B,0x2A,0x0B,0x88,0x0B,0xAD,0x45,0xCC,0x4D,0xCE,0x5D,0x27,0x13,0xC5,0x01,0xC7,0x09,0xE6,0x09,0xE5,0x09,0x06,0x0A,0xC5,0x01,0xC6,0x01,0x05,0x02,0x85,0x0A,0x2D,0x5D,0xCD,0x4D,0xAC,0x5D,0xAE,0x96,0xCF,0xA6,0x2D,0x7E,0x8E,0x7E,0x10,0x9F,0xCB,0x7D,0x4E,0x96,0x11,0x9F,0x0C,0x6E,0x6E,0x86,0xCF,0x8D,0x60,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x40,0x00,0x43,0x1B,0xE0,0x03,0xA0,0x02,0x87,0x3C,0x80,0x00,0x00,0x08,0x82,0x10,0xC2,0x00,0x80,0x00,0xC2,0x21,0xEA,0x8C,0xEF,0xC6,0x0E,0xBF,0x10,0xB7,0xCF,0xB6,0xAE,0xB6,0x6F,0xB6,0x70,0xB6,0x4F,0xC6,0x8F,0xBE,0xAF,0xBE,0x6F,0xB6,0x90,0xBE,0xB1,0xBE,0x0F,0xAE,0x4F,0xB6,0x70,0xBE,0x70,0xBE,0x70,0xBE,0x90,0xBE,0x6F,0xC6,0x4F,0xBE,0xAF,0xB6,0xEF,0xAE,0x4E,0xAE,0x6E,0xB6,0xCF,0xC6,0xEB,0x84,0x63,0x19,0x63,0x00,0x23,0x00,0x40,0x00,0xE5,0x09,0xA5,0x11,0x20,0x00,0x45,0x21,0x40,0x00,0x45,0x1A,0xA0,0x00,0xE5,0x21, +0x00,0x00,0xC2,0x10,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,0x20,0x00,0x00,0x00,0x00,0x00,0x20,0x00,0x40,0x00,0xA0,0x00,0x09,0x43,0x46,0x2A,0x67,0xA6,0xB0,0xD7,0x84,0x53,0x6C,0x7C,0xC8,0x4A,0x20,0x00,0x40,0x00,0x00,0x00,0x00,0x00,0x01,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x01,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,0x20,0x00,0x00,0x00,0x00,0x00,0x20,0x08,0x40,0x00,0x2C,0x5C,0xEF,0x74,0x40,0x00,0x00,0x00,0x00,0x08,0x00,0x00,0x00,0x00,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,0x21,0x08,0x20,0x00,0x4C,0x44,0xCF,0x4D,0x6A,0x34,0xC0,0x00,0xAB,0x53,0x10,0x6D,0xA0,0x00,0x40,0x00,0x00,0x08,0x00,0x08,0x20,0x00,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,0x40,0x00,0x20,0x00,0x40,0x00,0xE2,0x00,0x27,0x22, +0xE5,0x09,0x80,0x00,0x20,0x00,0x00,0x00,0x20,0x00,0x20,0x00,0x40,0x00,0x20,0x00,0x00,0x00,0x00,0x00,0x60,0x00,0xC5,0x11,0x83,0x01,0x80,0x00,0xE3,0x08,0x20,0x00,0x00,0x00,0x00,0x00,0x20,0x00,0xA2,0x00,0xE3,0x08,0x60,0x00,0x20,0x00,0x00,0x00,0x00,0x08,0x00,0x08,0x00,0x00,0x20,0x00,0x20,0x00,0x20,0x00,0x00,0x00,0x00,0x00,0x40,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x00,0x00,0x60,0x00,0x40,0x00,0x0B,0x54,0x6F,0x7D,0x2D,0x75,0x8E,0x75,0x8D,0x75,0x8D,0x6D,0x8D,0x6D,0x8E,0x6D,0x6D,0x6D,0x6C,0x75,0x6E,0x75,0x70,0x6D,0xCE,0x54,0xCD,0x54,0xCD,0x54,0xCE,0x54,0xAF,0x54,0xCF,0x5C,0xAD,0x4C,0xED,0x54,0xEE,0x4C,0xEF,0x54,0xAB,0x54,0xEB,0x7D,0xCB,0x9E, +0x68,0x87,0x69,0x8F,0x2A,0x97,0xE9,0x9E,0x4B,0xA7,0x69,0xA7,0xA9,0xA7,0x87,0x9F,0xC8,0x9F,0xA8,0xA7,0xA7,0xB7,0x87,0xC7,0x87,0xC7,0x68,0xC7,0x68,0xC7,0x69,0xC7,0xE8,0xCE,0x4A,0xBF,0x8A,0x8E,0xEB,0x75,0xAD,0x75,0xAE,0x75,0xAE,0x6D,0xAD,0x6D,0xAD,0x75,0x8D,0x75,0x6E,0x75,0x8E,0x75,0x6D,0x75,0x8D,0x75,0x8D,0x75,0x8E,0x6D,0x8E,0x75,0x8E,0x75,0x8E,0x6D,0x8E,0x6D,0x6D,0x6D,0x6D,0x6D,0x6D,0x6D,0x6E,0x6D,0x6E,0x6D,0x6D,0x6D,0x6D,0x6D,0x4D,0x6D,0x4D,0x6D,0x4D,0x6D,0x4D,0x6D,0x4D,0x6D,0x2E,0x6D,0x4E,0x6D,0x4E,0x6D,0x2D,0x6D,0x2D,0x6D,0x4D,0x6D,0x2D,0x65,0x4D,0x6D,0x0B,0x5D,0x68,0x4C,0xE6,0x3B,0x06,0x3C,0x26,0x44,0x06,0x3C,0x06,0x3C,0x46,0x44, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x20,0x00,0x20,0x00,0x80,0x00,0xE3,0x19,0xB0,0x85,0x6F,0x7D,0xCE,0x7D,0xCE,0x7D,0x8D,0x75,0xAE,0x75,0xCE,0x75,0x8D,0x75,0xCE,0x75,0xAD,0x75,0xAD,0x75,0xAD,0x75,0xAE,0x75,0xAE,0x75,0xAE,0x75,0xAE,0x75,0xAD,0x75,0xAD,0x75,0xAD,0x75,0xAD,0x75,0xAD,0x75,0xAD,0x75,0xAE,0x75,0xAE,0x75,0xAE,0x75,0xAE,0x75,0xAE,0x75,0xAE,0x75,0xAE,0x75,0xAD,0x75,0xCD,0x75,0xCD,0x75,0xCD,0x75,0xCD,0x75,0xCE,0x75,0x8E,0x7D,0xAB,0x64,0x2D,0x5D,0x8E,0x55,0x11,0x66,0x8F,0x55,0xAF,0x4D,0x51,0x4E,0x72,0x56,0x8F,0x65,0x0F,0x75,0x2F,0x7D,0x70,0x85,0x4F,0x85,0x91,0x95, +0xF0,0x7D,0xB0,0x85,0x0F,0x85,0xAD,0x74,0x0A,0x54,0xE3,0x21,0x20,0x00,0xCD,0x6B,0xB8,0xB6,0xC2,0x00,0x21,0x00,0x00,0x08,0x00,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x40,0x00,0x60,0x00,0x09,0x64,0x31,0xB7,0x4E,0xAF,0x2B,0xA7,0x6C,0xAF,0x4B,0xA7,0x4C,0xAF,0x2E,0xAF,0x11,0xB7,0x05,0x3B,0x40,0x00,0x40,0x00,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,0xA1,0x00,0x29,0x23,0x49,0x0B,0x29,0x0B,0x09,0x1B, +0x2B,0x0B,0x27,0x03,0x6C,0x45,0xEC,0x4D,0xCE,0x5D,0xC6,0x12,0x64,0x01,0x86,0x09,0x65,0x01,0xA5,0x09,0xA5,0x01,0x65,0x01,0xA6,0x01,0x84,0x01,0x03,0x02,0x4E,0x65,0xED,0x4D,0xCB,0x65,0xCE,0x9E,0xEF,0xA6,0x2D,0x7E,0x8E,0x7E,0x30,0x9F,0xCB,0x7D,0x2D,0x8E,0x31,0x9F,0x0C,0x6E,0x6E,0x86,0xCF,0x8D,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,0x20,0x00,0x00,0x00,0x00,0x00,0x40,0x00,0x02,0x13,0x40,0x03,0x20,0x02,0xE6,0x2B,0x80,0x00,0x00,0x00,0xA2,0x10,0xE3,0x08,0xC1,0x00,0x80,0x11,0xEB,0xA5,0xEF,0xDF,0xAD,0xCF,0xEF,0xDF,0xCF,0xD7,0x6D,0xC7,0xCE,0xCF,0xF0,0xCF, +0xCF,0xDF,0xCE,0xD7,0xCE,0xC7,0xF0,0xD7,0xCF,0xCF,0xD0,0xDF,0x4E,0xCF,0xAF,0xCF,0xF0,0xCF,0xF0,0xCF,0xD0,0xD7,0xD0,0xD7,0xAF,0xD7,0xCF,0xD7,0xEF,0xD7,0x8E,0xCF,0x8E,0xBF,0xAE,0xCF,0xF0,0xDF,0x0C,0x8E,0x64,0x12,0xCA,0x1A,0x29,0x12,0xC6,0x01,0x66,0x0A,0x06,0x0A,0x41,0x00,0x66,0x21,0x20,0x00,0x25,0x1A,0xC0,0x00,0xC4,0x11,0x00,0x00,0xC2,0x10,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,0x20,0x00,0x20,0x00,0x40,0x00,0x40,0x00,0xE5,0x21,0x66,0x22,0xC3,0x09, +0x46,0x9E,0x4E,0xC7,0x80,0x32,0xA8,0x5B,0x6A,0x5B,0x83,0x21,0x20,0x00,0x20,0x00,0x00,0x00,0x01,0x00,0x01,0x00,0x00,0x00,0x00,0x00,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,0x20,0x00,0x00,0x00,0x00,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x20,0x00,0x41,0x09,0x53,0x96,0xA2,0x11,0x40,0x00,0x00,0x08,0x00,0x00,0x40,0x00,0x20,0x00,0x00,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, +0x20,0x00,0x21,0x08,0x20,0x00,0x6C,0x44,0xEF,0x4D,0x8B,0x3C,0x60,0x00,0x67,0x32,0x13,0x86,0xE2,0x01,0x40,0x00,0x00,0x10,0x00,0x08,0x20,0x00,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x20,0x00,0x40,0x00,0x40,0x00,0x23,0x01,0x43,0x01,0xE1,0x00,0xA3,0x01,0x62,0x01,0xE1,0x00,0x80,0x00,0xA1,0x00,0x60,0x00,0xA1,0x00,0xC1,0x00,0x80,0x00,0xE1,0x00,0xE5,0x01,0x82,0x01,0x46,0x02,0x21,0x01,0xA1,0x00,0x20,0x00,0x41,0x00,0x40,0x00,0xE2,0x08,0xA2,0x00,0x20,0x00,0x20,0x00,0x00,0x08,0x00,0x08,0x00,0x00,0x00,0x00,0x20,0x00,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x20,0x00,0x00,0x00,0x00,0x08,0x00,0x00,0x40,0x08,0x40,0x00,0x65,0x22,0x4F,0x75,0x4E,0x6D,0x6E,0x75,0x6D,0x75,0x6D,0x6D,0x8D,0x6D,0x6D,0x6D,0x8E,0x6D,0x6D,0x6D,0x6C,0x75,0x6E,0x6D,0x50,0x6D,0x8E,0x54,0xAD,0x54,0xAD,0x54,0xAE,0x54,0x8F,0x54,0xAF,0x54,0xAE,0x54,0xCE,0x54,0x8D,0x4C,0x8D,0x54,0xCB,0x5C,0xCD,0x9E,0xA8,0x9E,0x28,0x87,0x29,0x8F,0x2A,0x97,0x2A,0x9F,0x6A,0xA7,0x89,0xA7,0xA9,0xA7,0xA8,0xA7,0xA8,0xA7,0x89,0xAF,0x89,0xBF,0x69,0xC7,0x68,0xCF,0x48,0xCF,0x49,0xC7,0x49,0xC7,0x27,0xCF,0x4A,0xB7,0x08,0x76,0xCC,0x75,0xAD,0x75,0x8D,0x75,0xCD,0x6D,0xAD,0x6D,0x8D,0x75,0x6E,0x75,0x6E,0x75,0x6D,0x75,0x8D,0x75,0x6D,0x75,0x8D,0x6D,0x8D,0x6D, +0x6E,0x75,0x6D,0x75,0x6D,0x75,0x6D,0x75,0x6E,0x6D,0x4D,0x6D,0x4D,0x6D,0x4D,0x6D,0x4D,0x6D,0x4D,0x6D,0x4D,0x6D,0x4D,0x6D,0x4D,0x6D,0x4D,0x6D,0x2D,0x6D,0x2D,0x6D,0x2E,0x6D,0x4E,0x6D,0x0D,0x65,0x4E,0x6D,0x2D,0x65,0x2D,0x65,0x6D,0x6D,0x69,0x4C,0xE7,0x3B,0x06,0x3C,0xE6,0x3B,0x06,0x3C,0x06,0x3C,0x26,0x3C,0x06,0x3C,0xE5,0x33,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x00,0x00,0x00,0x40,0x00,0x60,0x00,0x0A,0x54,0xD0,0x85,0x6D,0x75,0x8D,0x75,0x6D,0x6D,0x8D,0x75,0xAD,0x75,0xCE,0x75,0xAD,0x75,0xAE,0x75,0x8D,0x6D,0xAE,0x75,0xAE,0x75,0xAD,0x75,0xAD,0x75,0xAD,0x75,0xAE,0x75,0xAE,0x75,0xAE,0x75, +0xAE,0x75,0xAE,0x75,0xAE,0x75,0xAE,0x75,0xAE,0x75,0xAE,0x75,0xAE,0x75,0xAE,0x75,0xAE,0x6D,0xAE,0x6D,0xAE,0x6D,0xAE,0x6D,0xAD,0x75,0xAD,0x75,0xAD,0x75,0xAD,0x75,0xAE,0x75,0x8E,0x75,0x8E,0x75,0x4D,0x5D,0xEC,0x54,0x4F,0x75,0xEE,0x74,0xCE,0x74,0x90,0x75,0x8F,0x6D,0x2E,0x65,0x4E,0x75,0x4E,0x75,0x6E,0x6D,0x8E,0x75,0x6E,0x75,0xAE,0x75,0xAE,0x7D,0xEF,0x85,0x0F,0x7E,0x71,0x86,0x32,0x96,0xE7,0x42,0x40,0x00,0x4E,0x64,0x60,0x00,0x41,0x08,0x00,0x08,0x20,0x00,0x22,0x09,0x22,0x09,0x60,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x20,0x00,0x80,0x00,0x60,0x00,0x49,0x64,0x72,0xBF,0xEE,0xA6,0x2D,0x9F,0x4D,0x9F,0x0C,0x97, +0x4D,0x9F,0x0C,0x9F,0x2D,0x9F,0xEE,0xA6,0x52,0xB7,0x46,0x43,0x60,0x00,0x60,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x81,0x00,0x09,0x23,0x29,0x0B,0x29,0x0B,0x09,0x13,0x2C,0x1B,0x08,0x0B,0x6D,0x4D,0x2D,0x5E,0xCD,0x5D,0x47,0x23,0x05,0x0A,0x27,0x12,0x05,0x12,0x24,0x0A,0x25,0x12,0x25,0x0A,0x46,0x12,0x04,0x02,0xC5,0x12,0x6D,0x5D,0xED,0x4D,0xCB,0x65,0xCE,0x9E,0xEF,0xA6,0x2C,0x7E,0x8E,0x7E,0x50,0x9F,0xAA,0x7D,0x2E,0x8E,0x52,0xA7,0xAB,0x5D,0x6E,0x7E,0xCE,0x8D,0x40,0x00,0x60,0x00,0x41,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x20,0x00,0x00,0x00,0x00,0x00,0x01,0x08,0x20,0x00,0xC1,0x0A,0x60,0x03,0x20,0x02,0xA6,0x2B,0xA0,0x00,0x00,0x00,0x80,0x00,0x60,0x00,0xC0,0x00,0x87,0x4B,0xCD,0xB6,0xED,0xD7,0xED,0xD7,0xCE,0xCF,0xCE,0xCF,0x6B,0xBF,0xCC,0xC7,0xEE,0xC7,0xCD,0xD7,0xEE,0xD7,0xEE,0xC7,0xED,0xC7,0x8C,0xC7,0xCE,0xD7,0xEB,0xB6,0xAD,0xBF,0xEE,0xBF,0xEE,0xC7,0xEE,0xC7,0xCD,0xC7,0xED,0xBF,0xEE,0xBF,0xEE,0xCF,0x6C,0xCF,0x8C,0x9F,0xEE,0xCF,0xEE,0xD7,0x50,0xAF,0x07,0x1C,0x29,0x03,0x0A,0x03,0xE9,0x12,0xC7,0x0A,0x69,0x23,0xC4,0x01,0x88,0x2A,0x80,0x00,0x05,0x12,0xA0,0x00,0xC5,0x19, +0x00,0x00,0xC3,0x10,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,0x20,0x00,0xA4,0x19,0x46,0x22,0x82,0x09,0x45,0x1A,0xE6,0x8D,0x6F,0xC7,0xE0,0x19,0xE6,0x4A,0x04,0x32,0xE8,0x52,0x40,0x00,0x20,0x00,0x00,0x00,0x01,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, +0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x20,0x00,0x00,0x00,0x00,0x08,0x20,0x00,0xC9,0x4B,0x8C,0x64,0x20,0x00,0x00,0x08,0x41,0x08,0x20,0x00,0x00,0x00,0x00,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,0x20,0x00,0x21,0x08,0x40,0x00,0x4B,0x44,0x0F,0x56,0xAC,0x4C,0x40,0x00,0x80,0x00,0xF2,0x7D,0xA8,0x2B,0x40,0x00,0x01,0x10,0x00,0x10,0x20,0x00,0x20,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x20,0x00,0x20,0x00,0x20,0x00,0x23,0x11,0x47,0x2A,0x06,0x22,0x84,0x09,0x27,0x22, +0x25,0x02,0xA7,0x12,0x25,0x02,0x25,0x0A,0xE5,0x09,0xE5,0x11,0xC5,0x11,0xC5,0x11,0x26,0x12,0xC8,0x12,0xE8,0x12,0xA7,0x0A,0x66,0x0A,0xC4,0x01,0x43,0x01,0x84,0x11,0xE3,0x10,0xC2,0x08,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x00,0x00,0x00,0x00,0x20,0x00,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x20,0x00,0x21,0x00,0x00,0x00,0x00,0x00,0x20,0x00,0x65,0x2A,0x90,0x7D,0x4E,0x65,0x4D,0x65,0x4D,0x6D,0x2D,0x6D,0x4D,0x6D,0x2C,0x65,0x6E,0x6D,0x0C,0x65,0x4D,0x6D,0x6C,0x6D,0x4E,0x6D,0x0F,0x5D,0x6E,0x4C,0x6E,0x54,0x8D,0x54,0x8E,0x4C,0x8E,0x4C,0x6E,0x4C,0x8E,0x4C,0xAF,0x54,0x8F,0x54,0x6D,0x54,0x8C,0x75,0xCB,0x9E,0xE6,0x9E, +0x09,0x9F,0x09,0x9F,0x29,0xA7,0x69,0xA7,0x68,0x9F,0x88,0x9F,0x88,0x9F,0x89,0x9F,0x8A,0xA7,0x6B,0xAF,0x6B,0xBF,0x6B,0xC7,0x4A,0xC7,0x2A,0xCF,0x2A,0xCF,0x2A,0xC7,0x29,0xBF,0xCA,0x9E,0x89,0x6D,0xAD,0x75,0x8E,0x7D,0x6C,0x6D,0xCD,0x6D,0xAD,0x6D,0x6E,0x75,0x4E,0x7D,0x6E,0x75,0x6D,0x6D,0x8D,0x6D,0x8D,0x6D,0x6D,0x6D,0x6D,0x6D,0x6E,0x6D,0x6E,0x6D,0x4D,0x6D,0x4D,0x6D,0x4D,0x6D,0x4D,0x6D,0x4D,0x6D,0x4D,0x6D,0x4D,0x6D,0x4D,0x6D,0x2D,0x6D,0x2D,0x6D,0x2D,0x6D,0x2D,0x6D,0x2D,0x6D,0x2D,0x6D,0x2E,0x6D,0x0D,0x65,0x2D,0x65,0x0C,0x65,0x2C,0x65,0x4D,0x65,0xA9,0x54,0xE6,0x3B,0xE6,0x3B,0xE6,0x3B,0x06,0x3C,0x06,0x3C,0x06,0x3C,0x06,0x3C,0x06,0x3C,0x26,0x3C, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x40,0x00,0xA2,0x11,0xD0,0x8D,0x4D,0x6D,0x8D,0x75,0x6E,0x75,0x8E,0x75,0xAE,0x75,0x6C,0x6D,0xAD,0x75,0x8D,0x6D,0x6D,0x6D,0x8E,0x75,0x8E,0x6D,0x8D,0x6D,0x8D,0x6D,0x8D,0x75,0x8D,0x75,0x8D,0x75,0x8D,0x75,0x6E,0x75,0x8E,0x75,0x8E,0x6D,0x8D,0x6D,0x8D,0x6D,0x8D,0x6D,0x8D,0x6D,0x8D,0x6D,0x8D,0x6D,0x8E,0x6D,0x8E,0x6D,0x8E,0x6D,0x8E,0x6D,0x8E,0x6D,0x8D,0x6D,0x8D,0x6D,0x8D,0x6D,0x4C,0x75,0x8D,0x75,0x8D,0x6D,0xEF,0x6D,0x4D,0x65,0x0D,0x6D,0xCD,0x6C,0xED,0x6C,0x0D,0x6D,0x0D,0x6D,0x4D,0x6D,0x6D,0x65,0xAD,0x65,0xAD,0x65,0xAD,0x6D,0xAE,0x75, +0xAD,0x6D,0x8D,0x6D,0xEE,0x75,0xED,0x6D,0x8C,0x65,0x8E,0x7D,0x32,0x9E,0x07,0x33,0xAA,0x43,0x80,0x00,0x40,0x08,0x00,0x00,0x60,0x00,0x0B,0x34,0x91,0x65,0xC0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x20,0x00,0x40,0x00,0x40,0x00,0xE8,0x5B,0xD0,0xA6,0xAD,0x96,0xED,0x96,0xCC,0x8E,0xCD,0x86,0x0E,0x8F,0xEE,0x8E,0xCD,0x86,0xED,0x96,0xCC,0x96,0x8C,0x96,0x8F,0xA6,0x62,0x2A,0x40,0x00,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,0x81,0x00,0xE9,0x22,0x29,0x0B,0x29,0x03,0x29,0x13, +0xAB,0x12,0x28,0x13,0x8C,0x4D,0xEA,0x55,0x0B,0x5E,0xED,0x65,0xCF,0x6D,0xCF,0x75,0xCE,0x6D,0xED,0x6D,0x2E,0x76,0xEE,0x6D,0xCF,0x6D,0x0F,0x6E,0xCD,0x65,0xCB,0x5D,0x0D,0x4E,0xCB,0x65,0xCE,0x9E,0x0F,0xA7,0x0C,0x7E,0x8E,0x7E,0x51,0x9F,0x8A,0x75,0x0D,0x8E,0x93,0xA7,0x2D,0x66,0xD0,0x86,0xEE,0x8D,0x80,0x00,0x20,0x00,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x20,0x00,0x00,0x00,0x00,0x00,0x20,0x00,0x00,0x00,0x00,0x00,0x01,0x08,0x40,0x00,0x22,0x13,0x00,0x04,0x40,0x03,0x06,0x34,0x20,0x09,0x80,0x00,0x24,0x22,0x8A,0x4B,0x80,0x00,0xCF,0x95,0x8F,0xC7,0x8B,0xB7,0x8C,0xBF,0x6E,0xBF,0xF1,0xD7,0xF0,0xCF,0xEF,0xCF,0xF0,0xCF, +0xAE,0xC7,0x6D,0xBF,0x4C,0xB7,0xCE,0xC7,0xEF,0xCF,0xEF,0xCF,0xCF,0xCF,0xCF,0xC7,0x6D,0xB7,0xAE,0xBF,0xCF,0xBF,0xEF,0xBF,0xEF,0xBF,0xCE,0xB7,0x8E,0xBF,0x0D,0xC7,0xAD,0xA7,0xAD,0xC7,0x0C,0xC7,0x91,0xBF,0x8D,0x45,0x2C,0x04,0x4D,0x14,0x89,0x0B,0x09,0x24,0x6E,0x4D,0xE6,0x0A,0xCA,0x2B,0xC6,0x02,0xEA,0x2B,0x21,0x01,0xA6,0x21,0x20,0x00,0xC3,0x10,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,0x20,0x00,0x00,0x00,0xC5,0x29,0x83,0x11,0x04,0x1A,0x04,0x12,0xA2,0x01, +0xE8,0x95,0x71,0xC7,0xC0,0x19,0xC2,0x21,0x29,0x53,0x24,0x32,0xE7,0x52,0x40,0x00,0x00,0x00,0x00,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x20,0x00,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,0x20,0x00,0x00,0x00,0x01,0x00,0x00,0x00,0x20,0x00,0x01,0x08,0x00,0x00,0x40,0x00,0x00,0x01,0x31,0x9E,0xA0,0x00,0x20,0x00,0x00,0x00,0x00,0x00,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, +0x40,0x00,0x21,0x08,0x20,0x00,0x6B,0x44,0x0E,0x56,0x6C,0x44,0x60,0x00,0x20,0x00,0x4B,0x44,0x6E,0x5D,0x80,0x00,0x01,0x10,0x00,0x08,0x20,0x00,0x40,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x20,0x00,0x20,0x00,0x40,0x00,0xE3,0x10,0x44,0x19,0xC2,0x08,0x20,0x00,0x20,0x00,0x40,0x00,0x22,0x01,0x09,0x2B,0x83,0x01,0x80,0x00,0x60,0x00,0x80,0x00,0xC1,0x00,0x02,0x01,0x21,0x01,0x87,0x12,0x09,0x23,0xA0,0x00,0x60,0x00,0x60,0x00,0xA1,0x00,0x23,0x01,0xA2,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, +0x01,0x00,0x00,0x00,0x00,0x00,0x40,0x00,0x82,0x19,0x90,0x85,0x0D,0x65,0x4D,0x65,0x4D,0x65,0x2D,0x6D,0x6E,0x75,0x0D,0x65,0x2E,0x6D,0x2D,0x65,0x2E,0x6D,0x4E,0x6D,0x4D,0x6D,0x2E,0x65,0xAE,0x54,0x6E,0x4C,0x4F,0x4C,0x4F,0x54,0x4E,0x4C,0x8D,0x4C,0x8D,0x44,0xAF,0x4C,0x0D,0x44,0x6F,0x54,0x4C,0x54,0xAC,0x7D,0xEA,0x9E,0x06,0x9F,0x09,0xAF,0x09,0xA7,0x49,0xA7,0x68,0x9F,0xA8,0x9F,0x88,0x97,0xA9,0x9F,0x8A,0x9F,0x6A,0xA7,0x4A,0xAF,0x6A,0xB7,0x69,0xC7,0x49,0xC7,0x29,0xC7,0x2A,0xC7,0x0A,0xC7,0xEB,0xB6,0x0A,0x86,0x6C,0x6D,0x70,0x7D,0x4F,0x7D,0x6D,0x75,0xAD,0x6D,0xAD,0x65,0x6E,0x6D,0x2E,0x7D,0x4E,0x75,0x6D,0x6D,0x8D,0x65,0x6D,0x6D,0x4D,0x6D,0x4D,0x6D, +0x4D,0x6D,0x4D,0x6D,0x4D,0x6D,0x4D,0x6D,0x4D,0x6D,0x2D,0x6D,0x2D,0x6D,0x2D,0x6D,0x2D,0x6D,0x2D,0x6D,0x2D,0x6D,0x2D,0x6D,0x2D,0x65,0x2D,0x65,0x2D,0x65,0x2D,0x65,0x2D,0x65,0x0D,0x65,0x4D,0x6D,0x0C,0x65,0x2C,0x65,0xEB,0x5C,0xC6,0x3B,0x06,0x3C,0xE6,0x3B,0xE5,0x33,0xE5,0x33,0xE5,0x33,0xE5,0x33,0xE5,0x33,0xE5,0x33,0xE6,0x33,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x00,0x00,0x00,0xC1,0x08,0xEF,0x7C,0x2E,0x75,0x4D,0x6D,0x8C,0x6D,0x6E,0x6D,0x4D,0x6D,0x4D,0x6D,0x6C,0x6D,0x8D,0x75,0x4C,0x65,0x8E,0x6D,0x6E,0x6D,0x6E,0x6D,0x6D,0x6D,0x6C,0x6D,0x6C,0x6D,0x6C,0x6D,0x6C,0x6D,0x6D,0x6D,0x4E,0x6D, +0x6E,0x6D,0x6E,0x6D,0x6D,0x6D,0x6D,0x6D,0x6D,0x6D,0x6C,0x6D,0x6D,0x6D,0x6D,0x6D,0x8E,0x6D,0x8E,0x6D,0x8E,0x6D,0x8E,0x6D,0x8E,0x6D,0x6D,0x6D,0x6D,0x6D,0x6D,0x6D,0x4D,0x85,0x4C,0x6D,0xAD,0x6D,0x6D,0x5D,0x8E,0x65,0xAE,0x6D,0x6D,0x55,0x6D,0x55,0x4C,0x5D,0x4D,0x6D,0x2C,0x65,0x8C,0x5D,0xCD,0x55,0xAC,0x55,0x8D,0x6D,0x6D,0x7D,0xAC,0x6D,0xAC,0x75,0xAC,0x75,0xED,0x75,0xEE,0x75,0xCE,0x85,0x8F,0x85,0xD1,0x85,0xAE,0x64,0xA0,0x00,0x20,0x00,0x40,0x00,0x03,0x02,0x93,0x56,0x76,0x6F,0xC8,0x0B,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x21,0x00,0x60,0x00,0x4C,0x6C,0xB0,0xAE,0x4B,0x96,0x8B,0x8E,0x8B,0x86,0xAC,0x86,0xCE,0x86,0xAE,0x7E, +0xAE,0x7E,0xAD,0x7E,0xAC,0x86,0x8B,0x86,0xAB,0x96,0x4B,0x96,0x90,0xA6,0xE6,0x42,0x20,0x00,0x01,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,0x81,0x00,0xE9,0x22,0x29,0x0B,0x29,0x03,0x29,0x0B,0xCB,0x1A,0x07,0x13,0x8A,0x4D,0x49,0x5E,0x28,0x56,0x0A,0x5E,0xEB,0x5D,0xEB,0x5D,0x0A,0x5E,0x08,0x56,0x09,0x56,0xEA,0x55,0x0B,0x5E,0x0B,0x5E,0x0A,0x56,0x28,0x56,0x0D,0x4E,0xEB,0x65,0xCE,0x9E,0x0F,0xA7,0x0C,0x76,0x8E,0x7E,0x51,0x9F,0x6A,0x75,0x2E,0x8E,0x11,0x97,0xC7,0x3C,0x46,0x34,0xCA,0x6C,0x65,0x3A,0x84,0x21,0x82,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x20,0x00,0x00,0x00,0x00,0x00,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x20,0x00,0x43,0x1B,0x00,0x04,0xC0,0x03,0xE4,0x2B,0x20,0x01,0x60,0x00,0xA4,0x2A,0x4B,0x5C,0xA6,0x2A,0x10,0x9E,0x2E,0xAF,0x8C,0xAF,0x6D,0xAF,0x0F,0xAF,0x8A,0x85,0x6C,0x9E,0x0B,0x96,0xAA,0x8D,0x8C,0x9E,0x2F,0xBF,0x2F,0xC7,0x0A,0x96,0x09,0x86,0x09,0x7E,0x6A,0x8E,0x4F,0xBF,0x2F,0xBF,0x0E,0xB7,0x4B,0x8E,0x09,0x7E,0x2A,0x86,0x8C,0x96,0x4F,0xB7,0xF3,0xD7,0xD0,0xBF,0xEC,0xBE,0xED,0xD6,0xF0,0xB6,0x0C,0x4D,0xEB,0x03,0x6D,0x14,0xAB,0x1C,0x4C,0x35,0x70,0x5E,0x8A,0x2C,0xD0,0x4D,0x28,0x04,0x0D,0x2D,0x25,0x02,0x65,0x21, +0x20,0x00,0xC3,0x10,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,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x20,0x00,0x64,0x21,0x22,0x11,0xC4,0x19,0xA3,0x11,0x82,0x01,0xA2,0x01,0xA8,0x8D,0xF0,0xB6,0xC0,0x19,0xC3,0x21,0x25,0x32,0xE3,0x29,0xA1,0x29,0xA6,0x4A,0x20,0x00,0x00,0x00,0x01,0x00,0x00,0x00,0x20,0x00,0x20,0x00,0x20,0x00,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, +0x20,0x00,0x00,0x00,0x21,0x00,0x00,0x00,0x00,0x00,0x01,0x08,0x01,0x08,0x20,0x00,0x60,0x00,0xEC,0x74,0x8D,0x74,0x40,0x00,0x00,0x00,0x20,0x00,0x00,0x00,0x01,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,0x20,0x00,0x42,0x08,0x40,0x00,0x4A,0x44,0x2F,0x5E,0xED,0x54,0x40,0x00,0x40,0x00,0x43,0x02,0x51,0x76,0xC0,0x00,0x01,0x10,0x00,0x08,0x20,0x00,0x40,0x00,0x01,0x00,0x20,0x00,0x20,0x00,0x20,0x00,0x20,0x00,0x20,0x00,0x20,0x00,0x20,0x00,0x20,0x00,0x20,0x00,0x44,0x19,0x44,0x19,0x20,0x00,0x00,0x00,0x20,0x00,0x40,0x00,0x00,0x00, +0xA0,0x00,0x84,0x09,0x27,0x2A,0xA1,0x00,0x00,0x00,0xC2,0x10,0xE2,0x08,0x22,0x01,0xE5,0x09,0x46,0x1A,0x02,0x01,0x60,0x00,0x00,0x00,0xA2,0x10,0xA2,0x08,0x40,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x20,0x00,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x00,0x08,0x00,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x00,0x01,0x00,0x00,0x00,0x20,0x00,0xEB,0x63,0x2E,0x75,0x2D,0x65,0x2C,0x5D,0x2C,0x5D,0x0D,0x6D,0xCC,0x64,0x0D,0x6D,0x0D,0x65,0x0D,0x65,0x0D,0x65,0xED,0x64,0x2D,0x65,0x0D,0x65,0x6C,0x4C,0x4E,0x4C,0x2F,0x4C,0x4F,0x54,0x2D,0x44,0x8D,0x44,0x8D,0x3C,0x6D,0x44,0x4F,0x4C,0x2F,0x54,0x2B,0x54,0x4E,0x8E,0x0A,0x97,0x26,0x97, +0xC9,0xA6,0x29,0xAF,0x28,0x9F,0x68,0x97,0xA9,0x97,0xA9,0x97,0x8A,0x97,0x6A,0x97,0x49,0x9F,0x48,0xA7,0x67,0xB7,0x87,0xBF,0x67,0xBF,0x48,0xC7,0x49,0xC7,0x0A,0xC7,0xCC,0xA6,0x6B,0x75,0x6F,0x75,0x31,0x7D,0x0F,0x75,0x6E,0x75,0x8C,0x65,0xAD,0x65,0x4D,0x6D,0x2E,0x75,0x4D,0x75,0x6D,0x65,0x6D,0x65,0x6D,0x65,0x2E,0x6D,0x2E,0x6D,0x4D,0x6D,0x4D,0x6D,0x2D,0x6D,0x2D,0x6D,0x2D,0x6D,0x2D,0x6D,0x2D,0x6D,0x2D,0x65,0x2D,0x65,0x2D,0x65,0x0D,0x65,0x0D,0x65,0x0D,0x65,0x0D,0x65,0x0D,0x65,0x0D,0x65,0x0C,0x65,0x0D,0x65,0xEC,0x5C,0x2D,0x65,0xAA,0x54,0xA6,0x33,0xC6,0x33,0xC5,0x33,0xC5,0x33,0xE6,0x33,0xE5,0x33,0xC5,0x33,0xE5,0x33,0xE6,0x33,0xE5,0x33,0xC5,0x33, +0x00,0x00,0x20,0x00,0x20,0x00,0x20,0x00,0x20,0x00,0x00,0x00,0x20,0x08,0x00,0x08,0x00,0x00,0xA0,0x08,0x60,0x00,0xEA,0x53,0x2E,0x6D,0x6E,0x6D,0x4C,0x65,0x8D,0x6D,0x4E,0x6D,0x4E,0x6D,0x6D,0x6D,0x6C,0x6D,0x6C,0x6D,0x6D,0x6D,0x4D,0x6D,0x4E,0x6D,0x2D,0x6D,0x6D,0x6D,0x6C,0x6D,0x6C,0x6D,0x6C,0x6D,0x4C,0x6D,0x4D,0x6D,0x4D,0x6D,0x6E,0x6D,0x4E,0x6D,0x4E,0x6D,0x4D,0x6D,0x6D,0x6D,0x8D,0x6D,0x6C,0x6D,0x6C,0x65,0xAE,0x6D,0x0D,0x5D,0xEE,0x54,0x91,0x6D,0x4F,0x65,0x6F,0x6D,0x6D,0x6D,0x4C,0x6D,0x4E,0x6D,0x4E,0x6D,0x4E,0x6D,0x4D,0x6D,0x4D,0x6D,0x4D,0x6D,0x4E,0x6D,0x4E,0x6D,0x0E,0x65,0x0E,0x65,0x2E,0x6D,0x2E,0x6D,0x2D,0x6D,0x4D,0x6D,0x6D,0x75,0x6C,0x6D, +0x6F,0x6D,0x90,0x75,0x8F,0x75,0xCE,0x6D,0xED,0x75,0x8D,0x85,0x6D,0x8D,0x0E,0x86,0x6E,0x6E,0x2C,0x5D,0xA0,0x00,0x40,0x00,0x65,0x02,0x14,0x67,0x30,0x5E,0x2A,0x4C,0x26,0x12,0x60,0x00,0x60,0x00,0x00,0x08,0x00,0x08,0x60,0x08,0x80,0x00,0x49,0x44,0x6F,0x7E,0x6D,0x76,0x6B,0x76,0x8C,0x7E,0x6D,0x7E,0x4C,0x7E,0x8D,0x76,0x8C,0x6E,0x6E,0x76,0x8E,0x76,0x8D,0x76,0x8C,0x76,0x8B,0x76,0xAB,0x76,0x8C,0x6E,0x6E,0x86,0xA4,0x32,0x20,0x00,0x62,0x08,0x00,0x00,0x40,0x00,0x40,0x08,0x20,0x21,0x60,0x00,0x21,0x00,0x00,0x00,0x01,0x08,0x00,0x00,0x00,0x00,0x40,0x08,0x00,0x00,0x40,0x00,0x21,0x00,0x21,0x00,0x20,0x00,0xE1,0x00,0x07,0x1B,0x27,0x0B,0x08,0x0B,0xE9,0x12, +0x0A,0x0B,0x26,0x0B,0xAB,0x55,0x0B,0x66,0x0C,0x5E,0xCD,0x4D,0xCC,0x4D,0x2C,0x56,0x0B,0x5E,0xCB,0x55,0xCD,0x55,0xEE,0x55,0x0D,0x56,0x0C,0x4E,0xEB,0x55,0x0C,0x5E,0xE9,0x75,0xCB,0x7D,0xB1,0x96,0x13,0x9F,0x0F,0x7E,0x72,0x8E,0xF5,0x9E,0xCC,0x44,0x69,0x2C,0xA7,0x1B,0x26,0x13,0xE9,0x23,0x2C,0x35,0x6B,0x2D,0x8C,0x35,0x2C,0x35,0x49,0x24,0x87,0x13,0x44,0x02,0x21,0x01,0x80,0x00,0x60,0x00,0x40,0x00,0x20,0x00,0x00,0x00,0x01,0x08,0x01,0x08,0x01,0x08,0x21,0x00,0x80,0x00,0x83,0x13,0x00,0x04,0xA0,0x03,0xE4,0x1B,0x80,0x01,0x40,0x00,0xA0,0x08,0x02,0x09,0x60,0x00,0xAF,0x95,0x6F,0xCF,0xAA,0xCF,0xEA,0xCF,0x2D,0xA7,0x20,0x02,0x87,0x02,0x66,0x0A,0x22,0x02, +0x63,0x7D,0xEF,0xCF,0x71,0xBF,0x24,0x3B,0xE2,0x09,0x45,0x0A,0x63,0x02,0x4E,0x86,0x6F,0xBF,0xB0,0xC7,0x83,0x23,0x85,0x03,0x6A,0x14,0xC8,0x23,0x53,0x9E,0xFC,0xFF,0xD9,0xEF,0xD5,0xE7,0x2F,0xBF,0xD2,0xB7,0x2C,0x45,0xCA,0x0B,0x2C,0x14,0x4C,0x14,0x8C,0x1C,0xEE,0x24,0xAC,0x1C,0x90,0x2D,0x2E,0x0D,0x72,0x3E,0x4A,0x14,0x2A,0x2C,0x23,0x11,0x84,0x21,0x60,0x00,0x20,0x00,0x20,0x00,0x00,0x00,0x20,0x00,0x20,0x00,0x20,0x00,0x20,0x00,0x20,0x00,0x20,0x00,0x20,0x00,0x20,0x00,0x20,0x00,0x20,0x00,0x00,0x00,0x00,0x00,0x20,0x00,0x20,0x00,0x00,0x00,0x00,0x00,0x40,0x00,0x20,0x00,0x20,0x00,0xC1,0x08,0x02,0x11,0xC4,0x21,0x63,0x19,0xE1,0x00,0x63,0x19,0xA0,0x00, +0xE7,0x7D,0x31,0xB7,0xE0,0x08,0xE5,0x39,0x01,0x19,0xA7,0x42,0x04,0x32,0x63,0x21,0x83,0x21,0x20,0x00,0x80,0x00,0x40,0x00,0x20,0x00,0x20,0x00,0x00,0x00,0x01,0x08,0x20,0x00,0x20,0x00,0x20,0x00,0x20,0x00,0x20,0x00,0x20,0x00,0x20,0x00,0x20,0x00,0x20,0x00,0x20,0x00,0x20,0x00,0x20,0x00,0x20,0x00,0x20,0x00,0x20,0x00,0x20,0x00,0x00,0x08,0x41,0x00,0x20,0x00,0x20,0x00,0x00,0x00,0x60,0x00,0x60,0x00,0x00,0x00,0x02,0x10,0x82,0x08,0xF1,0x7D,0x63,0x0B,0x20,0x01,0x60,0x00,0x40,0x00,0x80,0x00,0x60,0x00,0x60,0x00,0x40,0x00,0x20,0x00,0x00,0x00,0x20,0x00,0x20,0x08,0x00,0x08,0x00,0x10,0x21,0x18,0x01,0x10,0x00,0x08,0x01,0x08,0x01,0x00,0x00,0x00,0x00,0x00, +0x20,0x00,0x21,0x10,0x20,0x00,0x8C,0x3C,0x6F,0x4E,0x2C,0x4D,0x40,0x00,0x00,0x10,0x80,0x00,0x50,0x65,0x25,0x0A,0x80,0x00,0x40,0x00,0x40,0x00,0x00,0x00,0x00,0x18,0x20,0x00,0x20,0x00,0x20,0x00,0x20,0x00,0x20,0x00,0x20,0x00,0x20,0x00,0x40,0x00,0x84,0x21,0xE2,0x10,0x40,0x00,0x00,0x00,0x20,0x00,0x20,0x00,0x00,0x00,0x20,0x00,0x00,0x08,0x02,0x01,0x45,0x02,0x24,0x02,0x62,0x01,0x63,0x11,0x22,0x09,0x01,0x01,0xE4,0x01,0x05,0x0A,0x80,0x00,0x81,0x00,0x03,0x09,0xA1,0x00,0x20,0x00,0x41,0x00,0x20,0x00,0x20,0x00,0x20,0x00,0x20,0x00,0x00,0x00,0x00,0x00,0x20,0x00,0x20,0x00,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x00,0x08,0x20,0x00,0x20,0x00,0x20,0x00, +0x01,0x00,0x41,0x00,0x40,0x00,0x61,0x09,0xAD,0x64,0xED,0x64,0xED,0x5C,0x0D,0x65,0xED,0x64,0xED,0x64,0xED,0x64,0xED,0x64,0xED,0x64,0xED,0x64,0xED,0x64,0xEE,0x64,0xEE,0x5C,0xEF,0x5C,0x2E,0x4C,0x2E,0x4C,0x2E,0x4C,0x4D,0x4C,0x2D,0x44,0x4D,0x4C,0x4D,0x4C,0x2C,0x44,0x4C,0x4C,0x2C,0x4C,0x4A,0x54,0x8E,0x96,0xCA,0x9E,0x27,0xA7,0xEA,0xA6,0x09,0xA7,0x48,0x9F,0x69,0x9F,0x69,0x9F,0x4A,0xA7,0x49,0xA7,0x49,0x9F,0x49,0x9F,0x28,0x9F,0x08,0x9F,0x89,0xBF,0x48,0xBF,0x49,0xBF,0x2A,0xBF,0x0B,0xB7,0x0F,0x9E,0x0B,0x75,0x6C,0x7D,0x4C,0x75,0x6C,0x6D,0x6D,0x65,0x8D,0x65,0xAD,0x65,0x6D,0x65,0x6D,0x65,0x4D,0x6D,0x2D,0x6D,0x2D,0x6D,0x2D,0x75,0x0D,0x75,0x0D,0x75, +0x2E,0x6D,0x0D,0x65,0x2D,0x6D,0x2D,0x6D,0x0C,0x6D,0x0D,0x6D,0xEC,0x6C,0x2D,0x6D,0x0C,0x65,0x2C,0x65,0x2C,0x65,0x0C,0x65,0x0D,0x65,0x0D,0x65,0xED,0x6C,0xED,0x6C,0xED,0x64,0x0D,0x65,0x0C,0x65,0xCB,0x5C,0xC6,0x3B,0xC6,0x33,0xC5,0x33,0xC5,0x33,0xC5,0x33,0xC5,0x33,0xC6,0x33,0xC6,0x33,0xC6,0x33,0xC6,0x33,0xC6,0x33,0xC6,0x33,0x20,0x00,0x40,0x00,0x00,0x00,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x20,0x08,0x40,0x00,0x40,0x00,0xC6,0x32,0x4F,0x7D,0x4E,0x6D,0x4D,0x6D,0x6D,0x6D,0x2C,0x65,0x2E,0x6D,0x4D,0x6D,0x4D,0x6D,0x4C,0x6D,0x4C,0x6D,0x4D,0x6D,0x4D,0x6D,0x4E,0x6D,0x4E,0x6D,0x4D,0x6D,0x2C,0x6D,0x4C,0x6D,0x4C,0x6D,0x4C,0x6D,0x4D,0x6D,0x4D,0x6D, +0x2D,0x65,0x2C,0x65,0x2C,0x65,0x6D,0x6D,0x6D,0x6D,0x2C,0x65,0x2D,0x65,0x6E,0x65,0x6E,0x65,0x29,0x3C,0x28,0x3C,0x4C,0x65,0x2C,0x5D,0x4C,0x65,0x4C,0x65,0x4D,0x6D,0x4D,0x6D,0x4D,0x6D,0x4D,0x6D,0x4D,0x6D,0x4D,0x6D,0x4C,0x6D,0x4D,0x6D,0x4D,0x6D,0x2D,0x65,0x4E,0x6D,0x2D,0x6D,0x2C,0x65,0x6D,0x6D,0x6E,0x75,0x4E,0x6D,0x70,0x75,0x8F,0x75,0x6C,0x75,0xAA,0x6D,0xCB,0x6D,0xCD,0x75,0x8F,0x85,0x6F,0x8D,0xAD,0x75,0xEC,0x65,0xB0,0x86,0x09,0x5C,0xA0,0x00,0xC3,0x01,0xF3,0x45,0x50,0x4D,0xC0,0x00,0xC8,0x42,0x40,0x00,0x00,0x00,0x20,0x08,0x20,0x00,0x80,0x00,0x09,0x44,0x90,0x7E,0x2D,0x66,0x4D,0x6E,0x0C,0x6E,0xEB,0x75,0x0C,0x76,0x0B,0x76,0x2C,0x6E,0x6C,0x6E, +0x2E,0x6E,0x0D,0x6E,0x0C,0x66,0x2C,0x6E,0x4B,0x66,0x4B,0x66,0x4C,0x6E,0x0D,0x6E,0xF0,0x7D,0x44,0x1A,0x40,0x00,0x60,0x00,0x20,0x00,0xE9,0x73,0xB6,0xEF,0x42,0x5B,0x20,0x00,0x60,0x08,0x00,0x00,0x00,0x00,0x40,0x08,0x20,0x00,0x20,0x00,0x20,0x00,0x21,0x00,0x01,0x00,0x00,0x00,0xC1,0x00,0xE7,0x1A,0x07,0x0B,0x08,0x0B,0xC9,0x12,0xEA,0x0A,0x06,0x0B,0xAB,0x5D,0x2B,0x66,0x2C,0x5E,0x09,0x35,0x66,0x1C,0xEB,0x4D,0x2B,0x5E,0xE8,0x34,0x47,0x24,0xAD,0x4D,0x0D,0x56,0xA6,0x24,0xC6,0x2C,0x0C,0x56,0xC9,0x6D,0xCB,0x75,0x33,0xA7,0x13,0x9F,0x4D,0x65,0xE8,0x33,0x88,0x2B,0x25,0x13,0x45,0x0B,0x86,0x13,0x47,0x13,0xE9,0x23,0x4C,0x3D,0x8B,0x35,0x6B,0x2D,0x4C,0x3D, +0xAD,0x4D,0xAE,0x4D,0x6F,0x55,0x2E,0x5D,0x8C,0x54,0xC9,0x33,0xC5,0x1A,0x04,0x0A,0xE0,0x00,0x40,0x00,0x60,0x00,0x40,0x00,0x20,0x00,0x60,0x00,0x83,0x23,0xA0,0x03,0xE0,0x02,0x26,0x2C,0xA1,0x01,0x40,0x00,0x80,0x08,0x22,0x11,0x60,0x00,0x4E,0x85,0x50,0xC7,0x6B,0xC7,0xCD,0xCF,0xAE,0x9E,0x04,0x02,0xAA,0x12,0x69,0x12,0x26,0x12,0x07,0x75,0xF2,0xCF,0x50,0xB7,0x85,0x43,0x66,0x22,0x69,0x1A,0x46,0x0A,0x0F,0x86,0x8F,0xBF,0x8F,0xB7,0x67,0x34,0x4B,0x14,0x8E,0x14,0x2C,0x2C,0x96,0xAE,0xF8,0xDE,0xB8,0xE7,0xF7,0xF7,0xB2,0xD7,0x52,0xAF,0x0C,0x4D,0xAA,0x0B,0x0C,0x1C,0xC6,0x02,0x68,0x03,0xAD,0x2C,0xEB,0x13,0xCE,0x24,0x0E,0x25,0x8F,0x35,0xCD,0x2C,0x6B,0x2C, +0x06,0x32,0x47,0x3A,0x60,0x00,0x20,0x00,0x40,0x00,0x20,0x00,0x60,0x08,0x00,0x00,0x20,0x00,0x20,0x00,0x20,0x00,0x20,0x00,0x20,0x00,0x20,0x00,0x20,0x00,0x20,0x00,0x40,0x00,0x20,0x00,0x20,0x00,0x00,0x00,0x00,0x00,0x40,0x08,0x00,0x00,0x20,0x00,0x40,0x00,0xE5,0x31,0x63,0x19,0xA4,0x21,0xA0,0x00,0x22,0x11,0x22,0x11,0xA0,0x00,0xC6,0x75,0x31,0xB7,0xE0,0x08,0xC5,0x31,0x80,0x08,0x42,0x19,0x05,0x32,0x63,0x21,0x87,0x4A,0x42,0x19,0x20,0x00,0x80,0x00,0x20,0x00,0x40,0x08,0x00,0x08,0x01,0x08,0x20,0x00,0x20,0x00,0x20,0x00,0x20,0x00,0x20,0x00,0x20,0x00,0x20,0x00,0x20,0x00,0x20,0x00,0x20,0x00,0x20,0x00,0x20,0x00,0x20,0x00,0x20,0x00,0x20,0x00,0x20,0x00, +0x21,0x08,0x20,0x00,0x20,0x00,0x40,0x08,0x40,0x08,0x40,0x00,0x40,0x00,0x21,0x08,0x01,0x08,0x40,0x00,0x09,0x3C,0xB0,0x76,0x8A,0x54,0xEF,0x84,0xB2,0xA5,0x91,0x95,0xAE,0x74,0xAA,0x53,0xA7,0x3A,0x25,0x22,0x62,0x11,0x80,0x00,0x40,0x00,0x60,0x00,0x40,0x00,0x40,0x00,0x40,0x00,0x20,0x00,0x20,0x00,0x40,0x00,0x20,0x00,0x20,0x00,0x00,0x00,0x21,0x10,0x20,0x00,0x8C,0x44,0x4F,0x56,0x4C,0x4D,0x80,0x00,0x00,0x08,0x40,0x00,0x8A,0x3B,0x29,0x33,0x40,0x00,0x81,0x08,0x20,0x00,0x40,0x00,0x20,0x00,0x00,0x00,0x20,0x00,0x20,0x00,0x40,0x00,0x60,0x00,0x60,0x00,0xC2,0x08,0xA5,0x21,0xC2,0x08,0x40,0x00,0x20,0x00,0x20,0x00,0x00,0x00,0x20,0x00,0x40,0x08,0x40,0x00, +0x20,0x00,0xC0,0x00,0x24,0x02,0xC7,0x0A,0x87,0x1A,0xC0,0x00,0xC0,0x00,0x46,0x12,0x46,0x0A,0x63,0x01,0x22,0x09,0xE2,0x10,0x20,0x00,0x20,0x00,0x40,0x00,0x00,0x00,0x20,0x00,0x20,0x00,0x20,0x00,0x20,0x00,0x20,0x00,0x40,0x00,0x40,0x00,0x20,0x00,0x40,0x00,0x20,0x00,0x20,0x00,0x40,0x08,0x20,0x00,0x00,0x00,0x40,0x00,0x60,0x00,0x00,0x00,0x20,0x00,0x40,0x00,0x69,0x4B,0xAC,0x64,0x0D,0x65,0xEC,0x5C,0xED,0x5C,0xED,0x5C,0xED,0x64,0xCD,0x64,0xCC,0x64,0xEC,0x64,0xED,0x64,0xED,0x5C,0xED,0x5C,0xED,0x5C,0xAE,0x5C,0x0E,0x4C,0x2E,0x4C,0x0D,0x4C,0x2D,0x44,0x2D,0x44,0x2D,0x44,0x2D,0x44,0x2D,0x44,0x2D,0x4C,0x4C,0x4C,0x8A,0x54,0xCD,0x9E,0xE9,0x9E,0x27,0xA7, +0x09,0xA7,0x29,0x9F,0x68,0x97,0x88,0x97,0x69,0x9F,0x49,0x9F,0x29,0xA7,0x28,0xA7,0x28,0xA7,0x08,0x9F,0x09,0xA7,0x29,0xAF,0x29,0xBF,0x49,0xC7,0xE8,0xBE,0xC9,0xB6,0x0E,0x86,0x2B,0x6D,0x6C,0x75,0x6C,0x75,0x4C,0x6D,0x4D,0x6D,0x4D,0x6D,0x2D,0x65,0x2D,0x65,0x4D,0x65,0x6E,0x65,0x4D,0x65,0x2C,0x5D,0x0C,0x55,0x2C,0x55,0x4D,0x5D,0x4E,0x5D,0x2D,0x5D,0x0C,0x55,0x4E,0x65,0x2D,0x6D,0x0C,0x65,0x2D,0x6D,0xEC,0x64,0x0C,0x65,0x0C,0x65,0x0C,0x65,0x0C,0x65,0xED,0x64,0xED,0x64,0xED,0x64,0xED,0x64,0xCC,0x5C,0x0D,0x65,0xCB,0x5C,0x08,0x44,0xA6,0x33,0xA5,0x33,0xC5,0x33,0xA5,0x33,0xA5,0x33,0xA5,0x33,0xA5,0x33,0xA6,0x33,0xA6,0x33,0xA6,0x33,0xA5,0x33,0xA5,0x33, +0x20,0x00,0x00,0x00,0x20,0x00,0x20,0x08,0x00,0x08,0x20,0x08,0x40,0x00,0x20,0x00,0x40,0x00,0xE7,0x3A,0x50,0x7D,0x0D,0x6D,0x0D,0x65,0x0D,0x65,0x2D,0x6D,0x2C,0x6D,0x2D,0x6D,0x2D,0x6D,0x2D,0x6D,0x2C,0x6D,0x2C,0x6D,0x2D,0x6D,0x2D,0x65,0x2D,0x65,0x2E,0x6D,0x0D,0x65,0x0C,0x65,0x2D,0x6D,0x2D,0x6D,0x2D,0x65,0x0D,0x65,0x0D,0x65,0x2D,0x65,0x2D,0x6D,0x2C,0x6D,0x2C,0x6D,0x2D,0x65,0x2D,0x65,0x2E,0x65,0x4E,0x65,0x4E,0x65,0x07,0x3C,0x06,0x3C,0x6B,0x65,0x6B,0x65,0x4B,0x65,0x2C,0x65,0x4D,0x6D,0x2C,0x65,0x2C,0x65,0x2C,0x65,0x2C,0x65,0x2C,0x65,0x2C,0x65,0x2B,0x65,0x2C,0x65,0x2D,0x6D,0xEC,0x64,0x0C,0x65,0x2D,0x6D,0x2C,0x6D,0x2D,0x65,0x0D,0x65,0x2E,0x6D, +0x4D,0x6D,0xAB,0x75,0xE9,0x75,0xE9,0x6D,0x8C,0x6D,0x6F,0x7D,0x8F,0x8D,0xAE,0x7D,0x0D,0x6E,0x0C,0x76,0x50,0x9E,0x80,0x01,0x40,0x01,0xD4,0x4D,0x08,0x03,0xE0,0x00,0x00,0x00,0x21,0x08,0x01,0x08,0x40,0x00,0x60,0x00,0xCC,0x64,0x2E,0x76,0xCC,0x55,0x0C,0x56,0x0D,0x5E,0xCC,0x65,0xAC,0x6D,0xCC,0x75,0xEC,0x6D,0xCC,0x5D,0xEC,0x55,0xED,0x5D,0xCD,0x65,0xCC,0x65,0x0C,0x66,0x0B,0x5E,0xCB,0x5D,0xED,0x65,0xED,0x65,0xAD,0x55,0x30,0x6E,0xA3,0x1A,0x60,0x00,0x48,0x74,0xD4,0xDF,0xEE,0xBE,0xB0,0xD7,0x87,0x5B,0x40,0x00,0x60,0x08,0x00,0x00,0x41,0x00,0x20,0x00,0x00,0x00,0x20,0x00,0x20,0x00,0x00,0x08,0x00,0x08,0xA1,0x08,0xA7,0x22,0xE7,0x0A,0x08,0x0B,0xC9,0x12, +0xEA,0x0A,0x06,0x0B,0xAB,0x5D,0x2B,0x66,0x2C,0x66,0x2A,0x3D,0x86,0x24,0xEB,0x4D,0x4B,0x5E,0x08,0x3D,0x67,0x24,0xCD,0x4D,0x2D,0x56,0xC6,0x24,0xC7,0x2C,0x2C,0x56,0x0A,0x76,0xCC,0x6D,0x68,0x44,0x85,0x23,0x04,0x13,0x05,0x13,0x47,0x1B,0x46,0x13,0x66,0x13,0x87,0x13,0x47,0x13,0xC8,0x23,0x6D,0x3D,0xAC,0x3D,0x6B,0x35,0x4C,0x3D,0x2A,0x35,0x2A,0x35,0x0B,0x35,0x0B,0x3D,0x4C,0x45,0x8C,0x4D,0xCD,0x4D,0xAE,0x55,0x2C,0x55,0x6A,0x44,0x88,0x33,0x24,0x12,0x83,0x11,0xA0,0x00,0xE1,0x1A,0xE0,0x02,0xC0,0x01,0xA5,0x2B,0x81,0x09,0x60,0x00,0xA1,0x10,0x22,0x19,0x80,0x00,0x4D,0x85,0x70,0xC7,0x4C,0xBF,0x8E,0xC7,0x90,0xA6,0xA4,0x01,0x0A,0x12,0xA8,0x09,0xA7,0x11, +0xEB,0x74,0xB3,0xC7,0x50,0xAF,0x22,0x2B,0xE3,0x09,0x08,0x12,0xE5,0x01,0x0E,0x8E,0x4D,0xAF,0xD0,0xB7,0x89,0x34,0xAB,0x03,0x8C,0x03,0xF1,0x4C,0xFE,0xE7,0xDA,0xD6,0xF9,0xF7,0xD6,0xF7,0xF5,0xF7,0x53,0xB7,0xCC,0x44,0xCA,0x13,0xEB,0x23,0xA6,0x02,0x08,0x0B,0x2D,0x2C,0x05,0x02,0x6D,0x3C,0x68,0x13,0x6C,0x2C,0xCD,0x34,0xC5,0x02,0x40,0x00,0xE2,0x08,0x60,0x00,0x40,0x00,0x40,0x00,0x20,0x00,0x00,0x00,0x20,0x00,0x20,0x00,0x20,0x00,0x20,0x00,0x20,0x00,0x20,0x00,0x20,0x00,0x20,0x00,0x20,0x00,0x41,0x08,0x00,0x00,0x61,0x08,0x00,0x00,0x60,0x08,0x00,0x00,0x60,0x08,0x40,0x00,0x26,0x3A,0xC1,0x08,0x83,0x19,0x60,0x00,0xA4,0x21,0xC0,0x08,0x84,0x21,0x40,0x00, +0x85,0x6D,0x31,0xBF,0x40,0x00,0xC9,0x5A,0x20,0x00,0x83,0x21,0x40,0x00,0xC8,0x4A,0x60,0x00,0xC8,0x4A,0x02,0x11,0x20,0x00,0x20,0x00,0x20,0x00,0x40,0x08,0x00,0x00,0x20,0x00,0x20,0x00,0x20,0x00,0x20,0x00,0x20,0x00,0x20,0x00,0x20,0x00,0x20,0x00,0x20,0x00,0x20,0x00,0x20,0x00,0x20,0x00,0x20,0x00,0x20,0x00,0x20,0x00,0x20,0x00,0x41,0x00,0x00,0x00,0x20,0x00,0x00,0x00,0x20,0x00,0x60,0x00,0x20,0x00,0x21,0x08,0x21,0x08,0x60,0x00,0x0C,0x55,0x6B,0x55,0x29,0x4C,0xA3,0x21,0x67,0x42,0x08,0x4B,0x8A,0x5B,0x4C,0x74,0xEF,0x84,0x0F,0x7D,0x2F,0x75,0x2F,0x75,0xCE,0x64,0x2B,0x4C,0xCA,0x43,0x07,0x2B,0x24,0x1A,0x00,0x01,0x60,0x00,0x60,0x00,0x20,0x00,0x20,0x00, +0x20,0x00,0x40,0x08,0x40,0x00,0x6C,0x4C,0x4F,0x5E,0x6D,0x4D,0xC0,0x00,0x20,0x08,0x00,0x00,0xE4,0x19,0x2D,0x54,0x40,0x00,0x00,0x00,0x20,0x08,0x40,0x00,0x60,0x00,0x41,0x08,0x20,0x00,0x40,0x08,0x40,0x00,0x20,0x00,0x02,0x11,0x64,0x19,0x81,0x00,0x20,0x00,0x41,0x00,0x41,0x00,0x21,0x00,0x40,0x00,0x40,0x00,0x20,0x00,0x00,0x00,0x60,0x08,0x22,0x01,0x25,0x02,0x66,0x02,0xC4,0x09,0x02,0x01,0x83,0x01,0x05,0x02,0xE5,0x09,0x43,0x09,0x40,0x00,0x20,0x00,0x20,0x08,0x00,0x08,0x00,0x08,0x20,0x08,0x00,0x08,0x00,0x08,0x20,0x08,0x20,0x00,0x40,0x00,0x40,0x00,0x20,0x00,0x40,0x00,0x20,0x00,0x20,0x00,0x20,0x00,0x20,0x00,0x40,0x00,0x40,0x00,0x20,0x00,0x00,0x00, +0x41,0x08,0x20,0x00,0xE1,0x08,0x8D,0x6C,0xAC,0x64,0xAC,0x5C,0xCD,0x5C,0xCC,0x5C,0xCD,0x5C,0xCD,0x5C,0xCC,0x64,0xCC,0x64,0xCC,0x64,0xCC,0x5C,0xCD,0x5C,0xCD,0x5C,0xCC,0x5C,0x6D,0x54,0xED,0x43,0x0E,0x4C,0x0D,0x44,0x0D,0x44,0x2D,0x44,0x0D,0x44,0x0E,0x44,0x0F,0x44,0x0F,0x44,0x2C,0x44,0x2A,0x65,0x2C,0x9F,0x08,0x9F,0x28,0x9F,0x29,0x9F,0x48,0x97,0x87,0x8F,0x87,0x97,0x88,0x97,0x49,0x9F,0x49,0xA7,0x28,0xA7,0x49,0xA7,0xE7,0x96,0xE8,0xA6,0x08,0xB7,0x28,0xC7,0xC7,0xBE,0xE8,0xBE,0xE9,0xBE,0xAC,0x6D,0x4B,0x65,0x6C,0x6D,0x2C,0x6D,0x2C,0x6D,0x0D,0x75,0x2D,0x75,0x2D,0x6D,0x4E,0x6D,0x2D,0x5D,0xCB,0x44,0xAA,0x34,0xAA,0x2C,0xAA,0x24,0xCA,0x24,0xEA,0x2C, +0xCA,0x34,0xAA,0x34,0x8A,0x34,0xAB,0x44,0x0C,0x55,0x2D,0x65,0xEC,0x64,0xEC,0x64,0xEC,0x64,0xEC,0x64,0xEC,0x64,0xEC,0x64,0xEC,0x64,0xED,0x5C,0xED,0x5C,0xED,0x5C,0xCC,0x5C,0xEC,0x64,0x49,0x4C,0x65,0x2B,0xA6,0x33,0x85,0x33,0xC6,0x33,0x85,0x33,0xA5,0x33,0xA5,0x33,0xA5,0x33,0xA5,0x33,0xA5,0x33,0xA5,0x33,0xA5,0x33,0xA5,0x33,0x40,0x00,0x20,0x00,0x20,0x08,0x00,0x08,0x20,0x08,0x00,0x00,0x20,0x00,0xA0,0x00,0xEB,0x53,0x30,0x75,0x0E,0x6D,0xED,0x64,0x0D,0x65,0x0C,0x65,0x0C,0x65,0x0D,0x6D,0x0C,0x65,0x0C,0x65,0x0C,0x65,0x0C,0x65,0x0C,0x65,0x0D,0x65,0x0D,0x65,0x0D,0x65,0xED,0x64,0xED,0x64,0x0D,0x65,0x0D,0x65,0x0D,0x65,0x0D,0x65,0x0D,0x65,0x0D,0x65, +0xED,0x64,0xED,0x64,0x2E,0x6D,0xED,0x64,0xED,0x64,0x2D,0x6D,0xEC,0x64,0x0C,0x65,0x2C,0x65,0x2D,0x65,0x2C,0x65,0x2D,0x65,0xEC,0x5C,0x0D,0x65,0x0C,0x65,0xEC,0x64,0x0B,0x65,0x0B,0x65,0x0C,0x65,0x0C,0x65,0x0C,0x65,0x0C,0x65,0x0B,0x65,0x0B,0x65,0xEB,0x5C,0x2D,0x6D,0x0E,0x65,0xED,0x64,0x0D,0x65,0x2B,0x65,0x49,0x65,0xAA,0x75,0x8B,0x75,0x4B,0x6D,0x2A,0x65,0xA6,0x4C,0x04,0x34,0x67,0x5C,0x6C,0x7D,0xCE,0x7D,0xEE,0x6D,0xC9,0x54,0x8C,0x7D,0x27,0x54,0x40,0x01,0x0C,0x3D,0x2B,0x2C,0xE0,0x00,0x42,0x00,0x01,0x00,0x40,0x00,0x40,0x00,0xC0,0x00,0x0C,0x6D,0x6C,0x65,0xAC,0x55,0xCD,0x45,0xCC,0x45,0xCC,0x55,0x8B,0x5D,0x6A,0x5D,0xAB,0x55,0xAD,0x4D,0xCD,0x4D, +0xCD,0x45,0xCD,0x4D,0xAC,0x4D,0xAB,0x4D,0xAB,0x55,0x8C,0x55,0x6C,0x55,0x6C,0x4D,0xAD,0x4D,0x2E,0x6E,0x84,0x2B,0xCC,0x8D,0x50,0xBF,0x0D,0xAF,0x2C,0xA7,0x4B,0xA7,0x11,0xBF,0xE3,0x42,0x60,0x00,0x80,0x08,0x00,0x00,0x00,0x00,0x41,0x08,0x20,0x00,0x20,0x00,0x20,0x08,0x00,0x08,0xA1,0x08,0xA7,0x22,0xC7,0x0A,0xE8,0x0A,0xC9,0x0A,0xC9,0x0A,0x06,0x13,0x8B,0x5D,0x0B,0x6E,0x2C,0x66,0x2D,0x5E,0x2C,0x56,0x4C,0x5E,0x4C,0x66,0x0C,0x5E,0x2D,0x5E,0x4E,0x5E,0x6D,0x56,0x4C,0x56,0x2C,0x56,0x4E,0x5E,0x0A,0x6E,0xEC,0x6D,0x24,0x13,0x86,0x1B,0x86,0x1B,0x87,0x1B,0x47,0x13,0x2A,0x2C,0x6A,0x2C,0x87,0x13,0x46,0x13,0xE9,0x23,0x6C,0x45,0xAB,0x3D,0xAC,0x3D,0x4C,0x45, +0x8B,0x45,0x6B,0x3D,0x4B,0x35,0x4B,0x35,0x4A,0x35,0x6A,0x2D,0x6A,0x2D,0x6A,0x35,0x8B,0x3D,0x8B,0x45,0xAD,0x55,0x4E,0x5D,0x70,0x75,0x63,0x1A,0xC0,0x12,0xC0,0x02,0xA0,0x01,0xA5,0x2B,0x40,0x01,0x40,0x00,0xA1,0x10,0x02,0x11,0x60,0x00,0x4C,0x85,0x2F,0xB7,0x4C,0xB7,0xAE,0xC7,0x8E,0x9E,0x60,0x01,0xE4,0x11,0xE4,0x11,0x61,0x09,0xC8,0x74,0xD2,0xC7,0x4E,0xAF,0x00,0x2B,0xC0,0x01,0x03,0x0A,0x00,0x02,0xCA,0x7D,0x6D,0xB7,0x2E,0xAF,0xE7,0x3B,0xC7,0x0A,0xC8,0x12,0x0D,0x54,0xBD,0xE7,0xBC,0xD6,0x77,0xE7,0xF6,0xFF,0xF5,0xF7,0x74,0xC7,0xED,0x4C,0xCA,0x1B,0x8A,0x1B,0x25,0x02,0xA7,0x02,0x0E,0x2C,0xC5,0x01,0x0C,0x3C,0x45,0x0A,0x89,0x2B,0xAD,0x3C,0x48,0x03, +0x60,0x00,0x23,0x11,0x60,0x00,0x40,0x00,0x40,0x00,0x00,0x00,0x40,0x08,0x40,0x08,0x20,0x00,0x20,0x00,0x20,0x00,0x20,0x00,0x20,0x00,0x20,0x00,0x20,0x00,0x20,0x00,0x20,0x00,0x40,0x08,0x00,0x00,0x20,0x00,0x40,0x00,0x40,0x00,0x40,0x00,0x63,0x21,0xC1,0x08,0xC0,0x00,0x43,0x19,0x40,0x00,0x06,0x32,0x60,0x00,0xE5,0x29,0x60,0x00,0xA6,0x75,0x11,0xB7,0x40,0x00,0x22,0x21,0xC4,0x31,0xE0,0x10,0xE4,0x29,0x60,0x00,0xC4,0x31,0x20,0x00,0x88,0x42,0x60,0x00,0x20,0x00,0x20,0x00,0x20,0x00,0x20,0x00,0x20,0x00,0x20,0x00,0x20,0x00,0x20,0x00,0x20,0x00,0x20,0x00,0x20,0x00,0x20,0x00,0x20,0x00,0x20,0x00,0x20,0x00,0x20,0x00,0x20,0x00,0x20,0x00,0x20,0x00,0x20,0x00, +0x20,0x00,0x20,0x00,0x40,0x08,0x00,0x00,0x40,0x00,0x40,0x00,0x00,0x00,0x00,0x08,0x00,0x00,0x68,0x3B,0x50,0x76,0x0A,0x4D,0x20,0x01,0x40,0x00,0x20,0x00,0x40,0x00,0x20,0x00,0x20,0x00,0x40,0x00,0x60,0x00,0x80,0x00,0x00,0x01,0x81,0x01,0xE3,0x09,0x04,0x12,0x86,0x22,0xC7,0x32,0x63,0x11,0x40,0x00,0x40,0x00,0x40,0x08,0x20,0x08,0x20,0x00,0x61,0x08,0x60,0x00,0x8C,0x4C,0x2F,0x66,0x6D,0x55,0xC0,0x00,0x00,0x10,0x00,0x10,0x40,0x00,0xAE,0x5C,0x42,0x01,0x20,0x00,0x00,0x08,0x20,0x00,0x60,0x00,0x21,0x00,0x21,0x00,0x00,0x00,0x40,0x00,0x03,0x11,0xE2,0x08,0x40,0x00,0x20,0x00,0x61,0x00,0x40,0x00,0x00,0x00,0x20,0x00,0x41,0x00,0x40,0x00,0x60,0x00,0x02,0x11, +0xC2,0x18,0x42,0x09,0x21,0x01,0xA3,0x01,0xC5,0x11,0x46,0x1A,0x87,0x0A,0x66,0x0A,0x06,0x12,0x40,0x00,0x40,0x00,0x40,0x00,0x00,0x00,0x40,0x18,0x20,0x08,0x20,0x00,0x00,0x10,0x00,0x10,0x20,0x08,0x00,0x00,0x20,0x00,0x40,0x00,0x20,0x00,0x20,0x08,0x20,0x08,0x40,0x08,0x40,0x00,0x20,0x00,0x20,0x00,0x20,0x00,0x20,0x08,0x20,0x08,0x20,0x00,0x20,0x00,0xA7,0x3A,0x8D,0x6C,0xAC,0x64,0xAC,0x5C,0xCC,0x5C,0xAD,0x5C,0xAD,0x5C,0xAD,0x5C,0xAC,0x5C,0xAC,0x5C,0xAC,0x5C,0xAC,0x5C,0xAD,0x5C,0xAD,0x5C,0xCC,0x5C,0x2C,0x4C,0xCD,0x43,0xEE,0x43,0xED,0x43,0xED,0x43,0x0E,0x44,0xED,0x3B,0x0E,0x3C,0xF0,0x43,0xEF,0x43,0x0B,0x3C,0xEA,0x75,0x69,0x9F,0x27,0x97,0x29,0x9F, +0x2A,0x97,0x48,0x97,0x67,0x97,0x66,0x97,0x67,0x9F,0x48,0x9F,0x49,0x97,0x69,0x97,0x48,0x97,0x49,0x9F,0x07,0xA7,0x07,0xB7,0xE7,0xC6,0xE8,0xC6,0x2B,0xC7,0xE8,0x9D,0x4B,0x5D,0x6C,0x65,0x4C,0x65,0x0C,0x65,0x2D,0x6D,0x4D,0x6D,0x2D,0x65,0x2D,0x65,0xEC,0x4C,0xAA,0x34,0x69,0x24,0x69,0x1C,0xAA,0x1C,0xAA,0x1C,0xA9,0x1C,0x89,0x1C,0x8A,0x1C,0x89,0x1C,0x8A,0x24,0x49,0x2C,0x8A,0x3C,0x0D,0x55,0xEC,0x5C,0xEC,0x64,0xCC,0x6C,0xCC,0x6C,0xCD,0x6C,0xCC,0x64,0xCC,0x64,0xCC,0x5C,0xCC,0x5C,0xEC,0x5C,0xEC,0x64,0xAB,0x54,0xC7,0x3B,0x65,0x2B,0xA6,0x33,0x85,0x2B,0x85,0x33,0x85,0x33,0x85,0x33,0x85,0x33,0x85,0x33,0x85,0x33,0x85,0x33,0x85,0x33,0x85,0x33,0x85,0x33, +0x40,0x00,0x40,0x08,0x00,0x08,0x20,0x10,0x00,0x08,0x60,0x00,0x60,0x00,0xAA,0x4B,0xCE,0x64,0xED,0x5C,0xED,0x5C,0x0D,0x65,0xAC,0x5C,0x0D,0x6D,0xEC,0x64,0xCB,0x5C,0xEC,0x64,0xEC,0x64,0xEC,0x64,0xEC,0x64,0xED,0x64,0xED,0x64,0xED,0x64,0xED,0x64,0xED,0x64,0xED,0x64,0xED,0x64,0xED,0x64,0xED,0x64,0x0D,0x65,0x0D,0x65,0x0C,0x65,0x0D,0x65,0xED,0x64,0xAC,0x5C,0xCC,0x64,0xEC,0x64,0xEA,0x5C,0x0A,0x65,0x0A,0x5D,0x2A,0x5D,0x0B,0x65,0xEC,0x5C,0xED,0x5C,0xEE,0x5C,0xEE,0x64,0xED,0x64,0xED,0x64,0xEC,0x64,0xEC,0x64,0xEC,0x64,0xED,0x64,0xED,0x64,0xED,0x64,0xEC,0x64,0xEC,0x64,0x0C,0x65,0xEC,0x64,0x0D,0x65,0xCC,0x5C,0xEB,0x5C,0xEB,0x7D,0x8B,0x8E,0x28,0x7E, +0xAA,0x75,0xC9,0x5C,0x69,0x4C,0xE8,0x54,0xC9,0x6D,0x09,0x86,0x8A,0x7D,0xE9,0x5C,0x4B,0x5D,0x27,0x3C,0x27,0x4C,0x2B,0x6D,0x46,0x3C,0xE9,0x3C,0xAB,0x44,0xCB,0x3B,0x84,0x09,0xC0,0x00,0xC0,0x00,0x80,0x00,0xA0,0x00,0x20,0x01,0xC5,0x32,0xAC,0x54,0x6C,0x45,0x8B,0x35,0x8A,0x3D,0x6A,0x45,0x6B,0x45,0x8C,0x3D,0x8C,0x3D,0x8D,0x3D,0xAC,0x3D,0xAB,0x35,0xCB,0x3D,0x6B,0x45,0x4B,0x45,0x6C,0x4D,0x6C,0x45,0x6C,0x45,0xEA,0x44,0x40,0x02,0xA6,0x54,0x0E,0xA7,0xCC,0x9E,0xEB,0x9E,0x4C,0x97,0x4B,0x87,0xCD,0x9E,0x10,0xB7,0xE5,0x42,0x20,0x00,0x20,0x00,0x41,0x08,0x00,0x08,0x40,0x08,0x40,0x00,0x40,0x00,0x20,0x00,0xA0,0x00,0xA7,0x22,0xC7,0x0A,0xE8,0x0A,0xA8,0x12, +0xA9,0x12,0xE6,0x12,0x8B,0x65,0x2B,0x76,0x2B,0x6E,0xEC,0x5D,0xEC,0x5D,0x4C,0x5E,0x4B,0x66,0xEB,0x5D,0x0C,0x5E,0x4D,0x5E,0x6C,0x5E,0x2B,0x56,0x0C,0x56,0x4E,0x66,0x4B,0x6E,0xCC,0x65,0x86,0x1B,0x87,0x13,0xA7,0x1B,0x8B,0x3C,0x26,0x13,0x6B,0x34,0x8B,0x34,0x66,0x0B,0x46,0x13,0x09,0x2C,0x6C,0x45,0x8B,0x3D,0xAB,0x45,0x6C,0x4D,0x6B,0x3D,0x6C,0x3D,0x6C,0x3D,0x6C,0x3D,0x6B,0x3D,0x6B,0x3D,0x8B,0x35,0x6B,0x3D,0x6A,0x3D,0x6A,0x3D,0x8B,0x3D,0x2B,0x3D,0x4E,0x55,0xE3,0x12,0xA3,0x13,0xA0,0x03,0xC0,0x01,0x06,0x3C,0xC0,0x11,0x40,0x00,0xA1,0x08,0x22,0x19,0x60,0x00,0x6C,0x85,0x4F,0xB7,0x4C,0xB7,0x8C,0xB7,0x2D,0xB7,0x0F,0xAF,0xAF,0xA6,0xCF,0xAE,0x0F,0xB7, +0x2D,0xB7,0x4D,0xAF,0x4C,0xAF,0x2D,0xAF,0x0E,0xAF,0x0F,0xA7,0xCD,0x96,0x6D,0xA7,0x2B,0xB7,0xEE,0xBE,0x95,0xD7,0xD9,0xDF,0xFA,0xEF,0xF8,0xDE,0x9D,0xF7,0xDD,0xD6,0xB7,0xEF,0xF6,0xFF,0xF5,0xF7,0x94,0xC7,0xCC,0x44,0xCA,0x13,0xAA,0x13,0x45,0x02,0xA7,0x02,0x0D,0x24,0x84,0x01,0xEC,0x33,0x65,0x0A,0x69,0x23,0x8D,0x3C,0x07,0x03,0x40,0x00,0x23,0x11,0x60,0x00,0x40,0x00,0x60,0x08,0x20,0x00,0x20,0x00,0x00,0x00,0x20,0x00,0x20,0x00,0x20,0x00,0x20,0x00,0x20,0x00,0x20,0x00,0x20,0x00,0x20,0x00,0x20,0x00,0x20,0x00,0x20,0x00,0x40,0x00,0x40,0x00,0x20,0x00,0x02,0x19,0xA4,0x29,0x20,0x00,0x26,0x32,0x60,0x00,0x46,0x32,0x80,0x00,0x22,0x19,0x84,0x29,0x20,0x00, +0x65,0x65,0xB0,0xA6,0xE0,0x08,0x00,0x00,0x09,0x5B,0x40,0x00,0xA7,0x42,0x40,0x00,0x67,0x42,0xE0,0x10,0x22,0x19,0xA4,0x29,0x40,0x00,0x60,0x08,0x00,0x00,0x20,0x00,0x20,0x00,0x20,0x00,0x20,0x00,0x20,0x00,0x20,0x00,0x20,0x00,0x20,0x00,0x20,0x00,0x20,0x00,0x20,0x00,0x20,0x00,0x20,0x00,0x20,0x00,0x20,0x00,0x20,0x00,0x20,0x00,0x40,0x00,0x20,0x00,0x40,0x08,0x40,0x08,0x20,0x08,0x20,0x00,0x20,0x08,0x20,0x00,0x60,0x00,0x4E,0x75,0xC9,0x44,0xEA,0x4C,0x61,0x01,0x20,0x00,0x40,0x08,0x60,0x00,0x20,0x08,0x20,0x08,0x20,0x00,0x40,0x00,0x40,0x00,0x60,0x00,0x40,0x00,0x40,0x00,0x60,0x00,0x20,0x00,0x60,0x00,0x60,0x08,0x20,0x00,0x00,0x00,0x00,0x00,0x20,0x08, +0x40,0x00,0x81,0x08,0x60,0x00,0x8C,0x4C,0x0F,0x66,0x8E,0x5D,0xC0,0x00,0x00,0x18,0x00,0x18,0x40,0x00,0x4C,0x44,0x86,0x12,0x60,0x00,0x20,0x10,0x20,0x08,0x60,0x00,0x21,0x00,0x20,0x00,0xA2,0x10,0x03,0x19,0x61,0x08,0x20,0x00,0x60,0x00,0x40,0x00,0x40,0x00,0x40,0x00,0x60,0x00,0x40,0x00,0x40,0x00,0xC2,0x08,0x03,0x11,0xC2,0x08,0xC2,0x20,0x40,0x00,0x60,0x00,0x63,0x11,0xC5,0x19,0x26,0x12,0xA6,0x02,0xC3,0x01,0x43,0x01,0x00,0x00,0x40,0x08,0x20,0x00,0x00,0x00,0x20,0x08,0x00,0x00,0x60,0x00,0x00,0x08,0x40,0x08,0x60,0x08,0x40,0x00,0x20,0x00,0x20,0x00,0x20,0x08,0x20,0x10,0x00,0x08,0x00,0x08,0x00,0x00,0x40,0x08,0x40,0x08,0x20,0x08,0x00,0x08,0x00,0x10, +0x40,0x00,0xC1,0x00,0x0C,0x64,0x6D,0x64,0x6B,0x5C,0xCC,0x5C,0x8C,0x54,0xAD,0x5C,0x8D,0x5C,0x8C,0x5C,0x8C,0x5C,0x8C,0x5C,0x8C,0x5C,0x8C,0x5C,0x8C,0x5C,0x8C,0x5C,0x8C,0x5C,0xEC,0x43,0xCD,0x43,0xEE,0x43,0xED,0x3B,0xCD,0x3B,0xEE,0x3B,0xCE,0x3B,0xEE,0x3B,0xF0,0x3B,0xAF,0x3B,0x0A,0x3C,0xAB,0x8E,0x87,0x9F,0x26,0x97,0x2A,0x9F,0x29,0x9F,0x48,0x9F,0x47,0x9F,0x46,0x9F,0x47,0x9F,0x48,0x97,0x49,0x97,0x68,0x97,0x48,0x8F,0x48,0x9F,0x07,0xA7,0x07,0xB7,0x49,0xBF,0x4B,0xB7,0x2E,0xAF,0x69,0x6D,0x8C,0x5D,0x4C,0x5D,0x4C,0x5D,0x4C,0x65,0x2C,0x65,0x2D,0x65,0xEC,0x4C,0x49,0x34,0x49,0x24,0x49,0x1C,0x69,0x1C,0x8A,0x1C,0x8A,0x1C,0x6A,0x1C,0x4A,0x24,0x6A,0x24, +0x8A,0x1C,0x6A,0x1C,0x69,0x1C,0x6A,0x24,0x29,0x24,0x4A,0x34,0x0D,0x55,0xCC,0x5C,0xCD,0x64,0xAD,0x64,0xAC,0x64,0xAC,0x64,0xAC,0x64,0xAD,0x5C,0xAC,0x5C,0xCC,0x5C,0xEC,0x64,0x49,0x4C,0x46,0x2B,0x66,0x33,0x85,0x33,0x65,0x33,0x64,0x2B,0x85,0x2B,0x85,0x2B,0x85,0x2B,0x85,0x2B,0x85,0x2B,0x85,0x2B,0x85,0x2B,0x85,0x2B,0x85,0x2B,0x40,0x00,0x20,0x08,0x00,0x00,0x60,0x10,0x40,0x00,0xE1,0x08,0x4D,0x64,0xEE,0x6C,0xED,0x5C,0xED,0x5C,0xCC,0x5C,0xAC,0x5C,0xCC,0x64,0xCC,0x64,0xCC,0x5C,0x0C,0x65,0xEC,0x5C,0xEC,0x5C,0xCC,0x5C,0xCC,0x64,0xCD,0x64,0xCC,0x64,0xCC,0x64,0xCC,0x64,0xCC,0x64,0xED,0x64,0xCD,0x5C,0xCD,0x5C,0xED,0x64,0xEC,0x64,0xCB,0x5C,0xCA,0x5C, +0xE9,0x5C,0xCC,0x75,0xCC,0x7D,0x0D,0x86,0xAB,0x75,0x69,0x6D,0x6C,0x8E,0xAC,0x8E,0x8C,0x86,0x4C,0x86,0xCB,0x75,0x4B,0x65,0xCA,0x5C,0xCC,0x5C,0xCE,0x64,0xAD,0x64,0xCD,0x64,0xCD,0x64,0xCD,0x64,0xCD,0x64,0xCD,0x64,0xCD,0x64,0xCD,0x64,0xCD,0x5C,0xED,0x64,0xCB,0x5C,0xC9,0x5C,0x4A,0x65,0x4C,0x86,0x8D,0x8E,0xA9,0x75,0xE5,0x54,0x43,0x44,0xA6,0x54,0xEB,0x7D,0xCE,0x96,0x4C,0x86,0x68,0x65,0xC6,0x54,0x65,0x4C,0xAA,0x6D,0x0C,0x7E,0x2D,0x86,0x8C,0x75,0xEE,0x75,0x4B,0x55,0x68,0x3C,0x69,0x4C,0x8B,0x65,0x4C,0x75,0x4D,0x7D,0x4B,0x64,0xA3,0x19,0x20,0x00,0x40,0x00,0x65,0x1A,0xAD,0x4D,0x0C,0x36,0xCB,0x2D,0x8B,0x35,0x6C,0x35,0x6B,0x2D,0x4B,0x2D,0x2A,0x35, +0x2A,0x35,0x2A,0x2D,0x6A,0x2D,0x6A,0x35,0x6A,0x3D,0xCC,0x3D,0xED,0x3D,0xED,0x45,0xE1,0x02,0x46,0x4C,0x30,0xA7,0x6B,0x8E,0xCC,0x96,0xCC,0x96,0xAB,0x86,0xEC,0x7E,0xAB,0x8E,0x6C,0x8E,0xF2,0xB6,0x64,0x32,0x20,0x00,0x40,0x08,0x00,0x00,0x40,0x08,0x40,0x00,0x60,0x00,0x40,0x00,0xC0,0x00,0xA7,0x22,0xC7,0x0A,0xC8,0x0A,0xA8,0x12,0xA9,0x12,0xA5,0x12,0x8C,0x6D,0x2C,0x7E,0x0B,0x76,0xE7,0x44,0x45,0x2C,0xEB,0x5D,0x2B,0x66,0xC6,0x3C,0x45,0x24,0xEB,0x55,0x4C,0x5E,0x85,0x24,0x86,0x2C,0x0D,0x66,0x4C,0x6E,0xCD,0x5D,0xAA,0x34,0xE9,0x1B,0x09,0x1C,0xCC,0x3C,0x06,0x0B,0x8C,0x34,0x6B,0x2C,0x67,0x0B,0x27,0x13,0xC8,0x2B,0x6C,0x4D,0xAB,0x45,0xAB,0x45,0x6C,0x55, +0x8C,0x45,0x8C,0x45,0x8D,0x3D,0x6D,0x45,0x6C,0x45,0x6C,0x45,0x6C,0x45,0x6C,0x4D,0x8B,0x4D,0x6A,0x45,0xAB,0x45,0x8C,0x45,0x8D,0x55,0x02,0x03,0x81,0x03,0xC0,0x03,0x00,0x03,0xE3,0x2B,0xC0,0x09,0x60,0x00,0xA1,0x08,0x43,0x19,0x80,0x00,0x0C,0x7D,0xEF,0xAE,0x2D,0xAF,0x2A,0xAF,0x2B,0xAF,0x4C,0xB7,0x0B,0xAF,0x2B,0xAF,0x4A,0xAF,0x6C,0xAF,0x6C,0xAF,0x0B,0xAF,0x2B,0xB7,0x2B,0xB7,0x2C,0xAF,0xEB,0x9E,0x0B,0x9F,0x4C,0xB7,0x0D,0xBF,0x10,0xC7,0xF6,0xEF,0x97,0xF7,0xF7,0xEE,0xFA,0xE6,0xBB,0xD6,0xB7,0xEF,0xB5,0xEF,0xF4,0xE7,0x11,0xAF,0xEC,0x3C,0x0B,0x14,0x4D,0x1C,0xEB,0x1B,0x0C,0x1C,0x6E,0x24,0x66,0x02,0x2C,0x24,0x03,0x02,0x27,0x0B,0xCE,0x3C,0x07,0x03, +0x40,0x00,0x02,0x11,0xA1,0x08,0x40,0x00,0x20,0x00,0x20,0x00,0x00,0x00,0x60,0x08,0x20,0x00,0x20,0x00,0x20,0x00,0x20,0x00,0x20,0x00,0x20,0x00,0x20,0x00,0x20,0x00,0x20,0x00,0x40,0x08,0x20,0x00,0x40,0x00,0x60,0x08,0x80,0x08,0x47,0x42,0x40,0x00,0xA4,0x21,0x84,0x21,0x20,0x00,0xE5,0x29,0x20,0x00,0xA4,0x29,0x80,0x08,0x20,0x00,0x86,0x6D,0x6F,0xA6,0xE0,0x08,0x20,0x00,0x05,0x3A,0x20,0x00,0xE4,0x29,0xE1,0x10,0x60,0x00,0xA7,0x4A,0x20,0x00,0x47,0x3A,0x84,0x29,0x00,0x00,0x60,0x08,0x40,0x00,0x20,0x00,0x20,0x00,0x20,0x00,0x20,0x00,0x20,0x00,0x20,0x00,0x20,0x00,0x20,0x00,0x20,0x00,0x20,0x00,0x20,0x00,0x20,0x00,0x20,0x00,0x20,0x00,0x20,0x00,0x20,0x00, +0x40,0x08,0x40,0x00,0x40,0x00,0x40,0x08,0x00,0x00,0x21,0x10,0x40,0x00,0x40,0x00,0x69,0x4B,0xEC,0x64,0x60,0x02,0x8D,0x65,0x61,0x09,0x00,0x00,0x20,0x08,0x40,0x00,0x40,0x08,0x40,0x08,0x40,0x08,0x20,0x00,0x20,0x08,0x20,0x08,0x21,0x08,0x21,0x10,0x00,0x08,0x00,0x08,0x21,0x08,0x00,0x00,0x00,0x00,0x41,0x08,0x41,0x00,0x21,0x00,0x60,0x00,0x81,0x08,0x40,0x00,0x8C,0x54,0x0F,0x66,0xAE,0x5D,0xE0,0x00,0x00,0x10,0x00,0x18,0x60,0x00,0xA7,0x1A,0xC8,0x2A,0x20,0x00,0x40,0x10,0x40,0x00,0x60,0x00,0xC2,0x08,0x65,0x21,0x03,0x11,0x20,0x00,0x40,0x00,0x40,0x08,0x00,0x00,0x40,0x00,0x40,0x00,0x40,0x00,0x60,0x00,0xA0,0x00,0xC2,0x08,0xE3,0x08,0xE3,0x08,0xC3,0x08, +0x00,0x00,0x20,0x00,0x60,0x00,0x22,0x09,0xE9,0x32,0x65,0x02,0xC6,0x02,0xA7,0x0A,0x80,0x00,0x00,0x08,0x00,0x08,0x20,0x08,0x41,0x08,0x20,0x08,0x81,0x00,0x60,0x00,0x40,0x00,0x60,0x00,0x60,0x00,0x60,0x00,0x60,0x00,0x60,0x00,0x60,0x08,0x00,0x00,0x40,0x08,0x40,0x08,0x40,0x08,0x20,0x08,0x00,0x00,0x20,0x08,0x20,0x08,0x20,0x08,0x60,0x00,0xC4,0x19,0x6D,0x6C,0x4C,0x5C,0x2B,0x54,0x8C,0x54,0x8C,0x54,0x8C,0x54,0x6C,0x54,0x6C,0x54,0x6C,0x5C,0x6C,0x5C,0x6B,0x5C,0x6C,0x54,0x6C,0x54,0x6C,0x54,0x4D,0x54,0xCC,0x3B,0xCD,0x43,0xCD,0x3B,0xCD,0x3B,0xCD,0x3B,0xCE,0x3B,0xCD,0x3B,0xCE,0x3B,0xCF,0x3B,0x8E,0x33,0x6B,0x4C,0x2C,0x97,0x66,0x9F,0x26,0x97,0x2A,0x97, +0x08,0xA7,0x28,0x9F,0x47,0x97,0x48,0x97,0x48,0x97,0x29,0x97,0x28,0x9F,0x27,0x9F,0x07,0x9F,0x28,0x9F,0x4A,0xA7,0x4B,0x9F,0x2C,0x97,0xEC,0x86,0xAD,0x6E,0x4D,0x66,0xED,0x55,0x4F,0x66,0xCE,0x5D,0x4C,0x55,0x6D,0x5D,0x0C,0x55,0x08,0x2C,0xE8,0x23,0x09,0x24,0x29,0x1C,0x29,0x1C,0x29,0x1C,0x09,0x1C,0xE8,0x1B,0xE9,0x23,0x0A,0x2C,0x09,0x1C,0x09,0x1C,0x09,0x1C,0x09,0x1C,0x09,0x24,0xE8,0x23,0x4A,0x34,0xED,0x54,0xCD,0x5C,0xAC,0x64,0xAC,0x64,0x8C,0x64,0x8C,0x64,0xAC,0x64,0xAC,0x5C,0xAC,0x5C,0xCC,0x5C,0xE8,0x43,0x45,0x2B,0x66,0x33,0x44,0x2B,0x85,0x33,0x65,0x33,0x65,0x2B,0x65,0x2B,0x65,0x2B,0x65,0x2B,0x65,0x2B,0x65,0x2B,0x65,0x2B,0x65,0x2B,0x65,0x2B, +0x40,0x08,0x40,0x08,0x60,0x08,0x40,0x00,0x21,0x11,0xAE,0x74,0x6D,0x5C,0xCD,0x5C,0xAC,0x54,0xED,0x5C,0xCC,0x5C,0xAC,0x5C,0xCC,0x64,0xAC,0x5C,0xCC,0x5C,0xCC,0x5C,0xCB,0x5C,0xCB,0x5C,0xAC,0x5C,0xAC,0x5C,0xAC,0x5C,0xAC,0x5C,0xAC,0x5C,0xCC,0x5C,0xAC,0x5C,0xCC,0x5C,0xAD,0x5C,0xAD,0x5C,0xCD,0x5C,0xCB,0x5C,0xCA,0x5C,0x2B,0x65,0x49,0x7E,0xEB,0x96,0xCB,0x96,0xEB,0x96,0xEB,0x96,0xCB,0x96,0x0C,0x9F,0xA9,0x8E,0xEA,0x96,0x09,0x97,0x2A,0x97,0x0B,0x97,0x2B,0x86,0x2A,0x65,0xAB,0x5C,0xAD,0x64,0xAD,0x5C,0xAD,0x5C,0xAC,0x5C,0xAC,0x5C,0xAC,0x5C,0xAD,0x5C,0xAE,0x5C,0xAD,0x5C,0x8A,0x54,0x4A,0x6D,0x2B,0x86,0x8B,0x8E,0xE9,0x7D,0xE7,0x5C,0x88,0x4C,0x89,0x54, +0x89,0x75,0xAB,0x8E,0x69,0x86,0x67,0x65,0xC8,0x54,0x26,0x44,0xC6,0x54,0xAB,0x8E,0xEB,0x96,0x0A,0x7E,0x49,0x6D,0xCA,0x5C,0x6A,0x4C,0x49,0x44,0xC9,0x4C,0x69,0x65,0x28,0x76,0xCA,0x75,0xEB,0x6C,0xCE,0x6C,0x4F,0x64,0x89,0x3A,0x40,0x00,0x64,0x1A,0xCD,0x4D,0xEC,0x2D,0xAB,0x2D,0xEE,0x3D,0xCE,0x3D,0xCD,0x35,0x2E,0x46,0xCC,0x3D,0xAD,0x45,0xED,0x4D,0x8C,0x3D,0xCC,0x3D,0x2D,0x3E,0xAB,0x25,0xAC,0x2D,0xCC,0x45,0x0D,0x66,0xB0,0x8E,0xEB,0x7D,0x6C,0x86,0x4B,0x7E,0x4C,0x7E,0x4D,0x7E,0x4E,0x7E,0xAC,0x7E,0x2B,0x76,0x4D,0x86,0x0F,0x8E,0x05,0x3B,0x40,0x00,0x80,0x08,0x40,0x00,0x61,0x00,0x61,0x00,0x40,0x00,0xE1,0x00,0xA7,0x1A,0xA6,0x0A,0xA7,0x12,0x87,0x12, +0x88,0x12,0xA5,0x12,0x8C,0x6D,0x2C,0x7E,0x0B,0x76,0x08,0x4D,0x66,0x34,0xEB,0x65,0x2C,0x6E,0xE7,0x44,0x65,0x2C,0xEB,0x5D,0x4C,0x66,0xA5,0x2C,0xA7,0x34,0x0D,0x6E,0x4C,0x6E,0xED,0x65,0xAB,0x34,0x09,0x14,0x09,0x14,0xCC,0x3C,0x47,0x13,0x6B,0x34,0x8B,0x2C,0x67,0x0B,0x27,0x13,0xA7,0x23,0x8C,0x55,0xCB,0x4D,0xAB,0x4D,0x6C,0x55,0xAB,0x4D,0xAB,0x4D,0x8C,0x4D,0x8C,0x4D,0x8C,0x55,0x8C,0x4D,0x6C,0x4D,0x4B,0x55,0x4A,0x4D,0xAB,0x55,0xAA,0x4D,0x6B,0x45,0x8C,0x55,0x43,0x13,0xA1,0x0B,0x20,0x04,0xE0,0x03,0x01,0x24,0x40,0x12,0x80,0x00,0x80,0x00,0x01,0x01,0x60,0x00,0x4E,0x7D,0x11,0xB7,0xED,0xAE,0x8D,0xB7,0x4C,0xA7,0xAE,0xB7,0x0C,0x9F,0x8D,0xB7,0x8C,0xB7, +0x4D,0xAF,0x2D,0xA7,0x4D,0xAF,0x4C,0xB7,0x8D,0xBF,0xAF,0xBF,0xED,0x9E,0x0D,0xA7,0x2C,0xAF,0xEB,0xA6,0x4E,0xB7,0xF5,0xDF,0xF8,0xF7,0xFA,0xFF,0xD6,0xD6,0x59,0xDF,0x96,0xDF,0xF6,0xEF,0x90,0xC7,0xCF,0x96,0x0C,0x3D,0xAA,0x03,0x2C,0x14,0x4C,0x1C,0x6C,0x1C,0x8D,0x24,0xAD,0x24,0x2F,0x2D,0x6C,0x14,0xEE,0x2C,0xAD,0x2C,0xE6,0x0A,0x40,0x00,0x22,0x19,0x60,0x00,0x40,0x00,0x60,0x08,0x20,0x00,0x40,0x08,0x20,0x08,0x20,0x08,0x40,0x00,0x40,0x00,0x40,0x00,0x40,0x00,0x40,0x00,0x40,0x00,0x40,0x00,0x40,0x00,0x40,0x00,0x60,0x08,0x40,0x00,0x20,0x00,0x67,0x42,0x60,0x00,0xC0,0x08,0x26,0x32,0x60,0x00,0x06,0x32,0x02,0x11,0x80,0x00,0x63,0x21,0xA0,0x10,0x20,0x00, +0x66,0x65,0xB0,0xA6,0xC0,0x08,0x40,0x08,0xA4,0x29,0xC0,0x08,0xA0,0x00,0x67,0x42,0x20,0x00,0x63,0x21,0x05,0x32,0x40,0x00,0x26,0x3A,0x43,0x21,0x20,0x00,0x40,0x00,0x40,0x00,0x40,0x00,0x40,0x00,0x40,0x00,0x40,0x00,0x40,0x00,0x40,0x00,0x40,0x00,0x40,0x00,0x40,0x00,0x40,0x00,0x40,0x00,0x40,0x00,0x40,0x00,0x40,0x00,0x40,0x00,0x20,0x08,0x60,0x00,0x60,0x00,0x40,0x08,0x00,0x08,0x40,0x10,0x40,0x00,0x04,0x22,0x54,0xA6,0x40,0x01,0x03,0x13,0xAE,0x6D,0x41,0x01,0x00,0x00,0x41,0x10,0x60,0x00,0x40,0x00,0x40,0x00,0x60,0x00,0x40,0x00,0x20,0x00,0x20,0x08,0x20,0x08,0x20,0x08,0x20,0x08,0x40,0x08,0x41,0x08,0x41,0x00,0x41,0x00,0x61,0x00,0x40,0x00,0x40,0x00, +0x60,0x00,0x81,0x08,0x20,0x00,0x8C,0x54,0x2F,0x5E,0xCF,0x5D,0x00,0x01,0x00,0x10,0x20,0x08,0x80,0x00,0xA0,0x00,0x80,0x00,0x61,0x10,0x00,0x00,0x60,0x00,0x84,0x09,0xA3,0x19,0xA0,0x00,0x40,0x00,0x60,0x00,0x21,0x08,0x20,0x00,0x40,0x08,0x40,0x00,0x60,0x00,0xE1,0x08,0x01,0x09,0x01,0x09,0x02,0x11,0xC2,0x08,0x41,0x00,0x20,0x00,0x60,0x00,0xC2,0x10,0x03,0x11,0xC1,0x00,0xC7,0x12,0xC6,0x02,0x27,0x03,0x45,0x02,0x80,0x00,0x20,0x08,0x20,0x18,0x00,0x08,0x40,0x08,0x20,0x00,0x40,0x00,0x80,0x00,0xA1,0x01,0x24,0x02,0x24,0x0A,0xE3,0x09,0x00,0x01,0x80,0x00,0x01,0x01,0xE1,0x00,0x60,0x00,0x40,0x00,0x60,0x00,0x60,0x00,0x20,0x00,0x20,0x00,0x60,0x08,0x20,0x00, +0x40,0x00,0xA7,0x32,0x6D,0x64,0x4B,0x5C,0x8C,0x5C,0x6B,0x54,0x8D,0x54,0x4C,0x4C,0x4C,0x54,0x4C,0x54,0x4C,0x54,0x4B,0x54,0x4B,0x54,0x6B,0x54,0x6C,0x54,0x4C,0x54,0xEE,0x43,0x8D,0x3B,0xAD,0x3B,0xAC,0x3B,0xCD,0x3B,0xAD,0x3B,0xAE,0x3B,0xAD,0x33,0xAD,0x3B,0xCF,0x3B,0x6C,0x33,0x4D,0x65,0x2B,0x97,0x46,0x97,0x27,0x97,0x2A,0x97,0x08,0xA7,0x28,0x9F,0x48,0x97,0x49,0x8F,0x49,0x8F,0x28,0x9F,0x07,0xA7,0xE7,0xAE,0xE8,0xA6,0x0B,0x9F,0x0E,0x8F,0xAE,0x6E,0x4C,0x4E,0x6C,0x4E,0x6C,0x46,0xAD,0x4E,0xAF,0x46,0x6F,0x46,0x90,0x56,0x0F,0x5E,0x6D,0x4D,0x4D,0x55,0x6A,0x3C,0xA7,0x23,0xC8,0x23,0xC8,0x23,0xC8,0x1B,0xC8,0x1B,0xC9,0x1B,0xC9,0x23,0xC9,0x23,0xA9,0x23, +0xC9,0x23,0xC9,0x23,0xC9,0x23,0xA8,0x1B,0xE9,0x23,0xC8,0x23,0x87,0x1B,0x6B,0x3C,0xCC,0x54,0xAC,0x5C,0x8C,0x5C,0x8C,0x64,0x8C,0x64,0x8C,0x5C,0x8C,0x5C,0x8C,0x5C,0x8B,0x54,0x86,0x33,0x45,0x2B,0x66,0x2B,0x25,0x2B,0x65,0x2B,0x65,0x2B,0x45,0x2B,0x45,0x2B,0x45,0x2B,0x45,0x2B,0x45,0x2B,0x45,0x2B,0x45,0x2B,0x45,0x2B,0x45,0x2B,0x20,0x00,0x80,0x08,0x20,0x00,0x25,0x2A,0x4D,0x64,0x8D,0x64,0xAD,0x5C,0xAC,0x5C,0xAC,0x5C,0xAC,0x5C,0x8C,0x5C,0xAC,0x64,0x8C,0x5C,0xAC,0x5C,0xAC,0x5C,0xCC,0x5C,0xCB,0x5C,0xAB,0x5C,0xAC,0x5C,0xAD,0x5C,0xAD,0x5C,0xAC,0x5C,0xAC,0x5C,0xAB,0x5C,0xAB,0x5C,0xAC,0x5C,0xAC,0x5C,0x8C,0x5C,0xCB,0x5C,0xAA,0x5C,0x2A,0x65,0x2D,0x86, +0xA8,0x86,0x88,0x86,0xA8,0x86,0x88,0x86,0x68,0x86,0x88,0x86,0x68,0x86,0xA8,0x86,0x86,0x86,0xA7,0x86,0x86,0x7E,0x67,0x86,0xCA,0x8E,0x4B,0x86,0x2A,0x6D,0xA9,0x5C,0xAC,0x5C,0xAC,0x5C,0xAB,0x5C,0xAB,0x5C,0xAC,0x5C,0x8D,0x5C,0x8E,0x5C,0xAC,0x5C,0x8C,0x75,0x6C,0x86,0x29,0x7E,0x47,0x65,0xC6,0x54,0x88,0x54,0x2B,0x65,0x70,0x8E,0x2C,0x86,0x67,0x6D,0x05,0x5D,0xC6,0x54,0xE8,0x5C,0xEC,0x75,0xAC,0x8E,0x08,0x76,0x86,0x6D,0x07,0x5D,0xC8,0x54,0xC9,0x54,0x0A,0x5D,0x4E,0x86,0x2C,0x7E,0x0B,0x76,0x47,0x6D,0xC8,0x64,0x89,0x5C,0xAB,0x5C,0xAC,0x54,0x0D,0x75,0x2D,0x7D,0x89,0x4C,0xCD,0x45,0xC8,0x04,0x88,0x0C,0x8D,0x3D,0xAD,0x3D,0xAC,0x35,0x6C,0x2D,0x64,0x03, +0x68,0x14,0xCE,0x45,0x6C,0x35,0xED,0x35,0xED,0x2D,0x87,0x04,0xC9,0x24,0x2E,0x5E,0x0D,0x66,0x2D,0x6E,0x0C,0x76,0xEC,0x75,0x0C,0x6E,0x4D,0x6E,0xCC,0x6D,0xED,0x7D,0x4C,0x66,0x2C,0x66,0x2C,0x66,0x2D,0x6E,0x0E,0x7E,0x46,0x3B,0x40,0x00,0x60,0x00,0x61,0x00,0x61,0x00,0x40,0x00,0xC1,0x00,0xA7,0x1A,0xA6,0x0A,0xA7,0x12,0x87,0x12,0x87,0x0A,0xC5,0x12,0x8C,0x6D,0x0C,0x7E,0x2B,0x76,0x2C,0x6E,0x4D,0x6E,0x4D,0x6E,0x4D,0x6E,0x2C,0x6E,0x2C,0x6E,0x4C,0x6E,0x6C,0x66,0x4C,0x6E,0x2D,0x6E,0x2E,0x76,0x4B,0x76,0xED,0x65,0xAA,0x34,0x4A,0x1C,0xE8,0x0B,0xCC,0x34,0x06,0x0B,0x8C,0x34,0x8B,0x2C,0x47,0x0B,0x27,0x13,0xC8,0x2B,0x8C,0x55,0xAA,0x4D,0xAB,0x55,0x8C,0x5D, +0xC9,0x55,0xAA,0x55,0xAA,0x4D,0x8A,0x55,0x8B,0x55,0xAB,0x55,0xAC,0x55,0xAC,0x55,0x8B,0x55,0xAA,0x55,0xAA,0x4D,0xCB,0x5D,0x8C,0x65,0x02,0x13,0x60,0x0B,0x41,0x0C,0x40,0x04,0x63,0x24,0x41,0x12,0x60,0x00,0x04,0x22,0xA6,0x2A,0xE0,0x00,0x2C,0x75,0xB0,0xA6,0x0E,0xAF,0xEB,0x9E,0x0C,0x9F,0x47,0x65,0x2C,0x86,0xCA,0x75,0x68,0x75,0x2B,0x96,0x0F,0xAF,0xCE,0x9E,0xCA,0x7D,0x29,0x6D,0x8B,0x75,0x0C,0x7E,0xEE,0x9E,0xEB,0xA6,0x4C,0xA7,0xA9,0x75,0xAC,0x75,0x91,0x9E,0x92,0xAE,0x96,0xCF,0xF8,0xDF,0xF7,0xDF,0x0F,0xB7,0x8B,0x9E,0x70,0xA7,0xCB,0x3C,0xCB,0x13,0x2D,0x1C,0x4C,0x24,0x8C,0x24,0x90,0x45,0x4B,0x1C,0x2E,0x25,0xCC,0x0C,0x6F,0x25,0xAC,0x2C,0x06,0x13, +0x60,0x00,0x02,0x11,0x80,0x08,0x40,0x00,0x40,0x00,0x60,0x08,0x20,0x00,0x20,0x08,0x40,0x08,0x40,0x08,0x40,0x08,0x40,0x00,0x40,0x00,0x40,0x08,0x40,0x08,0x40,0x08,0x40,0x00,0x60,0x08,0x40,0x00,0x40,0x00,0x63,0x21,0x02,0x11,0x20,0x00,0xC4,0x29,0x80,0x00,0x80,0x00,0x83,0x21,0x40,0x00,0x80,0x00,0x23,0x21,0x80,0x08,0x20,0x00,0x46,0x65,0x70,0x9E,0xA0,0x00,0x60,0x08,0x43,0x21,0x21,0x19,0x40,0x00,0x05,0x3A,0xA0,0x08,0x40,0x00,0xC5,0x29,0xA0,0x00,0x20,0x00,0x05,0x3A,0x80,0x08,0x40,0x00,0x40,0x08,0x40,0x08,0x40,0x08,0x40,0x08,0x40,0x08,0x40,0x08,0x40,0x08,0x40,0x08,0x40,0x08,0x40,0x08,0x40,0x08,0x40,0x08,0x40,0x08,0x40,0x08,0x40,0x08,0x40,0x08, +0x20,0x10,0x80,0x00,0x60,0x00,0x40,0x08,0x20,0x10,0x40,0x00,0xE0,0x00,0xB1,0x8D,0x69,0x4B,0xC0,0x00,0x65,0x23,0x2D,0x5D,0xC3,0x11,0x00,0x00,0x41,0x10,0x60,0x00,0x80,0x00,0x60,0x00,0x40,0x00,0x60,0x00,0x80,0x00,0x60,0x00,0x40,0x00,0x40,0x00,0x40,0x00,0x60,0x00,0x40,0x00,0x60,0x00,0x60,0x00,0x60,0x00,0x60,0x00,0x60,0x00,0x60,0x00,0x61,0x10,0x00,0x00,0x8C,0x54,0x4F,0x5E,0xEF,0x65,0x20,0x01,0x20,0x10,0x20,0x00,0xA0,0x00,0xA0,0x00,0x20,0x00,0x20,0x00,0x02,0x11,0xE5,0x21,0xE2,0x08,0x80,0x00,0x60,0x00,0x60,0x00,0x60,0x00,0x40,0x00,0x21,0x00,0x61,0x00,0x81,0x00,0x22,0x11,0xC0,0x00,0xE0,0x00,0x21,0x09,0xC0,0x00,0x40,0x00,0x40,0x00,0x82,0x10, +0x03,0x11,0xA2,0x10,0x40,0x08,0x80,0x00,0xE8,0x12,0xC6,0x02,0x85,0x02,0x45,0x0A,0x60,0x00,0x20,0x08,0x00,0x08,0x60,0x08,0x80,0x00,0xC0,0x00,0xA7,0x22,0xCC,0x4B,0x8B,0x2C,0xCC,0x3C,0x8C,0x3C,0x8C,0x44,0x0A,0x34,0xEA,0x33,0x8D,0x44,0x2B,0x3C,0x0B,0x44,0xE3,0x09,0x80,0x00,0x80,0x00,0x80,0x00,0x60,0x00,0x60,0x00,0x40,0x00,0xE0,0x00,0xEB,0x53,0x4C,0x5C,0x2B,0x54,0x4B,0x54,0x4C,0x54,0x2C,0x4C,0x4D,0x54,0x4D,0x54,0x4C,0x54,0x4C,0x54,0x4C,0x54,0x4B,0x54,0x4C,0x54,0x4C,0x54,0x4C,0x54,0xAF,0x3B,0x6E,0x33,0xAD,0x3B,0x8C,0x33,0xAD,0x33,0xAD,0x33,0xAD,0x33,0xAD,0x33,0x8D,0x33,0xAE,0x3B,0x6A,0x33,0x0E,0x7E,0xEA,0x96,0x27,0x97,0x27,0x97,0x2A,0x9F, +0x09,0x9F,0x29,0x9F,0x28,0x97,0x48,0x97,0x29,0x97,0x29,0x97,0x29,0x9F,0x2A,0x97,0x2C,0x97,0x6C,0x6E,0xAC,0x45,0x0E,0x46,0xED,0x35,0x4D,0x36,0x4D,0x36,0x4D,0x36,0x6E,0x2E,0x2E,0x36,0x2E,0x3E,0xEE,0x45,0xEE,0x4D,0xCF,0x5D,0x49,0x2C,0x87,0x1B,0x87,0x1B,0x88,0x1B,0x88,0x1B,0x88,0x1B,0xA8,0x1B,0xA8,0x1B,0x88,0x1B,0x88,0x1B,0x68,0x23,0x68,0x23,0x67,0x1B,0xA8,0x23,0x88,0x1B,0x87,0x1B,0xA8,0x23,0x67,0x23,0xAC,0x54,0xAC,0x5C,0x8C,0x5C,0x8C,0x5C,0x8C,0x5C,0x8C,0x5C,0x8C,0x5C,0x8C,0x5C,0x2A,0x4C,0x05,0x23,0x46,0x2B,0x45,0x2B,0x45,0x2B,0x24,0x2B,0x25,0x2B,0x25,0x2B,0x25,0x2B,0x25,0x2B,0x25,0x2B,0x25,0x2B,0x25,0x2B,0x25,0x2B,0x25,0x2B,0x25,0x2B, +0x80,0x00,0x20,0x00,0x66,0x32,0x8E,0x6C,0x6D,0x64,0xAD,0x5C,0x8C,0x5C,0x8C,0x5C,0x8C,0x5C,0x8C,0x5C,0x8C,0x5C,0x8C,0x5C,0x8C,0x5C,0xAC,0x5C,0xAC,0x5C,0xAC,0x54,0xAB,0x5C,0x8B,0x5C,0x8C,0x5C,0x8C,0x5C,0x8C,0x5C,0x8C,0x5C,0x8B,0x5C,0x8B,0x5C,0x8B,0x54,0xAC,0x5C,0x6B,0x54,0xCC,0x5C,0xAA,0x5C,0xC9,0x5C,0xEC,0x7D,0x0B,0x7E,0x47,0x7E,0x48,0x7E,0x48,0x7E,0x28,0x7E,0x49,0x86,0x49,0x86,0x48,0x7E,0x68,0x7E,0x47,0x7E,0x48,0x7E,0x48,0x7E,0x49,0x7E,0x29,0x7E,0x0A,0x7E,0x2A,0x86,0x09,0x7E,0x2D,0x6D,0xAA,0x5C,0xCA,0x5C,0x8A,0x54,0x8C,0x5C,0x8C,0x5C,0x8B,0x54,0x4C,0x6D,0x4C,0x86,0x67,0x6D,0xA5,0x54,0x25,0x44,0x88,0x54,0x8B,0x6D,0x8D,0x8E,0xC8,0x75, +0x49,0x6D,0x68,0x54,0x69,0x54,0xC9,0x5C,0x0B,0x7E,0x6A,0x7E,0xE8,0x6D,0x27,0x5D,0xC8,0x5C,0xA9,0x5C,0x89,0x54,0x49,0x65,0x8B,0x8E,0x28,0x86,0x88,0x6D,0x49,0x5D,0x8B,0x64,0x49,0x5C,0x89,0x5C,0x09,0x55,0xCA,0x65,0xEB,0x75,0x4A,0x6D,0x2A,0x55,0x6B,0x35,0x6B,0x1D,0x4B,0x25,0x4B,0x35,0x6B,0x3D,0x8C,0x35,0x0C,0x25,0x0A,0x14,0xCA,0x1C,0x6D,0x35,0x4C,0x2D,0x8D,0x25,0xAD,0x25,0x2B,0x2D,0x8C,0x55,0xCD,0x65,0xEC,0x5D,0xEC,0x5D,0xAB,0x5D,0xAB,0x65,0xCC,0x5D,0xEC,0x5D,0xCC,0x5D,0xAC,0x5D,0x0C,0x56,0xEB,0x4D,0x2B,0x56,0x0B,0x4E,0xCB,0x55,0xAE,0x75,0xE3,0x21,0x20,0x00,0x41,0x00,0x41,0x08,0x21,0x00,0xC2,0x08,0x46,0x1A,0xC6,0x12,0xA6,0x0A,0x65,0x0A, +0xA6,0x02,0x83,0x02,0xCD,0x6D,0x4D,0x7E,0x2C,0x6E,0x2C,0x66,0xEC,0x5D,0x4D,0x66,0x4D,0x6E,0x0C,0x66,0xEB,0x65,0x6C,0x6E,0x4C,0x66,0xEA,0x5D,0x0C,0x6E,0x0D,0x76,0x2B,0x7E,0xEC,0x6D,0xAA,0x34,0x29,0x14,0xE8,0x13,0xEC,0x3C,0x06,0x0B,0x6B,0x34,0x8B,0x2C,0x47,0x0B,0x26,0x13,0xC7,0x2B,0xAC,0x5D,0xCA,0x55,0xCB,0x5D,0x8C,0x5D,0xC9,0x65,0xA9,0x5D,0xCA,0x5D,0xCA,0x5D,0xCA,0x5D,0xCB,0x55,0xAB,0x4D,0xAB,0x55,0xAB,0x5D,0xCB,0x5D,0xAA,0x55,0x8B,0x5D,0x8D,0x6D,0x43,0x23,0x80,0x02,0x21,0x0C,0x60,0x03,0xE3,0x13,0xC1,0x01,0x80,0x00,0x28,0x3B,0x2D,0x65,0x43,0x1B,0xED,0x7D,0x2C,0x96,0x6A,0x9E,0x69,0x96,0x2A,0x7E,0xA0,0x0A,0x0C,0x5D,0x2A,0x4C,0xA4,0x1A, +0x86,0x6C,0x8E,0x9E,0x2E,0x86,0xA5,0x33,0xE5,0x1A,0xE5,0x12,0x6C,0x5D,0xAD,0x8E,0x8A,0x8E,0x4A,0x8E,0xE5,0x3B,0xC4,0x12,0x26,0x23,0x86,0x33,0xCD,0x7D,0x93,0xA7,0xF1,0x9E,0x4B,0x8E,0x69,0x8E,0xAC,0x86,0xAA,0x3C,0x2C,0x24,0xED,0x23,0x8A,0x1B,0xCE,0x44,0x33,0x6E,0x0A,0x24,0x52,0x56,0x4E,0x25,0x11,0x3E,0xED,0x34,0xA8,0x23,0x80,0x00,0x23,0x19,0x80,0x00,0x80,0x08,0x20,0x00,0x81,0x10,0x40,0x08,0x40,0x08,0x20,0x08,0x60,0x08,0x40,0x08,0x40,0x08,0x40,0x08,0x40,0x00,0x60,0x08,0x40,0x08,0x40,0x00,0x80,0x08,0x20,0x00,0x43,0x21,0x06,0x3A,0x20,0x00,0x42,0x19,0xA4,0x21,0x60,0x00,0xC1,0x08,0x42,0x11,0x60,0x00,0x60,0x00,0x23,0x21,0x20,0x00,0x20,0x00, +0x26,0x5D,0x2F,0x96,0xC0,0x00,0x40,0x08,0xC1,0x10,0x25,0x3A,0x20,0x00,0x80,0x08,0x02,0x19,0x40,0x00,0x63,0x19,0x63,0x19,0x40,0x00,0x21,0x19,0x05,0x3A,0x20,0x00,0x60,0x08,0x00,0x00,0x80,0x08,0x20,0x00,0x60,0x08,0x60,0x08,0x40,0x00,0x40,0x08,0x40,0x08,0x40,0x08,0x40,0x08,0x40,0x08,0x40,0x08,0x40,0x08,0x40,0x08,0x40,0x08,0x40,0x08,0x60,0x00,0x80,0x00,0x21,0x08,0x40,0x08,0x40,0x00,0xA8,0x43,0xAD,0x6C,0xA0,0x00,0x80,0x00,0x25,0x23,0x8F,0x65,0xA3,0x11,0x00,0x00,0x41,0x10,0x60,0x00,0x40,0x00,0x60,0x08,0x60,0x08,0x60,0x00,0x60,0x00,0x60,0x00,0x60,0x00,0x60,0x00,0x80,0x00,0x60,0x00,0x60,0x00,0x60,0x00,0x60,0x08,0x60,0x08,0x40,0x08,0x40,0x08, +0x80,0x00,0x61,0x10,0x20,0x00,0xCC,0x54,0x70,0x5E,0xEF,0x6D,0x21,0x11,0x00,0x10,0x60,0x00,0xA0,0x00,0x80,0x00,0xE2,0x08,0x84,0x21,0x22,0x09,0x40,0x00,0x00,0x08,0x60,0x00,0x80,0x08,0x60,0x00,0x40,0x00,0x60,0x00,0xC2,0x08,0x23,0x11,0xE2,0x00,0xC0,0x00,0x42,0x09,0x21,0x09,0x60,0x00,0x60,0x00,0x60,0x08,0xE2,0x18,0xC3,0x18,0x60,0x00,0x81,0x10,0x00,0x08,0xC1,0x00,0x29,0x23,0x23,0x02,0xA6,0x02,0xC7,0x22,0xA0,0x00,0x40,0x00,0x40,0x00,0x80,0x00,0x20,0x01,0x47,0x1B,0x6B,0x3C,0x4B,0x34,0x8A,0x24,0x8A,0x24,0x6A,0x2C,0x6A,0x2C,0x6A,0x2C,0x6B,0x2C,0x8B,0x24,0x8B,0x24,0x6B,0x2C,0x2B,0x34,0xE7,0x22,0xC0,0x00,0xA0,0x00,0x40,0x00,0x60,0x00,0x40,0x00, +0x04,0x1A,0x4D,0x5C,0x0B,0x54,0x4C,0x54,0x2B,0x4C,0x4C,0x54,0x2C,0x4C,0x2C,0x4C,0x2C,0x4C,0x0C,0x54,0x2B,0x54,0x2C,0x54,0x0B,0x4C,0x0B,0x4C,0x4D,0x54,0x0C,0x4C,0x6F,0x33,0x6E,0x33,0x6D,0x33,0x8D,0x33,0xAD,0x33,0xAD,0x33,0x8D,0x33,0x8E,0x33,0x6E,0x33,0x8D,0x3B,0xA8,0x3B,0x8D,0x8E,0x0A,0x9F,0x07,0x97,0x48,0x9F,0x08,0x97,0x0A,0x97,0x08,0x97,0x07,0x9F,0x27,0x9F,0x29,0x97,0x4B,0x8F,0x0B,0x77,0x0D,0x67,0xEE,0x56,0x8F,0x46,0x4F,0x46,0x4F,0x46,0xED,0x35,0xAC,0x2D,0xAD,0x35,0xCE,0x35,0xCC,0x2D,0xAC,0x2D,0x8C,0x2D,0x8C,0x2D,0x8C,0x35,0x6C,0x35,0x2C,0x35,0xEC,0x34,0x29,0x1C,0xC8,0x13,0xC8,0x13,0x88,0x13,0x88,0x1B,0x27,0x13,0x68,0x1B,0x47,0x1B, +0x48,0x23,0x47,0x23,0x68,0x23,0x47,0x13,0x67,0x1B,0x67,0x1B,0x46,0x1B,0x87,0x2B,0xAC,0x54,0xAC,0x5C,0x6B,0x5C,0xAC,0x64,0x8C,0x5C,0x8C,0x54,0x6B,0x4C,0xAC,0x54,0x26,0x2B,0x26,0x2B,0x25,0x2B,0x25,0x2B,0x25,0x2B,0x25,0x2B,0x25,0x2B,0x25,0x2B,0x25,0x2B,0x46,0x2B,0x25,0x2B,0x25,0x2B,0x46,0x2B,0x25,0x2B,0x25,0x2B,0x45,0x2B,0x60,0x00,0x25,0x2A,0xAE,0x6C,0x2C,0x54,0x6C,0x54,0x6C,0x54,0x6C,0x5C,0x8C,0x64,0x6B,0x5C,0x6B,0x5C,0x8B,0x5C,0x8B,0x54,0x8B,0x54,0x8C,0x54,0x8C,0x5C,0x6C,0x5C,0x8B,0x5C,0x8B,0x5C,0x8C,0x5C,0x6C,0x5C,0x6C,0x5C,0x6C,0x5C,0x8B,0x5C,0x8B,0x5C,0x8B,0x5C,0xAB,0x5C,0x8B,0x54,0x49,0x4C,0xA9,0x5C,0x8B,0x75,0xEB,0x7D,0xE9,0x75, +0x07,0x76,0x08,0x76,0xE9,0x75,0xCA,0x75,0xEA,0x75,0xEA,0x75,0xC9,0x75,0xE9,0x75,0xE9,0x75,0xE9,0x75,0xE9,0x75,0xA9,0x6D,0xC9,0x75,0x0A,0x7E,0xE8,0x75,0xE8,0x7D,0xAD,0x7D,0xCA,0x5C,0x6A,0x54,0x8B,0x5C,0x4A,0x4C,0x89,0x54,0x6A,0x6D,0xCA,0x75,0xC5,0x54,0x46,0x65,0x06,0x5D,0x28,0x65,0x69,0x6D,0xEA,0x7D,0x66,0x65,0xC2,0x4C,0x06,0x44,0x29,0x4C,0x6B,0x54,0x4C,0x6D,0xA8,0x6D,0x86,0x65,0xE6,0x54,0x89,0x54,0x6B,0x54,0x6A,0x54,0xEC,0x75,0x8C,0x8E,0xC7,0x75,0x25,0x65,0xE6,0x5C,0x87,0x4C,0x8B,0x54,0x4C,0x75,0xEC,0x7D,0x4B,0x76,0xE9,0x6D,0xE7,0x5C,0x68,0x54,0xCA,0x54,0x2B,0x35,0x6B,0x1D,0x4B,0x25,0x0A,0x35,0x0A,0x2D,0x2B,0x2D,0x4D,0x35,0x0D,0x3D, +0x2C,0x2D,0x6C,0x2D,0x4C,0x25,0x4D,0x25,0x2C,0x2D,0x0B,0x3D,0x6C,0x4D,0x6B,0x55,0x6A,0x4D,0xAB,0x4D,0xEC,0x4D,0x8B,0x45,0x8B,0x4D,0x8B,0x4D,0xCB,0x4D,0xAA,0x45,0xAC,0x45,0xCC,0x45,0x8A,0x35,0x0B,0x46,0x8B,0x45,0xCF,0x75,0x45,0x32,0x40,0x00,0x20,0x08,0x61,0x10,0x20,0x08,0xC2,0x08,0x87,0x1A,0xA6,0x02,0xC6,0x02,0xA9,0x2B,0xA9,0x1B,0x87,0x1B,0x6C,0x55,0x2D,0x6E,0x6D,0x6E,0xC7,0x34,0x45,0x24,0x2D,0x5E,0x6E,0x6E,0xC7,0x34,0x04,0x1C,0xEB,0x55,0x4C,0x66,0x65,0x2C,0x45,0x34,0x0D,0x76,0x2A,0x86,0xEC,0x75,0xAA,0x34,0x29,0x14,0xE7,0x13,0xEB,0x3C,0x05,0x13,0x6B,0x34,0x6B,0x34,0x47,0x0B,0x26,0x13,0xA7,0x2B,0xAC,0x5D,0xCA,0x5D,0xCB,0x5D,0x8C,0x65, +0xA9,0x65,0xCA,0x65,0xEB,0x65,0xAA,0x65,0xAA,0x65,0xEB,0x5D,0xEB,0x5D,0x0C,0x66,0xCB,0x65,0xAA,0x5D,0x0C,0x6E,0xCC,0x6D,0xAE,0x75,0x23,0x1B,0xC3,0x13,0x21,0x04,0x00,0x04,0x65,0x2C,0xE3,0x11,0x40,0x00,0x07,0x33,0x2B,0x55,0x04,0x24,0x0C,0x76,0xEF,0xA6,0xCC,0xA6,0x4D,0xAF,0x8D,0x8E,0x42,0x02,0x67,0x12,0xE6,0x09,0x07,0x1A,0xE6,0x6C,0x50,0xB7,0xF1,0x9E,0x46,0x2B,0x86,0x12,0x47,0x02,0x43,0x02,0xCB,0x6D,0xEC,0x9E,0x0F,0xAF,0x67,0x3B,0x26,0x0A,0x46,0x12,0xE1,0x01,0xC9,0x54,0xF0,0x8E,0x8E,0x8E,0x0D,0x9F,0xEB,0x9E,0x2F,0x97,0xCA,0x3C,0x89,0x13,0x8B,0x23,0x65,0x02,0x85,0x0A,0x0B,0x34,0x44,0x02,0x6B,0x2C,0x67,0x03,0xCC,0x2C,0xED,0x34,0x4B,0x34, +0x43,0x19,0x27,0x3A,0x60,0x00,0x40,0x00,0x40,0x08,0x40,0x00,0x40,0x08,0x40,0x08,0x40,0x08,0x60,0x08,0x40,0x00,0x60,0x08,0x20,0x00,0x60,0x08,0x40,0x00,0x40,0x00,0x60,0x00,0x40,0x00,0x63,0x21,0x26,0x3A,0x20,0x00,0x60,0x00,0x67,0x42,0xA0,0x00,0x60,0x00,0x63,0x19,0x63,0x19,0x40,0x00,0x80,0x08,0x84,0x29,0x00,0x00,0x20,0x08,0x26,0x5D,0x2F,0x96,0xC0,0x00,0x40,0x00,0xA0,0x08,0xA3,0x29,0x60,0x00,0x60,0x00,0x47,0x42,0x20,0x00,0x40,0x00,0x67,0x3A,0xE1,0x10,0x20,0x00,0xA4,0x29,0x06,0x32,0x20,0x00,0x60,0x08,0x60,0x08,0x20,0x00,0x60,0x08,0x20,0x00,0x40,0x08,0x40,0x00,0x40,0x08,0x40,0x08,0x40,0x08,0x40,0x08,0x40,0x08,0x40,0x08,0x40,0x08,0x40,0x08, +0x60,0x00,0x60,0x00,0x61,0x08,0x00,0x00,0xA0,0x08,0x40,0x01,0xEC,0x64,0xA0,0x00,0x80,0x00,0x60,0x00,0x26,0x23,0x8F,0x6D,0xC3,0x11,0x00,0x00,0x61,0x08,0x80,0x00,0x40,0x08,0x40,0x08,0x40,0x08,0x40,0x08,0x40,0x08,0x60,0x08,0x60,0x08,0x60,0x08,0x40,0x00,0x40,0x08,0x40,0x08,0x40,0x08,0x60,0x08,0x60,0x10,0x40,0x10,0x20,0x08,0x20,0x00,0x61,0x10,0x20,0x00,0xAC,0x54,0x4F,0x5E,0x0F,0x6E,0x62,0x19,0x00,0x00,0x80,0x00,0x00,0x01,0xA3,0x11,0x64,0x19,0x80,0x00,0xA0,0x00,0xA1,0x08,0x00,0x10,0x41,0x08,0x20,0x00,0x60,0x00,0x02,0x11,0x02,0x11,0xC0,0x00,0xA0,0x00,0x01,0x09,0x01,0x09,0x40,0x00,0x60,0x00,0xC1,0x08,0xE1,0x10,0x23,0x19,0x80,0x08,0x20,0x00, +0x60,0x00,0x20,0x00,0x40,0x00,0x21,0x09,0x04,0x0A,0x06,0x0B,0x85,0x02,0x05,0x12,0xA0,0x00,0x40,0x00,0x41,0x01,0x27,0x1B,0x09,0x2C,0xAB,0x34,0x29,0x24,0x49,0x2C,0x4A,0x24,0x4A,0x24,0x4A,0x24,0x4A,0x24,0x4A,0x24,0x6A,0x1C,0x6A,0x1C,0x6A,0x1C,0x6A,0x24,0x2A,0x2C,0x8C,0x44,0x86,0x1A,0x60,0x00,0x60,0x00,0x80,0x08,0x40,0x08,0xAA,0x43,0x4D,0x5C,0xEA,0x4B,0x2B,0x54,0xEB,0x4B,0x2C,0x4C,0x2C,0x4C,0x0C,0x4C,0x0C,0x4C,0x0C,0x4C,0x0B,0x54,0x2B,0x54,0x0B,0x4C,0x0C,0x4C,0x0C,0x4C,0xCC,0x43,0x6E,0x33,0x6D,0x33,0x6D,0x33,0x8E,0x33,0x8E,0x33,0x8D,0x33,0x8C,0x33,0x6E,0x33,0x90,0x3B,0x2C,0x33,0x08,0x4C,0xCC,0x9E,0x09,0x9F,0x08,0x9F,0xE7,0x96,0x28,0x9F, +0x49,0x97,0x08,0x97,0x07,0x9F,0x09,0x9F,0xCA,0x86,0x6B,0x66,0x2B,0x3E,0x6D,0x36,0x8E,0x2E,0x8F,0x36,0x6F,0x36,0x6F,0x46,0x4E,0x4E,0xCC,0x3D,0x2B,0x2D,0xEC,0x24,0x2B,0x2D,0x2B,0x2D,0x2B,0x2D,0x2B,0x25,0x2B,0x25,0x4B,0x25,0x4C,0x25,0x2C,0x2D,0x4C,0x2D,0xEB,0x2C,0xAB,0x2C,0xC8,0x1B,0x06,0x13,0x27,0x1B,0x07,0x1B,0x07,0x23,0x06,0x1B,0xE6,0x12,0x26,0x13,0x26,0x13,0x87,0x1B,0xA8,0x23,0x67,0x1B,0x0A,0x3C,0xAC,0x54,0x8C,0x54,0x6B,0x54,0x6C,0x5C,0x4B,0x54,0x6B,0x54,0xCC,0x5C,0x2A,0x44,0x06,0x2B,0x06,0x2B,0x25,0x2B,0x25,0x2B,0x25,0x2B,0x25,0x2B,0x25,0x2B,0x25,0x2B,0x25,0x2B,0xE5,0x22,0x26,0x2B,0x05,0x23,0x26,0x2B,0x46,0x2B,0x25,0x23,0x05,0x23, +0x21,0x01,0x8E,0x64,0x4C,0x54,0x8D,0x5C,0x4C,0x54,0x6C,0x5C,0x6C,0x64,0x0B,0x5C,0x4B,0x5C,0x4B,0x5C,0x6B,0x54,0x6B,0x54,0x6B,0x54,0x6B,0x54,0x4B,0x54,0x4C,0x5C,0x6B,0x54,0x6B,0x54,0x4C,0x54,0x4C,0x54,0x4B,0x54,0x4B,0x54,0x6B,0x54,0x6B,0x54,0x6B,0x54,0x4A,0x54,0x8A,0x54,0xCA,0x5C,0x4B,0x6D,0xAA,0x75,0x88,0x6D,0xA7,0x75,0xA7,0x65,0xC8,0x6D,0xA8,0x6D,0x89,0x6D,0x89,0x6D,0x8A,0x6D,0x8A,0x6D,0x8A,0x6D,0xAA,0x6D,0xA9,0x6D,0xA8,0x6D,0xC8,0x6D,0xA8,0x6D,0x67,0x65,0x88,0x6D,0xA9,0x75,0x6B,0x6D,0x69,0x54,0x6B,0x54,0xAB,0x5C,0x2B,0x6D,0x8C,0x8E,0x89,0x8E,0xCA,0x8E,0x6B,0x86,0xED,0x96,0xED,0x96,0x0B,0x9F,0xC8,0x8E,0x68,0x86,0x05,0x5D,0xC3,0x33, +0x48,0x4C,0x0A,0x65,0x8C,0x75,0x49,0x6D,0x28,0x65,0x46,0x44,0x8A,0x4C,0x4B,0x4C,0xAC,0x5C,0xCC,0x7D,0x0A,0x7E,0x67,0x65,0xC8,0x5C,0x68,0x54,0x68,0x54,0xE8,0x5C,0x8D,0x7E,0xAD,0x8E,0xCA,0x75,0x29,0x5D,0xA9,0x54,0x4B,0x54,0x4C,0x64,0x6C,0x54,0xCA,0x34,0x29,0x25,0x29,0x25,0x0A,0x2D,0xEA,0x2C,0xEA,0x24,0xCA,0x2C,0xCA,0x34,0xCA,0x34,0xEA,0x24,0xEB,0x24,0xEB,0x2C,0xAB,0x2C,0xCB,0x34,0x0A,0x2D,0x09,0x2D,0xAB,0x45,0x6A,0x35,0x6A,0x2D,0x6A,0x2D,0x8B,0x3D,0x6A,0x3D,0x89,0x3D,0x68,0x2D,0x4A,0x35,0x4A,0x35,0x6B,0x35,0x6B,0x35,0xCA,0x3C,0xA0,0x01,0x40,0x00,0x40,0x08,0x40,0x08,0x60,0x08,0x00,0x00,0xC2,0x00,0x87,0x12,0xC6,0x02,0x67,0x0B,0xCC,0x3C, +0x2D,0x3D,0x4D,0x45,0xC9,0x34,0x09,0x3D,0x08,0x3D,0x49,0x3D,0xC8,0x24,0xAB,0x45,0x0D,0x56,0xE9,0x34,0xA7,0x2C,0x4D,0x5E,0x6C,0x66,0xE7,0x34,0xA6,0x3C,0x2D,0x76,0x2A,0x8E,0xEC,0x75,0xAA,0x3C,0x28,0x14,0xE7,0x13,0xCB,0x3C,0x05,0x13,0x4B,0x3C,0x6B,0x34,0x27,0x0B,0x06,0x13,0xC7,0x2B,0xCC,0x65,0xCA,0x5D,0xCB,0x65,0xAC,0x65,0xAC,0x65,0xAC,0x65,0xCC,0x65,0xAB,0x6D,0xEB,0x6D,0xEB,0x6D,0xAA,0x65,0xCB,0x65,0xEB,0x75,0xCA,0x6D,0xCA,0x65,0xAB,0x6D,0xCD,0x75,0x23,0x1B,0xC2,0x13,0x41,0x04,0xC0,0x03,0x04,0x2C,0x65,0x2A,0x60,0x00,0x06,0x23,0x2A,0x45,0x08,0x35,0x2E,0x6E,0xAF,0x9E,0x8C,0xA6,0x0D,0xA7,0xEC,0x7D,0xE2,0x01,0x48,0x12,0xA7,0x09,0xA7,0x11, +0xC5,0x5C,0x30,0xA7,0x8F,0x8E,0x05,0x2B,0xA4,0x09,0x07,0x12,0x04,0x02,0x8C,0x6D,0xAD,0x96,0x8E,0x9E,0xE5,0x2A,0xE6,0x09,0x07,0x12,0xA2,0x01,0xCA,0x5C,0xCF,0x9E,0x6C,0x7E,0xEC,0x9E,0xEB,0x9E,0xEE,0x8E,0xCA,0x34,0xEA,0x1B,0xAB,0x2B,0x65,0x0A,0xE7,0x1A,0xEB,0x33,0x24,0x02,0x2B,0x34,0xA4,0x02,0x67,0x13,0xED,0x44,0x47,0x0B,0xA4,0x21,0xA8,0x4A,0x80,0x08,0x40,0x00,0x60,0x08,0x40,0x00,0x40,0x08,0x60,0x08,0x40,0x08,0x60,0x08,0x40,0x00,0x60,0x08,0x60,0x08,0x40,0x08,0x60,0x08,0x80,0x08,0x60,0x00,0x80,0x00,0x46,0x3A,0x40,0x00,0x60,0x00,0xE5,0x31,0x63,0x21,0x40,0x00,0x60,0x00,0x67,0x3A,0x80,0x00,0x80,0x00,0xC1,0x10,0x22,0x21,0x20,0x00,0x40,0x08, +0x06,0x55,0xEF,0x8D,0xC0,0x08,0x40,0x00,0x80,0x08,0x21,0x19,0xA0,0x08,0x60,0x00,0x84,0x29,0x63,0x21,0x40,0x00,0x80,0x00,0x67,0x3A,0x60,0x00,0x40,0x00,0x63,0x21,0x64,0x21,0x40,0x00,0x60,0x08,0x60,0x08,0x40,0x00,0x60,0x08,0x60,0x08,0x60,0x08,0x60,0x08,0x60,0x08,0x60,0x08,0x60,0x08,0x40,0x08,0x40,0x08,0x40,0x08,0x40,0x08,0x80,0x00,0x60,0x08,0x20,0x10,0x61,0x10,0x40,0x00,0xCD,0x64,0x25,0x33,0x60,0x00,0x80,0x08,0x60,0x00,0x27,0x23,0x8F,0x6D,0xC3,0x19,0x00,0x00,0x61,0x08,0x80,0x00,0x60,0x08,0x60,0x08,0x40,0x00,0x40,0x08,0x40,0x08,0x40,0x08,0x40,0x08,0x40,0x08,0x40,0x08,0x40,0x08,0x40,0x08,0x20,0x08,0x20,0x00,0x20,0x08,0x40,0x08,0x40,0x08, +0x60,0x08,0x81,0x10,0x20,0x00,0xAC,0x54,0x2F,0x66,0x0F,0x6E,0xE3,0x11,0xC1,0x08,0x63,0x11,0xA3,0x19,0xC1,0x08,0x20,0x00,0x80,0x00,0x80,0x00,0x20,0x00,0x40,0x08,0x62,0x08,0xE4,0x18,0x03,0x11,0xA0,0x00,0x80,0x00,0x01,0x01,0x42,0x11,0xA0,0x00,0x60,0x00,0xC2,0x10,0x23,0x19,0xC1,0x10,0xA0,0x00,0x40,0x00,0x60,0x00,0x20,0x01,0x40,0x12,0x00,0x12,0xA0,0x00,0xC0,0x11,0xE5,0x2A,0xA0,0x01,0x43,0x02,0x85,0x1A,0xA0,0x00,0xA0,0x00,0xAA,0x3B,0x4A,0x2C,0x29,0x24,0xE9,0x23,0x09,0x2C,0x08,0x24,0xE9,0x2B,0x09,0x2C,0x09,0x24,0x29,0x24,0x29,0x1C,0x29,0x1C,0x29,0x1C,0x29,0x1C,0x09,0x1C,0x29,0x24,0xE9,0x2B,0x0B,0x3C,0x65,0x1A,0xA0,0x00,0x40,0x00,0xA5,0x31, +0x2D,0x54,0xEB,0x4B,0xEB,0x4B,0x0B,0x4C,0xCA,0x43,0x0C,0x4C,0xEC,0x4B,0xEC,0x4B,0xEC,0x4B,0xEC,0x4B,0xEB,0x4B,0x0B,0x4C,0xEB,0x4B,0xEC,0x4B,0xEC,0x43,0x8B,0x3B,0x6C,0x2B,0x4C,0x2B,0x6D,0x2B,0x6F,0x2B,0x4E,0x2B,0x6C,0x2B,0x6B,0x2B,0x4E,0x33,0x2F,0x33,0x0B,0x2B,0x0A,0x65,0x2B,0xA7,0x08,0x9F,0x28,0x9F,0xE7,0x96,0x28,0x9F,0x06,0x97,0x27,0x97,0x08,0x8F,0xCB,0x86,0x89,0x4D,0xCC,0x45,0xAC,0x2D,0x0D,0x2E,0xEC,0x2D,0x0C,0x2E,0xEC,0x2D,0xEC,0x2D,0xEC,0x35,0xAC,0x35,0x0B,0x2D,0xCB,0x24,0xCA,0x2C,0xCA,0x2C,0xCA,0x24,0xCA,0x24,0xEA,0x1C,0xEA,0x1C,0xEA,0x1C,0xCB,0x24,0xCA,0x24,0x8A,0x2C,0x09,0x24,0xE9,0x23,0x27,0x1B,0xE6,0x1A,0xC6,0x1A,0xE6,0x1A, +0xE6,0x12,0x47,0x1B,0x06,0x13,0xC8,0x23,0x4B,0x34,0x8B,0x3C,0x6A,0x34,0x4B,0x3C,0x8B,0x44,0xAC,0x54,0x8C,0x54,0x6B,0x54,0x6B,0x54,0x4B,0x54,0x8C,0x5C,0x46,0x2B,0xE5,0x22,0xE5,0x22,0x05,0x23,0x05,0x23,0x05,0x23,0x05,0x23,0x05,0x23,0x05,0x23,0x05,0x2B,0x06,0x2B,0x06,0x2B,0x05,0x23,0x26,0x2B,0xC4,0x22,0xE5,0x22,0x25,0x2B,0xC6,0x2A,0xAE,0x64,0x0B,0x4C,0x6C,0x54,0x4C,0x54,0x2C,0x54,0x4C,0x5C,0x0B,0x5C,0x2B,0x5C,0x4B,0x54,0x4B,0x54,0x4B,0x4C,0x4B,0x4C,0x4B,0x54,0x2B,0x54,0x2C,0x5C,0x4C,0x54,0x4C,0x54,0x4B,0x54,0x4B,0x54,0x4B,0x54,0x4B,0x54,0x4B,0x54,0x4B,0x54,0x2A,0x54,0x4B,0x54,0x6A,0x54,0xCA,0x5C,0x2A,0x65,0x48,0x65,0x47,0x65,0x66,0x65, +0x46,0x65,0x67,0x65,0x67,0x65,0x47,0x65,0x48,0x65,0x49,0x65,0x49,0x65,0x49,0x65,0x69,0x65,0x26,0x5D,0x66,0x5D,0x86,0x65,0x66,0x65,0x47,0x65,0x49,0x65,0x49,0x6D,0x49,0x6D,0xED,0x7D,0x48,0x4C,0x4B,0x6D,0x4B,0x86,0x68,0x86,0x87,0x86,0x47,0x7E,0x4A,0x86,0x0A,0x7E,0x29,0x7E,0x46,0x7E,0xA5,0x86,0xA8,0x8E,0x2B,0x86,0x2A,0x65,0xEA,0x64,0x69,0x6D,0x26,0x65,0x65,0x4C,0xC6,0x3B,0xA9,0x3B,0x6C,0x4C,0x0D,0x65,0xCD,0x7D,0xA9,0x75,0x06,0x5D,0xA8,0x54,0x4A,0x4C,0x2B,0x54,0xEB,0x64,0x4D,0x86,0x49,0x6E,0x88,0x65,0xC7,0x54,0x8A,0x54,0x4C,0x54,0x0D,0x5C,0x4E,0x64,0x2B,0x4C,0x89,0x34,0xC8,0x24,0xA8,0x1C,0xA9,0x24,0xAA,0x2C,0xAA,0x24,0x89,0x24,0x88,0x2C, +0x68,0x2C,0xA9,0x2C,0xA9,0x2C,0x8A,0x2C,0xAA,0x2C,0xAA,0x24,0xC9,0x1C,0x09,0x1D,0xAC,0x35,0xED,0x3D,0xCD,0x3D,0xCD,0x35,0x8B,0x2D,0x8B,0x2D,0x8A,0x2D,0xC9,0x2D,0x6B,0x35,0xAC,0x3D,0xAC,0x45,0xAE,0x55,0xEA,0x33,0x60,0x00,0xA0,0x10,0x40,0x08,0x80,0x00,0x80,0x00,0x43,0x09,0x47,0x1A,0x09,0x13,0xA9,0x0B,0xAC,0x2C,0x2C,0x3D,0x2B,0x2D,0x2B,0x35,0xEA,0x2C,0x0A,0x35,0x09,0x35,0x2A,0x35,0x2A,0x35,0x2A,0x2D,0x0A,0x2D,0x0A,0x2D,0x09,0x35,0x6A,0x3D,0xAA,0x45,0x8D,0x6E,0x8D,0x76,0x6D,0x76,0x29,0x8E,0xEB,0x7D,0xAA,0x3C,0x28,0x14,0xE7,0x0B,0xCB,0x3C,0x05,0x13,0x4B,0x3C,0x6B,0x34,0x27,0x0B,0x06,0x13,0xC7,0x33,0xCC,0x6D,0xEA,0x65,0xCB,0x65,0xAC,0x6D, +0xAD,0x6D,0xCD,0x65,0xED,0x6D,0xEC,0x75,0xCA,0x6D,0xEA,0x6D,0x0B,0x6E,0xEB,0x75,0xAA,0x75,0xCA,0x75,0x0A,0x76,0xEB,0x75,0xCC,0x7D,0x63,0x2B,0xC2,0x1B,0x40,0x03,0xA0,0x03,0x00,0x13,0x85,0x2A,0x60,0x00,0xC5,0x1A,0x8C,0x45,0xC8,0x24,0x2E,0x66,0xB0,0x96,0x6C,0x9E,0xEC,0xA6,0x4C,0x8E,0x00,0x02,0x66,0x1A,0x46,0x22,0xE3,0x19,0xC4,0x64,0x70,0xA7,0x8F,0x7E,0xC7,0x3B,0xE2,0x11,0x24,0x22,0x03,0x12,0x6C,0x75,0xAD,0x96,0xCD,0xA6,0x43,0x33,0x02,0x0A,0x24,0x0A,0xC1,0x01,0xC8,0x64,0xCE,0xA6,0x6B,0x86,0xEC,0x9E,0x8A,0x96,0xCE,0x8E,0xEA,0x34,0xC9,0x0B,0xAA,0x1B,0x03,0x02,0xA6,0x0A,0xEC,0x2B,0xA2,0x01,0x0B,0x3C,0x43,0x0A,0x88,0x2B,0x6C,0x34,0x27,0x03, +0x40,0x00,0x22,0x19,0x60,0x00,0x60,0x00,0x60,0x08,0x80,0x08,0x40,0x08,0x40,0x08,0x60,0x08,0x60,0x08,0x60,0x08,0x60,0x08,0x80,0x08,0x60,0x00,0x80,0x08,0x40,0x00,0x80,0x00,0x26,0x3A,0xA0,0x08,0x60,0x00,0x80,0x08,0x46,0x3A,0x20,0x00,0x80,0x00,0x22,0x19,0x83,0x21,0x40,0x00,0x80,0x00,0xA4,0x29,0xE1,0x18,0x40,0x00,0x40,0x08,0x06,0x55,0xEF,0x8D,0xE0,0x00,0x60,0x00,0x60,0x00,0x01,0x11,0xA0,0x08,0x60,0x00,0xC1,0x10,0xC5,0x31,0x40,0x00,0x60,0x00,0x22,0x11,0xE4,0x31,0x20,0x00,0x60,0x00,0xC5,0x31,0xC1,0x10,0x40,0x00,0x60,0x00,0x40,0x00,0x80,0x08,0x60,0x00,0x60,0x00,0x60,0x08,0x60,0x08,0x60,0x08,0x60,0x08,0x60,0x08,0x60,0x08,0x60,0x08,0x60,0x08, +0x60,0x00,0x60,0x08,0x00,0x10,0x40,0x08,0xC8,0x32,0x6B,0x54,0xA0,0x00,0xA0,0x08,0x60,0x10,0x60,0x00,0x47,0x23,0xAF,0x75,0xE3,0x21,0x20,0x00,0x81,0x08,0x80,0x00,0x61,0x08,0x60,0x08,0x40,0x08,0x40,0x08,0x61,0x08,0x61,0x08,0x60,0x08,0x40,0x08,0x40,0x08,0x60,0x08,0x61,0x08,0x81,0x08,0x61,0x08,0x61,0x08,0x61,0x08,0x60,0x08,0x60,0x00,0x80,0x08,0x40,0x00,0xAC,0x54,0x50,0x6E,0x70,0x76,0x85,0x1A,0x63,0x09,0xE1,0x00,0x80,0x00,0x40,0x00,0x40,0x08,0x40,0x00,0x80,0x00,0xE1,0x08,0x23,0x11,0xE3,0x10,0x81,0x00,0xA1,0x00,0x01,0x09,0x42,0x09,0xE0,0x00,0x60,0x00,0xC2,0x08,0xC3,0x10,0xA2,0x10,0x40,0x00,0x60,0x00,0x80,0x00,0x61,0x22,0xCD,0x85,0x6E,0x8E, +0x6C,0x86,0x0E,0x97,0x2C,0x86,0xED,0x8D,0x0E,0x8E,0x50,0x86,0xA5,0x23,0xA3,0x1A,0xC0,0x00,0x61,0x09,0xA9,0x2B,0x29,0x1C,0xE8,0x13,0xE9,0x2B,0xE9,0x2B,0xE9,0x1B,0xC8,0x23,0xC8,0x23,0xE8,0x23,0xE8,0x1B,0x08,0x1C,0xE8,0x1B,0xE8,0x1B,0xE8,0x23,0xE9,0x23,0xC8,0x1B,0xC8,0x23,0xA9,0x23,0xCA,0x3B,0x65,0x22,0x60,0x00,0x4A,0x53,0xCB,0x43,0xCB,0x43,0xEB,0x4B,0xCB,0x43,0xEB,0x4B,0xEB,0x4B,0xCB,0x43,0xCC,0x4B,0xCC,0x4B,0xCB,0x4B,0xCB,0x4B,0xCB,0x43,0xCB,0x43,0xEC,0x4B,0xCC,0x43,0x6B,0x33,0x4B,0x2B,0x4C,0x2B,0x4D,0x2B,0x4F,0x2B,0x4E,0x23,0x4C,0x2B,0x6B,0x2B,0x4E,0x2B,0x2F,0x33,0x0A,0x2B,0xCC,0x7D,0x2A,0xA7,0x07,0x97,0x08,0x97,0x08,0x97,0x07,0x8F, +0xE5,0x96,0xE7,0x96,0x2B,0x8F,0x0F,0x7F,0x4B,0x35,0x6D,0x2D,0x2B,0x25,0x4A,0x2D,0x69,0x35,0x29,0x35,0x4B,0x2D,0x6C,0x2D,0x6B,0x25,0x6B,0x25,0x2B,0x2D,0xAA,0x24,0x6A,0x24,0x6A,0x24,0x69,0x24,0x89,0x24,0x8A,0x24,0x8A,0x24,0x69,0x24,0x69,0x24,0x6A,0x2C,0x4A,0x2C,0x0A,0x34,0x68,0x23,0x68,0x2B,0x65,0x0A,0xC6,0x1A,0x65,0x12,0x06,0x13,0x88,0x23,0xE6,0x0A,0xE9,0x23,0x09,0x24,0xE9,0x23,0x09,0x24,0xC8,0x23,0x0A,0x34,0x6B,0x44,0x8C,0x4C,0x6B,0x54,0x6B,0x54,0x4B,0x54,0x2B,0x54,0xC5,0x2A,0xE5,0x22,0xE5,0x22,0xE5,0x22,0xE5,0x22,0xE5,0x22,0xE5,0x22,0xE5,0x22,0xE5,0x22,0xE5,0x22,0xC5,0x22,0x06,0x2B,0xE5,0x22,0xE5,0x22,0xE5,0x22,0x26,0x2B,0xC4,0x1A, +0x0B,0x4C,0x2B,0x4C,0x4C,0x54,0x2B,0x4C,0x2B,0x54,0x2C,0x54,0x0B,0x54,0x2C,0x54,0x2B,0x54,0x2B,0x54,0x2B,0x54,0x4B,0x4C,0x4B,0x4C,0x2B,0x54,0x2B,0x54,0x0B,0x54,0x2C,0x54,0x2C,0x54,0x2B,0x54,0x2B,0x54,0x2B,0x54,0x2B,0x54,0x2B,0x54,0x2B,0x54,0x2C,0x54,0x2B,0x54,0x4A,0x54,0xCA,0x5C,0x09,0x65,0x07,0x5D,0x26,0x5D,0x05,0x5D,0x06,0x5D,0x06,0x5D,0x07,0x5D,0x06,0x5D,0xE6,0x5C,0x06,0x5D,0x07,0x5D,0x06,0x5D,0x06,0x5D,0x06,0x5D,0x67,0x65,0x26,0x5D,0x06,0x55,0x27,0x5D,0xC6,0x54,0xE6,0x5C,0xE7,0x5C,0x0F,0x9F,0x6B,0x86,0x08,0x7E,0x27,0x7E,0x46,0x7E,0x06,0x76,0xE7,0x75,0x09,0x7E,0x09,0x7E,0x29,0x7E,0xE7,0x75,0x07,0x7E,0xC7,0x75,0xE9,0x75,0xEA,0x7D, +0x0C,0x86,0xC5,0x54,0x02,0x3C,0x62,0x2B,0xA8,0x3B,0x6C,0x54,0xAB,0x5C,0xAB,0x75,0x68,0x6D,0xC7,0x5C,0x28,0x4C,0x2A,0x54,0x2A,0x4C,0x6D,0x6D,0x2D,0x86,0x8A,0x75,0x28,0x5D,0x88,0x4C,0x6A,0x54,0x6C,0x54,0x2B,0x54,0x0B,0x54,0x2B,0x54,0x4A,0x44,0x28,0x2C,0x49,0x24,0x49,0x24,0x49,0x24,0x49,0x24,0x49,0x24,0x49,0x24,0x6A,0x2C,0x67,0x1C,0x68,0x2C,0x28,0x2C,0x29,0x2C,0x69,0x24,0x68,0x1C,0xA9,0x24,0xC9,0x24,0x8C,0x35,0xA8,0x14,0x67,0x0C,0x8C,0x2D,0xCD,0x25,0xEC,0x25,0x8B,0x1D,0xCC,0x2D,0xAB,0x2D,0x6B,0x2D,0xA5,0x03,0xEC,0x44,0xAA,0x3B,0x40,0x00,0x81,0x08,0xA0,0x08,0x21,0x01,0x65,0x1A,0xC7,0x22,0x08,0x23,0xCB,0x23,0xE9,0x0B,0x4A,0x1C,0x0C,0x35, +0x2A,0x25,0x4B,0x35,0x8D,0x45,0x0B,0x35,0x2B,0x35,0x2B,0x35,0x4B,0x35,0x2B,0x2D,0x2B,0x35,0x0B,0x35,0x2B,0x35,0x2A,0x35,0x6A,0x3D,0x2C,0x5E,0xEA,0x5D,0x4C,0x76,0x2A,0x96,0xEC,0x7D,0xAA,0x3C,0x28,0x14,0xE7,0x0B,0xCB,0x3C,0x05,0x13,0x4A,0x3C,0x6B,0x34,0x27,0x0B,0x06,0x13,0xC7,0x33,0xCB,0x6D,0xEA,0x65,0xEA,0x6D,0xAC,0x6D,0x8C,0x6D,0xED,0x75,0x0C,0x6E,0xEA,0x6D,0x09,0x76,0x2A,0x76,0x0A,0x76,0xCA,0x75,0xEB,0x7D,0xEA,0x75,0xE9,0x6D,0xEB,0x75,0x0D,0x86,0xE1,0x22,0xA1,0x23,0x80,0x03,0x80,0x03,0xA3,0x23,0x43,0x22,0x80,0x00,0x26,0x1B,0x6C,0x35,0xC8,0x1C,0x4E,0x66,0xAE,0x96,0x8B,0x9E,0x89,0x96,0x8B,0x96,0x8E,0x96,0x6F,0x96,0x4F,0x96,0x8D,0x9E, +0x4A,0x9E,0xEF,0x96,0xAB,0x55,0x6C,0x55,0x90,0x96,0x6F,0xA6,0xED,0x8D,0x8E,0x96,0xAD,0x96,0x8B,0x96,0xAD,0x96,0x8E,0x8E,0xCF,0x8E,0xAE,0x8E,0xAC,0x8E,0x8A,0x8E,0x2A,0x7E,0xAB,0x9E,0x8B,0x96,0xEE,0x8E,0xEB,0x34,0xEA,0x0B,0xEA,0x1B,0x07,0x0B,0x48,0x0B,0x2C,0x24,0x04,0x02,0x0B,0x34,0x22,0x02,0x27,0x1B,0x8D,0x3C,0x07,0x03,0x80,0x00,0x02,0x11,0xC1,0x08,0x80,0x08,0x40,0x00,0x60,0x08,0x60,0x08,0x80,0x08,0x60,0x08,0x40,0x00,0x80,0x08,0x80,0x08,0x40,0x00,0xA0,0x08,0x60,0x00,0x40,0x00,0xE5,0x31,0x83,0x21,0x40,0x00,0x80,0x08,0x84,0x29,0xC0,0x10,0x60,0x00,0x60,0x00,0x26,0x3A,0x01,0x11,0x40,0x00,0x80,0x00,0x06,0x3A,0x80,0x08,0x40,0x00,0x60,0x08, +0xE6,0x4C,0xCF,0x85,0xE0,0x00,0x61,0x08,0x60,0x00,0x42,0x19,0xC0,0x08,0x60,0x08,0x40,0x00,0x06,0x3A,0xC1,0x08,0x80,0x00,0xA0,0x08,0x62,0x21,0xC0,0x08,0x80,0x00,0x80,0x08,0x47,0x42,0x80,0x08,0x80,0x08,0x80,0x08,0x40,0x00,0x80,0x08,0x60,0x00,0x60,0x08,0x60,0x08,0x60,0x08,0x60,0x08,0x60,0x08,0x60,0x08,0x60,0x08,0x60,0x08,0xA0,0x00,0x80,0x08,0x40,0x08,0xE2,0x10,0x8F,0x74,0x40,0x01,0x80,0x00,0x40,0x08,0x61,0x10,0x60,0x00,0x46,0x2B,0xAF,0x75,0x03,0x22,0x00,0x00,0x81,0x08,0x80,0x00,0x40,0x08,0x40,0x08,0x40,0x08,0x60,0x08,0x61,0x08,0x81,0x08,0x61,0x08,0x60,0x08,0x61,0x08,0x60,0x08,0x60,0x00,0x60,0x08,0x60,0x08,0x61,0x08,0x60,0x08,0x40,0x00, +0x60,0x00,0xE2,0x10,0xA0,0x00,0xCC,0x54,0x2F,0x66,0x50,0x76,0x44,0x12,0x60,0x00,0x60,0x00,0x60,0x00,0x80,0x00,0xC1,0x08,0x03,0x11,0x22,0x11,0xC1,0x08,0x60,0x00,0xA0,0x00,0x01,0x09,0x21,0x09,0xA0,0x00,0xA0,0x00,0x02,0x09,0x23,0x19,0xC2,0x10,0x81,0x08,0x61,0x08,0x60,0x00,0x00,0x09,0xE2,0x32,0xAE,0x96,0x4A,0x7E,0x69,0x7E,0x69,0x86,0x69,0x86,0x29,0x7E,0x4B,0x96,0xEB,0x8D,0x2C,0x86,0x8E,0x86,0x47,0x4C,0x40,0x01,0x46,0x33,0x28,0x34,0xC7,0x0B,0xE8,0x1B,0xA8,0x1B,0xC9,0x23,0xC9,0x1B,0xC8,0x23,0xC8,0x23,0xC8,0x1B,0xC8,0x1B,0xC8,0x1B,0xC8,0x1B,0xC8,0x23,0xA8,0x23,0xC8,0x23,0xC9,0x23,0xC8,0x23,0xA8,0x1B,0xA9,0x2B,0x48,0x2B,0xC7,0x22,0xAB,0x4B, +0xAC,0x43,0xCC,0x4B,0xCB,0x43,0x8A,0x43,0xCB,0x4B,0xCC,0x4B,0xCC,0x4B,0xAC,0x43,0xAC,0x43,0xAB,0x43,0xCB,0x43,0xAB,0x43,0xCB,0x43,0xCC,0x43,0xAC,0x3B,0x2B,0x33,0x4B,0x2B,0x4C,0x2B,0x2E,0x2B,0x2F,0x2B,0x2E,0x23,0x4C,0x23,0x6C,0x2B,0x4D,0x2B,0x2E,0x33,0xE8,0x22,0x2B,0x86,0x08,0x97,0x27,0x97,0xE7,0x8E,0x28,0x97,0x07,0x8F,0xE8,0x9E,0xC9,0x96,0x0C,0x97,0x69,0x4D,0xCA,0x2C,0xAB,0x1C,0xEA,0x24,0xC9,0x24,0xC8,0x2C,0xA9,0x34,0xAA,0x2C,0xAA,0x24,0xAA,0x1C,0xEA,0x24,0xCA,0x24,0x48,0x1C,0x08,0x1C,0x09,0x24,0x09,0x24,0x09,0x24,0x29,0x24,0x09,0x24,0x08,0x24,0x09,0x24,0x09,0x24,0xC8,0x23,0xE9,0x33,0x27,0x1B,0xE6,0x1A,0x44,0x12,0x45,0x12,0x65,0x1A, +0xE6,0x12,0xC6,0x12,0xC5,0x0A,0xA9,0x23,0x88,0x1B,0x88,0x1B,0x67,0x13,0x88,0x1B,0x88,0x23,0x4B,0x3C,0x8C,0x4C,0x6C,0x54,0x2B,0x54,0x4C,0x5C,0xA9,0x4B,0xA5,0x2A,0xE5,0x22,0xE5,0x22,0xE5,0x22,0xE5,0x22,0xE5,0x22,0xE5,0x22,0xE5,0x22,0xE5,0x22,0x06,0x23,0xE5,0x22,0x06,0x2B,0xA4,0x1A,0xE5,0x22,0xE5,0x22,0xE4,0x22,0x05,0x23,0x2C,0x54,0x2B,0x54,0xEB,0x4B,0x4C,0x54,0xEB,0x4B,0x4C,0x54,0x2B,0x4C,0x2B,0x54,0x2B,0x54,0x0B,0x54,0x0B,0x54,0x0B,0x54,0x0B,0x54,0x0B,0x54,0x2B,0x54,0x2B,0x54,0x0C,0x54,0x0C,0x54,0x2B,0x54,0x2B,0x54,0x2A,0x54,0x2B,0x54,0x0C,0x54,0x0C,0x54,0x0C,0x54,0xEB,0x4B,0x4A,0x54,0xAA,0x5C,0xA8,0x54,0xC6,0x54,0xC5,0x54,0xE5,0x54, +0xC7,0x54,0xA7,0x54,0xA7,0x54,0xA7,0x54,0xA6,0x54,0xA5,0x54,0xC5,0x54,0xC5,0x54,0xC6,0x54,0xE7,0x54,0x66,0x4C,0xC7,0x54,0x08,0x5D,0xE6,0x54,0x66,0x65,0xC7,0x75,0x0A,0x7E,0x8A,0x86,0x67,0x86,0xA7,0x8E,0xC8,0x8E,0xEA,0x8E,0x69,0x86,0x69,0x86,0xC7,0x75,0xA6,0x6D,0x88,0x6D,0xAA,0x75,0x49,0x6D,0xC9,0x75,0x08,0x7E,0x67,0x86,0x08,0x7E,0x2B,0x86,0x8B,0x75,0x6C,0x6D,0x4C,0x6D,0x27,0x4C,0x49,0x6D,0x26,0x65,0x84,0x4C,0xC6,0x3B,0xEB,0x4B,0x4C,0x5C,0x6B,0x6D,0x2B,0x7E,0x07,0x5D,0xA8,0x54,0x2B,0x4C,0x0B,0x54,0x0B,0x54,0x0B,0x54,0x2A,0x54,0x6A,0x54,0x69,0x4C,0x49,0x3C,0xE8,0x23,0x09,0x24,0x0A,0x24,0x09,0x24,0x29,0x24,0xE8,0x23,0xC8,0x1B,0xEA,0x23, +0x28,0x1C,0x08,0x24,0xE7,0x23,0x08,0x2C,0x28,0x1C,0x08,0x1C,0x49,0x2C,0x08,0x24,0x2C,0x35,0xEA,0x24,0x88,0x14,0x6F,0x46,0x73,0x57,0xB0,0x36,0xCE,0x25,0x55,0x6F,0xB0,0x46,0x2A,0x1D,0xA9,0x1C,0xAB,0x3C,0x89,0x3B,0x80,0x00,0x81,0x00,0x63,0x09,0x28,0x23,0x89,0x23,0xA9,0x2B,0x69,0x23,0x89,0x1B,0xA8,0x0B,0x6A,0x24,0x0C,0x3D,0x09,0x25,0x27,0x14,0x28,0x1C,0x8A,0x2C,0xEB,0x34,0xEB,0x2C,0xCA,0x24,0x2B,0x35,0x4C,0x3D,0x2C,0x35,0x4C,0x3D,0x0A,0x35,0x2A,0x3D,0x86,0x2C,0x24,0x2C,0x6C,0x7E,0x2A,0x96,0xEC,0x7D,0xAA,0x3C,0x29,0x14,0xE7,0x0B,0xCB,0x3C,0x05,0x13,0x4B,0x3C,0x6C,0x34,0x06,0x0B,0xE6,0x12,0xC6,0x33,0xCB,0x75,0x0A,0x6E,0xEA,0x6D,0xCC,0x75, +0xCB,0x75,0x2C,0x76,0x0A,0x6E,0x0A,0x76,0x4A,0x7E,0x29,0x7E,0xEA,0x75,0x0C,0x86,0xEC,0x7D,0xAE,0x8E,0x0B,0x66,0x2D,0x6E,0x0E,0x76,0x63,0x2B,0x82,0x1B,0x40,0x03,0x20,0x02,0x26,0x34,0x23,0x1A,0x80,0x00,0x67,0x13,0x6C,0x35,0xE9,0x1C,0x2D,0x66,0x6C,0x8E,0xAA,0x9E,0x68,0x96,0xCA,0x96,0x6B,0x8E,0x2B,0x8E,0x6A,0x8E,0xA9,0x8E,0x8C,0x9E,0xAE,0x7E,0x26,0x0C,0x66,0x14,0x6D,0x7E,0x8C,0x9E,0x0A,0x86,0x8B,0x8E,0x8B,0x8E,0xAB,0x96,0x8B,0x96,0x4A,0x86,0xAB,0x86,0xCA,0x86,0xAA,0x86,0x8A,0x86,0x4C,0x86,0x6B,0x96,0xCB,0x9E,0xCE,0x8E,0xCA,0x2C,0x0B,0x0C,0x2C,0x1C,0x4D,0x24,0x4C,0x24,0xCE,0x2C,0x6C,0x24,0xCD,0x34,0x4B,0x2C,0xAD,0x3C,0x4C,0x2C,0x28,0x0B, +0x60,0x00,0x22,0x19,0xA1,0x08,0x80,0x08,0x80,0x08,0x60,0x08,0x40,0x08,0x40,0x08,0x60,0x08,0x60,0x08,0x60,0x08,0x80,0x08,0x40,0x00,0x80,0x08,0x20,0x00,0xA4,0x29,0xE5,0x29,0x20,0x00,0x80,0x00,0xA0,0x08,0x46,0x42,0x40,0x00,0x80,0x08,0xE1,0x10,0x46,0x3A,0x20,0x00,0xA0,0x08,0x80,0x00,0xE6,0x31,0x40,0x00,0xA0,0x10,0x40,0x00,0xC5,0x4C,0xCE,0x85,0xE0,0x00,0x81,0x00,0x60,0x00,0x62,0x19,0x01,0x11,0x60,0x08,0x40,0x00,0xE2,0x18,0xE6,0x31,0x40,0x00,0x40,0x00,0x21,0x19,0x83,0x21,0x40,0x00,0x60,0x00,0xE1,0x10,0x27,0x3A,0x40,0x00,0x80,0x08,0x80,0x08,0x60,0x00,0x80,0x08,0x60,0x08,0x60,0x08,0x60,0x08,0x60,0x08,0x60,0x08,0x60,0x08,0x60,0x08,0x60,0x08, +0x60,0x00,0xC0,0x08,0x40,0x00,0x4A,0x5B,0x83,0x19,0x40,0x00,0xC1,0x08,0x40,0x08,0x61,0x10,0x60,0x00,0x66,0x2B,0xCE,0x75,0x44,0x22,0x20,0x00,0x81,0x10,0x80,0x00,0x40,0x08,0x40,0x08,0x60,0x10,0x60,0x08,0x60,0x08,0x60,0x08,0x60,0x08,0x60,0x00,0x60,0x00,0x60,0x00,0x60,0x00,0x60,0x00,0x60,0x00,0x80,0x00,0xA1,0x08,0xC1,0x10,0x21,0x09,0x83,0x19,0xE0,0x00,0x0D,0x5D,0x4F,0x66,0x50,0x76,0x44,0x1A,0x60,0x00,0xA1,0x10,0x01,0x11,0x42,0x09,0x22,0x01,0xA0,0x00,0x80,0x00,0xA1,0x08,0xA1,0x10,0x00,0x09,0xE0,0x00,0x01,0x09,0x22,0x11,0x22,0x11,0xE1,0x08,0x60,0x00,0x40,0x00,0x40,0x00,0x80,0x00,0x00,0x1A,0xED,0x8D,0x2B,0x8E,0xC8,0x75,0x28,0x76,0x27,0x76, +0xE7,0x7D,0xE7,0x75,0x08,0x7E,0xA7,0x7D,0xC8,0x85,0xE8,0x7D,0x09,0x76,0x6C,0x86,0x49,0x6D,0x6E,0x8E,0x42,0x13,0xA5,0x13,0xC7,0x1B,0xA7,0x1B,0x87,0x13,0xE9,0x13,0xA8,0x1B,0x88,0x1B,0x88,0x1B,0x88,0x1B,0x88,0x1B,0x87,0x1B,0x87,0x1B,0x88,0x1B,0x88,0x1B,0x87,0x13,0xA8,0x1B,0xA8,0x1B,0x68,0x1B,0x48,0x23,0x0C,0x44,0xCB,0x43,0xCC,0x43,0xAB,0x43,0x8B,0x43,0xAB,0x43,0xAB,0x43,0x6B,0x43,0xAC,0x4B,0x8B,0x43,0xAB,0x43,0xAB,0x43,0xAB,0x43,0xAA,0x43,0xAB,0x43,0xCC,0x43,0x6C,0x33,0x0B,0x2B,0x2B,0x2B,0x2C,0x2B,0x0E,0x2B,0x0E,0x23,0x2E,0x23,0x2C,0x23,0x2C,0x23,0x2C,0x23,0x0B,0x23,0xC8,0x3B,0x0D,0x9F,0x08,0x97,0x27,0x97,0x08,0x8F,0x08,0x87,0x08,0x87, +0xC9,0x8E,0xEA,0x96,0xAB,0x8E,0xE4,0x2B,0x27,0x2C,0x6A,0x24,0x6A,0x1C,0x28,0x1C,0x08,0x24,0x09,0x2C,0xE9,0x2B,0xE8,0x23,0x49,0x24,0x69,0x2C,0x69,0x24,0x4A,0x24,0x2A,0x2C,0x09,0x2C,0xA8,0x1B,0x87,0x1B,0xA8,0x23,0xC8,0x23,0xA7,0x1B,0xA7,0x1B,0xA7,0x1B,0xA8,0x1B,0xC9,0x23,0xC5,0x0A,0x43,0x02,0x65,0x12,0x65,0x1A,0x04,0x12,0x85,0x02,0xC6,0x0A,0xE6,0x12,0x47,0x1B,0x06,0x13,0x06,0x1B,0x07,0x1B,0x27,0x1B,0x06,0x1B,0x6C,0x4C,0x6C,0x4C,0x2B,0x4C,0x4C,0x54,0x2B,0x54,0xE7,0x32,0x85,0x2A,0xC5,0x22,0xC5,0x22,0xC5,0x22,0xC5,0x22,0xC5,0x22,0xC5,0x22,0xC5,0x22,0xC5,0x22,0xA5,0x1A,0xE6,0x22,0xA5,0x1A,0xC5,0x22,0xE5,0x22,0xC5,0x22,0xE5,0x22,0xE4,0x22, +0xEB,0x53,0xCA,0x4B,0x0B,0x54,0x0B,0x54,0x0B,0x4C,0x0B,0x4C,0x0B,0x44,0x2C,0x4C,0x0B,0x4C,0xEB,0x53,0xEB,0x53,0xEB,0x53,0xEB,0x53,0xEB,0x53,0x0B,0x4C,0x2B,0x44,0xEC,0x4B,0x0C,0x4C,0x0B,0x4C,0x0A,0x4C,0x0A,0x4C,0x0B,0x54,0xEB,0x53,0xEC,0x53,0xEC,0x4B,0x0C,0x54,0x2A,0x4C,0xE7,0x43,0x26,0x44,0x65,0x4C,0x64,0x4C,0x43,0x44,0x88,0x54,0x47,0x4C,0x47,0x4C,0x67,0x54,0x66,0x54,0x46,0x4C,0x66,0x54,0x66,0x4C,0x65,0x4C,0x66,0x4C,0x86,0x4C,0xCB,0x75,0x8C,0x8E,0x4A,0x86,0xAA,0x8E,0x89,0x8E,0x8B,0x86,0x49,0x86,0x68,0x86,0x88,0x86,0x48,0x7E,0x49,0x7E,0x6A,0x86,0x69,0x86,0x89,0x86,0xC6,0x75,0x46,0x65,0x48,0x65,0x69,0x6D,0x4C,0x86,0x8A,0x8E,0x88,0x86, +0xA8,0x8E,0x6A,0x8E,0x4D,0x8E,0x8D,0x8E,0x8C,0x8E,0x6A,0x8E,0x25,0x65,0xC2,0x3B,0xA5,0x33,0x2A,0x4C,0x4A,0x5C,0x6C,0x7D,0xEB,0x7D,0xC5,0x4C,0xA7,0x4C,0x28,0x4C,0xEC,0x53,0xEC,0x53,0xCB,0x4B,0xEB,0x53,0xEA,0x53,0xEA,0x43,0x2B,0x44,0x0A,0x34,0xC9,0x23,0xA9,0x23,0xA8,0x23,0xC8,0x23,0xE8,0x23,0xC9,0x23,0xC9,0x23,0xCA,0x23,0xE9,0x23,0xA8,0x1B,0xC8,0x1B,0x09,0x24,0xE8,0x23,0xE8,0x23,0xE9,0x2B,0xC8,0x1B,0xCA,0x2C,0x0A,0x1D,0x6E,0x3E,0x93,0x57,0x53,0x57,0x14,0x57,0x15,0x67,0x95,0x66,0x93,0x4F,0x11,0x4F,0x09,0x25,0xA9,0x2C,0xA9,0x2B,0x80,0x00,0xA5,0x09,0x4B,0x2B,0x8A,0x13,0x89,0x13,0x68,0x13,0x28,0x1B,0x68,0x1B,0x88,0x13,0x6A,0x2C,0x0C,0x45, +0xA7,0x1C,0x64,0x03,0x66,0x0B,0x26,0x03,0xA7,0x13,0x45,0x03,0x86,0x03,0xA6,0x03,0xC7,0x0B,0xC7,0x13,0x08,0x1C,0x48,0x1C,0x4B,0x45,0xE8,0x3C,0xC6,0x44,0x4B,0x76,0x2A,0x96,0xEC,0x7D,0xAA,0x34,0x29,0x0C,0xE7,0x0B,0xCB,0x3C,0x05,0x13,0x2A,0x3C,0x6C,0x34,0x06,0x0B,0xE5,0x12,0xC6,0x33,0xEB,0x75,0x09,0x76,0xEA,0x75,0xCC,0x75,0xCA,0x7D,0x2B,0x7E,0x4A,0x7E,0x4A,0x7E,0x29,0x7E,0x09,0x7E,0x2C,0x86,0x2F,0x8E,0xCE,0x7D,0xC9,0x44,0xA4,0x0B,0xA9,0x2C,0xCB,0x34,0x8A,0x34,0xA8,0x34,0x24,0x14,0x40,0x03,0xE6,0x23,0xA4,0x1A,0xE0,0x00,0x25,0x03,0x8C,0x2D,0xE9,0x1C,0x4D,0x66,0xAD,0x8E,0x6A,0x96,0x8A,0x96,0x8B,0x96,0x0F,0xA7,0x6D,0x8E,0x0E,0x97,0x0D,0x8F, +0x0E,0x7E,0xAC,0x45,0x2E,0x36,0x8A,0x2D,0x10,0x8F,0xCF,0xA6,0x8C,0x96,0xAB,0x7E,0xCB,0x7E,0xAB,0x86,0xAD,0x9E,0xCE,0xA6,0x0E,0xA7,0xED,0x9E,0xEC,0x96,0x8C,0x86,0x0C,0x86,0x8B,0x96,0x69,0x8E,0xCD,0x86,0xAB,0x34,0xAB,0x0B,0x2E,0x1C,0x0C,0x1C,0x4C,0x1C,0x8D,0x24,0x4C,0x14,0x0E,0x2D,0xAC,0x14,0x2F,0x2D,0xAD,0x2C,0xE7,0x0A,0x60,0x00,0x43,0x19,0x80,0x00,0x60,0x00,0x80,0x08,0x60,0x08,0x60,0x08,0x80,0x08,0x60,0x08,0x80,0x08,0x60,0x00,0x80,0x08,0x80,0x08,0x60,0x00,0x01,0x11,0xE5,0x31,0x20,0x00,0xC1,0x08,0x20,0x00,0xA8,0x4A,0x60,0x00,0xA0,0x08,0x40,0x00,0xC5,0x31,0x80,0x08,0x80,0x08,0x60,0x00,0x60,0x00,0xC9,0x52,0x00,0x00,0xA1,0x10,0x60,0x08, +0xC5,0x44,0xAE,0x7D,0xE0,0x00,0x81,0x00,0x60,0x00,0x41,0x19,0x83,0x21,0x40,0x00,0x80,0x10,0x40,0x00,0x85,0x21,0x81,0x00,0x80,0x00,0x60,0x00,0x46,0x3A,0xC0,0x08,0x80,0x00,0x20,0x00,0x22,0x19,0x63,0x21,0x20,0x00,0x80,0x08,0x80,0x08,0x60,0x00,0x60,0x08,0x60,0x08,0x60,0x08,0x60,0x08,0x60,0x08,0x60,0x08,0x60,0x08,0x60,0x08,0xA1,0x18,0x40,0x00,0x65,0x2A,0xC8,0x42,0x60,0x00,0x81,0x10,0x41,0x00,0x41,0x08,0x61,0x10,0x40,0x00,0x65,0x33,0xEE,0x75,0x64,0x22,0x20,0x00,0x81,0x10,0x80,0x08,0x80,0x08,0x60,0x08,0x80,0x08,0x60,0x08,0x60,0x08,0x60,0x08,0x60,0x08,0x80,0x08,0x60,0x00,0x80,0x00,0xC1,0x08,0xE1,0x08,0x01,0x09,0x01,0x09,0x22,0x11,0x63,0x11, +0x00,0x01,0x01,0x09,0x60,0x00,0xCC,0x54,0x4F,0x66,0x71,0x76,0x85,0x22,0xC1,0x10,0xE2,0x18,0xA0,0x08,0x60,0x00,0x60,0x00,0xE2,0x08,0x22,0x11,0x43,0x11,0x23,0x11,0x02,0x11,0xC1,0x08,0xE2,0x10,0x60,0x00,0x60,0x00,0x60,0x00,0xC0,0x00,0x24,0x43,0xA8,0x64,0x48,0x6D,0x2A,0x7E,0x29,0x7E,0x28,0x7E,0x08,0x7E,0x86,0x6D,0x86,0x75,0xA7,0x6D,0x87,0x6D,0x86,0x6D,0x08,0x7E,0x48,0x86,0x89,0x86,0x68,0x7E,0x48,0x7E,0x8A,0x86,0xC9,0x6D,0xAA,0x6D,0xC8,0x4C,0x64,0x1B,0x86,0x23,0xA7,0x1B,0x46,0x0B,0x67,0x13,0x67,0x1B,0x47,0x1B,0x47,0x23,0x47,0x23,0x47,0x1B,0x47,0x1B,0x67,0x13,0x67,0x13,0x87,0x1B,0x67,0x1B,0x27,0x1B,0x48,0x23,0x69,0x33,0xCB,0x3B,0x8A,0x3B, +0x6B,0x3B,0x8B,0x3B,0x8B,0x3B,0xAB,0x43,0x6A,0x43,0x6A,0x3B,0x8B,0x43,0x8B,0x43,0x8B,0x43,0x8B,0x43,0xAA,0x43,0x8A,0x3B,0x8B,0x3B,0x8C,0x3B,0x2C,0x2B,0xEB,0x2A,0xEC,0x2A,0xEC,0x22,0xED,0x22,0x0D,0x23,0x2D,0x23,0x4D,0x23,0x4D,0x23,0x2B,0x23,0xE7,0x1A,0x4B,0x65,0x4C,0x9F,0xE7,0x8E,0xE7,0x8E,0x29,0x8F,0x29,0x87,0x29,0x87,0x49,0x7F,0x2A,0x87,0x4A,0x7E,0x83,0x2B,0x46,0x23,0x69,0x23,0x28,0x13,0x89,0x1B,0x47,0x1B,0x48,0x23,0x68,0x23,0x88,0x23,0x08,0x2C,0x09,0x2C,0xE9,0x2B,0xEA,0x2B,0x0A,0x34,0xEA,0x2B,0x68,0x23,0x27,0x1B,0x47,0x1B,0x67,0x1B,0x47,0x1B,0x87,0x1B,0x8B,0x34,0xCC,0x3C,0xCC,0x3C,0xC5,0x02,0x64,0x02,0xC6,0x12,0x28,0x2B,0xE3,0x01, +0x88,0x23,0x88,0x23,0xC6,0x12,0x44,0x0A,0x45,0x12,0x65,0x1A,0x44,0x12,0x03,0x0A,0x07,0x2B,0x4C,0x54,0x2B,0x4C,0x0B,0x4C,0x6C,0x54,0x89,0x3B,0x85,0x1A,0xC5,0x22,0xC5,0x22,0xC5,0x22,0xC5,0x22,0xC5,0x22,0xC5,0x22,0xC5,0x22,0xA5,0x1A,0xA5,0x1A,0xA5,0x1A,0xC6,0x22,0xA5,0x1A,0xE6,0x22,0xA4,0x1A,0xC5,0x22,0xE5,0x22,0x83,0x12,0xEB,0x53,0xEB,0x53,0xEB,0x53,0xCA,0x4B,0x0B,0x4C,0x0B,0x44,0x2C,0x44,0xEB,0x3B,0x0B,0x44,0xEB,0x4B,0xCB,0x53,0xCB,0x53,0xCB,0x53,0xEB,0x4B,0x0B,0x44,0x2B,0x44,0xEC,0x4B,0xEC,0x4B,0xEB,0x4B,0x0A,0x4C,0x0A,0x4C,0xEB,0x4B,0xEB,0x4B,0xCC,0x4B,0xCC,0x4B,0x0C,0x54,0xC9,0x43,0xEB,0x64,0xED,0x7D,0x0C,0x7E,0x2C,0x86,0x0A,0x7E, +0x48,0x4C,0x06,0x44,0x06,0x44,0x26,0x4C,0x06,0x4C,0x06,0x44,0x06,0x44,0x06,0x44,0x26,0x44,0x24,0x44,0xA9,0x75,0x09,0x7E,0xC7,0x75,0x28,0x7E,0xE7,0x7D,0xE7,0x75,0x08,0x76,0x08,0x76,0x08,0x76,0x08,0x76,0x29,0x7E,0x08,0x76,0x08,0x76,0x07,0x76,0x07,0x76,0x27,0x76,0xE7,0x75,0x65,0x65,0xE8,0x75,0xE9,0x7D,0xC9,0x75,0xE9,0x75,0x05,0x7E,0xE6,0x7D,0xE7,0x7D,0xE7,0x75,0x06,0x7E,0xE5,0x7D,0x08,0x86,0x2B,0x6D,0x0A,0x44,0x0A,0x4C,0x2A,0x75,0x06,0x6D,0xA5,0x54,0x26,0x3C,0x08,0x44,0x2A,0x4C,0xEA,0x4B,0x0A,0x54,0xCA,0x53,0xEB,0x5B,0xAC,0x53,0x0E,0x54,0xB1,0x54,0xEC,0x33,0x68,0x23,0x87,0x23,0x87,0x1B,0x87,0x1B,0x88,0x1B,0x88,0x1B,0x88,0x1B,0x87,0x13, +0x49,0x23,0x69,0x1B,0xA8,0x13,0x87,0x13,0x67,0x1B,0x88,0x23,0x67,0x1B,0xC8,0x1B,0x69,0x24,0x6B,0x25,0x31,0x47,0x51,0x3F,0x32,0x57,0x76,0x7F,0xDB,0x9F,0x76,0x76,0x53,0x3F,0x93,0x57,0xCC,0x2D,0x88,0x1C,0xA7,0x1B,0xA0,0x00,0x06,0x02,0x6B,0x1B,0x8A,0x0B,0x89,0x03,0x89,0x1B,0x48,0x23,0x48,0x1B,0x47,0x13,0x4A,0x2C,0x0C,0x45,0x4A,0x35,0x0A,0x35,0xCB,0x34,0x6B,0x34,0x6B,0x2C,0x4A,0x24,0xE8,0x13,0x08,0x14,0x08,0x14,0x66,0x0B,0x86,0x0B,0xA6,0x0B,0x2B,0x3D,0xCC,0x5D,0x8D,0x7E,0x8C,0x86,0x2A,0x96,0xEC,0x7D,0xAA,0x34,0x29,0x0C,0xE8,0x03,0xCB,0x3C,0x05,0x13,0x2A,0x3C,0x6C,0x34,0x06,0x0B,0xE5,0x12,0xC6,0x33,0xEB,0x75,0x09,0x76,0xEA,0x75,0xCC,0x7D, +0xCA,0x85,0x0A,0x7E,0x4A,0x86,0x49,0x86,0x29,0x86,0x4B,0x8E,0xED,0x8D,0x49,0x5C,0xE5,0x22,0x04,0x0B,0x69,0x1C,0x2D,0x2D,0xED,0x2C,0x0D,0x35,0xEB,0x2C,0x4A,0x25,0x6A,0x35,0xCA,0x44,0x6C,0x54,0x4B,0x44,0xEC,0x3C,0x2B,0x25,0x09,0x25,0xAA,0x55,0x0B,0x7E,0x6C,0x96,0x4C,0x8E,0x0D,0x86,0x07,0x4C,0x28,0x4C,0x67,0x3C,0xA7,0x3C,0x8F,0x4D,0x91,0x46,0xAF,0x36,0x6E,0x4E,0x26,0x3C,0x28,0x5C,0xE5,0x4B,0x2A,0x6E,0xEB,0x76,0xAB,0x7E,0xA7,0x5C,0x07,0x54,0x07,0x5C,0xE5,0x4B,0x8A,0x75,0x4D,0x8E,0xEC,0x7D,0x6B,0x96,0x89,0x8E,0x8C,0x86,0x8A,0x34,0xCC,0x13,0xEE,0x1B,0xCC,0x13,0x2C,0x1C,0xAD,0x24,0x6C,0x14,0x0E,0x1D,0x0E,0x0D,0x50,0x25,0xAD,0x24,0xE7,0x0A, +0x60,0x00,0x22,0x19,0xC1,0x08,0x80,0x08,0x80,0x08,0x60,0x08,0x60,0x08,0x60,0x08,0x80,0x08,0x60,0x00,0x80,0x08,0x80,0x08,0x80,0x08,0x80,0x00,0xA8,0x4A,0x80,0x00,0xC0,0x08,0x20,0x00,0x47,0x3A,0x22,0x19,0xA0,0x08,0x60,0x00,0x80,0x08,0x83,0x29,0x80,0x00,0xC0,0x08,0x40,0x00,0xA4,0x29,0x43,0x21,0x60,0x00,0x80,0x08,0x60,0x00,0xA5,0x44,0x8E,0x7D,0xE0,0x00,0x60,0x00,0x60,0x00,0x01,0x11,0xE4,0x31,0x40,0x00,0x80,0x10,0x40,0x00,0x44,0x19,0xA1,0x08,0xA0,0x08,0x60,0x00,0xC0,0x08,0x26,0x32,0x60,0x00,0xA0,0x08,0x40,0x00,0xC5,0x31,0x22,0x19,0x40,0x00,0xA0,0x08,0x60,0x00,0x80,0x08,0x80,0x08,0x80,0x08,0x80,0x08,0x80,0x08,0x80,0x08,0x60,0x08,0x60,0x08, +0x20,0x18,0xE0,0x00,0x20,0x01,0xC0,0x00,0x40,0x08,0x41,0x18,0x62,0x10,0x62,0x10,0x82,0x10,0x40,0x00,0x65,0x33,0xEE,0x75,0x84,0x22,0x20,0x00,0x81,0x10,0x80,0x08,0x80,0x00,0x80,0x00,0x80,0x00,0x80,0x00,0x80,0x08,0x80,0x08,0xA1,0x10,0xC1,0x10,0x22,0x19,0x02,0x11,0xE1,0x08,0x01,0x09,0x42,0x09,0x42,0x09,0x21,0x01,0xE0,0x00,0x20,0x01,0x63,0x11,0xC0,0x00,0xED,0x5C,0x6F,0x66,0xB1,0x76,0x85,0x1A,0x40,0x00,0x40,0x00,0x80,0x08,0x02,0x19,0x03,0x21,0x03,0x19,0x43,0x11,0x42,0x01,0xE1,0x00,0x81,0x00,0x81,0x08,0x40,0x00,0x81,0x10,0x60,0x00,0xA1,0x21,0x2C,0x85,0x6D,0x9E,0xAB,0x8E,0xA8,0x86,0xA7,0x7E,0xC7,0x7E,0x88,0x86,0x69,0x8E,0xE9,0x85,0x06,0x6D, +0x27,0x5D,0x88,0x65,0x09,0x76,0x49,0x7E,0x27,0x76,0x47,0x76,0x46,0x76,0x66,0x76,0x27,0x76,0x48,0x7E,0x4B,0x8E,0xEB,0x85,0x8C,0x75,0x08,0x3C,0x4A,0x3C,0x09,0x2C,0x27,0x13,0x27,0x1B,0x07,0x1B,0x06,0x23,0x06,0x23,0x06,0x1B,0x26,0x1B,0x46,0x13,0x47,0x13,0x47,0x13,0x47,0x1B,0xE7,0x1A,0x28,0x2B,0x8A,0x43,0x6A,0x3B,0x8A,0x43,0x6B,0x3B,0x8B,0x3B,0x6B,0x3B,0x8B,0x43,0x6B,0x43,0x8B,0x43,0x6B,0x43,0x6B,0x43,0x6B,0x43,0x6A,0x3B,0x8A,0x3B,0x8A,0x3B,0x8B,0x3B,0x8C,0x3B,0x0B,0x2B,0xEC,0x2A,0xEC,0x2A,0xED,0x22,0xED,0x22,0x0D,0x23,0x4D,0x23,0x6E,0x2B,0x6E,0x2B,0x6C,0x2B,0x0A,0x3C,0x0F,0x9F,0xC9,0x8E,0xA6,0x7E,0xA7,0x7E,0x66,0x76,0x87,0x76,0xA7,0x76, +0x05,0x67,0xE7,0x6E,0x69,0x76,0xC1,0x12,0x44,0x12,0x47,0x12,0x68,0x1A,0x66,0x12,0xC7,0x22,0x86,0x12,0xA6,0x12,0x06,0x13,0x26,0x13,0x46,0x13,0x27,0x1B,0xE7,0x1A,0x67,0x13,0x88,0x1B,0x47,0x1B,0x06,0x1B,0xE6,0x12,0xE6,0x12,0x47,0x1B,0xE9,0x2B,0x6B,0x2C,0x6A,0x2C,0xAB,0x2C,0x2A,0x24,0xE6,0x02,0xA9,0x23,0x07,0x1B,0xE7,0x1A,0xEA,0x2B,0x0B,0x34,0x4C,0x44,0x28,0x2B,0x86,0x22,0x04,0x1A,0x04,0x1A,0x49,0x4B,0xEB,0x5B,0xEB,0x53,0xEB,0x53,0x4C,0x54,0xEB,0x4B,0xA5,0x1A,0xA5,0x1A,0xA5,0x1A,0xA5,0x1A,0xA5,0x1A,0xA5,0x1A,0xA4,0x1A,0xA4,0x1A,0xA4,0x1A,0xA5,0x1A,0xA5,0x1A,0xA5,0x1A,0xA5,0x1A,0xA5,0x1A,0x84,0x1A,0xA4,0x1A,0xC4,0x1A,0x42,0x0A,0x8F,0x75, +0xCA,0x4B,0xCB,0x4B,0xCC,0x4B,0xCC,0x4B,0xCC,0x4B,0xCC,0x4B,0xCB,0x4B,0xCB,0x4B,0xCC,0x4B,0xCC,0x4B,0xEB,0x4B,0xEB,0x4B,0xEA,0x4B,0xCA,0x43,0xCB,0x43,0xCD,0x4B,0xCB,0x4B,0xEB,0x4B,0xEA,0x4B,0xEA,0x4B,0xEA,0x4B,0xEB,0x4B,0xCC,0x4B,0xCC,0x43,0xEC,0x4B,0xE8,0x43,0x87,0x54,0xC9,0x75,0x29,0x86,0x07,0x7E,0x29,0x86,0x09,0x7E,0xE9,0x85,0x45,0x4C,0xA7,0x33,0xC9,0x3B,0xA8,0x3B,0xA7,0x3B,0xC5,0x3B,0xC4,0x33,0xE4,0x3B,0xC7,0x64,0x48,0x75,0x47,0x6D,0x88,0x6D,0x88,0x6D,0xCA,0x7D,0x69,0x75,0xC6,0x6D,0xC8,0x6D,0xC9,0x6D,0xA9,0x6D,0xC9,0x75,0xC8,0x75,0xA7,0x6D,0xA7,0x75,0xA8,0x75,0xA9,0x75,0xA9,0x75,0x68,0x6D,0x88,0x6D,0xA7,0x75,0x86,0x6D,0xA7,0x6D, +0x67,0x65,0xC9,0x75,0xA8,0x6D,0x68,0x65,0xA8,0x6D,0x88,0x6D,0x68,0x6D,0xAA,0x75,0x66,0x54,0x26,0x4C,0xA9,0x5C,0xE7,0x4B,0x87,0x43,0xA9,0x43,0xCA,0x43,0xCA,0x43,0xA9,0x4B,0xC9,0x4B,0xE9,0x4B,0xE8,0x43,0x08,0x44,0x69,0x44,0x8A,0x44,0x6A,0x44,0x47,0x1B,0x06,0x13,0x28,0x1B,0x48,0x23,0x28,0x1B,0x27,0x1B,0x27,0x1B,0x47,0x23,0x27,0x13,0x48,0x23,0x08,0x23,0x27,0x1B,0x47,0x13,0x88,0x13,0x47,0x13,0xC8,0x1B,0x28,0x14,0xAC,0x25,0x31,0x3F,0xF1,0x3E,0x71,0x56,0x56,0x97,0xB9,0xBF,0xD2,0x8D,0xAF,0x46,0xF1,0x4E,0x50,0x46,0x0A,0x24,0x08,0x2B,0x80,0x00,0xE6,0x01,0x2B,0x1B,0x4A,0x13,0x68,0x13,0x67,0x13,0x67,0x13,0x49,0x13,0x28,0x13,0x2A,0x2C,0x2B,0x3D, +0xEC,0x34,0x8A,0x2C,0xCB,0x3C,0xEB,0x3C,0x0B,0x3D,0x2C,0x3D,0x4D,0x45,0x2C,0x3D,0x2C,0x3D,0x2B,0x3D,0x0B,0x35,0xEA,0x34,0xEA,0x3C,0xCB,0x6D,0x6C,0x96,0x2A,0x96,0x69,0x96,0xEB,0x7D,0x8A,0x3C,0xE9,0x1B,0xA7,0x13,0xEC,0x44,0xC5,0x0A,0x2B,0x3C,0x4B,0x3C,0xE5,0x0A,0xC6,0x12,0x88,0x33,0xCC,0x7D,0xEA,0x7D,0x0A,0x76,0x0C,0x6E,0xCA,0x8D,0x0B,0x86,0x2C,0x7E,0x8F,0x86,0x4F,0x7E,0xCC,0x4C,0x07,0x0B,0xE9,0x0A,0x8B,0x23,0x88,0x1B,0x69,0x24,0x0A,0x2D,0x2B,0x35,0x0C,0x35,0xEC,0x34,0xEC,0x2C,0x2A,0x35,0xEA,0x2C,0xCC,0x2C,0xED,0x34,0x0C,0x35,0xEA,0x2C,0x0A,0x2D,0xEA,0x34,0x8B,0x4D,0xAE,0x7E,0x4B,0x7E,0xCC,0x7D,0x41,0x0A,0x48,0x33,0xA6,0x1A,0x65,0x12, +0x65,0x64,0xEF,0x86,0x0E,0x46,0xB0,0x45,0x87,0x02,0x86,0x1A,0x45,0x2B,0xAA,0x6D,0x4A,0x7E,0x2D,0x86,0x67,0x33,0x48,0x12,0x8A,0x12,0x45,0x0A,0xA9,0x54,0x8B,0x8E,0x6C,0x76,0x6B,0x86,0x2A,0x86,0x4D,0x86,0x6B,0x3C,0xAB,0x1B,0xCB,0x23,0xC5,0x0A,0x46,0x13,0xAB,0x3C,0xA3,0x02,0x8A,0x3C,0x65,0x0B,0x8A,0x34,0xAA,0x3C,0x65,0x1B,0xC0,0x00,0x63,0x19,0xA1,0x00,0xA2,0x00,0x81,0x00,0xA1,0x08,0x60,0x08,0x60,0x08,0x41,0x08,0x61,0x08,0x81,0x08,0xA0,0x00,0x60,0x00,0xA7,0x4A,0x02,0x19,0x60,0x00,0x60,0x00,0xC1,0x10,0x06,0x3A,0x40,0x00,0xA0,0x08,0x40,0x00,0x84,0x29,0xC5,0x31,0x80,0x00,0xC1,0x10,0x40,0x00,0xCA,0x52,0x40,0x00,0xA1,0x08,0x60,0x00,0x81,0x08, +0x86,0x3C,0x4D,0x75,0xE0,0x08,0x61,0x10,0x60,0x08,0x80,0x00,0x04,0x32,0xA0,0x08,0x60,0x08,0x40,0x08,0x23,0x11,0x82,0x19,0xE0,0x00,0xC0,0x08,0x40,0x00,0x23,0x21,0x83,0x21,0x40,0x00,0x81,0x10,0x60,0x08,0x05,0x32,0x20,0x11,0x80,0x08,0x60,0x08,0x61,0x10,0x62,0x08,0xA3,0x08,0x61,0x00,0x80,0x08,0x80,0x08,0x80,0x00,0xA0,0x00,0x80,0x08,0x61,0x08,0x62,0x08,0x61,0x08,0xA0,0x00,0xA0,0x00,0x80,0x08,0x41,0x10,0x62,0x10,0x60,0x00,0x86,0x2B,0xEF,0x75,0xC6,0x32,0x00,0x00,0xA1,0x18,0xA0,0x08,0x41,0x18,0x81,0x08,0xA2,0x00,0x62,0x08,0x41,0x10,0x60,0x00,0x41,0x01,0x23,0x0A,0xC1,0x09,0x40,0x01,0xA2,0x01,0x41,0x01,0xE1,0x08,0x80,0x00,0xA0,0x00,0x81,0x01, +0x43,0x0A,0xC0,0x00,0x40,0x00,0x6B,0x6C,0x0E,0x76,0x92,0x8E,0xA5,0x2A,0xC0,0x00,0x82,0x09,0xC3,0x09,0x63,0x09,0xE3,0x18,0x82,0x18,0x81,0x10,0x20,0x00,0x22,0x08,0xA1,0x00,0xA0,0x00,0xC0,0x00,0xC0,0x00,0x83,0x4B,0x4A,0x8E,0xE7,0x75,0x07,0x76,0x08,0x76,0xE8,0x7D,0xC9,0x7D,0xCA,0x7D,0xC9,0x75,0xC9,0x75,0xE9,0x75,0xA8,0x6D,0xA8,0x75,0xC8,0x75,0xE9,0x6D,0xA9,0x6D,0xC9,0x75,0x89,0x7D,0xA9,0x7D,0x88,0x7D,0xA8,0x7D,0xA8,0x75,0xC8,0x75,0x89,0x6D,0xCB,0x6D,0x6A,0x5D,0x05,0x24,0x47,0x24,0x88,0x2B,0xE5,0x12,0x06,0x1B,0xE6,0x1A,0x26,0x23,0xE5,0x12,0x26,0x13,0x05,0x13,0x05,0x13,0x87,0x1B,0x29,0x24,0x4A,0x3C,0x68,0x3B,0x28,0x43,0x29,0x43,0x89,0x3B, +0x6D,0x33,0x4C,0x43,0x0B,0x4B,0x2B,0x4B,0x4B,0x43,0x8B,0x3B,0x8A,0x33,0x8A,0x3B,0x4A,0x3B,0x4C,0x43,0x0D,0x43,0x0D,0x43,0x4F,0x43,0x4F,0x3B,0x0F,0x23,0x0F,0x13,0xEF,0x22,0xEF,0x22,0xCE,0x1A,0xCC,0x12,0x4B,0x1B,0x68,0x13,0x43,0x03,0xC5,0x2C,0x2B,0x6F,0x29,0x5F,0x28,0x57,0xE6,0x46,0xA5,0x36,0xC5,0x36,0x05,0x37,0xE4,0x36,0xC8,0x2E,0xE5,0x2E,0x44,0x47,0x22,0x2E,0x22,0x25,0x42,0x1C,0x00,0x03,0x64,0x1B,0xE6,0x1A,0x44,0x12,0x62,0x1A,0x65,0x3B,0x64,0x1A,0x06,0x12,0x28,0x1A,0x68,0x22,0xE6,0x1A,0xA7,0x1A,0xA7,0x12,0xA8,0x12,0x87,0x0A,0xC7,0x12,0xC6,0x12,0x89,0x2B,0x89,0x2B,0x89,0x2B,0x88,0x2B,0xA7,0x2B,0x66,0x23,0x66,0x23,0x88,0x23,0x88,0x23, +0x67,0x3B,0x09,0x4C,0x4A,0x54,0x4A,0x54,0x4A,0x54,0x2A,0x54,0x0A,0x54,0x2B,0x54,0x0B,0x54,0x0B,0x54,0xEB,0x4B,0x2C,0x54,0x07,0x2B,0x64,0x12,0xC5,0x22,0x83,0x1A,0xA5,0x22,0xA5,0x22,0xA5,0x22,0xA5,0x22,0x85,0x22,0x85,0x22,0x85,0x22,0x86,0x22,0xA7,0x22,0x86,0x1A,0x86,0x1A,0x84,0x1A,0xC2,0x1A,0x62,0x23,0x2B,0x7E,0xEC,0x96,0xEB,0x4B,0xAA,0x43,0xAA,0x43,0xCA,0x4B,0xEA,0x4B,0xCA,0x43,0xCB,0x43,0xAA,0x43,0xCB,0x4B,0xCB,0x43,0xAB,0x43,0xAB,0x43,0xCC,0x4B,0xCC,0x4B,0xCB,0x4B,0xCB,0x43,0xAC,0x4B,0xCB,0x4B,0xCA,0x4B,0xCA,0x4B,0xCA,0x4B,0xCB,0x43,0xAC,0x43,0xCC,0x43,0xAB,0x43,0xE9,0x43,0xEA,0x64,0x89,0x6D,0x67,0x6D,0x67,0x6D,0x67,0x6D,0x68,0x6D, +0x87,0x75,0x08,0x65,0x66,0x2B,0xC9,0x3B,0x27,0x2B,0x66,0x33,0x85,0x33,0x84,0x33,0xA4,0x33,0xA8,0x5C,0x65,0x54,0xE7,0x64,0x68,0x6D,0x48,0x65,0x07,0x5D,0x69,0x6D,0x66,0x65,0x66,0x65,0x27,0x5D,0x68,0x65,0x48,0x65,0x27,0x65,0x67,0x6D,0x47,0x65,0x69,0x6D,0x28,0x65,0x28,0x65,0x48,0x65,0x47,0x65,0x27,0x65,0x27,0x65,0x07,0x5D,0x47,0x65,0xE6,0x5C,0x27,0x65,0x47,0x65,0x07,0x5D,0x07,0x5D,0x07,0x5D,0xC6,0x5C,0xA6,0x5C,0x08,0x6D,0xA7,0x64,0x46,0x54,0x88,0x5C,0xCA,0x64,0xAA,0x5C,0x0C,0x65,0xEA,0x6C,0x0B,0x75,0x0A,0x6D,0x2B,0x6D,0x2A,0x65,0x4C,0x65,0x6D,0x65,0x6A,0x44,0xE5,0x12,0x07,0x1B,0x28,0x1B,0xE7,0x12,0xE7,0x12,0x07,0x1B,0xE6,0x1A,0x06,0x1B, +0x07,0x13,0x07,0x1B,0xC6,0x1A,0x07,0x1B,0x47,0x13,0x47,0x13,0xE5,0x12,0x46,0x1B,0x86,0x13,0x6C,0x2D,0x6F,0x36,0x70,0x36,0x51,0x56,0xF6,0x8E,0x59,0xAF,0x72,0x7D,0x51,0x46,0x31,0x3E,0xF0,0x3D,0x09,0x24,0xE4,0x22,0x00,0x01,0x23,0x02,0x48,0x1B,0x48,0x13,0x47,0x13,0x47,0x1B,0x47,0x1B,0x28,0x1B,0x28,0x13,0x49,0x2C,0x4A,0x3D,0x89,0x24,0x44,0x03,0x43,0x03,0x43,0x03,0x07,0x1C,0x85,0x0B,0xC6,0x0B,0x06,0x14,0x88,0x2C,0x47,0x24,0xA9,0x2C,0xA9,0x2C,0x4A,0x45,0xAA,0x65,0x8B,0x96,0x29,0x96,0x69,0x96,0x0B,0x7E,0xAA,0x3C,0xE9,0x1B,0xC7,0x13,0xEC,0x44,0xE5,0x0A,0x4B,0x3C,0x6B,0x3C,0xE5,0x0A,0xC6,0x0A,0xA8,0x33,0xCC,0x7D,0x09,0x7E,0x0A,0x7E,0x0C,0x76, +0xCA,0x8D,0x2C,0x8E,0xCF,0x96,0x88,0x4C,0x23,0x1B,0xA4,0x02,0x69,0x1B,0xAC,0x23,0x6A,0x1B,0x68,0x1B,0x69,0x2C,0x2B,0x35,0x89,0x1C,0x6A,0x24,0xEC,0x34,0x0B,0x2D,0x09,0x35,0x0B,0x35,0x0D,0x35,0x0D,0x3D,0x0C,0x35,0x0B,0x35,0x4C,0x3D,0x0A,0x35,0x09,0x3D,0xEB,0x65,0x2C,0x7E,0x4A,0x6D,0xC3,0x22,0xCE,0x64,0x2C,0x4C,0xA6,0x1A,0x87,0x64,0xB0,0x86,0xEE,0x45,0x6F,0x3D,0xE7,0x0A,0x66,0x12,0x2D,0x6D,0xAF,0x8E,0x0B,0x7E,0x0D,0x86,0x87,0x33,0xA8,0x1A,0xCA,0x1A,0x45,0x0A,0x68,0x4C,0xCD,0x96,0x0F,0x97,0x09,0x7E,0xC8,0x75,0x0C,0x76,0x8B,0x3C,0xEC,0x23,0xAB,0x2B,0x27,0x1B,0x6B,0x3C,0x8F,0x5D,0xC5,0x02,0x0E,0x55,0x26,0x1B,0x8B,0x3C,0x0D,0x4D,0x6A,0x34, +0x81,0x21,0x04,0x32,0xA1,0x08,0x81,0x00,0x81,0x00,0xA2,0x10,0x60,0x08,0x80,0x08,0x80,0x08,0xA0,0x08,0xA0,0x00,0x60,0x00,0xA2,0x21,0x62,0x21,0x20,0x00,0x61,0x10,0x80,0x08,0xA3,0x29,0xE0,0x10,0xA0,0x08,0x80,0x08,0x80,0x08,0x05,0x3A,0xC0,0x10,0xA0,0x08,0x60,0x00,0xC1,0x10,0xE5,0x31,0x60,0x00,0x80,0x08,0xA1,0x08,0x60,0x00,0x87,0x3C,0x4D,0x6D,0x00,0x09,0x60,0x08,0x81,0x10,0x60,0x00,0xA2,0x21,0x00,0x11,0x80,0x10,0x81,0x08,0x60,0x00,0x87,0x3A,0x60,0x00,0xC0,0x08,0x80,0x08,0x61,0x08,0xC2,0x21,0x80,0x00,0x81,0x08,0xA2,0x08,0x40,0x00,0x26,0x3A,0x60,0x00,0xC0,0x10,0x80,0x08,0xA0,0x08,0x60,0x00,0xA1,0x08,0x80,0x08,0x80,0x08,0x80,0x08,0xA1,0x08, +0x80,0x08,0x81,0x08,0x61,0x08,0x61,0x10,0x80,0x08,0xA0,0x00,0x80,0x08,0x61,0x08,0x82,0x10,0x40,0x00,0x45,0x2B,0xEF,0x7D,0xE7,0x3A,0x00,0x00,0xA1,0x18,0x80,0x08,0x60,0x08,0x80,0x08,0x60,0x00,0x81,0x00,0xE2,0x08,0xA4,0x19,0x05,0x22,0xE3,0x11,0x85,0x1A,0x23,0x12,0x82,0x09,0x83,0x19,0x22,0x11,0xA3,0x19,0x23,0x12,0x64,0x12,0xC1,0x01,0xC3,0x11,0xE0,0x00,0x0C,0x6D,0x6E,0x76,0x70,0x76,0x68,0x3B,0x42,0x11,0x02,0x09,0xE1,0x00,0xA1,0x00,0xA1,0x08,0x60,0x00,0xE0,0x00,0xC2,0x09,0x67,0x22,0xC7,0x1A,0xCA,0x3B,0xC8,0x3B,0xE2,0x12,0xAB,0x6D,0x89,0x65,0x68,0x65,0xA8,0x65,0x68,0x65,0x68,0x65,0x89,0x6D,0x48,0x65,0x68,0x6D,0xA9,0x75,0x67,0x6D,0x67,0x6D, +0xA7,0x65,0x46,0x5D,0x68,0x6D,0x68,0x6D,0x48,0x75,0x27,0x6D,0x87,0x65,0x87,0x5D,0x66,0x5D,0x87,0x6D,0x47,0x65,0x89,0x6D,0x28,0x5D,0xAA,0x65,0x29,0x4D,0x84,0x23,0x8A,0x23,0x08,0x1B,0xC8,0x1A,0xA7,0x12,0xC7,0x12,0xC6,0x02,0x68,0x13,0xE7,0x0A,0x48,0x1B,0x0B,0x34,0x2B,0x3C,0xEB,0x33,0x8A,0x33,0x8B,0x3B,0x8B,0x3B,0x6B,0x3B,0x6B,0x3B,0x4B,0x3B,0x2B,0x3B,0x2A,0x43,0x29,0x43,0x49,0x43,0x48,0x33,0x48,0x2B,0x49,0x33,0x28,0x33,0x49,0x43,0x09,0x3B,0x09,0x33,0x0A,0x2B,0xA8,0x12,0xC8,0x1A,0xA9,0x12,0xA8,0x0A,0xE9,0x12,0x28,0x13,0x06,0x0B,0x43,0x0B,0xC6,0x2C,0xAA,0x66,0x09,0x67,0xE6,0x56,0xA5,0x46,0xA4,0x3E,0xC5,0x3E,0xE5,0x3E,0xE5,0x36,0x04,0x37, +0xE8,0x3E,0xA4,0x3E,0xE4,0x46,0x06,0x5F,0xE9,0x66,0x2B,0x7F,0x29,0x6E,0x05,0x34,0x46,0x2B,0xE5,0x22,0xCA,0x64,0x31,0xAF,0x06,0x4C,0x64,0x1A,0x25,0x12,0x25,0x12,0x43,0x0A,0x64,0x12,0xC2,0x01,0x09,0x23,0x05,0x02,0xC6,0x12,0x06,0x1B,0xE5,0x12,0xE8,0x1A,0xA7,0x12,0xC6,0x12,0x26,0x1B,0x46,0x23,0x69,0x23,0x69,0x23,0xAA,0x2B,0x4B,0x54,0x4C,0x54,0x2C,0x54,0xEC,0x4B,0x0C,0x54,0x0D,0x54,0xED,0x53,0xED,0x53,0xCC,0x4B,0x0C,0x54,0x0C,0x54,0xCB,0x4B,0x44,0x1A,0xA6,0x22,0x85,0x1A,0x85,0x1A,0x86,0x1A,0x85,0x1A,0x85,0x1A,0x85,0x1A,0x85,0x1A,0x85,0x1A,0x86,0x1A,0x86,0x1A,0x66,0x1A,0x66,0x1A,0xA5,0x1A,0x83,0x12,0xE1,0x1A,0x8D,0x8E,0xEC,0x96,0xAA,0x8E, +0x8C,0x43,0xAB,0x43,0xAA,0x4B,0xC9,0x4B,0xA9,0x43,0xAA,0x43,0xAB,0x43,0xCB,0x4B,0xAA,0x43,0x8A,0x43,0xAB,0x43,0xAC,0x43,0x8C,0x43,0x8B,0x43,0xCB,0x4B,0xAA,0x43,0x8C,0x43,0x8C,0x43,0xAB,0x43,0xAB,0x43,0xAB,0x43,0xAC,0x43,0xAC,0x43,0xAC,0x43,0xEC,0x4B,0x0A,0x4C,0xAA,0x5C,0xC8,0x5C,0xC7,0x5C,0xE7,0x5C,0xC7,0x5C,0xE7,0x5C,0x06,0x65,0x66,0x44,0x44,0x23,0x88,0x33,0x47,0x33,0x05,0x2B,0x25,0x2B,0x25,0x2B,0x24,0x2B,0xA6,0x3B,0x27,0x54,0xC7,0x64,0xC7,0x54,0x08,0x5D,0x08,0x5D,0xC7,0x5C,0x06,0x5D,0x07,0x5D,0xE7,0x5C,0xE7,0x5C,0x07,0x5D,0x07,0x5D,0x07,0x5D,0xC6,0x54,0x86,0x54,0xC7,0x5C,0x86,0x4C,0x64,0x4C,0x64,0x4C,0x85,0x4C,0xC8,0x54,0xA8,0x54, +0xA7,0x5C,0xA6,0x54,0xA6,0x54,0xA5,0x4C,0xC6,0x4C,0x47,0x5D,0x47,0x5D,0x27,0x65,0xE5,0x5C,0x88,0x75,0x89,0x7D,0xCA,0x85,0x89,0x7D,0xAA,0x7D,0xAA,0x7D,0x8A,0x7D,0x88,0x7D,0xA9,0x85,0x89,0x7D,0xA9,0x7D,0xAA,0x75,0xAB,0x75,0x8C,0x6D,0xAA,0x54,0xE5,0x1A,0x85,0x12,0xA6,0x12,0xC7,0x1A,0xA7,0x1A,0xC7,0x1A,0xC6,0x1A,0xC6,0x1A,0xE7,0x1A,0xA6,0x12,0xA6,0x1A,0xC6,0x1A,0xC5,0x0A,0xC5,0x12,0xA5,0x1A,0x06,0x23,0x67,0x23,0x49,0x1C,0xEF,0x3D,0xCF,0x35,0x6E,0x3D,0x37,0x8F,0xDB,0xB7,0x72,0x6D,0xB0,0x35,0xD0,0x35,0x2D,0x2D,0x64,0x13,0x06,0x44,0xAC,0x85,0x48,0x44,0x46,0x13,0x47,0x13,0x27,0x1B,0x27,0x1B,0x08,0x1B,0x09,0x1B,0x08,0x13,0x49,0x2C,0x6A,0x3D, +0x0B,0x3D,0x89,0x2C,0x68,0x2C,0x27,0x24,0x27,0x24,0xC6,0x13,0xA5,0x0B,0xA5,0x0B,0x84,0x0B,0x63,0x03,0x23,0x03,0x84,0x03,0x29,0x45,0xEA,0x6D,0x6B,0x8E,0x69,0x9E,0x69,0x96,0x0B,0x7E,0xAA,0x3C,0xE8,0x1B,0xC7,0x0B,0x0C,0x3D,0xE5,0x02,0x6B,0x34,0x6B,0x34,0xE5,0x0A,0xC5,0x0A,0xA7,0x33,0xEC,0x85,0x09,0x86,0x0A,0x7E,0x0C,0x76,0xC9,0x8D,0x2C,0x8E,0xED,0x75,0x03,0x1B,0x86,0x23,0xC9,0x2B,0x69,0x1B,0x49,0x13,0x69,0x1B,0x47,0x13,0x69,0x2C,0x0B,0x35,0xC7,0x0B,0x87,0x0B,0xAA,0x2C,0x89,0x1C,0xC5,0x0B,0x69,0x24,0x8B,0x24,0x4A,0x1C,0x8A,0x24,0xEB,0x2C,0xCA,0x2C,0xEA,0x34,0xE9,0x3C,0xED,0x6D,0x4E,0x86,0x8C,0x75,0x80,0x01,0xE3,0x09,0x82,0x01,0x25,0x0A, +0x66,0x43,0x0B,0x55,0xCE,0x45,0x31,0x56,0x86,0x02,0xC7,0x1A,0x84,0x12,0x27,0x3C,0xC9,0x54,0xA9,0x54,0x26,0x23,0xA7,0x12,0x88,0x12,0xA5,0x1A,0x68,0x4C,0x2C,0x86,0xCB,0x7D,0x2A,0x8E,0x6A,0x86,0x6D,0x76,0x8B,0x2C,0xAB,0x1B,0x6B,0x23,0xE3,0x01,0xA5,0x0A,0xEA,0x2B,0x81,0x01,0xCA,0x3B,0x03,0x02,0x48,0x1B,0x4C,0x34,0x06,0x03,0x80,0x00,0x40,0x11,0x80,0x00,0xA1,0x00,0x61,0x00,0x20,0x00,0x81,0x00,0x80,0x08,0x80,0x00,0xC0,0x10,0x40,0x00,0xA2,0x21,0x66,0x42,0x20,0x00,0x81,0x10,0x62,0x10,0xC0,0x10,0x87,0x4A,0x60,0x00,0x80,0x08,0x40,0x00,0xE0,0x10,0x66,0x42,0x80,0x08,0xA0,0x08,0x60,0x00,0xE0,0x10,0xC4,0x31,0x80,0x08,0x60,0x08,0xA0,0x10,0x60,0x00, +0x87,0x34,0x4D,0x65,0x01,0x09,0x61,0x08,0xA1,0x10,0x60,0x00,0x61,0x19,0x21,0x19,0x60,0x08,0x81,0x08,0x60,0x00,0x42,0x11,0xA4,0x21,0x40,0x00,0xA2,0x10,0x62,0x08,0x20,0x11,0xE4,0x21,0x60,0x00,0xA2,0x00,0xA2,0x00,0xA2,0x08,0xC4,0x29,0x60,0x00,0xA0,0x00,0x80,0x08,0x80,0x08,0x80,0x08,0x80,0x08,0x80,0x08,0x80,0x08,0x60,0x08,0xA0,0x00,0x80,0x08,0x61,0x08,0x41,0x10,0x60,0x10,0xA0,0x08,0xA0,0x00,0x61,0x08,0xA3,0x10,0x40,0x00,0x65,0x33,0xEF,0x85,0xE6,0x3A,0x00,0x00,0xA1,0x10,0xA0,0x00,0xE0,0x08,0x60,0x08,0x40,0x08,0x23,0x11,0x63,0x01,0xA4,0x11,0xA0,0x00,0xC0,0x00,0xC2,0x09,0x24,0x12,0xA0,0x00,0xA0,0x08,0xA2,0x19,0x81,0x01,0xE1,0x01,0x43,0x12, +0x61,0x01,0x62,0x01,0x81,0x09,0x0B,0x5D,0x6E,0x66,0xD1,0x76,0x27,0x33,0x40,0x00,0x60,0x08,0x60,0x00,0x80,0x00,0xA0,0x00,0xE0,0x00,0xA6,0x23,0x89,0x34,0xAB,0x3C,0x6B,0x3C,0x4A,0x2C,0x28,0x24,0x48,0x24,0x27,0x24,0xEA,0x4C,0x09,0x5D,0xE8,0x5C,0xE7,0x54,0x07,0x55,0x07,0x55,0x27,0x5D,0x07,0x5D,0xC6,0x5C,0xE6,0x5C,0x07,0x5D,0x27,0x55,0x68,0x65,0x07,0x65,0x86,0x5C,0xE7,0x6C,0x27,0x65,0x46,0x55,0x66,0x4D,0x87,0x55,0xE5,0x54,0xE6,0x64,0xE7,0x64,0x28,0x5D,0xE8,0x54,0x29,0x5D,0xE5,0x3B,0x49,0x1B,0xC8,0x1A,0x67,0x1A,0x87,0x12,0xA7,0x12,0xA7,0x0A,0x49,0x23,0xA6,0x0A,0x07,0x1B,0x89,0x2B,0x48,0x2B,0x08,0x2B,0x28,0x23,0x29,0x23,0x09,0x2B,0xE9,0x32, +0x06,0x33,0x27,0x33,0x69,0x33,0x68,0x3B,0x67,0x4B,0x67,0x4B,0xC8,0x53,0x09,0x4C,0x29,0x4C,0x07,0x4C,0x47,0x5C,0x48,0x64,0x69,0x64,0xAA,0x64,0x88,0x5C,0xE9,0x64,0xEA,0x54,0x4B,0x5D,0xA8,0x44,0x22,0x13,0x61,0x13,0xE9,0x65,0x48,0x66,0x87,0x66,0x64,0x56,0x23,0x4E,0x22,0x46,0x63,0x46,0x84,0x46,0x84,0x46,0x84,0x3E,0xA4,0x46,0x45,0x4E,0x64,0x56,0x43,0x56,0xE7,0x6E,0x47,0x6E,0x26,0x6E,0xEA,0x8E,0xC6,0x5C,0x42,0x12,0xA4,0x22,0xCC,0x85,0xA7,0x7D,0xA8,0x75,0x4B,0x6D,0x26,0x2B,0x06,0x23,0x08,0x44,0xC7,0x3B,0x8B,0x54,0xAA,0x3B,0x49,0x2B,0x46,0x23,0xC9,0x54,0x45,0x23,0x65,0x0A,0x66,0x0A,0xA5,0x12,0x28,0x3C,0xC7,0x33,0x07,0x1B,0xE7,0x12,0x69,0x23, +0xEA,0x43,0xEA,0x43,0xEB,0x4B,0xCC,0x4B,0xCD,0x4B,0xCD,0x4B,0xCD,0x4B,0xCD,0x53,0xED,0x53,0xCB,0x4B,0xCB,0x4B,0xA6,0x22,0x86,0x1A,0x45,0x1A,0x65,0x1A,0x45,0x12,0x66,0x1A,0x65,0x1A,0x45,0x1A,0x64,0x1A,0x64,0x1A,0x64,0x1A,0x45,0x1A,0x45,0x1A,0x65,0x1A,0x85,0x1A,0x63,0x12,0xA1,0x12,0x8B,0x6D,0x6B,0x86,0x49,0x7E,0x48,0x7E,0x8C,0x43,0x8D,0x43,0x6C,0x43,0x6C,0x3B,0x8D,0x4B,0x6C,0x43,0x4B,0x3B,0x6C,0x43,0x6B,0x43,0xAC,0x4B,0x8B,0x43,0x6A,0x43,0xAB,0x4B,0x8A,0x43,0x6A,0x3B,0x8A,0x43,0x6C,0x43,0x8C,0x43,0x8B,0x43,0x8B,0x43,0x8B,0x43,0x8B,0x43,0x8B,0x43,0x8B,0x43,0x6A,0x3B,0xC9,0x43,0xE8,0x43,0x27,0x4C,0x46,0x4C,0x25,0x4C,0x26,0x4C,0x46,0x4C, +0x44,0x4C,0x87,0x4C,0x24,0x1B,0x67,0x2B,0xE6,0x2A,0xA5,0x22,0xC5,0x22,0xC5,0x22,0xC5,0x22,0xE4,0x2A,0x65,0x3B,0x26,0x4C,0xA7,0x54,0x86,0x4C,0x66,0x44,0xA7,0x54,0x66,0x54,0x67,0x54,0x87,0x54,0x46,0x4C,0x86,0x54,0x86,0x54,0x65,0x4C,0xE7,0x5C,0x28,0x65,0x69,0x6D,0x47,0x65,0x47,0x65,0x47,0x65,0x86,0x4C,0x26,0x3C,0x28,0x44,0xE6,0x43,0x26,0x4C,0x05,0x44,0x85,0x4C,0xA9,0x6D,0x4B,0x7E,0x2A,0x76,0xEA,0x75,0x27,0x65,0x48,0x6D,0x07,0x6D,0x48,0x75,0x26,0x75,0x46,0x75,0x46,0x75,0x25,0x75,0x25,0x75,0x46,0x75,0x66,0x75,0x67,0x75,0x68,0x6D,0x08,0x65,0x47,0x4C,0x49,0x4C,0x83,0x12,0x85,0x12,0xA7,0x1A,0x66,0x12,0x66,0x12,0x86,0x12,0x65,0x12,0x24,0x0A, +0x44,0x0A,0x65,0x12,0xA6,0x1A,0x65,0x12,0x85,0x0A,0xA6,0x1A,0x66,0x1A,0x25,0x1A,0xE7,0x22,0x26,0x13,0xEC,0x34,0x2D,0x35,0x2D,0x35,0xF1,0x5D,0xF1,0x65,0xAC,0x44,0x0C,0x2D,0x6D,0x35,0xE7,0x0B,0x43,0x13,0x63,0x33,0xAC,0x85,0x07,0x44,0x06,0x13,0x27,0x13,0x07,0x1B,0xE7,0x1A,0xE9,0x1A,0xCA,0x1A,0xE8,0x12,0x2A,0x2C,0x6B,0x3D,0x2C,0x3D,0xEB,0x3C,0x4C,0x45,0x4C,0x4D,0x2C,0x45,0x4D,0x45,0x6D,0x45,0x4C,0x3D,0x2C,0x3D,0x0C,0x3D,0xCB,0x34,0xCA,0x34,0x0A,0x45,0xEC,0x6D,0x6C,0x96,0x29,0x96,0x69,0x9E,0x0B,0x7E,0xAA,0x44,0xE8,0x1B,0xC7,0x0B,0x0C,0x3D,0xE4,0x02,0x8B,0x34,0x8B,0x34,0xE5,0x02,0xC5,0x0A,0xA7,0x33,0xEC,0x85,0x09,0x86,0x0A,0x86,0x0B,0x7E, +0xE9,0x8D,0x8D,0x96,0x67,0x4C,0x25,0x1B,0x88,0x2B,0x27,0x13,0x49,0x13,0x89,0x1B,0x69,0x1B,0x47,0x13,0x6A,0x24,0x2D,0x35,0xC8,0x0B,0x67,0x03,0xCB,0x2C,0x48,0x14,0x85,0x03,0x69,0x24,0x8B,0x24,0x87,0x03,0x08,0x14,0x8A,0x24,0x65,0x03,0x28,0x1C,0xCA,0x3C,0x2F,0x76,0x4F,0x86,0x8E,0x7D,0xC5,0x2A,0x29,0x33,0xE8,0x2A,0xC7,0x22,0x44,0x22,0xC4,0x12,0x04,0x03,0xA7,0x0B,0xE6,0x0A,0xA6,0x1A,0x85,0x12,0xA4,0x12,0x61,0x0A,0xC3,0x12,0x83,0x0A,0xA6,0x12,0xC7,0x1A,0x84,0x12,0x44,0x2B,0xCB,0x75,0x8B,0x75,0x4B,0x8E,0x2A,0x7E,0x4D,0x6E,0x8B,0x2C,0xAC,0x1B,0x8C,0x23,0x45,0x02,0xC6,0x02,0xCA,0x23,0xC3,0x01,0x0C,0x3C,0x25,0x02,0x49,0x13,0xAE,0x34,0xCA,0x0B, +0x64,0x22,0xEA,0x53,0x48,0x33,0xCB,0x43,0x8A,0x3B,0x4A,0x33,0xE1,0x00,0xC0,0x00,0xA0,0x08,0x40,0x08,0x42,0x29,0x46,0x42,0x40,0x00,0xA1,0x08,0x81,0x08,0x61,0x00,0xC8,0x4A,0xC0,0x08,0x80,0x00,0x80,0x00,0xA0,0x08,0x46,0x3A,0x01,0x11,0xA0,0x08,0xA0,0x08,0x60,0x00,0x42,0x19,0xC4,0x29,0x80,0x00,0xA0,0x08,0x80,0x08,0x80,0x00,0x67,0x24,0x2E,0x5D,0xE1,0x00,0x82,0x08,0x81,0x08,0x80,0x00,0x41,0x11,0x42,0x19,0xA1,0x08,0x81,0x08,0xA1,0x08,0x60,0x00,0xE5,0x29,0x80,0x00,0x82,0x08,0x83,0x08,0xA0,0x00,0xE5,0x29,0xE2,0x00,0xA1,0x00,0xA1,0x00,0x81,0x00,0x84,0x21,0x62,0x11,0xC0,0x00,0xC1,0x10,0x40,0x08,0x60,0x08,0xA1,0x08,0xA0,0x08,0x80,0x08,0xA1,0x10, +0xA0,0x00,0xA0,0x00,0x80,0x08,0x60,0x10,0x80,0x10,0xA0,0x08,0xA0,0x00,0x81,0x08,0x82,0x10,0x40,0x00,0x85,0x3B,0x4F,0x86,0x47,0x3B,0x20,0x00,0xC1,0x08,0xC0,0x00,0xA0,0x00,0xA0,0x08,0xE1,0x18,0x01,0x09,0x62,0x09,0xA0,0x00,0xC1,0x08,0x80,0x00,0xE0,0x00,0x24,0x1A,0x00,0x09,0x00,0x11,0xC3,0x19,0xC1,0x01,0xC5,0x1A,0x60,0x01,0x02,0x01,0xC5,0x21,0x60,0x00,0x2B,0x5D,0x6E,0x66,0xF2,0x7E,0x07,0x2B,0x60,0x00,0x80,0x10,0x80,0x10,0x60,0x08,0x01,0x09,0x06,0x23,0x69,0x2C,0x27,0x1C,0x07,0x1C,0xC8,0x23,0xE8,0x23,0xE8,0x1B,0xA7,0x1B,0xA7,0x23,0x65,0x23,0x48,0x4C,0x47,0x4C,0xA7,0x4C,0xC6,0x4C,0xA5,0x44,0xC6,0x4C,0x86,0x4C,0x46,0x4C,0xA8,0x54,0x87,0x4C, +0x47,0x4C,0x67,0x4C,0x87,0x54,0xA7,0x54,0xA7,0x54,0x86,0x4C,0xA6,0x4C,0xE7,0x4C,0xA6,0x44,0xA7,0x54,0x87,0x64,0x67,0x64,0x67,0x5C,0x87,0x54,0xA8,0x4C,0x87,0x44,0xC5,0x1A,0x84,0x1A,0x64,0x1A,0x43,0x12,0x22,0x0A,0x22,0x12,0xC5,0x2A,0xA4,0x1A,0x65,0x23,0x07,0x34,0xE8,0x3B,0x29,0x54,0x6A,0x54,0x6A,0x54,0x8C,0x6C,0xAD,0x7C,0x2B,0x75,0x2B,0x6D,0x4B,0x75,0x4B,0x75,0x4C,0x85,0x4B,0x85,0x4C,0x8D,0x6B,0x85,0xAB,0x7D,0xAB,0x7D,0xAB,0x7D,0xAA,0x85,0x89,0x8D,0x89,0x85,0xA9,0x85,0xA8,0x7D,0xA8,0x7D,0x88,0x7D,0xC8,0x7D,0xA8,0x75,0x6A,0x8E,0x0B,0x9F,0x2A,0x9F,0x4A,0x9F,0x28,0x8F,0x28,0x8F,0x48,0x8F,0x69,0x8F,0x8A,0x8F,0x8A,0x8F,0x8A,0x8F,0xAB,0x8F, +0xAC,0x97,0x8B,0x97,0x09,0x8F,0xA9,0x86,0x28,0x7E,0xC5,0x75,0xA5,0x75,0xAA,0x85,0x63,0x22,0xA5,0x2A,0x8B,0x7D,0xA5,0x75,0xC5,0x75,0x89,0x75,0x66,0x33,0xC6,0x1A,0x87,0x54,0xA7,0x54,0xA5,0x33,0xA7,0x33,0xA7,0x33,0x87,0x4C,0x0A,0x7E,0xAA,0x6D,0x24,0x23,0xC4,0x1A,0x0A,0x5D,0xC9,0x6D,0x68,0x65,0x83,0x23,0x24,0x1B,0x69,0x44,0x0B,0x65,0xAA,0x5C,0x8A,0x5C,0x6A,0x54,0x4A,0x54,0x29,0x54,0xE9,0x4B,0xA9,0x43,0xAA,0x4B,0xEB,0x53,0x28,0x33,0x24,0x1A,0x65,0x1A,0x65,0x1A,0x65,0x1A,0x65,0x1A,0x65,0x1A,0x65,0x1A,0x64,0x1A,0x64,0x1A,0x64,0x1A,0x64,0x1A,0x65,0x1A,0x65,0x1A,0x65,0x1A,0x63,0x12,0xC3,0x1A,0x8B,0x75,0xEB,0x75,0x0A,0x7E,0x49,0x7E,0x28,0x76, +0x6B,0x3B,0x8D,0x43,0x6E,0x43,0x4E,0x43,0x6E,0x43,0x8D,0x43,0x6C,0x43,0x6B,0x3B,0x8C,0x43,0x6B,0x43,0x8A,0x43,0xAA,0x43,0x89,0x43,0x8A,0x43,0x8B,0x43,0x8C,0x43,0x6B,0x43,0x6B,0x43,0x8A,0x43,0x8A,0x43,0x8A,0x43,0x6B,0x43,0x6B,0x43,0x8A,0x43,0x89,0x3B,0xA9,0x43,0x87,0x3B,0x86,0x3B,0xA6,0x3B,0x85,0x3B,0xA6,0x3B,0x85,0x3B,0xC5,0x3B,0x85,0x33,0x86,0x2B,0x67,0x2B,0xC6,0x22,0x65,0x12,0xA6,0x1A,0x69,0x33,0x85,0x1A,0xA4,0x1A,0x82,0x1A,0xE5,0x43,0xA6,0x54,0x47,0x5D,0x85,0x4C,0x24,0x44,0x07,0x4C,0x07,0x4C,0x27,0x4C,0x07,0x4C,0x26,0x4C,0x25,0x4C,0xA6,0x54,0xEA,0x7D,0x0B,0x86,0x0A,0x7E,0xE9,0x7D,0x08,0x7E,0x4A,0x7E,0x89,0x6D,0x47,0x44,0xA6,0x33, +0xC7,0x43,0xC6,0x43,0xC5,0x3B,0xA8,0x54,0x49,0x65,0x48,0x65,0x48,0x65,0x28,0x65,0x28,0x65,0xE8,0x64,0x49,0x75,0x28,0x75,0x27,0x75,0x26,0x75,0x46,0x75,0x25,0x75,0x47,0x7D,0x27,0x75,0x47,0x75,0x27,0x6D,0x27,0x6D,0xA6,0x5C,0x05,0x44,0x68,0x54,0x62,0x12,0x02,0x0A,0x65,0x12,0x66,0x1A,0x25,0x12,0x45,0x12,0x66,0x12,0x45,0x12,0x25,0x12,0x45,0x12,0x45,0x12,0x45,0x12,0x86,0x1A,0x45,0x1A,0x04,0x12,0x66,0x2A,0xE7,0x2A,0x85,0x12,0x67,0x13,0x6A,0x2C,0xAB,0x2C,0xAB,0x34,0xCC,0x3C,0x6B,0x2C,0x89,0x2C,0x07,0x1C,0xE3,0x02,0x03,0x1B,0x43,0x33,0x6D,0x7D,0xE9,0x43,0xC7,0x12,0x08,0x13,0xE8,0x1A,0xE8,0x1A,0xE9,0x1A,0xCA,0x1A,0xC9,0x12,0x0A,0x2C,0x4C,0x45, +0x8B,0x2C,0x45,0x03,0x86,0x0B,0xA6,0x13,0x29,0x24,0xC8,0x13,0x29,0x24,0x4A,0x24,0xAB,0x34,0xCB,0x34,0xCB,0x34,0xEB,0x3C,0x0B,0x45,0xEC,0x75,0x6C,0x96,0x2A,0x9E,0x69,0x9E,0x0B,0x86,0xAB,0x44,0xE8,0x1B,0xC7,0x0B,0x0C,0x3D,0xE4,0x02,0x8B,0x34,0x8B,0x34,0xE5,0x02,0xA5,0x0A,0xA7,0x33,0xEC,0x85,0x09,0x8E,0x09,0x8E,0x0B,0x86,0x08,0x8E,0xCE,0x9E,0x89,0x4C,0x26,0x23,0x07,0x1B,0x69,0x23,0x69,0x1B,0x48,0x13,0x48,0x1B,0x47,0x13,0x2A,0x24,0x2E,0x3D,0xC9,0x13,0x88,0x0B,0xEB,0x34,0x67,0x14,0x85,0x03,0x6A,0x24,0x8B,0x2C,0x67,0x03,0x28,0x14,0xCA,0x2C,0x44,0x03,0x29,0x1C,0x0C,0x45,0x45,0x1B,0x04,0x23,0x26,0x33,0x28,0x3B,0x4A,0x3B,0x8B,0x43,0x87,0x22, +0xA4,0x11,0x24,0x02,0xE5,0x02,0xC4,0x02,0xA5,0x02,0x65,0x0A,0x86,0x12,0x85,0x12,0x64,0x12,0xC4,0x12,0xA4,0x0A,0xA5,0x0A,0x85,0x12,0xA4,0x1A,0x07,0x3C,0xEC,0x75,0xCB,0x6D,0x0A,0x7E,0x2A,0x7E,0x0D,0x6E,0x8B,0x2C,0xAB,0x13,0xAC,0x1B,0xEB,0x2B,0x2B,0x24,0xAD,0x34,0x0B,0x24,0x8D,0x34,0x2D,0x2C,0x8E,0x2C,0xEE,0x2C,0x88,0x03,0x60,0x01,0x09,0x34,0xE9,0x2B,0xA7,0x1B,0x09,0x2C,0xEA,0x33,0x28,0x33,0x00,0x01,0xC0,0x08,0x80,0x10,0x47,0x52,0xC1,0x18,0x80,0x08,0x80,0x00,0x60,0x00,0x05,0x22,0x83,0x21,0x80,0x00,0xE1,0x08,0xC0,0x08,0xC0,0x08,0x46,0x3A,0xA0,0x08,0x60,0x00,0xA0,0x08,0x40,0x00,0x47,0x3A,0x22,0x11,0x80,0x00,0xC1,0x08,0x80,0x00,0x80,0x00, +0x67,0x24,0x2D,0x5D,0xC0,0x00,0xA2,0x08,0x61,0x08,0xC1,0x00,0xC0,0x00,0xE4,0x29,0x80,0x00,0x81,0x08,0x81,0x08,0xC0,0x08,0x42,0x19,0x63,0x21,0x40,0x00,0xA2,0x08,0x41,0x08,0xA1,0x08,0x46,0x32,0xA0,0x00,0x60,0x00,0xC1,0x10,0x40,0x00,0xE6,0x29,0x23,0x11,0x60,0x08,0xC2,0x18,0x60,0x08,0xA0,0x08,0xA0,0x08,0x81,0x08,0x60,0x08,0xA0,0x00,0xA0,0x00,0xA0,0x08,0x80,0x08,0x80,0x08,0xC0,0x00,0xA0,0x00,0x61,0x10,0x62,0x20,0x00,0x00,0x65,0x3B,0x2E,0x7E,0x67,0x3B,0x40,0x00,0xE2,0x08,0xE0,0x00,0xC0,0x00,0xC0,0x00,0x63,0x11,0x42,0x19,0xA0,0x00,0xA0,0x00,0xA0,0x00,0xE1,0x00,0xE0,0x00,0x62,0x11,0x45,0x22,0x03,0x12,0x60,0x01,0xE3,0x11,0xA2,0x09,0x62,0x01, +0x03,0x11,0xC2,0x10,0x60,0x00,0xAC,0x5C,0x4F,0x6E,0xF3,0x86,0x47,0x33,0x60,0x00,0x60,0x00,0xA0,0x08,0x40,0x00,0xA7,0x2A,0xCA,0x33,0xA8,0x13,0xE8,0x23,0xA8,0x2B,0x88,0x23,0x68,0x23,0x68,0x23,0x48,0x23,0x27,0x1B,0x26,0x1B,0xE8,0x3B,0xE7,0x3B,0x05,0x34,0x05,0x3C,0x45,0x44,0x25,0x44,0x05,0x3C,0x06,0x3C,0x07,0x2C,0x68,0x34,0x08,0x44,0x49,0x3C,0x68,0x34,0x67,0x34,0x47,0x3C,0x47,0x4C,0x47,0x4C,0x47,0x44,0x47,0x3C,0x48,0x44,0xE7,0x4B,0xE7,0x4B,0x07,0x4C,0x27,0x44,0x68,0x44,0x84,0x23,0x03,0x2B,0x23,0x2B,0xC5,0x33,0x06,0x44,0x88,0x5C,0xCA,0x6C,0x0A,0x75,0x6A,0x6D,0xAB,0x65,0xCB,0x65,0xAA,0x6D,0xAB,0x7D,0x8B,0x7D,0x6B,0x7D,0x6B,0x7D,0x0A,0x7D, +0xCA,0x6D,0x89,0x6D,0x89,0x75,0x69,0x75,0x6A,0x75,0x6A,0x75,0x6A,0x7D,0x49,0x7D,0x48,0x7D,0x8A,0x75,0x8A,0x6D,0x89,0x6D,0x68,0x75,0x67,0x7D,0x89,0x7D,0x89,0x75,0x86,0x8D,0x66,0x85,0xE8,0x95,0x2C,0xBF,0x0C,0xB7,0x4D,0xBF,0x0B,0xB7,0x4C,0xBF,0x2B,0xB7,0x2B,0xB7,0x4B,0xB7,0x4B,0xAF,0x6C,0xAF,0x6D,0xB7,0x6D,0xAF,0x2C,0xA7,0x89,0x8E,0xE7,0x7D,0x66,0x6D,0x87,0x75,0x46,0x75,0x85,0x7D,0xA7,0x85,0x2A,0x7D,0x85,0x2A,0x45,0x22,0x6C,0x7D,0x86,0x75,0xC5,0x75,0x89,0x75,0xA8,0x3B,0x67,0x12,0x86,0x54,0xCB,0x7D,0xA4,0x3B,0x44,0x2B,0x63,0x2B,0x68,0x65,0x86,0x6D,0xE8,0x75,0x48,0x65,0x29,0x65,0x6B,0x8E,0xE6,0x75,0x67,0x7E,0x89,0x86,0x6A,0x86,0x6B,0x7E, +0x6C,0x8E,0x2A,0x86,0xE9,0x7D,0xC8,0x75,0x67,0x6D,0x47,0x6D,0x48,0x75,0x29,0x6D,0xEA,0x64,0x49,0x54,0x22,0x12,0x64,0x1A,0x24,0x12,0x65,0x1A,0x04,0x12,0x45,0x1A,0x45,0x12,0x44,0x12,0x43,0x12,0x63,0x1A,0x63,0x1A,0x64,0x1A,0x65,0x1A,0x65,0x1A,0x44,0x12,0x63,0x12,0x0B,0x65,0xCC,0x75,0xCA,0x75,0xC8,0x6D,0xE8,0x6D,0xE7,0x6D,0xA9,0x43,0x28,0x33,0x68,0x3B,0xA9,0x43,0x88,0x3B,0x88,0x3B,0xE8,0x4B,0x09,0x4C,0xA8,0x43,0x67,0x3B,0x68,0x3B,0x89,0x43,0x49,0x3B,0x6B,0x43,0x8C,0x43,0x4C,0x3B,0x69,0x43,0x69,0x43,0x69,0x43,0x6A,0x43,0x6A,0x43,0x6A,0x43,0x6A,0x43,0x6A,0x43,0x8A,0x43,0x69,0x3B,0x48,0x3B,0xC6,0x2A,0xA5,0x22,0xE6,0x2A,0xC5,0x2A,0xC6,0x2A, +0xA4,0x22,0xA4,0x1A,0x05,0x23,0xA9,0x33,0xAA,0x3B,0x05,0x0A,0x09,0x23,0xCB,0x33,0xE6,0x1A,0x22,0x02,0xE2,0x22,0xCB,0x7D,0x8C,0x8E,0x4A,0x7E,0x4A,0x86,0x84,0x54,0xA6,0x3B,0xC7,0x43,0x87,0x3B,0xA6,0x3B,0x85,0x3B,0xE5,0x43,0x07,0x65,0x68,0x6D,0x47,0x65,0x26,0x65,0x26,0x65,0xE5,0x5C,0x26,0x5D,0x49,0x6D,0x47,0x4C,0x04,0x23,0x05,0x33,0x05,0x33,0x25,0x33,0xE8,0x4B,0x28,0x54,0x07,0x4C,0x68,0x54,0x67,0x4C,0x66,0x4C,0x65,0x4C,0x07,0x5D,0xE6,0x5C,0x06,0x65,0xE6,0x64,0x07,0x6D,0xE6,0x6C,0x08,0x6D,0xE8,0x6C,0xC7,0x6C,0x07,0x6D,0x08,0x6D,0x08,0x6D,0x29,0x6D,0x2A,0x75,0xA9,0x64,0x04,0x2B,0xE1,0x09,0xC2,0x09,0xE2,0x09,0xE3,0x09,0x45,0x12,0xE7,0x2A, +0x87,0x22,0xE4,0x11,0x04,0x12,0xE3,0x09,0xA2,0x01,0xE2,0x09,0x27,0x3B,0x8C,0x64,0xC5,0x2A,0x84,0x12,0xC5,0x12,0x27,0x13,0x89,0x1B,0x69,0x13,0x6A,0x13,0xCB,0x1B,0x26,0x1B,0xA4,0x02,0xC4,0x12,0x41,0x0A,0x23,0x33,0x2B,0x75,0xE8,0x43,0x07,0x1B,0xE8,0x12,0xE8,0x12,0xE8,0x12,0xE8,0x12,0xE9,0x12,0xC8,0x12,0x09,0x34,0x4B,0x4D,0xCB,0x2C,0xE7,0x1B,0xC6,0x13,0x85,0x13,0xC7,0x13,0x45,0x03,0x25,0x03,0x25,0x03,0x45,0x03,0x45,0x03,0x24,0x03,0x85,0x0B,0x2B,0x4D,0xEB,0x75,0x6B,0x96,0x4A,0x9E,0x69,0x9E,0xEC,0x85,0xAB,0x44,0xE8,0x1B,0xC7,0x13,0x0C,0x3D,0xC4,0x02,0x8B,0x34,0x8B,0x34,0xE5,0x02,0xA4,0x02,0xA7,0x33,0xEC,0x8D,0x09,0x96,0x09,0x8E,0x0B,0x8E, +0xE8,0x8D,0xCE,0x9E,0x48,0x44,0x07,0x1B,0x49,0x23,0x08,0x13,0x48,0x13,0x68,0x1B,0x47,0x1B,0x47,0x13,0x2A,0x24,0x0E,0x35,0xC9,0x0B,0x67,0x03,0xCB,0x34,0x67,0x1C,0x86,0x03,0x6A,0x24,0x6B,0x24,0xA7,0x0B,0x08,0x14,0xAA,0x24,0x45,0x03,0x09,0x1C,0x0D,0x45,0x42,0x02,0x80,0x01,0x40,0x01,0x62,0x01,0x42,0x01,0x63,0x01,0x83,0x01,0xA5,0x11,0x05,0x0A,0x68,0x23,0x88,0x1B,0x88,0x23,0x28,0x23,0x49,0x2B,0x28,0x2B,0x48,0x2B,0x88,0x2B,0x68,0x1B,0x89,0x23,0x27,0x23,0xA8,0x3B,0xEE,0x7D,0xEC,0x75,0xCB,0x5D,0x2B,0x76,0x0A,0x76,0x0D,0x6E,0xAC,0x34,0xCC,0x13,0xEC,0x1B,0x0B,0x24,0x2B,0x1C,0x6C,0x1C,0x6C,0x1C,0xCD,0x2C,0xAC,0x1C,0x0E,0x25,0xCD,0x1C,0x6F,0x35, +0xAC,0x3C,0x29,0x24,0xA6,0x13,0xE7,0x1B,0x85,0x13,0x46,0x1B,0x68,0x33,0x60,0x01,0x60,0x00,0x45,0x32,0x21,0x11,0x80,0x00,0xA0,0x00,0xC0,0x08,0xA0,0x00,0x04,0x32,0x60,0x00,0xA0,0x08,0x80,0x08,0x80,0x08,0x22,0x19,0xA4,0x29,0x40,0x00,0xC1,0x10,0xA0,0x08,0x60,0x00,0x26,0x3A,0xA1,0x08,0xA1,0x08,0x80,0x08,0x80,0x08,0xA1,0x08,0x67,0x24,0x0C,0x5D,0x00,0x01,0xA1,0x08,0x61,0x08,0xE1,0x08,0x40,0x00,0x25,0x3A,0x60,0x00,0x80,0x08,0xA0,0x08,0x80,0x08,0x00,0x19,0x62,0x29,0x80,0x00,0xC0,0x08,0xA1,0x18,0x60,0x08,0x62,0x21,0x00,0x11,0xC0,0x10,0x80,0x08,0x81,0x08,0x60,0x00,0xC5,0x31,0x80,0x08,0x60,0x08,0xA0,0x10,0xA1,0x10,0x60,0x08,0x81,0x10,0xA2,0x18, +0xA0,0x08,0xC0,0x00,0xA0,0x08,0xA0,0x08,0xA0,0x08,0xC0,0x00,0xC0,0x00,0x82,0x10,0x62,0x20,0x00,0x08,0x24,0x43,0xED,0x85,0x87,0x4B,0x40,0x00,0xA1,0x08,0xA0,0x00,0xA1,0x00,0x83,0x11,0x42,0x09,0xA0,0x08,0x80,0x10,0xA0,0x08,0xE1,0x00,0xA0,0x00,0xA1,0x00,0xC4,0x21,0x44,0x12,0x02,0x02,0xE2,0x01,0xE4,0x19,0x63,0x19,0x42,0x09,0x60,0x00,0xC2,0x10,0x60,0x00,0xCE,0x64,0x71,0x76,0xD2,0x86,0x89,0x54,0x03,0x33,0x47,0x64,0x69,0x64,0x22,0x12,0x89,0x2B,0x68,0x13,0xC9,0x13,0x48,0x1B,0xC8,0x2A,0x47,0x1B,0x07,0x1B,0x07,0x1B,0x08,0x1B,0xCA,0x2B,0x0B,0x34,0xA9,0x23,0x87,0x23,0x67,0x33,0xA7,0x43,0x66,0x3B,0x44,0x2B,0x48,0x3C,0x2B,0x45,0x4B,0x3D,0x4B,0x35, +0xEC,0x44,0x2C,0x35,0x4B,0x35,0x6C,0x45,0xEA,0x4C,0x28,0x44,0x07,0x3C,0x0A,0x45,0x4B,0x45,0xCA,0x44,0x0C,0x55,0xCB,0x44,0x4C,0x45,0x6B,0x45,0x8C,0x5D,0x2C,0x65,0xAC,0x75,0xED,0x6D,0x0D,0x66,0xCC,0x5D,0xAC,0x65,0x8B,0x65,0x6A,0x5D,0xAA,0x5D,0xAA,0x65,0x08,0x5D,0x48,0x65,0x69,0x65,0x69,0x5D,0x48,0x55,0xAA,0x5D,0xAA,0x5D,0xC9,0x4D,0xA9,0x4D,0x88,0x5D,0x89,0x65,0x49,0x5D,0x8A,0x65,0x69,0x65,0x49,0x5D,0x8A,0x65,0x69,0x55,0x8A,0x55,0x6A,0x4D,0x8A,0x55,0xAB,0x65,0x2A,0x65,0x0A,0x65,0x26,0x7D,0xE9,0x9D,0x0D,0xBF,0xEC,0xBE,0xEC,0xB6,0xEC,0xB6,0xCC,0xB6,0xEC,0xBE,0xED,0xBE,0xEC,0xB6,0xEB,0xB6,0xEC,0xB6,0x0C,0xB7,0xEC,0xB6,0x6B,0x9E,0xA9,0x8D, +0x46,0x75,0x46,0x75,0x68,0x7D,0x48,0x75,0x68,0x7D,0x67,0x7D,0x26,0x75,0x0B,0x7D,0x45,0x22,0x67,0x2A,0x4D,0x7D,0x68,0x75,0x66,0x6D,0x4A,0x6D,0x85,0x1A,0x48,0x12,0x05,0x44,0x8C,0x75,0x0B,0x65,0x23,0x23,0x62,0x2B,0x88,0x6D,0xE8,0x7D,0x6A,0x86,0x6A,0x86,0xCB,0x96,0x69,0x86,0xC8,0x8E,0x45,0x7E,0x86,0x86,0x87,0x86,0x68,0x7E,0x68,0x86,0x48,0x86,0x68,0x86,0x47,0x86,0xC5,0x75,0x85,0x6D,0x86,0x75,0x87,0x75,0xA9,0x7D,0x05,0x4C,0x20,0x12,0x01,0x12,0x24,0x12,0x46,0x1A,0x46,0x1A,0x27,0x1A,0x26,0x12,0x26,0x12,0x25,0x12,0x24,0x12,0x24,0x12,0x25,0x12,0x25,0x12,0x25,0x12,0x04,0x0A,0xE5,0x22,0x8C,0x75,0x28,0x65,0x88,0x6D,0x67,0x65,0xA7,0x65,0xA7,0x6D, +0xA4,0x33,0x09,0x65,0x4C,0x8E,0x4A,0x86,0xC8,0x75,0x2A,0x86,0x8C,0x96,0x4B,0x8E,0x0B,0x86,0xCC,0x7D,0x69,0x54,0x47,0x33,0x4A,0x3B,0x4C,0x3B,0x2B,0x33,0x6C,0x3B,0x69,0x3B,0x69,0x3B,0x6A,0x3B,0x4A,0x3B,0x4B,0x3B,0x4B,0x3B,0x4A,0x3B,0x4A,0x3B,0x4A,0x3B,0x6A,0x43,0x6B,0x43,0xE8,0x32,0x45,0x1A,0x25,0x1A,0x24,0x12,0x65,0x1A,0xA5,0x2A,0x88,0x43,0xC8,0x3B,0xA7,0x33,0xA9,0x3B,0x49,0x2B,0xA7,0x0A,0xAA,0x2B,0x88,0x23,0xE4,0x12,0x4C,0x6D,0x49,0x65,0x26,0x5D,0x45,0x65,0x46,0x6D,0x68,0x75,0xA6,0x3B,0xA7,0x3B,0x46,0x33,0x67,0x33,0x45,0x33,0xC5,0x3B,0xA7,0x5C,0x45,0x4C,0xC7,0x5C,0x45,0x4C,0x25,0x4C,0x46,0x4C,0x26,0x44,0x07,0x44,0xA6,0x3B,0xE4,0x22, +0xA4,0x2A,0xA5,0x2A,0x85,0x2A,0xA6,0x2A,0xE7,0x32,0x06,0x33,0xE4,0x2A,0x02,0x23,0x00,0x1B,0x07,0x5D,0x4A,0x7E,0x4A,0x7E,0x09,0x7E,0x27,0x65,0xA6,0x5C,0xC7,0x64,0xA8,0x64,0xC8,0x64,0xC8,0x64,0xE7,0x64,0xC6,0x64,0xC6,0x64,0xC7,0x64,0xA6,0x5C,0xE8,0x6C,0x0A,0x75,0x27,0x54,0x04,0x33,0xC3,0x22,0x21,0x12,0x21,0x12,0x66,0x3B,0x65,0x22,0xC2,0x09,0x23,0x12,0x83,0x22,0x45,0x33,0x48,0x54,0x2B,0x6D,0xC9,0x64,0x27,0x4C,0x40,0x0A,0x01,0x02,0xE2,0x01,0x04,0x02,0xA7,0x0A,0xC9,0x12,0x27,0x02,0xC4,0x09,0xC3,0x01,0xE2,0x01,0x04,0x2B,0x68,0x5C,0xE9,0x6C,0xC7,0x43,0xC5,0x12,0xE7,0x12,0xE7,0x12,0xE6,0x0A,0xE7,0x0A,0xE8,0x0A,0xE6,0x0A,0x27,0x34,0x69,0x55, +0x6C,0x45,0x6C,0x45,0x8C,0x4D,0x6C,0x4D,0x6C,0x4D,0x6D,0x45,0x2C,0x45,0x2C,0x45,0x0B,0x3D,0x89,0x2C,0x89,0x2C,0x88,0x2C,0x4A,0x4D,0xCA,0x6D,0x8B,0x9E,0x28,0x9E,0x69,0xA6,0xEC,0x85,0xAB,0x4C,0xC8,0x1B,0xA7,0x13,0xEC,0x44,0xC4,0x02,0x8B,0x3C,0x8B,0x3C,0xE5,0x02,0xA4,0x0A,0xA7,0x3B,0x0C,0x8E,0x29,0x96,0x29,0x96,0x0B,0x8E,0x48,0x96,0xAD,0x9E,0xCB,0x54,0xC6,0x12,0x09,0x1B,0x29,0x1B,0x48,0x13,0x47,0x13,0x27,0x1B,0x27,0x13,0x2B,0x24,0x0F,0x3D,0xCA,0x13,0x88,0x0B,0x0B,0x35,0xA8,0x24,0x87,0x03,0x6A,0x24,0x8B,0x24,0xA7,0x0B,0x08,0x14,0xAB,0x2C,0x66,0x03,0x09,0x1C,0xAC,0x3C,0xE6,0x12,0x23,0x0A,0xE4,0x11,0xE4,0x11,0x05,0x1A,0xA4,0x09,0xE5,0x11, +0xA5,0x11,0x83,0x01,0xC7,0x1A,0x48,0x1B,0x07,0x13,0xC6,0x12,0x86,0x0A,0xA6,0x1A,0x65,0x12,0xC5,0x0A,0x85,0x02,0xC6,0x0A,0xA6,0x12,0x83,0x12,0x0B,0x5D,0xEC,0x6D,0xCB,0x55,0x2B,0x6E,0xC9,0x6D,0x0D,0x76,0x6B,0x2C,0x6A,0x03,0x2C,0x1C,0x2B,0x24,0x0A,0x1C,0x8C,0x24,0x8B,0x1C,0xED,0x2C,0xAB,0x1C,0xEC,0x24,0xCC,0x24,0xCC,0x2C,0x6A,0x2C,0xCB,0x3C,0xE6,0x23,0xE3,0x0A,0x04,0x13,0x46,0x23,0xE9,0x43,0x02,0x0A,0x67,0x33,0xCC,0x5C,0xC8,0x33,0xC9,0x3B,0xE7,0x32,0x60,0x00,0xA6,0x42,0x61,0x29,0xA1,0x08,0xA0,0x08,0xA0,0x08,0xC1,0x10,0x63,0x29,0xC1,0x10,0x60,0x00,0xC1,0x10,0xA0,0x08,0xC1,0x10,0x43,0x21,0xA1,0x10,0xA1,0x10,0x60,0x08,0x81,0x10,0x81,0x08, +0x46,0x24,0xEB,0x54,0x00,0x01,0xA1,0x08,0x81,0x08,0xC1,0x08,0x60,0x00,0x83,0x21,0xE1,0x10,0x80,0x08,0xC0,0x10,0xA0,0x08,0x80,0x08,0x20,0x21,0xE0,0x10,0xA0,0x00,0x80,0x00,0xC0,0x08,0x80,0x08,0xC4,0x29,0x60,0x00,0xA1,0x00,0xA1,0x08,0xA1,0x08,0x80,0x08,0x04,0x32,0x80,0x08,0xA0,0x10,0x40,0x08,0xA1,0x10,0x40,0x08,0x20,0x00,0x80,0x08,0xA0,0x08,0xA0,0x08,0x80,0x10,0x80,0x10,0xC0,0x00,0xE1,0x00,0xA2,0x08,0x62,0x18,0x00,0x00,0x45,0x43,0x4E,0x8E,0xE9,0x5B,0x20,0x00,0x81,0x10,0xA1,0x08,0x84,0x19,0x63,0x11,0xC0,0x00,0xA0,0x08,0x80,0x08,0xC1,0x08,0x80,0x00,0x44,0x09,0xC5,0x21,0x63,0x09,0xE3,0x01,0x43,0x02,0xA5,0x12,0xC3,0x19,0xE1,0x10,0x60,0x00, +0xC0,0x08,0xA0,0x00,0xC0,0x00,0x50,0x6D,0x50,0x7E,0x0C,0x76,0x6C,0x86,0x8C,0x8E,0x2B,0x7E,0x0C,0x76,0x8C,0x5D,0x4D,0x4D,0xAA,0x24,0x6A,0x1C,0xEA,0x2B,0xE8,0x32,0x06,0x13,0x27,0x1B,0xC6,0x0A,0x69,0x23,0xCA,0x2B,0xCA,0x23,0x8A,0x23,0x08,0x1B,0xA6,0x22,0x65,0x22,0xE6,0x22,0x0D,0x4D,0xB1,0x6E,0xD1,0x5E,0xD0,0x56,0xD0,0x56,0xD1,0x56,0xF1,0x56,0xD1,0x56,0x0F,0x56,0xAA,0x44,0x0B,0x55,0x2F,0x5E,0xF1,0x5E,0xD0,0x4E,0xB0,0x5E,0x90,0x66,0xB0,0x66,0xD0,0x56,0xD0,0x5E,0x2A,0x4D,0xA9,0x54,0x4C,0x4D,0x0E,0x4E,0x90,0x56,0xB0,0x56,0x6F,0x56,0x8F,0x56,0xAF,0x56,0xAF,0x66,0x0E,0x6E,0xA9,0x54,0xEA,0x54,0xCC,0x55,0x8E,0x5E,0xCF,0x56,0xCF,0x56,0xCE,0x4E, +0xCD,0x56,0xEF,0x5E,0x6E,0x5E,0xEC,0x5D,0xC8,0x44,0x69,0x4D,0x0C,0x56,0xAF,0x5E,0xD0,0x5E,0x8E,0x56,0xCF,0x5E,0xCF,0x56,0xB0,0x56,0x2F,0x5E,0x0C,0x55,0xCB,0x64,0x47,0x7D,0x0E,0xB7,0xEC,0xAE,0xEC,0xAE,0xEC,0xAE,0xEC,0xAE,0xED,0xB6,0xCC,0xAE,0xED,0xB6,0x0D,0xB7,0xEC,0xAE,0x0C,0xAF,0x0C,0xB7,0x6A,0x9E,0x67,0x7D,0x06,0x75,0x47,0x75,0x68,0x7D,0x27,0x75,0x48,0x75,0x28,0x75,0x26,0x75,0x88,0x7D,0x0A,0x75,0xE2,0x11,0x61,0x01,0x0B,0x6D,0x28,0x6D,0x68,0x75,0x2A,0x6D,0x85,0x1A,0x26,0x12,0xE5,0x43,0xCE,0x85,0x2C,0x6D,0x02,0x23,0x21,0x23,0xA9,0x75,0x4C,0x86,0xEA,0x7D,0x09,0x7E,0xE8,0x75,0xE8,0x7D,0x08,0x7E,0x07,0x7E,0x26,0x7E,0x27,0x7E,0x29,0x7E, +0x27,0x7E,0x07,0x7E,0x07,0x7E,0x28,0x7E,0x08,0x7E,0xC7,0x75,0x66,0x6D,0x46,0x6D,0x26,0x6D,0x69,0x75,0x09,0x6D,0xE6,0x43,0x22,0x12,0xC3,0x09,0xE5,0x09,0x07,0x12,0x27,0x12,0x27,0x12,0x26,0x12,0x25,0x12,0x25,0x12,0x26,0x12,0x26,0x12,0x26,0x12,0x25,0x12,0xE9,0x43,0x2B,0x65,0x28,0x65,0x27,0x5D,0x67,0x65,0x27,0x5D,0x47,0x5D,0xE9,0x7D,0x29,0x7E,0x07,0x7E,0x06,0x76,0x46,0x86,0x46,0x86,0x06,0x7E,0x27,0x7E,0x07,0x7E,0x2A,0x86,0xEC,0x85,0xCB,0x64,0x89,0x3B,0x2A,0x33,0x6B,0x3B,0x2B,0x33,0x4A,0x3B,0x4B,0x3B,0x2C,0x3B,0x2C,0x3B,0x2C,0x3B,0x2C,0x3B,0x2B,0x3B,0x2A,0x3B,0x2A,0x3B,0x29,0x3B,0x29,0x3B,0x6A,0x43,0x49,0x3B,0x28,0x3B,0xE9,0x4B,0x2A,0x54, +0x4B,0x6C,0x49,0x5C,0x0A,0x6D,0x26,0x44,0x44,0x23,0x88,0x2B,0x48,0x1B,0x89,0x1B,0x88,0x1B,0x66,0x1B,0x68,0x4C,0x87,0x4C,0xA6,0x54,0xA6,0x54,0x86,0x5C,0x46,0x5C,0x85,0x33,0x65,0x2B,0xE5,0x22,0x06,0x23,0x05,0x23,0x04,0x23,0xA5,0x33,0xC6,0x3B,0xA6,0x3B,0x65,0x33,0xE4,0x22,0xE4,0x2A,0x04,0x2B,0xE4,0x2A,0xE4,0x2A,0xA3,0x1A,0x85,0x1A,0x44,0x12,0xA5,0x22,0x64,0x1A,0x64,0x22,0xC4,0x2A,0x04,0x2B,0x06,0x4C,0xA6,0x54,0xEA,0x7D,0xE8,0x75,0x09,0x76,0xE8,0x75,0xE9,0x7D,0x88,0x75,0xC6,0x64,0x87,0x64,0x87,0x5C,0xC7,0x64,0x86,0x5C,0xA5,0x5C,0xC6,0x64,0x85,0x5C,0xC6,0x64,0x86,0x64,0x66,0x5C,0xA8,0x64,0xC9,0x6C,0xA8,0x64,0x89,0x5C,0x88,0x5C,0x68,0x54, +0x6A,0x54,0x49,0x54,0x89,0x5C,0x89,0x5C,0xC9,0x6C,0xA7,0x5C,0x86,0x5C,0xA7,0x5C,0xE8,0x64,0x67,0x54,0xC5,0x43,0xC2,0x22,0x42,0x12,0xE5,0x22,0x47,0x33,0xE2,0x09,0x63,0x22,0x26,0x3B,0xA8,0x4B,0xCA,0x6C,0x87,0x5C,0xC8,0x5C,0xE7,0x3B,0xC5,0x12,0xC7,0x12,0xC6,0x12,0xE6,0x12,0xE6,0x12,0xE7,0x12,0xE5,0x0A,0x26,0x2C,0x68,0x55,0xC9,0x34,0xA5,0x13,0xE5,0x1B,0x06,0x24,0x68,0x2C,0x28,0x24,0x89,0x2C,0x89,0x2C,0xCA,0x3C,0x0B,0x3D,0x2B,0x45,0x2B,0x45,0x2A,0x4D,0xEA,0x75,0x8B,0x9E,0x48,0xA6,0x69,0xA6,0xEC,0x8D,0xAB,0x54,0xC9,0x23,0xA7,0x1B,0xED,0x4C,0xA5,0x0A,0x6C,0x44,0x6B,0x44,0xC5,0x0A,0x84,0x0A,0xA7,0x3B,0xEC,0x8D,0x29,0x96,0x29,0x96,0x0B,0x8E, +0x07,0x8E,0xCE,0x9E,0x8A,0x4C,0xC7,0x12,0x09,0x23,0x08,0x1B,0x27,0x13,0x28,0x13,0x27,0x1B,0x06,0x13,0x2B,0x2C,0x2E,0x3D,0xC9,0x0B,0x87,0x0B,0xEB,0x34,0x47,0x1C,0x66,0x03,0x6A,0x24,0xAB,0x2C,0x86,0x03,0x08,0x14,0xCB,0x2C,0x25,0x03,0x2A,0x24,0xED,0x44,0x85,0x0A,0xA2,0x01,0xC4,0x11,0xC4,0x11,0x84,0x09,0xC4,0x11,0xA3,0x09,0xA5,0x11,0xA4,0x09,0x66,0x1A,0x08,0x23,0x48,0x1B,0x48,0x1B,0x28,0x23,0x27,0x23,0x47,0x2B,0x27,0x1B,0x69,0x1B,0x49,0x1B,0x28,0x2B,0xC5,0x1A,0xEA,0x54,0xEB,0x65,0xCC,0x5D,0xCA,0x6D,0xC9,0x6D,0xCC,0x65,0x4B,0x2C,0xEC,0x1B,0xCB,0x1B,0x06,0x0B,0x87,0x13,0x2A,0x24,0xC5,0x02,0x4A,0x2C,0x25,0x03,0x09,0x1C,0xCB,0x2C,0x49,0x24, +0xA8,0x1B,0x08,0x2C,0xC7,0x23,0xE8,0x2B,0x05,0x1B,0x27,0x23,0x07,0x1B,0x4A,0x3C,0xEB,0x44,0xC5,0x13,0x06,0x1C,0xE8,0x23,0xA9,0x2B,0x28,0x3B,0x66,0x3A,0x80,0x00,0xA0,0x08,0xA0,0x00,0xA0,0x08,0xA0,0x08,0x67,0x3A,0x80,0x00,0xE1,0x10,0x80,0x00,0xA0,0x08,0x02,0x11,0x43,0x19,0x80,0x00,0xA0,0x08,0xA0,0x08,0xC1,0x08,0x80,0x00,0x25,0x1C,0xCB,0x54,0x00,0x01,0xA1,0x08,0xA1,0x08,0xA1,0x00,0xE1,0x08,0x80,0x00,0x02,0x11,0x80,0x00,0xC1,0x08,0xA0,0x08,0x80,0x00,0x42,0x19,0x21,0x11,0xE0,0x00,0xC0,0x00,0xC0,0x00,0x80,0x00,0x44,0x11,0xC6,0x19,0x80,0x00,0x02,0x01,0xA0,0x00,0xE0,0x08,0x40,0x09,0xE4,0x21,0xA1,0x00,0x82,0x08,0x81,0x08,0x42,0x19,0x84,0x32, +0x81,0x10,0xA0,0x08,0x80,0x08,0x60,0x10,0x60,0x10,0xA0,0x08,0xE1,0x00,0xC2,0x00,0xC2,0x10,0x40,0x00,0x85,0x33,0x6E,0x7E,0x08,0x4C,0x40,0x00,0xE2,0x10,0x84,0x19,0x43,0x11,0xA0,0x00,0xC0,0x08,0xC0,0x08,0xC0,0x00,0xC1,0x00,0x64,0x19,0x64,0x19,0xE1,0x00,0xC0,0x00,0xA2,0x01,0xC5,0x1A,0x64,0x12,0x82,0x01,0x80,0x00,0x60,0x18,0x80,0x08,0xE0,0x08,0x80,0x00,0x2C,0x6D,0xCB,0x75,0xA8,0x6D,0x66,0x65,0x46,0x5D,0xE6,0x44,0xC7,0x34,0xA8,0x34,0xA8,0x24,0x09,0x25,0x88,0x1C,0x2A,0x2C,0x48,0x2B,0xA5,0x0A,0xA5,0x0A,0xA4,0x0A,0xE5,0x1A,0x26,0x23,0xC5,0x1A,0xA5,0x22,0x44,0x1A,0xA6,0x22,0x68,0x23,0x2E,0x4D,0x71,0x5E,0x90,0x4E,0x8F,0x46,0x8E,0x4E,0x6E,0x4E, +0xD0,0x46,0x8F,0x4E,0xED,0x4D,0x2B,0x45,0x0B,0x45,0x0E,0x56,0xB0,0x56,0xAF,0x46,0xCF,0x3E,0xEF,0x4E,0x8E,0x4E,0xAF,0x56,0x2D,0x4E,0x6B,0x45,0x2A,0x45,0x6B,0x55,0x70,0x4E,0xD1,0x56,0xB0,0x46,0xB0,0x46,0x90,0x4E,0xB0,0x4E,0x90,0x4E,0xCD,0x45,0x2B,0x45,0xEA,0x44,0x0E,0x5E,0x8F,0x56,0xB0,0x4E,0xAF,0x46,0xCF,0x3E,0xF0,0x3E,0xAE,0x4E,0x4E,0x4E,0x6B,0x35,0x6C,0x45,0x4B,0x45,0x6F,0x66,0xB0,0x56,0xB0,0x46,0xAF,0x3E,0xEF,0x46,0xCE,0x46,0xAE,0x4E,0x2D,0x4E,0x4A,0x45,0xC9,0x54,0x0A,0x65,0x88,0x7D,0xCC,0xA6,0xEC,0xA6,0xEB,0xA6,0xEB,0xA6,0xEC,0xAE,0xEC,0xAE,0xEC,0xAE,0xCC,0xA6,0x0C,0xAF,0xCB,0xA6,0xEB,0xAE,0xEB,0xAE,0xC8,0x85,0xE5,0x6C,0x47,0x75, +0x47,0x6D,0x27,0x6D,0x27,0x6D,0x48,0x75,0x28,0x6D,0x47,0x75,0xC6,0x64,0x22,0x33,0x82,0x22,0x46,0x3B,0x43,0x33,0x47,0x6D,0x06,0x6D,0x21,0x2B,0xE0,0x09,0x01,0x0A,0x60,0x12,0x68,0x54,0x0A,0x65,0x01,0x23,0x28,0x65,0xEB,0x7D,0x8A,0x6D,0xCA,0x75,0xE9,0x7D,0xC8,0x75,0xA8,0x75,0xC9,0x75,0xA8,0x75,0xC8,0x75,0xC8,0x75,0xC9,0x75,0xC8,0x75,0xC8,0x75,0xA8,0x75,0xC8,0x75,0xC9,0x75,0xA9,0x75,0xA8,0x75,0xA9,0x7D,0x47,0x6D,0x48,0x6D,0x28,0x6D,0x4A,0x75,0x0B,0x6D,0xC7,0x43,0xA4,0x22,0x22,0x12,0xE4,0x09,0xE3,0x09,0x03,0x0A,0x02,0x0A,0x03,0x0A,0x24,0x12,0x25,0x12,0x25,0x12,0x04,0x0A,0xE5,0x22,0xEA,0x5C,0xC7,0x54,0xC7,0x54,0x07,0x5D,0xC7,0x54,0xE8,0x54, +0xC7,0x6D,0xC7,0x75,0xC8,0x75,0xC8,0x75,0xC7,0x75,0xC6,0x75,0xC6,0x75,0xC6,0x75,0xA7,0x75,0xC9,0x75,0x89,0x75,0xAA,0x75,0x8C,0x75,0x49,0x4C,0x06,0x2B,0x28,0x33,0x0A,0x33,0x2B,0x33,0x2C,0x3B,0x0D,0x3B,0x0D,0x3B,0x2C,0x3B,0xEA,0x32,0x29,0x3B,0x28,0x3B,0x48,0x3B,0xA9,0x43,0xEA,0x53,0x2A,0x54,0x69,0x5C,0x68,0x5C,0x87,0x5C,0x28,0x64,0x67,0x64,0xA5,0x5C,0xA5,0x54,0x87,0x4C,0xE7,0x33,0x67,0x1B,0xA8,0x1B,0xA8,0x1B,0x86,0x23,0xC7,0x33,0xC7,0x3B,0xC7,0x3B,0xA7,0x3B,0xA7,0x43,0xA8,0x4B,0xC5,0x33,0x65,0x23,0xE5,0x1A,0xC5,0x1A,0x06,0x23,0x84,0x12,0x05,0x23,0xC4,0x1A,0x06,0x2B,0xC6,0x22,0xA5,0x22,0x43,0x12,0xA3,0x1A,0x07,0x4C,0x2B,0x75,0x06,0x4C, +0xA6,0x12,0xE6,0x1A,0x87,0x2B,0x0C,0x65,0x84,0x33,0xAB,0x75,0x29,0x6D,0xAA,0x75,0x69,0x6D,0x69,0x6D,0x48,0x6D,0x68,0x6D,0x68,0x6D,0x68,0x6D,0x67,0x6D,0x06,0x65,0x86,0x5C,0x86,0x5C,0x65,0x5C,0x65,0x5C,0x86,0x5C,0x86,0x5C,0x66,0x5C,0x66,0x5C,0x86,0x5C,0x67,0x64,0x67,0x64,0x67,0x5C,0x67,0x5C,0x67,0x5C,0x67,0x5C,0x87,0x54,0x87,0x5C,0x87,0x5C,0x87,0x54,0x86,0x5C,0x86,0x5C,0x86,0x5C,0x86,0x5C,0x86,0x5C,0x86,0x5C,0x87,0x5C,0xA7,0x5C,0xA7,0x5C,0x87,0x5C,0x86,0x5C,0x66,0x5C,0x66,0x64,0xC7,0x5C,0x67,0x5C,0x88,0x64,0x46,0x5C,0x87,0x5C,0x88,0x54,0xC8,0x3B,0xA6,0x12,0xA7,0x12,0xC7,0x12,0xC6,0x1A,0xA7,0x12,0xC8,0x12,0xA6,0x0A,0x29,0x2C,0x6B,0x4D, +0xA9,0x2C,0x85,0x13,0x64,0x13,0x64,0x13,0x07,0x24,0x24,0x03,0x65,0x0B,0x65,0x0B,0x86,0x13,0x45,0x0B,0x45,0x0B,0xA5,0x13,0x2A,0x55,0xEB,0x75,0x6B,0x9E,0x49,0xA6,0x6A,0xAE,0xCC,0x8D,0xE5,0x22,0xC6,0x0A,0x06,0x13,0x0A,0x3C,0x44,0x0A,0xEA,0x3B,0x2B,0x3C,0xC5,0x12,0x64,0x0A,0x87,0x3B,0xEC,0x8D,0x29,0x96,0x29,0x96,0x0B,0x8E,0x28,0x96,0xEE,0xA6,0x69,0x4C,0xC7,0x1A,0xE8,0x1A,0x08,0x13,0x27,0x13,0x07,0x13,0x07,0x13,0xE6,0x12,0x2A,0x24,0x2E,0x3D,0xC8,0x13,0x67,0x0B,0xEB,0x34,0x48,0x1C,0x66,0x03,0x6A,0x24,0xAA,0x2C,0x65,0x03,0x08,0x1C,0xAB,0x2C,0x25,0x03,0x29,0x24,0xCE,0x44,0xA6,0x0A,0xC4,0x01,0xC5,0x11,0xA4,0x11,0xC4,0x11,0xC4,0x11,0xC4,0x11, +0xC4,0x11,0xC4,0x11,0xC4,0x09,0x07,0x23,0x28,0x1B,0x48,0x1B,0x06,0x1B,0xE6,0x22,0xE6,0x1A,0x47,0x1B,0x28,0x13,0x08,0x1B,0xE8,0x22,0xC5,0x1A,0x27,0x3C,0xAB,0x65,0x4C,0x65,0xAB,0x75,0xA9,0x6D,0xCC,0x65,0x6B,0x2C,0x8B,0x13,0x6A,0x23,0x85,0x02,0x06,0x13,0xEA,0x2B,0x23,0x02,0x0A,0x3C,0x64,0x02,0x88,0x23,0x8B,0x34,0x08,0x1C,0x47,0x13,0x2A,0x34,0x8B,0x3C,0x51,0x76,0xA8,0x23,0xC9,0x2B,0x26,0x13,0xCC,0x44,0x48,0x24,0x88,0x24,0x47,0x24,0xC7,0x13,0x67,0x1B,0x6C,0x54,0x40,0x01,0x00,0x01,0xE0,0x08,0x21,0x09,0x80,0x00,0x24,0x32,0x04,0x2A,0xC0,0x00,0x00,0x09,0x00,0x09,0xE0,0x08,0x20,0x11,0xC3,0x21,0xE0,0x08,0xE0,0x08,0xE0,0x08,0xE0,0x08,0xC0,0x00, +0x05,0x24,0xCB,0x54,0x40,0x01,0xE1,0x08,0xE2,0x10,0xE1,0x08,0x01,0x09,0x01,0x09,0x42,0x11,0xC0,0x00,0x02,0x09,0xC1,0x08,0xE1,0x08,0x42,0x11,0xC4,0x19,0x01,0x01,0xE2,0x00,0xE2,0x08,0xC1,0x08,0xE1,0x08,0xE4,0x19,0x82,0x01,0x00,0x01,0x40,0x09,0x20,0x01,0x00,0x01,0xC4,0x11,0x85,0x09,0x23,0x09,0x80,0x00,0x66,0x43,0x4A,0x75,0x61,0x08,0xA1,0x08,0xA0,0x08,0x60,0x10,0x82,0x20,0xA1,0x10,0xE2,0x08,0x81,0x00,0xC2,0x10,0x60,0x00,0xE6,0x33,0x6E,0x6E,0x8A,0x44,0x80,0x00,0x06,0x22,0x22,0x09,0x81,0x00,0xA1,0x08,0xA1,0x10,0xA0,0x00,0x20,0x01,0xA3,0x19,0x63,0x21,0xA0,0x08,0xC0,0x00,0x41,0x01,0x03,0x12,0x23,0x12,0x02,0x02,0xC2,0x01,0xA0,0x00,0x61,0x18, +0xA1,0x18,0x60,0x00,0xA2,0x2A,0x0B,0x86,0x2A,0x86,0x08,0x86,0xC9,0x75,0xA6,0x44,0x88,0x34,0x68,0x2C,0x48,0x2C,0x69,0x2C,0x47,0x1C,0x27,0x14,0xE8,0x1B,0x05,0x13,0x25,0x12,0x44,0x12,0x22,0x0A,0xA3,0x1A,0xC2,0x22,0x41,0x22,0x04,0x3B,0xEB,0x6C,0x2C,0x5D,0xEE,0x55,0xB1,0x56,0xB0,0x46,0xB0,0x46,0xF0,0x56,0xAF,0x56,0x8E,0x56,0x8F,0x56,0x8B,0x45,0x4B,0x4D,0x6C,0x4D,0x4F,0x56,0xB0,0x56,0x8F,0x4E,0x8F,0x56,0xCF,0x56,0xAE,0x46,0xCF,0x4E,0x2D,0x56,0xEA,0x44,0x2B,0x55,0xCD,0x55,0xAF,0x56,0xAF,0x4E,0xAF,0x4E,0xD0,0x56,0x8F,0x46,0xB0,0x4E,0x90,0x5E,0xAD,0x4D,0x4B,0x45,0x6C,0x45,0x4E,0x4E,0xD0,0x56,0x6E,0x4E,0x8F,0x4E,0xB0,0x4E,0xF0,0x4E,0xAF,0x46, +0x4F,0x56,0x8B,0x45,0x6B,0x45,0x8C,0x4D,0x50,0x5E,0xB1,0x5E,0x6F,0x46,0xAF,0x46,0xCF,0x46,0xCF,0x3E,0xCF,0x4E,0x0C,0x4E,0x08,0x4D,0x69,0x6D,0xC6,0x5C,0xE7,0x64,0x27,0x75,0x6B,0x96,0xEC,0xAE,0xCA,0xA6,0xEB,0xAE,0xEB,0xAE,0xAB,0xA6,0xCC,0xAE,0xAB,0xA6,0xEC,0xAE,0xCB,0xAE,0xCB,0xA6,0xEB,0xAE,0xE9,0x8D,0xC5,0x6C,0x27,0x75,0x27,0x6D,0x27,0x6D,0x27,0x6D,0x28,0x6D,0x28,0x6D,0x27,0x6D,0x27,0x6D,0x29,0x75,0x2A,0x75,0x0A,0x75,0x29,0x75,0x27,0x6D,0xE5,0x64,0x65,0x5C,0x67,0x5C,0xA9,0x64,0xA7,0x5C,0x65,0x54,0x85,0x54,0x07,0x5D,0x68,0x6D,0xA9,0x75,0x88,0x6D,0x88,0x6D,0x88,0x6D,0x88,0x6D,0x88,0x6D,0x88,0x6D,0x89,0x6D,0x89,0x6D,0x89,0x6D,0x88,0x6D, +0x89,0x6D,0x89,0x6D,0x88,0x6D,0x68,0x6D,0x88,0x6D,0x88,0x6D,0x88,0x6D,0x89,0x75,0x69,0x75,0x08,0x65,0x28,0x6D,0x08,0x65,0x08,0x6D,0x08,0x6D,0x48,0x6D,0xE7,0x64,0x89,0x5C,0x47,0x54,0x05,0x44,0xC4,0x3B,0x23,0x2B,0xA2,0x1A,0x63,0x12,0x22,0x0A,0x42,0x0A,0x40,0x0A,0x67,0x4C,0x65,0x4C,0x86,0x4C,0xC7,0x54,0x47,0x44,0xA9,0x54,0x69,0x86,0x29,0x7E,0xEA,0x7D,0xEB,0x75,0xAA,0x6D,0x68,0x65,0x47,0x65,0x68,0x6D,0x69,0x6D,0x28,0x65,0x68,0x6D,0xC9,0x75,0xC9,0x75,0x89,0x75,0x49,0x65,0xA8,0x54,0x4A,0x54,0x48,0x3B,0x08,0x2B,0x4A,0x3B,0x09,0x33,0xE8,0x32,0x89,0x43,0xA8,0x43,0x09,0x54,0x09,0x54,0x29,0x5C,0x49,0x5C,0x48,0x5C,0x47,0x54,0x45,0x54,0x44,0x54, +0x27,0x5C,0x46,0x5C,0x64,0x54,0x84,0x4C,0x86,0x4C,0xE7,0x3B,0x26,0x1B,0x47,0x1B,0x26,0x1B,0x86,0x2B,0xC7,0x33,0xC3,0x1A,0xC4,0x1A,0x27,0x2B,0xA6,0x22,0xA6,0x2A,0x25,0x1B,0xE9,0x33,0xC5,0x12,0x85,0x0A,0xA9,0x33,0xA4,0x12,0x84,0x0A,0x47,0x2B,0x44,0x0A,0x86,0x1A,0xC5,0x1A,0xE4,0x22,0x89,0x5C,0x4A,0x75,0xC7,0x64,0x29,0x6D,0xC9,0x3B,0x63,0x0A,0xC3,0x12,0x60,0x02,0x86,0x44,0x07,0x5D,0xE6,0x54,0xC6,0x54,0xA6,0x5C,0xA7,0x5C,0xA8,0x5C,0xA8,0x5C,0xA7,0x54,0xC7,0x54,0xE7,0x54,0xE6,0x4C,0x66,0x54,0x66,0x5C,0x66,0x54,0x66,0x54,0x66,0x54,0x46,0x54,0x47,0x5C,0x47,0x5C,0x27,0x54,0x27,0x5C,0x27,0x5C,0x47,0x5C,0x47,0x54,0x47,0x54,0x67,0x54,0x67,0x54, +0x46,0x54,0x46,0x54,0x66,0x54,0x66,0x54,0x66,0x54,0x46,0x5C,0x46,0x5C,0x46,0x54,0x47,0x54,0x67,0x4C,0x87,0x4C,0x87,0x4C,0x86,0x4C,0x86,0x54,0x65,0x54,0x65,0x5C,0xA5,0x3C,0x46,0x44,0x26,0x54,0x47,0x5C,0x46,0x54,0xA9,0x5C,0x67,0x33,0x87,0x12,0xA8,0x12,0xA8,0x12,0xA7,0x1A,0x68,0x1A,0x89,0x1A,0x87,0x0A,0x2A,0x2C,0x6C,0x4D,0x6C,0x4D,0x0B,0x45,0x0A,0x45,0xC9,0x3C,0x0B,0x45,0x89,0x34,0x8A,0x34,0x69,0x34,0x48,0x2C,0x07,0x24,0xE6,0x1B,0x07,0x24,0x2A,0x55,0xCB,0x7D,0x6B,0x9E,0x29,0xA6,0x29,0xA6,0x0D,0x96,0xE1,0x01,0x44,0x02,0x23,0x02,0xE2,0x01,0x24,0x0A,0x04,0x0A,0x64,0x0A,0x23,0x02,0x44,0x0A,0x87,0x3B,0x0C,0x96,0x29,0x96,0x29,0x96,0x2B,0x8E, +0x27,0x96,0xEE,0xA6,0x69,0x4C,0xA6,0x1A,0xC8,0x1A,0xE8,0x1A,0x07,0x13,0xE7,0x12,0xE7,0x1A,0xE6,0x12,0x2A,0x2C,0x2D,0x3D,0xC8,0x13,0x87,0x0B,0xEB,0x34,0x48,0x1C,0x67,0x03,0x6A,0x24,0xAA,0x2C,0x65,0x03,0x08,0x1C,0xAB,0x2C,0x25,0x03,0x29,0x24,0xCE,0x44,0xA6,0x0A,0xA4,0x01,0xC5,0x11,0xA4,0x11,0xC4,0x11,0xC4,0x11,0xC4,0x11,0xC3,0x11,0xA3,0x11,0xC3,0x11,0xA6,0x1A,0x07,0x1B,0x26,0x13,0xC5,0x1A,0xC5,0x1A,0xA5,0x12,0xC5,0x0A,0xE7,0x0A,0xA7,0x12,0xA7,0x1A,0xC5,0x1A,0x24,0x1B,0xAC,0x65,0x6D,0x75,0x6A,0x6D,0xA9,0x6D,0xCC,0x5D,0x4A,0x2C,0x8B,0x1B,0x6A,0x23,0xA6,0x12,0xE6,0x12,0x0B,0x34,0xE3,0x01,0x0C,0x4C,0x65,0x12,0x0B,0x3C,0xCD,0x44,0x0D,0x45, +0xE9,0x1B,0x29,0x24,0xCA,0x3C,0x2F,0x6E,0x4B,0x55,0x2B,0x5D,0x4C,0x65,0xA9,0x4C,0xA9,0x4C,0xA8,0x3C,0xEA,0x44,0xAA,0x44,0x8A,0x4C,0xAB,0x5C,0x65,0x43,0xC2,0x3A,0xC4,0x3A,0xC4,0x3A,0xC4,0x3A,0x4A,0x6C,0x83,0x32,0xC4,0x3A,0xA4,0x3A,0xA4,0x3A,0xC4,0x3A,0x26,0x4B,0x87,0x53,0xA4,0x3A,0xC4,0x3A,0xC4,0x3A,0xE5,0x42,0xE5,0x42,0xC7,0x4C,0xC9,0x5C,0x05,0x3B,0x85,0x42,0x85,0x42,0x85,0x3A,0xC5,0x42,0xC5,0x42,0x27,0x53,0x84,0x3A,0xC5,0x3A,0xA5,0x3A,0xA6,0x42,0xA6,0x42,0x28,0x4B,0xE7,0x3A,0x87,0x42,0xA6,0x4A,0x85,0x42,0xC5,0x42,0xE5,0x42,0x45,0x43,0x04,0x3B,0xC3,0x3A,0xC3,0x3A,0xC4,0x32,0x06,0x33,0x69,0x43,0x27,0x3B,0x83,0x22,0x46,0x54,0xE6,0x5C, +0xA2,0x10,0x80,0x00,0x02,0x11,0x81,0x10,0x61,0x10,0x61,0x10,0x60,0x08,0xA2,0x18,0xA1,0x18,0x60,0x00,0x86,0x3B,0x4F,0x7E,0x8A,0x4C,0xA2,0x09,0x84,0x19,0x80,0x00,0xC3,0x08,0x82,0x08,0xA1,0x08,0x42,0x11,0xC4,0x19,0x62,0x09,0x80,0x00,0x01,0x11,0x82,0x19,0x00,0x01,0x60,0x01,0x43,0x1A,0x64,0x12,0xC3,0x09,0xA0,0x00,0x82,0x10,0x61,0x10,0x23,0x32,0x0C,0x8E,0xA6,0x6D,0x65,0x6D,0x06,0x6D,0xE9,0x64,0xCB,0x4C,0xE9,0x23,0xC9,0x1B,0xC9,0x23,0x47,0x1B,0x88,0x1B,0xA8,0x13,0x8B,0x34,0xA7,0x23,0x04,0x12,0xE3,0x09,0x22,0x02,0xCB,0x54,0xCA,0x5C,0x0A,0x65,0x2A,0x65,0x09,0x4D,0xAB,0x4D,0x6F,0x4E,0x8F,0x46,0xB0,0x46,0x6F,0x4E,0x0E,0x46,0x2E,0x4E,0x2E,0x4E, +0x29,0x3D,0xE9,0x3C,0x4B,0x4D,0xEE,0x55,0x4F,0x4E,0x2F,0x46,0x91,0x5E,0xEE,0x55,0x0E,0x4E,0x2D,0x46,0x0C,0x3E,0x09,0x35,0x2B,0x4D,0x0B,0x4D,0x50,0x5E,0x0E,0x3E,0x8E,0x4E,0x4E,0x56,0xEC,0x45,0x2D,0x46,0x4E,0x46,0x6B,0x3D,0xEA,0x44,0x0A,0x45,0xED,0x4D,0x8E,0x46,0x2D,0x3E,0xAF,0x56,0x2E,0x4E,0x0D,0x46,0x2E,0x4E,0xCD,0x4D,0x0B,0x45,0xC9,0x3C,0x6B,0x4D,0x2E,0x5E,0x0F,0x4E,0x50,0x46,0xB1,0x4E,0x8F,0x46,0xAF,0x4E,0xD0,0x56,0x2A,0x3D,0xC9,0x54,0x09,0x75,0xE7,0x7C,0x85,0x5C,0x07,0x65,0xE7,0x74,0x27,0x75,0x6B,0x9E,0xEC,0xB6,0xAA,0xA6,0xAA,0xA6,0xAB,0xAE,0xAB,0xAE,0xCC,0xAE,0x8B,0xA6,0x8B,0xA6,0x8B,0xAE,0xCC,0xAE,0x6C,0xA6,0x69,0x85,0xA6,0x6C, +0x07,0x65,0x28,0x6D,0x28,0x6D,0x08,0x6D,0xE8,0x64,0x07,0x6D,0x07,0x6D,0x27,0x6D,0x08,0x6D,0xE8,0x6C,0xE7,0x6C,0x06,0x6D,0x27,0x75,0x28,0x75,0x08,0x75,0x08,0x75,0x49,0x6D,0x68,0x6D,0x68,0x6D,0x48,0x65,0x27,0x65,0x47,0x65,0x67,0x65,0x66,0x65,0x47,0x65,0x47,0x65,0x47,0x65,0x47,0x65,0x47,0x65,0x48,0x65,0x48,0x65,0x47,0x65,0x28,0x65,0x48,0x65,0x68,0x6D,0x47,0x65,0x27,0x65,0x67,0x6D,0x68,0x6D,0x07,0x65,0x07,0x65,0x07,0x65,0x07,0x65,0x27,0x6D,0xA8,0x75,0xE8,0x7D,0x49,0x8E,0x48,0x86,0x09,0x7E,0xCC,0x96,0xCC,0x96,0x8B,0x8E,0x8B,0x8E,0x2C,0x86,0x8B,0x75,0xE9,0x5C,0xA8,0x54,0xC7,0x54,0x0A,0x7E,0x6B,0x86,0x8B,0x8E,0x8D,0x8E,0xEB,0x75,0x25,0x3C, +0x29,0x7E,0x29,0x7E,0x29,0x7E,0x2A,0x7E,0xEA,0x75,0x69,0x6D,0x08,0x5D,0xE7,0x5C,0xE7,0x5C,0x89,0x6D,0x2B,0x86,0x2A,0x86,0xE9,0x7D,0x28,0x7E,0x69,0x86,0x89,0x86,0x4C,0x8E,0xAB,0x7D,0x26,0x4C,0x44,0x33,0xA7,0x43,0x28,0x54,0x08,0x4C,0x28,0x54,0x27,0x54,0x07,0x54,0x07,0x54,0x07,0x54,0x07,0x54,0x26,0x54,0x25,0x54,0x24,0x54,0xE8,0x53,0x07,0x4C,0x46,0x4C,0x65,0x4C,0x46,0x4C,0xC7,0x3B,0x27,0x23,0x28,0x23,0x47,0x23,0x48,0x4C,0x47,0x4C,0x65,0x33,0xA4,0x12,0x64,0x12,0xC5,0x22,0x06,0x2B,0x48,0x23,0x69,0x23,0xCA,0x33,0x27,0x23,0x68,0x2B,0x46,0x23,0x06,0x1B,0x68,0x2B,0xE7,0x1A,0x68,0x2B,0xE5,0x1A,0x08,0x44,0xA8,0x54,0x45,0x4C,0xA6,0x54,0x85,0x4C, +0x4A,0x54,0x63,0x12,0x41,0x0A,0x07,0x3C,0x88,0x4C,0x67,0x44,0x66,0x44,0x66,0x44,0x66,0x4C,0x26,0x4C,0x27,0x4C,0x68,0x4C,0x68,0x44,0x68,0x34,0x68,0x2C,0x88,0x2C,0x06,0x4C,0x26,0x54,0x26,0x54,0x27,0x54,0x27,0x54,0x27,0x54,0x07,0x54,0x07,0x54,0x07,0x54,0x07,0x54,0x07,0x54,0x07,0x54,0x07,0x54,0x07,0x4C,0x27,0x4C,0x27,0x4C,0x07,0x54,0x06,0x54,0x26,0x54,0x26,0x4C,0x26,0x4C,0x26,0x54,0x06,0x5C,0x27,0x5C,0x07,0x4C,0x69,0x44,0x89,0x34,0xCB,0x34,0xAA,0x2C,0x8B,0x34,0x4A,0x3C,0x4A,0x44,0x0B,0x25,0xCB,0x3C,0x6B,0x54,0x07,0x5C,0x05,0x54,0x26,0x54,0x86,0x3B,0x85,0x12,0xA7,0x12,0xA7,0x12,0x87,0x1A,0x48,0x1A,0x69,0x1A,0x67,0x0A,0x09,0x34,0x6B,0x4D, +0x4B,0x45,0x6B,0x4D,0x8B,0x55,0x6A,0x55,0x6B,0x55,0x6B,0x4D,0x6C,0x55,0x6B,0x4D,0x6B,0x55,0x8C,0x55,0x6B,0x55,0x4B,0x4D,0x6A,0x55,0xCA,0x7D,0x6A,0x9E,0x69,0xAE,0x6A,0xAE,0xAC,0x8D,0xC5,0x22,0x85,0x0A,0xA5,0x12,0x85,0x12,0x86,0x22,0x66,0x1A,0x65,0x12,0x85,0x12,0x44,0x0A,0x66,0x3B,0x0D,0x96,0x49,0x9E,0x49,0x96,0x4B,0x96,0x27,0x96,0xEE,0xAE,0x69,0x54,0xA6,0x1A,0xC7,0x1A,0xE7,0x1A,0xE7,0x12,0xE8,0x12,0xE8,0x1A,0xC7,0x12,0x0A,0x2C,0x2D,0x3D,0xC7,0x13,0x66,0x0B,0xEC,0x34,0x49,0x1C,0x67,0x03,0x6A,0x24,0xAA,0x2C,0x65,0x03,0x28,0x1C,0xAB,0x2C,0x25,0x03,0x29,0x24,0xEE,0x44,0xA6,0x0A,0xC4,0x01,0xC5,0x11,0xC4,0x11,0xC4,0x11,0xC4,0x11,0xE4,0x11, +0xC4,0x09,0xC3,0x11,0xC3,0x11,0x85,0x1A,0x27,0x1B,0x47,0x1B,0x06,0x1B,0x06,0x23,0x48,0x2B,0x48,0x1B,0x48,0x1B,0x28,0x23,0xE7,0x22,0x47,0x2B,0x04,0x1B,0xAD,0x65,0x30,0x86,0x49,0x6D,0x48,0x65,0x6B,0x55,0x4B,0x2C,0xEC,0x23,0x6A,0x23,0x85,0x02,0xEA,0x2B,0x71,0x5D,0xE4,0x01,0x6E,0x4C,0xC7,0x12,0xCA,0x23,0x8C,0x34,0x8B,0x24,0xEB,0x2C,0xCD,0x4D,0x8B,0x4D,0x08,0x45,0x0B,0x76,0xAA,0x75,0x28,0x6D,0x86,0x5C,0xA7,0x5C,0xA7,0x54,0x87,0x4C,0xC8,0x54,0x4B,0x6D,0xA8,0x64,0xA3,0x4B,0x61,0x4B,0x63,0x4B,0x02,0x3B,0xE5,0x5B,0xA4,0x53,0x43,0x4B,0x22,0x43,0x84,0x4B,0x22,0x43,0x22,0x43,0xE5,0x5B,0xA4,0x53,0x22,0x43,0x64,0x4B,0x23,0x43,0x43,0x43,0x22,0x43, +0xE7,0x54,0x49,0x75,0x44,0x43,0x44,0x4B,0x04,0x4B,0x23,0x4B,0x22,0x4B,0x22,0x4B,0xC4,0x5B,0x42,0x43,0x63,0x43,0x43,0x4B,0x44,0x4B,0x03,0x43,0x85,0x4B,0x85,0x4B,0x04,0x53,0x03,0x4B,0x02,0x4B,0x42,0x4B,0xE1,0x42,0x64,0x53,0x63,0x53,0x22,0x43,0x63,0x4B,0x01,0x43,0x22,0x43,0x43,0x43,0x06,0x54,0x22,0x33,0x25,0x54,0xC2,0x43,0x81,0x00,0xE1,0x08,0xC1,0x08,0x60,0x00,0xA2,0x10,0xA2,0x10,0xC1,0x10,0x80,0x10,0xC1,0x20,0x00,0x00,0x88,0x5B,0x56,0xCF,0x70,0x95,0x60,0x00,0xC1,0x10,0x80,0x08,0x62,0x00,0x04,0x09,0xA5,0x19,0x64,0x11,0xA0,0x00,0xC0,0x00,0x43,0x19,0x01,0x11,0xA0,0x08,0xA0,0x00,0xE2,0x11,0x43,0x0A,0x23,0x0A,0x04,0x12,0xA0,0x00,0xA1,0x08, +0xA1,0x00,0xC9,0x53,0x28,0x65,0xE4,0x4C,0xC5,0x54,0x67,0x54,0x29,0x4C,0x2B,0x3C,0x0B,0x2C,0xEB,0x23,0x69,0x23,0x08,0x23,0x08,0x23,0x0B,0x34,0x6B,0x34,0x08,0x24,0x48,0x2B,0xA9,0x2B,0x0C,0x45,0x0F,0x56,0x2E,0x56,0xED,0x4D,0x0E,0x4E,0x0E,0x4E,0x4F,0x4E,0x6C,0x35,0x4C,0x35,0xCE,0x45,0xEF,0x4D,0xEE,0x45,0xEE,0x3D,0x4F,0x46,0x2D,0x4E,0x0D,0x4E,0x2F,0x56,0xEE,0x4D,0x4C,0x35,0xCF,0x45,0xAE,0x45,0x0F,0x4E,0x0E,0x4E,0x0D,0x46,0x0D,0x46,0x2D,0x46,0x2E,0x46,0x50,0x56,0x2C,0x35,0x4D,0x3D,0x0D,0x46,0xCC,0x4D,0x2E,0x56,0x2E,0x4E,0x2D,0x3E,0x2E,0x3E,0x0E,0x4E,0x0F,0x5E,0x0F,0x5E,0x6B,0x35,0xCC,0x3D,0x0E,0x46,0x2F,0x4E,0x0F,0x4E,0xCE,0x45,0xEF,0x4D, +0xEE,0x5D,0xEE,0x5D,0x2F,0x5E,0xCE,0x4D,0x4B,0x35,0x4F,0x56,0x70,0x4E,0xB1,0x4E,0x6F,0x56,0x6B,0x45,0xEA,0x54,0x2B,0x75,0xA9,0x74,0xE9,0x74,0xC7,0x64,0xA6,0x5C,0xE7,0x6C,0xE7,0x6C,0x47,0x7D,0x4A,0x96,0xAB,0xA6,0x8B,0xA6,0x8B,0xA6,0x8B,0xA6,0x8B,0xA6,0x8B,0xA6,0x8B,0xA6,0x8B,0xA6,0x8C,0xA6,0xAD,0xA6,0xAD,0xA6,0xEB,0x95,0x06,0x6D,0xC6,0x64,0xA7,0x64,0xC8,0x6C,0xE9,0x6C,0xE7,0x6C,0xE6,0x6C,0xE6,0x6C,0xC7,0x64,0xE8,0x6C,0x08,0x6D,0x07,0x6D,0xE6,0x6C,0xC7,0x6C,0xE7,0x6C,0xE8,0x6C,0xA7,0x5C,0x86,0x54,0x08,0x65,0x08,0x65,0x07,0x5D,0x27,0x5D,0xE5,0x54,0x26,0x5D,0x07,0x5D,0x08,0x5D,0x07,0x5D,0x07,0x5D,0x06,0x5D,0x07,0x5D,0x07,0x5D,0x07,0x5D, +0x27,0x5D,0x06,0x5D,0x06,0x5D,0x28,0x65,0x08,0x65,0x07,0x5D,0x08,0x65,0x07,0x65,0x48,0x6D,0x47,0x65,0xE5,0x5C,0x87,0x6D,0x29,0x86,0x08,0x7E,0xE7,0x7D,0xE8,0x7D,0x08,0x7E,0xC7,0x75,0xC7,0x75,0xE7,0x75,0xE7,0x75,0xE8,0x7D,0xE9,0x7D,0x68,0x6D,0x26,0x65,0x29,0x7E,0xCA,0x96,0xEA,0x96,0xA9,0x8E,0xCA,0x8E,0xEC,0x96,0xE9,0x75,0xA8,0x6D,0xC7,0x6D,0xC7,0x6D,0xC6,0x6D,0xC7,0x75,0xC8,0x75,0x88,0x6D,0x47,0x65,0x67,0x65,0xC8,0x6D,0xA8,0x6D,0x88,0x6D,0xC9,0x75,0xC7,0x75,0x85,0x6D,0xC4,0x6D,0xA7,0x75,0xA8,0x75,0xA9,0x75,0x49,0x6D,0x46,0x4C,0xC4,0x43,0x26,0x4C,0xE5,0x4B,0xE5,0x4B,0xE5,0x4B,0xE6,0x4B,0xE6,0x4B,0xE6,0x4B,0xE6,0x4B,0x05,0x4C,0x05,0x4C, +0xE8,0x4B,0xE7,0x4B,0x26,0x4C,0x25,0x44,0x06,0x4C,0x87,0x3B,0xC7,0x22,0xE8,0x22,0x26,0x2B,0x07,0x4C,0xE5,0x4B,0x47,0x4C,0x67,0x33,0xE6,0x1A,0x47,0x2B,0xC3,0x1A,0xA8,0x12,0x66,0x0A,0x08,0x23,0x68,0x2B,0x87,0x2B,0x46,0x23,0x46,0x23,0xA5,0x0A,0xA6,0x12,0xA6,0x12,0xC5,0x12,0x08,0x3C,0x47,0x3C,0x26,0x3C,0x27,0x3C,0x27,0x3C,0x89,0x3B,0x23,0x0A,0x84,0x0A,0xC9,0x2B,0xE9,0x2B,0x09,0x2C,0x09,0x34,0xE7,0x33,0xC6,0x33,0xA6,0x3B,0xC6,0x3B,0x86,0x33,0x66,0x2B,0xC8,0x2B,0xC9,0x1B,0xA9,0x13,0xC6,0x43,0xE7,0x4B,0xE7,0x4B,0xE7,0x4B,0xE6,0x4B,0xE6,0x4B,0xE6,0x4B,0x06,0x4C,0xE6,0x4B,0xE6,0x4B,0xE6,0x4B,0xE6,0x4B,0x06,0x4C,0x07,0x4C,0x07,0x4C,0x07,0x4C, +0xC7,0x53,0xC7,0x53,0xE7,0x53,0x06,0x4C,0x05,0x4C,0xE5,0x4B,0xC5,0x4B,0xA6,0x4B,0xE8,0x43,0xCB,0x44,0x0D,0x2D,0x6F,0x2D,0x2F,0x25,0x30,0x2D,0x11,0x35,0x11,0x35,0xD0,0x25,0xB1,0x4D,0xEA,0x43,0xE8,0x53,0xE5,0x5B,0x25,0x54,0x64,0x3B,0xA4,0x1A,0xA6,0x0A,0xA6,0x0A,0x87,0x12,0x48,0x1A,0x68,0x1A,0x46,0x12,0x08,0x34,0x6A,0x55,0x6A,0x4D,0x6A,0x55,0x6A,0x55,0x4A,0x55,0x4A,0x55,0x4A,0x4D,0x4A,0x4D,0x4A,0x4D,0x4A,0x4D,0x6A,0x55,0x6A,0x4D,0x6A,0x55,0x49,0x55,0xEA,0x7D,0x8A,0xA6,0x48,0xAE,0x29,0xA6,0x0D,0x96,0xC5,0x1A,0xA6,0x12,0x06,0x1B,0x85,0x12,0xA7,0x22,0x66,0x12,0xA6,0x1A,0xE7,0x1A,0x44,0x0A,0x46,0x3B,0x2D,0x9E,0x49,0x9E,0x49,0x9E,0x2B,0x96, +0x27,0x9E,0x0F,0xAF,0x69,0x54,0x85,0x1A,0xA7,0x1A,0xC7,0x1A,0xC7,0x12,0xE7,0x12,0xC8,0x1A,0xC7,0x12,0x0A,0x2C,0x4D,0x45,0xC7,0x13,0x66,0x0B,0xEC,0x3C,0x49,0x1C,0x67,0x03,0x6A,0x24,0xAA,0x2C,0x65,0x03,0x08,0x1C,0xAB,0x2C,0x25,0x03,0x29,0x24,0xED,0x44,0xA6,0x12,0xC4,0x01,0xE5,0x11,0xC4,0x11,0xE4,0x11,0xE4,0x11,0xE5,0x11,0xE4,0x11,0xC4,0x19,0xC3,0x11,0x44,0x12,0x26,0x1B,0x26,0x1B,0xE6,0x1A,0xE6,0x22,0xC6,0x1A,0xC6,0x12,0xE6,0x12,0x07,0x1B,0xC6,0x1A,0xE6,0x1A,0xC4,0x12,0xC8,0x2B,0x8D,0x65,0x49,0x5D,0x89,0x6D,0xAC,0x65,0x2A,0x24,0x8B,0x13,0xAB,0x1B,0x89,0x1B,0xC9,0x1B,0x4C,0x24,0xEB,0x1B,0x8E,0x2C,0x4C,0x1C,0xCE,0x2C,0xAD,0x24,0x0E,0x2D, +0x8C,0x3D,0x4A,0x3D,0x6A,0x4D,0x2C,0x6E,0xCD,0x8E,0xCD,0x9E,0xAD,0xA6,0x8D,0x9E,0xAE,0x9E,0xCF,0x96,0xEF,0x96,0xCF,0x8E,0xAE,0x8E,0x8E,0x96,0xAE,0xA6,0xAD,0xAE,0xAF,0xA6,0xAF,0xA6,0x8E,0x9E,0xAF,0xA6,0xAF,0xA6,0xCF,0xA6,0xAF,0xA6,0xAF,0xA6,0xCF,0xA6,0x8E,0x9E,0xCF,0xA6,0x8E,0x9E,0xAF,0x9E,0xCF,0xA6,0x8E,0x9E,0xCF,0xA6,0xCD,0x86,0xAE,0x8E,0x8E,0x9E,0xB0,0xA6,0xB0,0xA6,0xAF,0xA6,0xCE,0xA6,0xAD,0xA6,0xCD,0xA6,0xCC,0x9E,0xED,0x9E,0xCD,0x9E,0xAE,0x9E,0x8E,0x9E,0xCF,0xA6,0xCF,0x9E,0xAD,0xA6,0xAD,0xA6,0xCD,0xA6,0xAD,0x9E,0xCF,0xAE,0x8E,0xAE,0xAF,0xAE,0xAE,0x9E,0xAD,0x9E,0xCF,0xAE,0xAE,0xAE,0xAE,0xA6,0xAE,0x9E,0xAF,0x9E,0xCF,0xA6,0x87,0x64, +0xC1,0x08,0xC0,0x00,0xC1,0x08,0xC1,0x08,0xC2,0x08,0xC0,0x00,0xC0,0x00,0xC0,0x00,0xC0,0x00,0xE0,0x00,0xEF,0x94,0xF7,0xE6,0x32,0xB5,0x00,0x08,0xA1,0x10,0x22,0x11,0x84,0x19,0x43,0x09,0x42,0x01,0xC1,0x00,0x23,0x19,0x44,0x21,0x81,0x08,0xA1,0x08,0xA1,0x10,0xC0,0x00,0xA2,0x09,0x64,0x0A,0x43,0x0A,0xE2,0x11,0xE0,0x00,0xA0,0x00,0x00,0x01,0xA7,0x33,0x26,0x34,0x05,0x34,0xC5,0x3B,0x44,0x33,0x66,0x33,0x88,0x2B,0x08,0x1B,0x69,0x23,0xA6,0x1A,0x84,0x1A,0x84,0x1A,0xA5,0x12,0xA3,0x02,0xC3,0x02,0xAE,0x55,0x91,0x66,0x50,0x4E,0x90,0x46,0xD0,0x3E,0xD0,0x3E,0xB0,0x46,0x91,0x56,0x8D,0x45,0x8A,0x34,0xEB,0x3C,0x10,0x5E,0x71,0x5E,0x70,0x4E,0xB0,0x4E,0x8F,0x46, +0xCF,0x4E,0x6E,0x4E,0x4F,0x5E,0x0B,0x3D,0x69,0x24,0x8D,0x45,0x91,0x56,0x6F,0x4E,0x8F,0x4E,0x8F,0x4E,0xAE,0x4E,0xCF,0x4E,0x8F,0x46,0x2E,0x46,0xAA,0x24,0xAB,0x34,0xED,0x45,0x6F,0x56,0x4F,0x56,0x6F,0x4E,0xD0,0x46,0xB0,0x46,0x90,0x4E,0x50,0x5E,0x2C,0x4D,0x49,0x2C,0xAD,0x45,0x4F,0x4E,0x70,0x4E,0x70,0x4E,0x91,0x56,0x90,0x4E,0x4F,0x56,0x90,0x5E,0xAE,0x4D,0x0B,0x3D,0x88,0x34,0x6B,0x4D,0x2A,0x3D,0x4A,0x35,0xC9,0x34,0x46,0x3C,0x25,0x4C,0xE5,0x53,0x06,0x54,0x47,0x54,0xE4,0x43,0xC7,0x64,0x08,0x6D,0xC7,0x64,0xE7,0x64,0xC5,0x64,0x67,0x75,0x8B,0x9E,0x8B,0x9E,0xAB,0x9E,0x6B,0x96,0xAC,0x9E,0xAB,0x9E,0x8C,0x9E,0x8B,0x9E,0x8B,0x96,0xAC,0x9E,0x8C,0x9E, +0x8B,0x9E,0x4B,0x9E,0xAA,0x85,0x09,0x75,0xA7,0x64,0xE6,0x6C,0x06,0x6D,0xE5,0x6C,0xE6,0x6C,0xC7,0x64,0xC7,0x64,0xC7,0x64,0xC7,0x64,0xE7,0x6C,0xE8,0x6C,0xC8,0x64,0xE7,0x64,0xA8,0x5C,0x68,0x54,0xC8,0x5C,0xE7,0x5C,0xC6,0x54,0xE7,0x54,0xA7,0x54,0xC7,0x54,0xC7,0x54,0xC8,0x5C,0xC8,0x5C,0xC7,0x5C,0xC6,0x5C,0xC7,0x54,0xC8,0x54,0xC6,0x54,0xE7,0x5C,0xC7,0x54,0xC7,0x54,0xC7,0x54,0xA7,0x54,0xA6,0x54,0xC6,0x5C,0x26,0x65,0xE8,0x75,0x86,0x6D,0xA7,0x6D,0x86,0x6D,0xA7,0x6D,0xA8,0x75,0xA8,0x75,0xA8,0x75,0xC8,0x75,0xA7,0x75,0xA7,0x6D,0xC7,0x75,0xA8,0x75,0xA8,0x75,0xA8,0x75,0xA8,0x75,0x08,0x7E,0x07,0x76,0x06,0x76,0x06,0x76,0x07,0x7E,0x07,0x7E,0x08,0x7E, +0x88,0x6D,0x88,0x6D,0x67,0x6D,0x66,0x65,0x66,0x65,0x87,0x6D,0x87,0x6D,0x66,0x65,0x46,0x65,0x66,0x65,0x46,0x65,0x47,0x65,0x67,0x65,0x47,0x65,0x47,0x65,0x67,0x6D,0x46,0x65,0x88,0x6D,0x27,0x65,0x49,0x6D,0xE8,0x64,0xE4,0x43,0xC4,0x43,0xE4,0x43,0xE4,0x4B,0xE4,0x4B,0xE5,0x4B,0xE5,0x4B,0x05,0x4C,0x05,0x4C,0x05,0x4C,0x04,0x4C,0x26,0x54,0x26,0x4C,0x45,0x4C,0x24,0x44,0x05,0x4C,0x66,0x3B,0x86,0x22,0xC7,0x22,0xE5,0x22,0xE6,0x4B,0xC4,0x43,0xC6,0x43,0xE6,0x22,0xC8,0x1A,0xA6,0x1A,0x42,0x0A,0x45,0x0A,0x86,0x12,0x07,0x23,0x26,0x23,0x46,0x23,0x45,0x23,0x87,0x2B,0xC6,0x12,0xA6,0x0A,0xE8,0x12,0xA6,0x0A,0xA9,0x23,0x09,0x2C,0x2A,0x34,0x8C,0x44,0x8D,0x44, +0x6E,0x44,0x0C,0x2C,0xCC,0x23,0x8E,0x34,0x0C,0x1C,0xCB,0x1B,0x68,0x0B,0x48,0x13,0x67,0x23,0x06,0x23,0x26,0x2B,0x06,0x2B,0xC6,0x22,0xE6,0x1A,0xE7,0x1A,0x08,0x1B,0x86,0x43,0xA7,0x4B,0xC6,0x43,0xC6,0x43,0xC6,0x43,0xC6,0x43,0xC5,0x43,0xE5,0x4B,0xE5,0x4B,0xC5,0x43,0xC5,0x43,0xC5,0x43,0xC5,0x43,0xC5,0x43,0xC6,0x43,0xC6,0x43,0xA7,0x4B,0xA6,0x4B,0xA6,0x4B,0xC5,0x4B,0xE5,0x43,0xE5,0x4B,0xE6,0x4B,0xC7,0x4B,0x08,0x3C,0x0C,0x45,0x8E,0x35,0xD0,0x2D,0xB0,0x25,0x91,0x2D,0x91,0x25,0x91,0x25,0xEE,0x25,0xCF,0x4D,0xC9,0x3B,0x86,0x4B,0xC5,0x4B,0xE6,0x4B,0x04,0x2B,0x64,0x12,0xA6,0x0A,0xA5,0x0A,0xA5,0x12,0x66,0x1A,0x67,0x1A,0x45,0x0A,0xE8,0x3B,0x4A,0x65, +0x6B,0x55,0x4A,0x55,0x4A,0x55,0x6A,0x5D,0x4A,0x55,0x6B,0x55,0x6B,0x55,0x6B,0x55,0x4A,0x55,0x6B,0x55,0x4B,0x4D,0x6B,0x55,0x29,0x55,0xEB,0x7D,0x6B,0xA6,0x29,0xA6,0x29,0xA6,0x0D,0x96,0xE5,0x22,0xC6,0x12,0x06,0x1B,0xE6,0x1A,0xC7,0x22,0xC7,0x22,0xC6,0x12,0x07,0x1B,0x64,0x0A,0x87,0x3B,0x2D,0x9E,0x29,0x9E,0x49,0x9E,0x2B,0x9E,0x27,0x9E,0x0F,0xAF,0x49,0x54,0x65,0x12,0xA7,0x1A,0xA7,0x12,0xC7,0x12,0xC7,0x12,0xC7,0x1A,0xA6,0x0A,0x0A,0x2C,0x4D,0x45,0xC7,0x13,0x66,0x0B,0xEC,0x3C,0x49,0x1C,0x67,0x0B,0x6A,0x24,0xAA,0x2C,0x65,0x0B,0x09,0x1C,0xAB,0x2C,0x25,0x03,0x29,0x24,0xED,0x44,0xA6,0x12,0xE4,0x01,0xE5,0x11,0xE4,0x11,0xE4,0x11,0xE4,0x11,0xE5,0x09, +0xE5,0x09,0xE4,0x11,0xC4,0x11,0x24,0x12,0xE6,0x12,0x06,0x1B,0xE6,0x1A,0xE7,0x1A,0xC6,0x12,0xA5,0x0A,0x85,0x12,0x85,0x12,0x85,0x12,0xC5,0x12,0xC5,0x12,0xE6,0x1A,0x4B,0x45,0x8A,0x5D,0x48,0x5D,0x8B,0x5D,0x4B,0x2C,0xAB,0x13,0xEC,0x1B,0xEA,0x1B,0x2A,0x1C,0x6C,0x24,0x2C,0x14,0xAD,0x1C,0x4C,0x0C,0xED,0x1C,0xED,0x1C,0xED,0x24,0xCA,0x3C,0x0B,0x45,0xE9,0x3C,0x0D,0x66,0xEC,0x65,0xEB,0x6D,0x0B,0x76,0xCA,0x75,0x0C,0x7E,0xCB,0x6D,0xEB,0x6D,0xAB,0x65,0x2C,0x76,0xEB,0x6D,0x0C,0x7E,0xCB,0x75,0xCC,0x75,0xEC,0x75,0xCC,0x75,0xEC,0x75,0xCC,0x75,0xAB,0x6D,0xEC,0x75,0xCC,0x75,0xEC,0x75,0xEC,0x75,0xCB,0x6D,0xEC,0x75,0xEC,0x75,0xCB,0x6D,0xCB,0x6D,0xEC,0x6D, +0x2A,0x5E,0x0B,0x66,0x2D,0x6E,0xCC,0x65,0xCC,0x65,0xCC,0x65,0xEC,0x75,0xCA,0x75,0xCA,0x6D,0x0A,0x6E,0x2A,0x66,0x0A,0x66,0x0B,0x6E,0xEB,0x6D,0x0B,0x6E,0xEB,0x6D,0xEA,0x6D,0x0A,0x66,0x0B,0x66,0xEB,0x65,0x0C,0x76,0xAB,0x75,0xAB,0x6D,0xEC,0x75,0xCB,0x75,0xCB,0x7D,0x8B,0x7D,0xCC,0x7D,0xCC,0x75,0xCC,0x75,0xED,0x7D,0x88,0x54,0xC0,0x00,0xA0,0x00,0x80,0x00,0xC1,0x08,0xC0,0x00,0xC3,0x01,0x87,0x1B,0xA7,0x0B,0x0C,0x35,0x27,0x13,0x0C,0x5C,0x97,0xCE,0x53,0xB5,0xA1,0x08,0x46,0x22,0x24,0x0A,0x41,0x09,0x20,0x01,0x21,0x01,0x64,0x11,0x23,0x11,0x82,0x08,0xA3,0x10,0xA2,0x10,0xA1,0x00,0xA0,0x00,0xE3,0x09,0x02,0x02,0xE0,0x01,0x62,0x22,0x61,0x2A,0x65,0x4B, +0x49,0x4C,0x86,0x2B,0x04,0x13,0x06,0x1B,0x84,0x1A,0x83,0x22,0xC2,0x2A,0x61,0x12,0x43,0x12,0x44,0x12,0x63,0x1A,0xA2,0x2A,0x81,0x1A,0x48,0x44,0xC6,0x23,0x6C,0x4D,0x4E,0x4E,0x6F,0x4E,0x8F,0x46,0xD0,0x46,0x8E,0x3E,0xAF,0x46,0x6E,0x4E,0x6C,0x4D,0xEA,0x4C,0xEA,0x4C,0x0E,0x5E,0x4E,0x4E,0x6E,0x46,0xAF,0x46,0x6F,0x46,0x6F,0x4E,0xAE,0x4E,0x0D,0x4E,0x0A,0x45,0x2B,0x4D,0x6C,0x3D,0x90,0x56,0x4F,0x46,0x8F,0x4E,0x8E,0x46,0xAE,0x3E,0xAE,0x3E,0x8E,0x4E,0xAC,0x4D,0x0A,0x3D,0x2B,0x3D,0x2F,0x4E,0x6E,0x4E,0xAF,0x4E,0xCF,0x46,0x6E,0x3E,0x4E,0x3E,0x8F,0x4E,0x4F,0x56,0x0A,0x3D,0xEA,0x44,0x6C,0x55,0x2E,0x56,0xAF,0x4E,0x6E,0x46,0x8F,0x4E,0x6F,0x46,0xD0,0x46, +0x8F,0x4E,0xED,0x4D,0x0A,0x45,0xEA,0x54,0x47,0x4C,0x09,0x65,0x08,0x55,0x08,0x5D,0x08,0x5D,0x07,0x65,0x07,0x6D,0x07,0x6D,0x07,0x6D,0xE7,0x64,0xA7,0x64,0xC7,0x6C,0xA7,0x5C,0xE8,0x64,0xE7,0x64,0xE7,0x64,0xC6,0x64,0xA5,0x5C,0x67,0x75,0x4A,0x8E,0x8B,0x9E,0xAC,0x9E,0x6B,0x96,0x6B,0x96,0xAC,0x9E,0x8B,0x96,0xAB,0x9E,0xAA,0x9E,0x8A,0x9E,0x6A,0x9E,0x6C,0x9E,0x8D,0x9E,0x2C,0x96,0x88,0x7D,0x26,0x75,0x06,0x6D,0xC5,0x64,0xC6,0x64,0xC7,0x64,0xC7,0x64,0xC7,0x64,0xC7,0x64,0xC7,0x64,0xC8,0x64,0xC6,0x5C,0x47,0x54,0x89,0x5C,0x67,0x4C,0x85,0x4C,0xC6,0x54,0x66,0x4C,0x87,0x4C,0x86,0x4C,0x67,0x4C,0x68,0x4C,0x69,0x4C,0x67,0x4C,0x85,0x4C,0x86,0x4C,0x68,0x4C, +0x87,0x54,0x66,0x4C,0x66,0x4C,0x65,0x4C,0x65,0x4C,0x84,0x4C,0xC5,0x54,0x05,0x5D,0x66,0x6D,0xE8,0x75,0xA7,0x6D,0x08,0x7E,0xE8,0x7D,0x09,0x7E,0xE8,0x75,0x87,0x6D,0x48,0x65,0x68,0x6D,0x88,0x6D,0x88,0x6D,0x67,0x6D,0x47,0x65,0x27,0x65,0x68,0x6D,0x68,0x6D,0x47,0x65,0x88,0x6D,0x87,0x6D,0x46,0x65,0x67,0x6D,0x47,0x65,0x88,0x6D,0xE6,0x5C,0xE7,0x5C,0x08,0x5D,0x09,0x65,0x28,0x65,0x07,0x5D,0x26,0x5D,0x26,0x5D,0xE6,0x5C,0x06,0x5D,0x06,0x5D,0x06,0x5D,0xE6,0x5C,0xE7,0x5C,0xC8,0x5C,0xC9,0x5C,0xE7,0x5C,0xC7,0x5C,0xE8,0x5C,0xC8,0x5C,0xE9,0x64,0x2A,0x6D,0x29,0x6D,0x29,0x6D,0x49,0x75,0x48,0x75,0x49,0x75,0x49,0x7D,0x69,0x75,0x69,0x7D,0x69,0x7D,0x69,0x7D, +0x68,0x7D,0x68,0x75,0xA9,0x75,0x89,0x75,0x8A,0x7D,0x68,0x5C,0xA5,0x22,0x86,0x1A,0x26,0x2B,0xE9,0x64,0x65,0x5C,0x68,0x54,0x49,0x33,0xA8,0x1A,0x86,0x1A,0xE4,0x22,0x05,0x2B,0x26,0x2B,0xA8,0x3B,0x05,0x23,0xE5,0x1A,0x46,0x23,0xA8,0x2B,0x48,0x1B,0xC8,0x0A,0x67,0x02,0xAB,0x23,0x31,0x4D,0xB2,0x5D,0xF3,0x5D,0xB3,0x5D,0xF5,0x65,0xD5,0x55,0xF5,0x55,0xD4,0x4D,0xB3,0x4D,0xD3,0x4D,0x71,0x45,0x71,0x45,0x2C,0x24,0x0B,0x2C,0x28,0x1B,0xA6,0x1A,0x65,0x1A,0x44,0x1A,0x24,0x1A,0x44,0x1A,0x85,0x2A,0x66,0x43,0x86,0x43,0x86,0x43,0xA6,0x43,0xA6,0x43,0xA6,0x43,0xA5,0x43,0xC5,0x43,0xA5,0x43,0xA5,0x43,0xA5,0x43,0xA5,0x43,0xC5,0x43,0xC6,0x43,0xC6,0x43,0xC6,0x43, +0xC6,0x3B,0xA6,0x43,0x86,0x4B,0x85,0x4B,0xA5,0x43,0xA5,0x3B,0xA6,0x3B,0xA6,0x3B,0xA7,0x33,0x2C,0x45,0xCE,0x3D,0xCE,0x3D,0x0F,0x3E,0x0F,0x3E,0x2E,0x36,0x0E,0x2E,0xEB,0x3D,0x46,0x2C,0xC6,0x43,0xA6,0x43,0xA5,0x33,0xA6,0x33,0x47,0x2B,0x66,0x12,0x86,0x0A,0x85,0x0A,0xA5,0x12,0x65,0x12,0x66,0x12,0x45,0x0A,0xE8,0x3B,0x4B,0x65,0x4B,0x4D,0x4B,0x55,0x4B,0x55,0x4A,0x5D,0x4A,0x55,0x4B,0x55,0x4B,0x55,0x4B,0x55,0x4B,0x55,0x4B,0x55,0x4B,0x55,0x4C,0x55,0x0A,0x55,0xCB,0x7D,0x8C,0xA6,0x4A,0xAE,0x69,0xA6,0x4D,0x96,0x25,0x23,0x48,0x1B,0x26,0x1B,0x27,0x1B,0x28,0x23,0x07,0x1B,0x47,0x1B,0x68,0x23,0x85,0x0A,0x87,0x3B,0x2C,0x9E,0x09,0x9E,0x4A,0xA6,0x2B,0xA6, +0x47,0x9E,0xEE,0xAE,0x29,0x54,0x66,0x1A,0x88,0x1A,0xA7,0x1A,0xA6,0x12,0xA7,0x12,0xA7,0x1A,0x86,0x0A,0x0A,0x2C,0x4E,0x45,0xC8,0x13,0x66,0x0B,0xEC,0x3C,0x49,0x1C,0x67,0x0B,0x6A,0x24,0xAA,0x2C,0x66,0x0B,0x09,0x1C,0xAB,0x2C,0x25,0x03,0x29,0x24,0x0D,0x45,0xC6,0x12,0xE4,0x01,0x05,0x12,0xE4,0x11,0x04,0x12,0xE5,0x11,0xE5,0x09,0x05,0x0A,0xE5,0x11,0xE4,0x11,0x25,0x12,0xA6,0x12,0x27,0x1B,0xE7,0x1A,0x07,0x23,0x07,0x1B,0xE7,0x1A,0x27,0x23,0xE7,0x22,0x27,0x2B,0x27,0x1B,0x07,0x1B,0x08,0x23,0xA9,0x2C,0xCC,0x65,0x49,0x5D,0x6C,0x5D,0x4B,0x24,0x8B,0x0B,0xEC,0x1B,0xCA,0x1B,0x2A,0x24,0x4C,0x24,0x4C,0x1C,0xCD,0x2C,0xAD,0x24,0xAC,0x1C,0xAC,0x1C,0xE8,0x0B, +0xC4,0x12,0x25,0x1B,0x86,0x23,0xEB,0x44,0x09,0x45,0x28,0x45,0xC7,0x44,0x08,0x4D,0xA8,0x4C,0x2A,0x55,0x2A,0x55,0x29,0x55,0x29,0x4D,0xE8,0x44,0x09,0x4D,0xEA,0x4C,0x09,0x4D,0xE9,0x4C,0x09,0x55,0xE9,0x4C,0xE9,0x4C,0x09,0x4D,0x09,0x4D,0x09,0x4D,0x09,0x4D,0x09,0x4D,0xE9,0x44,0x29,0x4D,0xE8,0x44,0x4A,0x4D,0x4A,0x55,0x09,0x45,0x47,0x45,0x27,0x45,0xE8,0x44,0x2A,0x4D,0x8D,0x55,0x4C,0x55,0x0C,0x55,0x0B,0x5D,0x0B,0x5D,0x4B,0x55,0x4B,0x4D,0x4C,0x4D,0x4C,0x55,0x2C,0x5D,0x0B,0x55,0x2B,0x55,0x4B,0x55,0x6C,0x55,0x4C,0x4D,0x6C,0x55,0x0B,0x55,0x4C,0x5D,0x2B,0x5D,0x2C,0x5D,0x0C,0x5D,0xEB,0x5C,0xA9,0x54,0xA8,0x4C,0xE8,0x4C,0xC8,0x44,0x4C,0x5D,0xE7,0x2B, +0xE3,0x01,0x85,0x22,0x23,0x1A,0x20,0x01,0xC7,0x22,0x6C,0x44,0x48,0x1C,0xCD,0x2D,0x53,0x4F,0xAF,0x35,0x50,0x5D,0xD8,0xBE,0x58,0xBE,0xE5,0x11,0x04,0x02,0x63,0x02,0xC1,0x19,0x80,0x09,0x81,0x09,0xC0,0x00,0x60,0x00,0x80,0x00,0x60,0x00,0xE0,0x08,0x61,0x11,0x84,0x22,0xA7,0x3B,0x49,0x4C,0x89,0x5C,0x0A,0x6D,0x0A,0x75,0x09,0x7D,0x0B,0x6D,0xA6,0x3B,0x46,0x23,0x47,0x2B,0xEA,0x43,0xA6,0x3B,0xC9,0x5C,0x88,0x4C,0x08,0x44,0x6B,0x54,0xCB,0x64,0xE9,0x64,0xE8,0x5C,0x2A,0x55,0x2F,0x6E,0x70,0x66,0x6F,0x4E,0xB0,0x56,0x6E,0x4E,0x6E,0x4E,0x6E,0x4E,0x2D,0x56,0xC8,0x3C,0xC8,0x4C,0x2A,0x5D,0x2D,0x6E,0x4D,0x56,0xAE,0x46,0xCE,0x3E,0x8E,0x3E,0x8F,0x56,0x2F,0x56, +0xAC,0x45,0xA9,0x34,0xAA,0x44,0xCE,0x5D,0x90,0x5E,0x8F,0x46,0x8F,0x4E,0x6E,0x56,0x8F,0x4E,0x8E,0x46,0xAF,0x46,0x09,0x2D,0xAA,0x4C,0xAA,0x4C,0x4F,0x5E,0x8F,0x46,0x8E,0x4E,0x8D,0x3E,0xCE,0x3E,0xAE,0x46,0x8F,0x56,0xED,0x55,0xC9,0x3C,0xC9,0x3C,0x4B,0x4D,0x4E,0x5E,0x6D,0x4E,0x4C,0x3E,0x6D,0x46,0x6E,0x4E,0x4D,0x4E,0x6E,0x46,0x8B,0x3D,0xE8,0x3C,0xC7,0x54,0xC8,0x6C,0x26,0x54,0xE8,0x6C,0x86,0x64,0xA5,0x6C,0x84,0x6C,0xC5,0x64,0xA5,0x5C,0xC5,0x5C,0xC5,0x64,0xC5,0x64,0xC6,0x6C,0xA6,0x64,0xC7,0x5C,0xC7,0x5C,0xE8,0x64,0xA6,0x5C,0xE7,0x64,0x07,0x6D,0x85,0x54,0xA5,0x5C,0x06,0x6D,0xA9,0x7D,0x4C,0x96,0x8D,0x9E,0x6C,0x96,0x4A,0x8E,0x69,0x96,0x69,0x96, +0x69,0x96,0x8A,0x96,0x6B,0x96,0x6B,0x96,0x8C,0x9E,0xAC,0xA6,0xAC,0x9E,0x6B,0x96,0xC9,0x85,0x68,0x75,0xE7,0x64,0xA6,0x5C,0x86,0x5C,0xA6,0x5C,0xA7,0x5C,0xC8,0x64,0x06,0x65,0x66,0x54,0x05,0x44,0x44,0x4C,0x43,0x44,0x23,0x44,0x46,0x44,0x67,0x4C,0x45,0x44,0x46,0x4C,0x28,0x4C,0x09,0x4C,0x27,0x4C,0x45,0x4C,0x26,0x4C,0x28,0x4C,0x47,0x4C,0x26,0x44,0xC7,0x5C,0x89,0x6D,0x88,0x6D,0xA7,0x6D,0x09,0x7E,0x49,0x86,0x4A,0x7E,0x09,0x7E,0xE9,0x75,0x4A,0x86,0x29,0x7E,0xE8,0x75,0x29,0x7E,0x49,0x7E,0xC9,0x75,0x06,0x5D,0xC5,0x54,0xE6,0x5C,0x07,0x5D,0x88,0x6D,0xEA,0x7D,0x0C,0x86,0xC7,0x5C,0x87,0x54,0xA7,0x54,0x87,0x4C,0x88,0x54,0xA8,0x54,0x88,0x54,0x88,0x54, +0xC7,0x5C,0xA8,0x54,0xA8,0x54,0xA8,0x54,0xA7,0x54,0x87,0x54,0x66,0x4C,0x66,0x4C,0x66,0x4C,0x87,0x54,0x87,0x54,0x86,0x54,0x87,0x54,0x67,0x54,0x68,0x4C,0x69,0x54,0x86,0x4C,0x66,0x4C,0xA7,0x54,0x86,0x54,0x86,0x54,0x08,0x65,0x28,0x6D,0x69,0x75,0x27,0x6D,0x27,0x6D,0x27,0x6D,0x27,0x6D,0x28,0x6D,0x28,0x6D,0x08,0x6D,0x08,0x6D,0x26,0x7D,0x27,0x75,0x27,0x6D,0x27,0x6D,0x49,0x75,0x07,0x54,0x64,0x1A,0x86,0x1A,0x25,0x2B,0xAA,0x7D,0x67,0x75,0x4B,0x75,0x68,0x33,0x05,0x0A,0x27,0x2B,0x0A,0x6D,0xC8,0x64,0x88,0x5C,0xE7,0x43,0xE5,0x22,0x05,0x23,0xE5,0x1A,0x06,0x1B,0x07,0x13,0x6A,0x1B,0x8F,0x3C,0x15,0x66,0xD4,0x5D,0xB3,0x55,0xF3,0x55,0x92,0x4D,0x92,0x4D, +0x93,0x45,0x72,0x45,0xB3,0x4D,0x92,0x4D,0x92,0x4D,0x71,0x45,0x71,0x4D,0xF3,0x5D,0x92,0x55,0x50,0x4D,0x6D,0x3C,0x89,0x2B,0x07,0x2B,0x27,0x3B,0x68,0x43,0x26,0x43,0x45,0x43,0x65,0x43,0x65,0x43,0x65,0x3B,0x66,0x3B,0x66,0x3B,0x66,0x3B,0x86,0x3B,0x66,0x3B,0x65,0x3B,0x45,0x3B,0x45,0x3B,0x45,0x3B,0x45,0x33,0x45,0x33,0x45,0x33,0x65,0x23,0x45,0x33,0x25,0x43,0x45,0x4B,0x65,0x43,0x85,0x3B,0x86,0x33,0x86,0x33,0xE8,0x33,0x6E,0x55,0xCE,0x55,0x0C,0x3D,0x4C,0x4D,0x4B,0x45,0xEC,0x45,0x4C,0x36,0xC7,0x44,0x64,0x2B,0x66,0x43,0x86,0x33,0xA5,0x1B,0x6D,0x55,0x4C,0x3C,0x26,0x02,0x67,0x12,0x65,0x0A,0x65,0x12,0x65,0x12,0x66,0x12,0x45,0x02,0xE9,0x33,0x4C,0x65, +0x4B,0x55,0x4B,0x55,0x6B,0x5D,0x4A,0x5D,0x4A,0x55,0x4A,0x55,0x6B,0x55,0x6B,0x55,0x6B,0x5D,0x4A,0x55,0x2A,0x4D,0x4B,0x55,0x2A,0x5D,0xEB,0x85,0x6C,0xA6,0x29,0xAE,0x69,0xA6,0x0C,0x8E,0x46,0x23,0x88,0x1B,0x67,0x1B,0x88,0x23,0x48,0x23,0x48,0x1B,0x68,0x1B,0x88,0x1B,0x84,0x0A,0x86,0x33,0x4D,0x9E,0x49,0xA6,0x49,0xA6,0x0A,0x9E,0x47,0x9E,0xAD,0xAE,0x08,0x4C,0x46,0x1A,0x68,0x1A,0x87,0x12,0xA6,0x12,0xA6,0x12,0xA7,0x12,0x86,0x0A,0xEA,0x2B,0x4E,0x45,0xA8,0x13,0x66,0x0B,0xEC,0x3C,0x49,0x1C,0x47,0x0B,0x4A,0x2C,0x8A,0x2C,0x66,0x0B,0x09,0x1C,0xAC,0x2C,0x25,0x03,0x28,0x24,0x0D,0x4D,0xC6,0x12,0x05,0x02,0x05,0x12,0xE4,0x11,0x04,0x12,0x05,0x12,0x06,0x0A, +0x25,0x0A,0x06,0x12,0xE5,0x11,0x06,0x12,0x45,0x0A,0xE7,0x1A,0xC6,0x1A,0xC6,0x1A,0xE6,0x1A,0xC6,0x12,0xA6,0x1A,0x86,0x1A,0x85,0x12,0xC6,0x12,0xA6,0x0A,0xC7,0x1A,0xA7,0x1B,0x6B,0x5D,0x49,0x55,0x6B,0x4D,0x2B,0x24,0xAB,0x13,0xCB,0x23,0x48,0x1B,0x88,0x1B,0x2B,0x2C,0xC6,0x02,0xEB,0x33,0xC6,0x0A,0xA8,0x1B,0xAB,0x34,0xCB,0x34,0xA4,0x1A,0x67,0x33,0x45,0x2B,0x65,0x23,0xE9,0x54,0xCE,0x8E,0x4C,0x86,0x6E,0x8E,0x0E,0x86,0x44,0x2B,0x03,0x1B,0x88,0x4C,0xC9,0x54,0xC8,0x54,0xA8,0x54,0xC9,0x5C,0xC8,0x54,0xC8,0x54,0xE8,0x54,0xA7,0x4C,0xE8,0x54,0xE8,0x54,0xC8,0x4C,0xE8,0x54,0x08,0x55,0xC8,0x4C,0xE8,0x54,0xA7,0x4C,0x45,0x3C,0x42,0x1B,0x80,0x02,0xEC,0x6D, +0x4A,0x86,0x2B,0x86,0xEF,0x9E,0x84,0x33,0xC0,0x01,0xA1,0x01,0x03,0x1A,0xA3,0x19,0xC3,0x19,0xE3,0x11,0x03,0x02,0x03,0x0A,0xE3,0x11,0xC3,0x11,0xC2,0x11,0xE2,0x19,0xE3,0x09,0xE3,0x11,0xC2,0x11,0x03,0x12,0xC1,0x09,0xE3,0x11,0xE3,0x11,0xC3,0x11,0xC2,0x09,0xE7,0x4B,0x8F,0x96,0x6C,0x8E,0x8C,0x8E,0x4D,0x7E,0x23,0x13,0x6B,0x3C,0x4E,0x4D,0x8F,0x5D,0x8E,0x5D,0x8B,0x3C,0xEA,0x2B,0xC8,0x23,0x44,0x0B,0x0A,0x2D,0xAC,0x25,0x8E,0x2D,0x70,0x55,0x56,0x9E,0x57,0xAE,0xA5,0x09,0xE4,0x09,0xA1,0x01,0xE0,0x08,0xA0,0x00,0xC0,0x00,0x80,0x01,0x43,0x1A,0xA4,0x32,0x66,0x53,0x48,0x6C,0xE9,0x74,0x09,0x6D,0x2A,0x6D,0xE9,0x64,0xA8,0x64,0xC8,0x64,0x66,0x5C,0xA6,0x64, +0x68,0x6C,0xC9,0x6C,0xE9,0x64,0xEA,0x54,0x0C,0x55,0x4C,0x55,0x4A,0x45,0x2A,0x45,0x4C,0x4D,0x2C,0x4D,0xEA,0x4C,0x2A,0x4D,0x0B,0x45,0x8E,0x4D,0x10,0x56,0xAD,0x3D,0xAC,0x3D,0xAC,0x3D,0x0D,0x3E,0xED,0x3D,0xCD,0x45,0x2B,0x35,0x6C,0x4D,0xCA,0x3C,0xEE,0x5D,0x0E,0x56,0xCD,0x3D,0xCC,0x2D,0xEC,0x2D,0xCC,0x35,0xAC,0x3D,0xAD,0x45,0x0C,0x3D,0x4D,0x45,0x4D,0x45,0xEF,0x55,0xEE,0x45,0xAC,0x35,0xCD,0x3D,0xCD,0x3D,0xAC,0x3D,0xCD,0x3D,0x4B,0x35,0x4C,0x45,0x0C,0x4D,0xAE,0x55,0x2F,0x56,0xAC,0x35,0xED,0x45,0xCC,0x35,0xEC,0x2D,0xEC,0x35,0xAC,0x35,0x2B,0x3D,0x0B,0x3D,0x2B,0x3D,0x4F,0x56,0x8F,0x56,0x8F,0x4E,0xAF,0x4E,0xAF,0x4E,0x4E,0x4E,0x6F,0x66,0x0A,0x45, +0xC8,0x54,0xE9,0x5C,0xA7,0x5C,0xA7,0x64,0x46,0x5C,0xA8,0x6C,0x87,0x6C,0x86,0x6C,0xA6,0x6C,0xA6,0x64,0xC7,0x64,0xA7,0x5C,0x86,0x5C,0xC6,0x64,0xE7,0x64,0xC7,0x5C,0xE7,0x5C,0x86,0x54,0xA7,0x5C,0xC8,0x5C,0x87,0x5C,0x87,0x5C,0xC7,0x64,0x86,0x5C,0x86,0x5C,0x66,0x5C,0xA7,0x64,0x29,0x75,0xEB,0x85,0x6C,0x9E,0x8B,0x9E,0x6A,0x96,0x6B,0x8E,0x4B,0x8E,0x4B,0x8E,0x6B,0x8E,0x6B,0x96,0x4B,0x8E,0x4B,0x8E,0x4C,0x96,0x8C,0x96,0x8C,0x96,0x4C,0x96,0xEA,0x85,0x68,0x75,0xE7,0x64,0x86,0x5C,0x46,0x54,0xA6,0x5C,0x25,0x4C,0x66,0x54,0xA5,0x54,0xE6,0x5C,0xC7,0x54,0x06,0x44,0xC5,0x3B,0x05,0x44,0x05,0x44,0xE7,0x43,0xE8,0x43,0xE7,0x43,0x06,0x44,0x06,0x44,0x06,0x44, +0x05,0x44,0xE8,0x5C,0xAB,0x75,0xCA,0x7D,0xEA,0x75,0xEA,0x7D,0xC9,0x75,0x87,0x6D,0xC8,0x6D,0xA8,0x6D,0xA8,0x6D,0xA8,0x6D,0xC8,0x6D,0xC8,0x75,0xC8,0x75,0x87,0x65,0xC9,0x75,0xA8,0x6D,0x47,0x65,0xE5,0x54,0x67,0x65,0xEA,0x75,0xAA,0x75,0xAA,0x75,0xA7,0x54,0x06,0x44,0x27,0x44,0xE7,0x43,0x08,0x44,0xE8,0x43,0xE8,0x43,0xE8,0x43,0x47,0x4C,0x46,0x4C,0x45,0x4C,0x45,0x4C,0x87,0x54,0xC9,0x5C,0xA8,0x54,0x48,0x4C,0x88,0x54,0x07,0x44,0xE6,0x43,0xE7,0x43,0xE7,0x43,0x07,0x44,0x26,0x44,0x05,0x44,0xE6,0x54,0x0A,0x7E,0xC9,0x75,0xC9,0x75,0x47,0x65,0xA5,0x54,0x68,0x75,0x06,0x6D,0x26,0x6D,0x26,0x6D,0x27,0x6D,0x27,0x6D,0x28,0x6D,0x28,0x6D,0x29,0x6D,0x29,0x6D, +0x06,0x7D,0x28,0x75,0x29,0x6D,0x28,0x6D,0x49,0x75,0xE7,0x4B,0x24,0x12,0x86,0x1A,0x04,0x23,0x27,0x6D,0x46,0x6D,0x28,0x6D,0x25,0x2B,0x23,0x0A,0xE3,0x22,0x08,0x6D,0x47,0x75,0x48,0x75,0x0A,0x6D,0xC3,0x22,0x84,0x1A,0x0A,0x44,0xAD,0x4C,0xAD,0x44,0x72,0x5D,0xB4,0x5D,0x94,0x55,0x72,0x4D,0xF3,0x55,0xD2,0x4D,0x12,0x4E,0xD1,0x45,0xB2,0x55,0xB1,0x55,0x50,0x4D,0x92,0x55,0x71,0x55,0x72,0x55,0x71,0x55,0x91,0x4D,0x91,0x4D,0xB1,0x4D,0x90,0x4D,0x4F,0x55,0x4B,0x3C,0x47,0x2B,0x26,0x33,0x26,0x3B,0x44,0x3B,0x44,0x43,0x25,0x3B,0x25,0x3B,0x46,0x3B,0x47,0x3B,0x27,0x33,0x27,0x33,0x27,0x33,0x27,0x33,0x47,0x3B,0x87,0x43,0xA8,0x43,0xE9,0x4B,0x09,0x4C,0x29,0x4C, +0x4A,0x34,0xC9,0x43,0x47,0x4B,0xE6,0x4A,0x05,0x3B,0x45,0x33,0x66,0x2B,0x66,0x33,0x66,0x2B,0xEC,0x4C,0xCC,0x44,0x46,0x1B,0x66,0x2B,0x86,0x23,0xEA,0x34,0xCC,0x35,0x08,0x4C,0x06,0x3B,0x07,0x3B,0x87,0x2B,0x2B,0x45,0xCE,0x4D,0x0A,0x2C,0x67,0x0A,0x47,0x12,0x46,0x12,0x65,0x12,0x46,0x12,0x67,0x12,0x45,0x02,0xE9,0x33,0x4C,0x5D,0x8B,0x5D,0x4A,0x55,0x49,0x5D,0x49,0x5D,0x8A,0x5D,0x4A,0x55,0x6A,0x55,0x6A,0x55,0x69,0x55,0x6A,0x55,0x6B,0x55,0x6B,0x55,0x4A,0x5D,0xCA,0x7D,0x6B,0xA6,0x49,0xAE,0x89,0xA6,0x2C,0x8E,0x87,0x2B,0x88,0x1B,0xC8,0x23,0xA8,0x23,0x89,0x23,0xA9,0x23,0xA8,0x1B,0xE9,0x23,0xC5,0x0A,0x66,0x33,0x2C,0x9E,0x49,0xA6,0x49,0xA6,0x2B,0xA6, +0x26,0x9E,0xAC,0xA6,0xE8,0x4B,0x46,0x1A,0x68,0x1A,0x87,0x12,0xA6,0x12,0xA6,0x12,0xA7,0x12,0x66,0x0A,0xEA,0x2B,0x4F,0x45,0xA8,0x13,0x67,0x0B,0xEC,0x3C,0x49,0x1C,0x47,0x0B,0x4A,0x2C,0x8A,0x2C,0x66,0x0B,0x09,0x1C,0xAC,0x2C,0x25,0x03,0x28,0x24,0x0D,0x45,0xE6,0x12,0x04,0x02,0x25,0x12,0x04,0x12,0x04,0x12,0x05,0x12,0x06,0x0A,0x05,0x0A,0xE5,0x11,0xC5,0x11,0x06,0x12,0x25,0x02,0xE8,0x1A,0xC7,0x1A,0xE7,0x1A,0xE6,0x12,0x07,0x1B,0x86,0x1A,0xC7,0x22,0x86,0x12,0x07,0x13,0xC7,0x12,0xA7,0x1A,0x05,0x13,0x2A,0x55,0x49,0x55,0x6B,0x4D,0x2A,0x1C,0xAB,0x13,0x6A,0x23,0xA5,0x0A,0xE6,0x12,0xCA,0x2B,0x03,0x02,0xAA,0x43,0x64,0x1A,0x26,0x23,0x8B,0x44,0xAA,0x3C, +0x26,0x2B,0x8B,0x5C,0xC7,0x43,0x85,0x3B,0x28,0x75,0xEE,0xB6,0x6C,0xA6,0x6D,0xA6,0xED,0x95,0x03,0x33,0xA6,0x43,0x06,0x44,0xA8,0x5C,0xA7,0x64,0x67,0x64,0x67,0x6C,0xA6,0x5C,0x86,0x5C,0x85,0x5C,0xC7,0x64,0x85,0x5C,0xA6,0x5C,0x86,0x5C,0xA6,0x5C,0x86,0x54,0xC7,0x5C,0xA6,0x5C,0xA6,0x5C,0xC6,0x5C,0xA9,0x75,0xAA,0x75,0x8D,0x96,0x8A,0xAE,0x4A,0xAE,0xCE,0xBE,0xC6,0x5B,0xE0,0x19,0x41,0x11,0xA0,0x10,0x40,0x10,0x40,0x08,0x80,0x08,0xA1,0x00,0xA1,0x00,0x81,0x08,0x80,0x10,0x60,0x10,0x80,0x10,0x80,0x08,0x60,0x10,0x60,0x18,0x60,0x10,0xC0,0x10,0x80,0x00,0x81,0x08,0x81,0x08,0x60,0x00,0x24,0x43,0xED,0xAE,0xA9,0x96,0xA9,0x96,0xAC,0x96,0x07,0x3C,0xEA,0x2B, +0x28,0x0C,0x06,0x0C,0x88,0x1C,0xCB,0x24,0xAB,0x2C,0x4A,0x3C,0x45,0x23,0x27,0x2C,0x0B,0x2D,0xB0,0x3D,0xF3,0x65,0x56,0x96,0x99,0xB6,0xA5,0x11,0x42,0x09,0xE4,0x29,0x85,0x42,0x07,0x4B,0x0A,0x5C,0x6B,0x5C,0x8A,0x64,0xC9,0x6C,0xA7,0x6C,0xA5,0x6C,0x83,0x5C,0xC4,0x5C,0xA4,0x5C,0xA6,0x5C,0x86,0x64,0xA7,0x64,0x86,0x5C,0xC7,0x64,0x29,0x74,0x67,0x6C,0xA4,0x5C,0x06,0x55,0xCB,0x55,0x2E,0x4E,0x90,0x4E,0x4F,0x46,0x4F,0x4E,0x2F,0x56,0x6F,0x5E,0xEE,0x4D,0xED,0x34,0x70,0x3D,0xD0,0x3D,0x90,0x46,0x0F,0x56,0x2F,0x4E,0x4F,0x46,0x70,0x46,0x70,0x46,0x51,0x56,0x6E,0x3D,0xCD,0x2C,0x8F,0x3D,0xB0,0x3D,0x52,0x4E,0x71,0x56,0x30,0x4E,0x30,0x56,0x4F,0x56,0x4F,0x4E, +0xF1,0x5D,0xAC,0x24,0x8E,0x35,0xCE,0x3D,0x30,0x56,0x50,0x56,0x2F,0x4E,0x4F,0x46,0x50,0x4E,0xEF,0x55,0x31,0x66,0x8E,0x4D,0xEA,0x24,0xEE,0x35,0xEE,0x45,0x30,0x5E,0x30,0x56,0xEF,0x4D,0x51,0x56,0x30,0x46,0x71,0x4E,0x30,0x4E,0x2C,0x35,0x8D,0x3D,0xCE,0x35,0xEE,0x3D,0xEE,0x3D,0xCD,0x3D,0x0E,0x36,0x0E,0x3E,0xAA,0x34,0x2A,0x44,0x06,0x64,0x06,0x54,0x67,0x4C,0x67,0x4C,0x05,0x4C,0x87,0x64,0x47,0x5C,0x89,0x64,0x88,0x5C,0x67,0x5C,0x67,0x64,0x67,0x5C,0xA9,0x5C,0xA9,0x54,0xC8,0x4C,0xC8,0x4C,0xC7,0x54,0xC7,0x54,0xA7,0x54,0x87,0x54,0x88,0x54,0xA8,0x5C,0x87,0x54,0xA8,0x5C,0xA8,0x5C,0x88,0x5C,0x88,0x5C,0x68,0x5C,0x67,0x5C,0xC7,0x64,0x47,0x75,0x09,0x8E, +0x6D,0x8E,0x4C,0x86,0xEA,0x7D,0xE9,0x7D,0x0A,0x86,0x4C,0x8E,0x4D,0x8E,0x2C,0x8E,0x2B,0x8E,0x4B,0x8E,0x4B,0x8E,0x4C,0x8E,0x4C,0x96,0x4C,0x8E,0xCA,0x7D,0x29,0x6D,0xA8,0x64,0x6A,0x75,0xEB,0x85,0xCA,0x7D,0xEB,0x7D,0xED,0x7D,0x0A,0x65,0xC5,0x3B,0xC5,0x3B,0xC5,0x3B,0xA6,0x3B,0xA7,0x3B,0xA7,0x3B,0xA6,0x3B,0xA5,0x3B,0xC4,0x3B,0x24,0x44,0x28,0x65,0x49,0x6D,0x08,0x65,0x49,0x6D,0x49,0x6D,0x48,0x65,0xA9,0x6D,0x48,0x65,0x68,0x65,0xA8,0x6D,0x67,0x65,0x88,0x65,0x68,0x65,0x69,0x65,0x89,0x65,0x88,0x6D,0x67,0x65,0x88,0x6D,0x67,0x65,0x47,0x65,0x68,0x65,0x48,0x65,0x49,0x6D,0x09,0x5D,0xE2,0x1A,0x44,0x2B,0x45,0x2B,0x25,0x2B,0x25,0x2B,0x45,0x2B,0x24,0x2B, +0x05,0x44,0x25,0x4C,0x24,0x44,0xE7,0x5C,0xCA,0x7D,0xCA,0x7D,0xE9,0x7D,0xC8,0x75,0xC8,0x75,0xC9,0x75,0x46,0x4C,0x65,0x33,0xA7,0x3B,0xA8,0x3B,0x86,0x3B,0xC6,0x43,0x07,0x5D,0x28,0x65,0x28,0x65,0x07,0x65,0x07,0x65,0x07,0x6D,0x07,0x6D,0x07,0x6D,0x07,0x6D,0x07,0x6D,0x07,0x6D,0x08,0x6D,0x08,0x6D,0xE8,0x6C,0x09,0x6D,0x09,0x6D,0x26,0x65,0x48,0x6D,0xE6,0x64,0x26,0x6D,0x66,0x75,0x24,0x4C,0x01,0x12,0x25,0x1A,0x65,0x22,0xCA,0x6C,0x08,0x75,0x0B,0x7D,0x65,0x2A,0x06,0x1A,0x44,0x12,0xEB,0x64,0x29,0x7D,0xE9,0x6C,0xEB,0x64,0xC3,0x12,0x83,0x02,0x0A,0x2C,0x53,0x6E,0x13,0x5E,0xB2,0x55,0x93,0x55,0x73,0x55,0x73,0x55,0x94,0x55,0xD3,0x55,0xD2,0x55,0xB1,0x4D, +0x91,0x4D,0x71,0x4D,0x71,0x4D,0x72,0x4D,0x72,0x4D,0x92,0x4D,0x93,0x4D,0xB3,0x45,0x92,0x45,0xB2,0x45,0x92,0x45,0x71,0x4D,0x30,0x4D,0x6D,0x44,0x07,0x23,0x48,0x2B,0x06,0x33,0x26,0x3B,0x06,0x3B,0xE5,0x3A,0x06,0x3B,0x27,0x33,0x07,0x23,0x48,0x1B,0x2C,0x2C,0x31,0x45,0x72,0x4D,0xB3,0x55,0x93,0x55,0xB2,0x55,0x71,0x4D,0x91,0x55,0x73,0x45,0x73,0x4D,0x31,0x4D,0xCE,0x44,0x8C,0x3C,0xEA,0x2B,0x47,0x1B,0x47,0x23,0x27,0x23,0xE9,0x43,0x4B,0x54,0x25,0x33,0x25,0x2B,0x86,0x2B,0x6A,0x3C,0x2D,0x4D,0xA7,0x3B,0x25,0x2B,0x66,0x23,0xAA,0x34,0x2A,0x2D,0x4C,0x3D,0xE9,0x23,0x45,0x0A,0x66,0x0A,0x65,0x0A,0x46,0x12,0x26,0x1A,0x27,0x1A,0x05,0x0A,0xC8,0x33,0x6B,0x5D, +0x4B,0x5D,0x4A,0x5D,0x4A,0x5D,0x4A,0x5D,0x4B,0x5D,0x4B,0x55,0x6B,0x55,0x6B,0x55,0x4A,0x55,0x6A,0x5D,0x4B,0x5D,0x4B,0x55,0x2B,0x5D,0xCB,0x85,0x8C,0xA6,0x49,0xAE,0x47,0xAE,0x0C,0x9E,0xA8,0x33,0xEA,0x2B,0x08,0x1C,0x27,0x1C,0x28,0x14,0x28,0x14,0x09,0x14,0xCA,0x2B,0x86,0x1A,0x46,0x43,0x2C,0xA6,0x69,0xAE,0x49,0xA6,0x2C,0xAE,0x28,0xA6,0x6E,0xA6,0xC9,0x4B,0x46,0x12,0x65,0x12,0xA4,0x12,0xA5,0x12,0x66,0x1A,0x67,0x22,0x46,0x0A,0xEA,0x23,0x4E,0x45,0xA8,0x0B,0x47,0x03,0xEC,0x34,0x68,0x14,0x66,0x03,0x6B,0x24,0x8B,0x2C,0x66,0x03,0x29,0x14,0xCB,0x24,0x45,0x03,0x49,0x14,0x2E,0x3D,0xE6,0x0A,0x04,0x12,0x05,0x1A,0x05,0x12,0xE5,0x09,0xEA,0x32,0xE7,0x21, +0x8B,0x43,0xC5,0x09,0xE5,0x19,0xE5,0x19,0xE4,0x11,0x86,0x1A,0xC7,0x1A,0xC7,0x1A,0xC6,0x1A,0xE6,0x12,0xE6,0x12,0xE6,0x12,0xE6,0x12,0xE7,0x1A,0xE7,0x1A,0xE7,0x1A,0xE6,0x1A,0x8A,0x54,0xC9,0x54,0x6C,0x55,0x09,0x24,0x8B,0x23,0x2B,0x2B,0x46,0x12,0xC6,0x1A,0x89,0x33,0xC3,0x01,0xAB,0x3B,0x65,0x02,0x46,0x0B,0x8A,0x34,0x8A,0x3C,0x82,0x22,0xC7,0x43,0x24,0x33,0xE1,0x22,0x28,0x6D,0xED,0x9E,0x2A,0x86,0x6C,0x96,0xEB,0x85,0x02,0x2B,0x68,0x5C,0x48,0x5C,0x27,0x4C,0x68,0x54,0x28,0x4C,0x48,0x54,0x06,0x64,0x27,0x5C,0x26,0x54,0x47,0x54,0x67,0x54,0x47,0x54,0x68,0x54,0x67,0x54,0x86,0x54,0xC4,0x4C,0xA2,0x3C,0xE7,0x5D,0xAA,0x86,0xED,0x9E,0x8D,0xA6,0x10,0xC7, +0xB1,0xC6,0x0E,0xA6,0x2D,0x96,0x69,0x6D,0x66,0x4C,0x87,0x54,0x26,0x54,0xA5,0x4B,0x24,0x33,0xC3,0x2A,0x21,0x1A,0xA0,0x09,0x40,0x01,0x20,0x01,0x00,0x01,0x00,0x01,0xA0,0x10,0x80,0x08,0x80,0x10,0xA0,0x18,0xA0,0x10,0xC1,0x08,0xE1,0x00,0x01,0x01,0xE5,0x1A,0xCC,0x75,0x4B,0x7E,0x6A,0x86,0x8C,0x8E,0x0C,0x7E,0xC7,0x33,0x47,0x23,0x68,0x2B,0x68,0x2B,0x47,0x23,0xA9,0x2B,0x88,0x23,0x4B,0x2C,0x67,0x03,0x26,0x03,0x0D,0x3D,0xCC,0x3C,0xED,0x5C,0x10,0x96,0x2F,0x9E,0x67,0x6C,0xEC,0x95,0xCF,0xAE,0xCB,0x6D,0xA6,0x4C,0x66,0x4C,0xC7,0x5C,0xC6,0x4C,0xA6,0x4C,0xC7,0x5C,0x87,0x64,0x47,0x6C,0x47,0x6C,0x47,0x64,0x67,0x64,0x87,0x64,0x87,0x5C,0xA7,0x5C,0xC7,0x54, +0xAB,0x54,0x8A,0x44,0x4C,0x4D,0x4F,0x56,0x6F,0x4E,0x4F,0x46,0x4F,0x4E,0x6F,0x46,0x6F,0x3E,0x90,0x4E,0x8D,0x4D,0x6A,0x4C,0x29,0x3C,0x6D,0x4D,0x70,0x56,0x4F,0x46,0x8F,0x3E,0x6E,0x3E,0x6E,0x46,0x6F,0x56,0x2F,0x5E,0x2C,0x4D,0x69,0x34,0x69,0x2C,0x0E,0x4E,0x6F,0x4E,0x4F,0x46,0x6F,0x46,0x4F,0x4E,0x4E,0x4E,0x6F,0x4E,0x4E,0x46,0x89,0x5C,0x27,0x3C,0x0A,0x35,0x4F,0x4E,0x50,0x4E,0x4F,0x4E,0x70,0x4E,0x4E,0x46,0x6D,0x46,0x6D,0x56,0xCB,0x55,0xC7,0x34,0x87,0x24,0x2D,0x46,0x6F,0x46,0x6F,0x3E,0x16,0x4E,0x97,0x5E,0x75,0x5E,0x12,0x5E,0xAF,0x55,0xEB,0x44,0x48,0x44,0x06,0x44,0x47,0x4C,0x47,0x54,0x26,0x54,0x26,0x54,0x26,0x54,0x27,0x54,0x28,0x54,0x08,0x54, +0x06,0x4C,0x06,0x4C,0x26,0x54,0x26,0x54,0x47,0x5C,0x67,0x5C,0x67,0x5C,0x67,0x5C,0x67,0x5C,0x88,0x5C,0x67,0x54,0x87,0x5C,0x87,0x5C,0xA6,0x54,0xA6,0x54,0xC6,0x54,0xA6,0x4C,0xA5,0x44,0x05,0x55,0x46,0x5D,0xE5,0x54,0x65,0x44,0xA7,0x54,0x87,0x54,0x66,0x54,0x87,0x5C,0x86,0x5C,0x65,0x5C,0x66,0x5C,0x66,0x64,0x47,0x64,0x28,0x5C,0x6A,0x55,0xAC,0x5D,0x4D,0x5D,0x2B,0x5D,0x0B,0x76,0x4A,0x7E,0x4A,0x86,0x2B,0x86,0x2B,0x8E,0x2A,0x8E,0x29,0x8E,0x29,0x8E,0x2A,0x8E,0x2B,0x8E,0x2C,0x8E,0x2C,0x8E,0xC9,0x7D,0x49,0x6D,0x4A,0x6D,0x4B,0x6D,0x4A,0x6D,0x48,0x6D,0x67,0x6D,0x68,0x6D,0xE4,0x43,0x65,0x3B,0xA7,0x43,0x46,0x33,0x66,0x33,0x66,0x33,0xA6,0x33,0x85,0x2B, +0xA7,0x54,0xA7,0x54,0xC8,0x54,0x09,0x65,0x09,0x65,0xE8,0x5C,0x08,0x65,0x08,0x65,0x08,0x65,0x27,0x65,0x07,0x65,0x27,0x65,0x28,0x65,0xE8,0x64,0x09,0x65,0x09,0x65,0x06,0x5D,0x07,0x5D,0x08,0x5D,0x07,0x5D,0x06,0x55,0x07,0x5D,0x07,0x5D,0xE8,0x5C,0xE8,0x64,0xA5,0x3B,0x63,0x12,0x45,0x12,0x25,0x12,0x64,0x12,0x65,0x12,0xA6,0x1A,0xA5,0x3B,0x84,0x33,0x67,0x4C,0x4A,0x6D,0xE8,0x64,0xE7,0x5C,0xC6,0x5C,0xE6,0x5C,0xC6,0x5C,0x09,0x65,0x68,0x54,0x05,0x2B,0xE6,0x22,0x67,0x33,0x24,0x2B,0xC6,0x43,0x28,0x4C,0xE7,0x43,0x07,0x44,0x47,0x4C,0x26,0x4C,0x67,0x54,0xC8,0x64,0xE8,0x6C,0xE8,0x6C,0xE7,0x6C,0xE7,0x6C,0xE7,0x6C,0xE7,0x6C,0xE7,0x6C,0x07,0x6D,0x08,0x6D, +0x26,0x6D,0x07,0x6D,0x08,0x6D,0xE9,0x6C,0x0A,0x6D,0x46,0x3B,0xE4,0x09,0x47,0x1A,0x87,0x22,0x4B,0x5C,0x4B,0x7D,0x03,0x3B,0xC1,0x11,0xA1,0x09,0xA0,0x01,0xE4,0x22,0x46,0x5C,0x2B,0x75,0xAA,0x5C,0x83,0x0A,0x0A,0x2C,0xB1,0x5D,0x33,0x66,0xB2,0x55,0x14,0x5E,0xF4,0x5D,0xD4,0x5D,0xD4,0x55,0xD4,0x5D,0xF4,0x5D,0xF3,0x55,0xF3,0x55,0xD2,0x4D,0xD2,0x4D,0xB2,0x4D,0x92,0x4D,0x72,0x4D,0x72,0x4D,0x72,0x4D,0x71,0x45,0x71,0x45,0x91,0x4D,0x70,0x45,0x70,0x4D,0x50,0x55,0x2F,0x55,0x2C,0x3C,0xE7,0x1A,0xE5,0x2A,0xE5,0x32,0xE5,0x32,0xE6,0x32,0xE7,0x32,0xC6,0x22,0x69,0x23,0x30,0x4D,0x14,0x66,0xF3,0x55,0xB3,0x4D,0xB3,0x55,0x92,0x4D,0xB3,0x55,0x92,0x55,0xB2,0x4D, +0xB3,0x4D,0x72,0x45,0x92,0x4D,0x91,0x55,0x70,0x55,0x70,0x5D,0xEF,0x4C,0x2C,0x3C,0x69,0x2B,0xE6,0x22,0xC9,0x43,0xE5,0x2A,0x05,0x2B,0x25,0x23,0x29,0x3C,0xE8,0x2B,0x46,0x33,0x06,0x2B,0x87,0x2B,0x8A,0x34,0xAA,0x24,0xAB,0x34,0x68,0x23,0x45,0x0A,0x25,0x0A,0x45,0x0A,0x45,0x12,0x06,0x12,0x27,0x1A,0x25,0x12,0xE8,0x3B,0x4A,0x5D,0x6A,0x5D,0x4A,0x5D,0x49,0x5D,0x4A,0x5D,0x4A,0x5D,0x4B,0x5D,0x6B,0x55,0x6A,0x5D,0x6A,0x5D,0x8A,0x5D,0x6B,0x5D,0x4A,0x5D,0x2A,0x5D,0xCA,0x85,0x8B,0xAE,0x49,0xAE,0x87,0xAE,0x2C,0x96,0xE8,0x33,0x0A,0x24,0x28,0x24,0x68,0x24,0x69,0x1C,0x69,0x1C,0x29,0x1C,0x2B,0x34,0x85,0x1A,0x25,0x3B,0x2B,0xA6,0x68,0xA6,0x28,0xA6,0x4B,0xAE, +0x48,0xA6,0x8E,0xAE,0xC9,0x4B,0x26,0x12,0x86,0x12,0xA4,0x0A,0x64,0x0A,0x66,0x1A,0x47,0x1A,0x46,0x0A,0xEA,0x23,0x4E,0x45,0xA8,0x13,0x47,0x0B,0xEC,0x3C,0x49,0x1C,0x66,0x03,0x6B,0x2C,0x8B,0x34,0x46,0x0B,0x09,0x1C,0xAB,0x2C,0x25,0x03,0x2A,0x1C,0x2F,0x4D,0xE7,0x12,0x04,0x12,0x25,0x12,0x66,0x12,0xC4,0x01,0x6F,0x4C,0x26,0x0A,0xB0,0x64,0x43,0x01,0x67,0x1A,0x05,0x12,0x05,0x12,0x65,0x12,0xE7,0x22,0xA6,0x12,0xC6,0x1A,0xC6,0x12,0xC6,0x12,0xC6,0x12,0xC6,0x12,0xA6,0x12,0xA6,0x1A,0xA6,0x1A,0xA5,0x0A,0x29,0x3C,0x2B,0x55,0x0B,0x45,0xE9,0x1B,0x8B,0x1B,0x2A,0x1B,0x25,0x02,0xA5,0x0A,0x68,0x23,0xE3,0x01,0x6A,0x23,0x85,0x02,0xE9,0x23,0x8B,0x34,0xEC,0x4C, +0x2A,0x54,0x4A,0x5C,0x08,0x4C,0xC5,0x43,0xE8,0x64,0x4C,0x8E,0x2A,0x86,0x2C,0x8E,0xAB,0x7D,0x23,0x33,0xE6,0x4B,0xC6,0x4B,0xC6,0x4B,0x06,0x4C,0xE7,0x4B,0xE7,0x4B,0xC7,0x5B,0xE7,0x53,0xE6,0x4B,0x07,0x4C,0x07,0x4C,0xE7,0x4B,0x07,0x4C,0x06,0x4C,0x46,0x4C,0x24,0x3C,0x68,0x5D,0xCD,0x86,0x8D,0x8E,0x4E,0x96,0xEF,0x9D,0x72,0xBE,0xD3,0xD6,0xD2,0xC6,0x2E,0x9E,0xA8,0x5C,0x46,0x4C,0xE5,0x43,0xE6,0x53,0x07,0x5C,0x28,0x5C,0x49,0x5C,0x29,0x5C,0x2A,0x64,0xE9,0x63,0x88,0x53,0x27,0x4B,0xE5,0x3A,0x86,0x2A,0x24,0x22,0xA2,0x19,0x61,0x19,0xC0,0x00,0x61,0x01,0xAA,0x2B,0x2E,0x4D,0xAE,0x5D,0x8B,0x5D,0x0B,0x7E,0xEA,0x85,0xCA,0x7D,0xED,0x7D,0xA7,0x23,0x68,0x13, +0x26,0x1B,0x26,0x1B,0x47,0x23,0x46,0x23,0xA7,0x23,0xE8,0x23,0xA6,0x1B,0x85,0x13,0xEA,0x44,0x0E,0x6E,0x6F,0x8E,0xED,0x85,0x6E,0x9E,0xEF,0xAE,0x30,0xB7,0xC9,0x85,0x26,0x54,0x87,0x5C,0x86,0x4C,0xA6,0x54,0x66,0x54,0xA7,0x64,0x66,0x5C,0x67,0x5C,0x67,0x5C,0x68,0x64,0x68,0x6C,0x47,0x64,0x47,0x5C,0x67,0x5C,0x87,0x5C,0x87,0x5C,0x49,0x4C,0x0A,0x4D,0x0D,0x56,0x0D,0x46,0x0D,0x3E,0x4E,0x46,0x2D,0x46,0x2E,0x46,0x4E,0x56,0x6C,0x4D,0x48,0x3C,0xCA,0x44,0x8D,0x4D,0x4F,0x56,0x0D,0x46,0x6F,0x46,0x2E,0x46,0x2E,0x4E,0x2E,0x56,0xCD,0x55,0x0B,0x45,0x89,0x34,0x0B,0x45,0x0F,0x5E,0x0F,0x4E,0xED,0x3D,0x2E,0x46,0x4F,0x46,0x0E,0x46,0x2F,0x56,0xAD,0x4D,0x89,0x2C, +0xA9,0x44,0x4C,0x4D,0x2F,0x56,0x4F,0x4E,0x0F,0x46,0x0F,0x46,0xCE,0x45,0x2E,0x4E,0x2E,0x4E,0x2A,0x3D,0x87,0x2C,0xEA,0x44,0xAE,0x55,0xEF,0x4D,0x31,0x4E,0xF4,0x5E,0xF9,0x76,0xF8,0x76,0x16,0x7F,0xD4,0x7E,0x0F,0x6E,0x88,0x44,0x47,0x44,0x27,0x4C,0x68,0x54,0x67,0x5C,0x67,0x5C,0x86,0x5C,0x87,0x5C,0x67,0x5C,0x68,0x5C,0x68,0x5C,0x87,0x5C,0x87,0x5C,0x67,0x5C,0x67,0x5C,0x67,0x5C,0x67,0x5C,0x67,0x5C,0x47,0x5C,0x67,0x5C,0x67,0x5C,0x67,0x54,0x87,0x5C,0x87,0x54,0xA6,0x54,0x66,0x4C,0x65,0x4C,0xC6,0x54,0x2B,0x7E,0xCE,0x96,0xEE,0x96,0x0F,0x9F,0x6D,0x8E,0x08,0x65,0x66,0x4C,0x66,0x54,0x46,0x54,0x46,0x54,0x66,0x54,0x67,0x5C,0x47,0x5C,0x47,0x5C,0x47,0x5C, +0x86,0x3C,0x2A,0x55,0x48,0x3C,0x68,0x44,0x2D,0x7E,0x0A,0x7E,0x4B,0x86,0x2B,0x86,0x0B,0x86,0x0A,0x8E,0x2A,0x8E,0x29,0x8E,0x0A,0x8E,0x0B,0x8E,0x0C,0x8E,0xCB,0x85,0x06,0x5D,0xC6,0x54,0xE7,0x54,0xE8,0x5C,0x08,0x5D,0xE6,0x5C,0x06,0x5D,0xC6,0x5C,0xA4,0x3B,0x65,0x33,0x87,0x3B,0x05,0x2B,0x25,0x33,0x25,0x2B,0x25,0x2B,0x26,0x2B,0x26,0x44,0x46,0x44,0xA8,0x54,0xC8,0x5C,0xC8,0x54,0xC8,0x5C,0xC7,0x5C,0xA7,0x54,0xA7,0x54,0xC7,0x5C,0xC7,0x5C,0xC7,0x5C,0xA7,0x54,0xA7,0x54,0xE8,0x5C,0xC8,0x5C,0x07,0x5D,0xE8,0x5C,0xC7,0x54,0xA7,0x54,0xC6,0x54,0xC6,0x54,0x87,0x54,0x87,0x54,0x87,0x54,0xC9,0x64,0xE8,0x43,0xE5,0x2A,0x25,0x2B,0xA6,0x3B,0xA6,0x3B,0x48,0x4C, +0x66,0x33,0x66,0x33,0x28,0x4C,0x88,0x54,0x68,0x54,0x47,0x4C,0x06,0x44,0x06,0x44,0x06,0x44,0x07,0x44,0xE8,0x43,0xE6,0x22,0xA6,0x22,0xC5,0x22,0x04,0x23,0xC2,0x1A,0x07,0x2B,0x68,0x33,0x27,0x33,0x46,0x33,0xE4,0x2A,0x65,0x3B,0xEA,0x6C,0xC9,0x64,0xC8,0x64,0xC8,0x6C,0xE7,0x64,0xE7,0x64,0xE7,0x64,0xE7,0x64,0xE7,0x64,0xE7,0x64,0xC6,0x64,0xE8,0x6C,0xC8,0x6C,0x0B,0x75,0x88,0x43,0x41,0x01,0xE5,0x09,0xC5,0x01,0xA3,0x01,0xE7,0x2A,0xE8,0x53,0x44,0x43,0x87,0x64,0x06,0x4C,0xA6,0x3B,0x86,0x33,0x63,0x33,0xCA,0x5C,0xCC,0x54,0xEE,0x4C,0x13,0x6E,0xB3,0x55,0x14,0x5E,0x34,0x5E,0x34,0x5E,0x14,0x5E,0x14,0x5E,0xF4,0x5D,0xF4,0x5D,0xF4,0x5D,0xF3,0x55,0xF3,0x55, +0x14,0x56,0xF3,0x55,0xD3,0x55,0xD3,0x55,0xB3,0x55,0x92,0x55,0x92,0x55,0x71,0x55,0x70,0x4D,0x50,0x45,0x2F,0x45,0x50,0x4D,0x2F,0x4D,0x30,0x55,0x30,0x55,0xAA,0x2B,0xE5,0x2A,0xA4,0x22,0xC5,0x2A,0x85,0x22,0xA6,0x1A,0x6D,0x44,0xB2,0x65,0xB2,0x55,0x71,0x45,0x92,0x45,0xB2,0x4D,0x92,0x4D,0x51,0x45,0x72,0x45,0x72,0x45,0x52,0x45,0x71,0x3D,0xB2,0x45,0x30,0x3D,0x50,0x4D,0x30,0x4D,0x0F,0x4D,0x72,0x5D,0x31,0x55,0xF0,0x54,0x0C,0x3C,0x85,0x12,0xE6,0x2A,0xE5,0x22,0xC5,0x22,0xC5,0x22,0xC4,0x1A,0xE6,0x2A,0xA5,0x22,0x07,0x23,0x09,0x2C,0x29,0x24,0x4A,0x2C,0x28,0x23,0x05,0x0A,0x46,0x12,0x65,0x12,0x45,0x12,0x06,0x1A,0x06,0x1A,0x04,0x0A,0xE7,0x33,0x8B,0x65, +0x6A,0x5D,0x6A,0x5D,0x6A,0x5D,0x6A,0x5D,0x6A,0x5D,0x6A,0x5D,0x6A,0x5D,0x6A,0x5D,0x49,0x5D,0x49,0x5D,0x4A,0x5D,0x4A,0x5D,0x49,0x65,0xCA,0x85,0x6A,0xAE,0x28,0xAE,0x87,0xAE,0x4C,0x96,0x29,0x34,0x6B,0x2C,0x69,0x24,0x69,0x2C,0x49,0x24,0x49,0x1C,0x4A,0x24,0x4B,0x34,0xA5,0x1A,0x45,0x43,0x2B,0xA6,0x68,0xA6,0x68,0xA6,0x4B,0xA6,0x47,0xA6,0xAE,0xAE,0xE8,0x4B,0x25,0x0A,0x66,0x0A,0xA5,0x0A,0x85,0x0A,0x46,0x12,0x47,0x1A,0x45,0x0A,0xE9,0x23,0x4E,0x45,0xA8,0x13,0x27,0x0B,0xCC,0x3C,0x49,0x24,0x46,0x03,0x4A,0x2C,0x8B,0x34,0x46,0x0B,0xE9,0x23,0x8B,0x34,0x05,0x03,0x0A,0x24,0x0E,0x4D,0xC6,0x12,0x25,0x12,0x25,0x12,0x66,0x0A,0xA6,0x02,0x8E,0x3C,0x09,0x1B, +0x8F,0x5C,0x46,0x12,0x46,0x12,0x05,0x0A,0x25,0x0A,0x45,0x12,0xA6,0x1A,0xA6,0x12,0xC6,0x12,0xC6,0x12,0xC6,0x12,0xA6,0x12,0xA6,0x12,0x86,0x12,0x86,0x1A,0x86,0x1A,0xC5,0x0A,0xA7,0x23,0x2B,0x4D,0xEA,0x3C,0x0A,0x24,0x8B,0x1B,0x4A,0x13,0xC7,0x02,0x26,0x0B,0x8C,0x34,0x68,0x0B,0xEF,0x3C,0x2B,0x24,0x0E,0x45,0x8B,0x34,0x6A,0x3C,0xE6,0x2A,0x48,0x33,0x88,0x3B,0x86,0x33,0xA8,0x5C,0x4D,0x8E,0xCA,0x7D,0xEB,0x85,0xAC,0x7D,0x85,0x43,0xA6,0x4B,0x85,0x43,0xA5,0x4B,0xA5,0x43,0xA6,0x43,0xA6,0x43,0x67,0x4B,0x86,0x43,0xA6,0x43,0xA6,0x3B,0xA6,0x3B,0xC7,0x43,0xA6,0x43,0xC6,0x43,0xC6,0x43,0xE5,0x3B,0x8B,0x6D,0x0D,0x76,0xAD,0x75,0x52,0x9E,0x34,0xB6,0x36,0xBE, +0xB3,0xD6,0x92,0xC6,0xD2,0xB6,0x47,0x54,0xA5,0x3B,0xC6,0x43,0x85,0x43,0x85,0x43,0x66,0x3B,0x66,0x3B,0x66,0x3B,0x46,0x43,0x66,0x4B,0x67,0x53,0x87,0x53,0xA7,0x53,0xEA,0x43,0xE9,0x4B,0xC8,0x4B,0xA8,0x4B,0x88,0x3B,0xE9,0x33,0xED,0x3C,0xEC,0x2C,0x89,0x24,0x2A,0x45,0xCB,0x6D,0x89,0x75,0x6A,0x75,0x6D,0x6D,0xA8,0x23,0xC6,0x02,0x84,0x0A,0x06,0x1B,0xC8,0x2B,0xC7,0x2B,0xE6,0x33,0x26,0x3C,0xA7,0x4C,0xE8,0x54,0xA6,0x4C,0xAA,0x6D,0xCE,0x96,0xEE,0x96,0xEE,0x9E,0x8C,0x8E,0x88,0x75,0x43,0x4C,0x27,0x64,0x47,0x5C,0x87,0x54,0x46,0x4C,0x67,0x5C,0x26,0x64,0x67,0x64,0x67,0x54,0x67,0x4C,0x67,0x54,0x68,0x5C,0x27,0x54,0x68,0x54,0x68,0x54,0x47,0x4C,0x88,0x5C, +0x6C,0x55,0x6F,0x66,0x4E,0x4E,0x4E,0x4E,0x8F,0x56,0x4E,0x46,0x6E,0x4E,0x2E,0x5E,0xCA,0x4C,0x28,0x44,0x4C,0x55,0xED,0x4D,0x6E,0x4E,0x6E,0x46,0x8F,0x4E,0x0D,0x46,0x2E,0x56,0x4F,0x5E,0xAD,0x55,0x8A,0x3C,0x69,0x34,0x8D,0x4D,0x50,0x5E,0x2F,0x56,0x4F,0x56,0x4F,0x4E,0x4F,0x4E,0x4F,0x4E,0x4F,0x56,0x6C,0x45,0x69,0x34,0xAA,0x4C,0xED,0x45,0x90,0x5E,0x2F,0x4E,0x2F,0x4E,0x4F,0x4E,0x2F,0x4E,0x70,0x56,0xEE,0x4D,0xEA,0x3C,0xA9,0x34,0x4C,0x45,0xF0,0x5D,0x11,0x5E,0xB1,0x55,0xD7,0x76,0xF8,0x76,0x77,0x7E,0xB7,0x8E,0x73,0x7E,0x50,0x7E,0xF0,0x96,0x4E,0x86,0xE5,0x3B,0x26,0x4C,0x47,0x4C,0x46,0x54,0x46,0x54,0x65,0x54,0x65,0x54,0x66,0x54,0x67,0x54,0x47,0x54, +0x47,0x54,0x47,0x54,0x47,0x54,0x47,0x54,0x47,0x54,0x47,0x54,0x47,0x54,0x47,0x54,0x47,0x54,0x47,0x54,0x67,0x54,0x87,0x54,0x66,0x4C,0x86,0x54,0x86,0x4C,0x08,0x5D,0x6B,0x8E,0xEE,0x9E,0x6F,0x96,0x70,0x96,0x6F,0x96,0xAE,0x9E,0xEE,0x9E,0x07,0x65,0x66,0x54,0x46,0x54,0x47,0x54,0x26,0x4C,0x27,0x4C,0x47,0x54,0x67,0x54,0x66,0x54,0xA7,0x44,0xA8,0x44,0xE7,0x33,0x27,0x3C,0x0C,0x7E,0x0B,0x7E,0x0A,0x7E,0xEB,0x85,0xEB,0x85,0xEB,0x85,0x0A,0x86,0x0A,0x86,0x0A,0x86,0x0B,0x86,0xEB,0x85,0xAA,0x7D,0x44,0x44,0xA6,0x4C,0x66,0x4C,0x45,0x44,0x86,0x4C,0x45,0x4C,0x86,0x4C,0x67,0x4C,0x86,0x33,0xE5,0x22,0x67,0x33,0x05,0x2B,0xE5,0x2A,0x05,0x2B,0xE6,0x2A,0xA6,0x2A, +0x24,0x2B,0x07,0x44,0x67,0x4C,0x47,0x4C,0x87,0x4C,0x87,0x54,0x87,0x4C,0xA7,0x54,0x87,0x4C,0x87,0x4C,0x87,0x4C,0xA7,0x4C,0xA8,0x54,0xA7,0x4C,0x66,0x4C,0x66,0x44,0x45,0x44,0x25,0x44,0x05,0x44,0x25,0x44,0x24,0x3C,0x25,0x44,0x47,0x44,0x27,0x4C,0x26,0x4C,0xE5,0x43,0x47,0x54,0x68,0x54,0x66,0x54,0x07,0x5D,0x27,0x65,0x69,0x6D,0xC6,0x1A,0xE5,0x22,0x66,0x33,0xA7,0x3B,0xC7,0x3B,0x66,0x33,0x46,0x33,0x05,0x2B,0x04,0x2B,0x25,0x2B,0xE5,0x22,0x65,0x1A,0x85,0x1A,0x64,0x1A,0x83,0x12,0xA3,0x1A,0x85,0x1A,0x44,0x12,0x84,0x1A,0xC4,0x22,0x25,0x33,0x29,0x54,0xCA,0x64,0xC9,0x6C,0xC8,0x64,0xC7,0x64,0xC7,0x64,0xC7,0x64,0xE6,0x64,0xE6,0x64,0xE6,0x64,0xE6,0x64, +0xA8,0x64,0xC8,0x6C,0xC8,0x6C,0x03,0x3B,0xE1,0x11,0x88,0x43,0x88,0x3B,0x83,0x12,0x42,0x0A,0xC4,0x22,0x01,0x12,0x26,0x54,0x07,0x6D,0x47,0x6D,0xE7,0x64,0x2B,0x6D,0x2B,0x5D,0xAE,0x6D,0xD1,0x6D,0xB2,0x5D,0x52,0x4D,0x73,0x4D,0xF4,0x55,0x14,0x5E,0x13,0x56,0x13,0x5E,0x13,0x5E,0xF3,0x5D,0xD3,0x55,0xD3,0x55,0xF3,0x55,0xF3,0x55,0x14,0x4E,0xF3,0x4D,0xF3,0x55,0xD2,0x55,0xD2,0x5D,0xD2,0x5D,0xB2,0x5D,0xB2,0x5D,0xB1,0x55,0x71,0x4D,0x50,0x4D,0x70,0x4D,0x50,0x4D,0x2F,0x4D,0x70,0x55,0x2A,0x2C,0xA4,0x1A,0xE5,0x22,0xA5,0x1A,0x48,0x2B,0xF0,0x54,0xB3,0x65,0x72,0x4D,0xD3,0x4D,0xF3,0x4D,0xB2,0x45,0x91,0x45,0xB3,0x4D,0x76,0x6E,0xD8,0x76,0xB8,0x6E,0x97,0x66, +0xF3,0x4D,0x30,0x3D,0x71,0x45,0x91,0x4D,0x50,0x4D,0x51,0x4D,0x31,0x45,0x11,0x4D,0x11,0x4D,0x10,0x55,0xAE,0x4C,0xC6,0x1A,0xA5,0x1A,0xA5,0x22,0xA5,0x2A,0x85,0x2A,0x85,0x1A,0x86,0x22,0x08,0x23,0xCA,0x2B,0xE9,0x1B,0xE9,0x23,0xE8,0x1A,0x05,0x0A,0x25,0x0A,0x45,0x0A,0x65,0x0A,0x26,0x12,0x26,0x12,0x03,0x02,0xE7,0x33,0x8B,0x5D,0x6B,0x5D,0x6B,0x5D,0x6A,0x5D,0x6A,0x5D,0x6B,0x5D,0x6B,0x5D,0x6B,0x5D,0x6B,0x5D,0x6A,0x65,0x6A,0x65,0x6A,0x65,0x4A,0x5D,0x49,0x65,0xCA,0x85,0x8B,0xAE,0x49,0xB6,0x88,0xA6,0x4D,0x8E,0x8A,0x34,0x8C,0x2C,0x8A,0x24,0x8A,0x2C,0x8B,0x2C,0xAB,0x2C,0x8B,0x24,0xCD,0x3C,0x85,0x12,0x25,0x3B,0x4D,0xAE,0x89,0xAE,0x69,0xA6,0x6C,0xA6, +0x67,0xA6,0xAD,0xAE,0xE8,0x4B,0x25,0x12,0x45,0x0A,0x85,0x0A,0x86,0x12,0x47,0x12,0x47,0x1A,0x45,0x0A,0xE9,0x23,0x4E,0x45,0x87,0x13,0x27,0x13,0xCD,0x44,0x29,0x24,0x66,0x03,0x6A,0x2C,0x8B,0x34,0x46,0x0B,0x09,0x1C,0xAB,0x34,0x26,0x03,0x2A,0x24,0x0E,0x4D,0x07,0x1B,0x24,0x0A,0x25,0x12,0x29,0x23,0x29,0x1B,0xAF,0x54,0x4B,0x3B,0x6F,0x64,0x09,0x2B,0x49,0x23,0x86,0x0A,0x65,0x0A,0x45,0x0A,0xA6,0x1A,0xC6,0x1A,0xC6,0x12,0xA6,0x12,0xA6,0x1A,0xA6,0x1A,0xA6,0x1A,0xA6,0x1A,0x86,0x1A,0x86,0x22,0xC6,0x0A,0x05,0x0B,0xCA,0x3C,0xEB,0x3C,0x0A,0x24,0xCB,0x1B,0x0C,0x1C,0x0B,0x1C,0xED,0x3C,0xB0,0x4D,0xEA,0x13,0xCE,0x2C,0x4C,0x24,0x8D,0x3C,0x0A,0x2C,0x87,0x1B, +0xC7,0x1A,0x28,0x23,0x27,0x23,0xC4,0x12,0x68,0x44,0x2D,0x7E,0x8A,0x6D,0xCC,0x75,0x4B,0x6D,0x65,0x33,0x86,0x3B,0x65,0x3B,0x65,0x3B,0x45,0x3B,0x65,0x3B,0x65,0x3B,0x66,0x3B,0x65,0x33,0x86,0x33,0x85,0x2B,0x85,0x2B,0x86,0x33,0x66,0x33,0x86,0x3B,0x44,0x33,0xE6,0x3B,0x8C,0x65,0x6C,0x65,0x4D,0x6D,0x33,0x9E,0x56,0xB6,0x37,0xBE,0x73,0xC6,0xD4,0xC6,0xD3,0xB6,0xC7,0x43,0x85,0x3B,0x45,0x33,0x66,0x3B,0x25,0x33,0x66,0x3B,0x86,0x33,0x66,0x33,0x66,0x3B,0x46,0x3B,0x46,0x3B,0x45,0x3B,0x45,0x3B,0x45,0x33,0x25,0x33,0x44,0x33,0x45,0x33,0x66,0x2B,0x67,0x23,0x47,0x1B,0x67,0x13,0x86,0x13,0x89,0x34,0xAB,0x5D,0x29,0x55,0x6B,0x65,0x4C,0x5D,0x67,0x23,0xE6,0x1A, +0x25,0x23,0xC7,0x3B,0x28,0x4C,0x89,0x54,0x88,0x54,0x87,0x54,0x86,0x54,0x86,0x54,0xA6,0x4C,0x65,0x3C,0x85,0x44,0xE7,0x4C,0xE7,0x4C,0xA7,0x44,0x66,0x44,0xA7,0x4C,0x88,0x54,0x47,0x4C,0x47,0x54,0x67,0x5C,0x26,0x54,0x26,0x5C,0x47,0x54,0x47,0x54,0x88,0x54,0x67,0x44,0x88,0x44,0xA9,0x44,0xE9,0x44,0xE9,0x44,0xA9,0x3C,0x0A,0x4D,0xAC,0x35,0xAC,0x3D,0x6C,0x3D,0x6C,0x45,0xAD,0x45,0xED,0x3D,0xAD,0x3D,0x0B,0x3D,0x6A,0x3C,0xAA,0x3C,0x8C,0x35,0xED,0x2D,0xCC,0x2D,0x6C,0x35,0x8D,0x45,0x0F,0x56,0x8C,0x3D,0x8C,0x45,0xEA,0x3C,0x89,0x34,0x0B,0x3D,0x8D,0x45,0x8C,0x3D,0xAD,0x3D,0x6C,0x35,0xEE,0x45,0x0E,0x46,0xAC,0x3D,0x6C,0x35,0xEA,0x2C,0xA9,0x34,0x4C,0x55, +0x0C,0x26,0xAC,0x35,0x4C,0x3D,0xAE,0x4D,0x0E,0x4E,0xED,0x35,0x8C,0x2D,0x0A,0x2D,0xA9,0x34,0x0B,0x3D,0x6D,0x3D,0x6D,0x35,0xAF,0x3D,0xF2,0x4D,0xF7,0x76,0xB7,0x76,0x16,0x8E,0x55,0x96,0x72,0x96,0x8F,0x96,0x8D,0x8E,0x30,0xA7,0xA7,0x5C,0x06,0x44,0x27,0x4C,0x26,0x4C,0x45,0x4C,0x45,0x4C,0x65,0x54,0x45,0x54,0x46,0x54,0x47,0x54,0x47,0x54,0x47,0x54,0x47,0x54,0x47,0x54,0x47,0x54,0x47,0x54,0x47,0x54,0x47,0x54,0x47,0x54,0x47,0x54,0x67,0x54,0x67,0x54,0x46,0x4C,0x86,0x4C,0x66,0x4C,0xEB,0x75,0xCA,0xA6,0x2C,0x96,0x51,0x9E,0x73,0x9E,0x91,0x9E,0x4D,0x96,0xCD,0x9E,0x0B,0x86,0x25,0x4C,0x26,0x4C,0x48,0x54,0x48,0x54,0x28,0x4C,0x48,0x4C,0x66,0x4C,0x24,0x44, +0x87,0x44,0x0A,0x5D,0x48,0x44,0xA5,0x33,0x0C,0x7E,0xEA,0x7D,0xEA,0x7D,0xEB,0x85,0xCC,0x7D,0xCB,0x85,0xEB,0x85,0xEA,0x7D,0xCA,0x7D,0xEB,0x85,0xEB,0x85,0xCA,0x7D,0xC5,0x33,0xE7,0x3B,0xE7,0x43,0xA6,0x3B,0xC6,0x3B,0xC6,0x3B,0xE7,0x3B,0xC7,0x3B,0xC9,0x3B,0xA6,0x12,0x28,0x23,0xC6,0x1A,0xA5,0x1A,0x85,0x1A,0x86,0x22,0x86,0x22,0xE4,0x22,0xE3,0x22,0xE6,0x43,0x47,0x4C,0x05,0x44,0x25,0x44,0x45,0x44,0x26,0x44,0x47,0x44,0x27,0x44,0x07,0x3C,0x27,0x3C,0x47,0x44,0x26,0x3C,0x45,0x44,0xE7,0x54,0x08,0x5D,0x8B,0x75,0x29,0x65,0xE8,0x5C,0x29,0x65,0xA8,0x54,0xC6,0x3B,0xA7,0x3B,0xC6,0x3B,0xE6,0x43,0xE6,0x43,0xA4,0x3B,0x65,0x54,0x88,0x6D,0x87,0x6D,0x67,0x6D, +0xE6,0x22,0x84,0x12,0x26,0x23,0xC4,0x1A,0xE6,0x22,0xE6,0x22,0xE7,0x2A,0x84,0x1A,0x63,0x12,0xA3,0x22,0xE8,0x4B,0xE9,0x43,0x84,0x1A,0xC6,0x22,0x85,0x1A,0xCA,0x43,0x04,0x2B,0x07,0x4C,0xCA,0x64,0xA9,0x64,0xC9,0x64,0xC9,0x64,0x87,0x5C,0xA7,0x64,0xA7,0x64,0xA7,0x64,0xC7,0x64,0xC7,0x64,0xC7,0x64,0xC7,0x64,0xC7,0x64,0xC7,0x64,0xA9,0x6C,0xC9,0x6C,0xC7,0x6C,0xA7,0x6C,0x88,0x64,0xE9,0x6C,0xC8,0x5C,0x28,0x65,0x08,0x5D,0x0A,0x6D,0xEA,0x6C,0xE8,0x64,0x07,0x65,0xE6,0x5C,0x08,0x5D,0x2A,0x5D,0xF0,0x65,0xB1,0x65,0xD2,0x5D,0xD4,0x5D,0xB4,0x55,0xD5,0x55,0xD4,0x4D,0xF4,0x55,0x13,0x56,0x13,0x56,0xF2,0x5D,0xF3,0x5D,0xF3,0x5D,0xF2,0x55,0xD3,0x55,0xF2,0x55, +0xD4,0x4D,0xD3,0x4D,0xD2,0x55,0xD1,0x55,0xD1,0x55,0xD0,0x55,0xB1,0x55,0xB1,0x55,0xB2,0x55,0x92,0x55,0x92,0x55,0x92,0x55,0xB1,0x55,0x6F,0x55,0x0D,0x4D,0x08,0x2C,0xE5,0x1A,0x64,0x0A,0xEB,0x33,0x92,0x65,0x93,0x5D,0x92,0x4D,0xB3,0x4D,0x92,0x3D,0x92,0x45,0x71,0x45,0xF4,0x55,0x76,0x76,0xD8,0x7E,0x98,0x76,0x77,0x76,0xD9,0x7E,0xF8,0x76,0xD4,0x55,0x71,0x45,0x30,0x3D,0x50,0x45,0x50,0x45,0x10,0x3D,0x52,0x4D,0x51,0x4D,0xF0,0x44,0x10,0x4D,0x2C,0x3C,0xA6,0x1A,0x65,0x1A,0x45,0x22,0x45,0x2A,0x85,0x1A,0xA6,0x22,0x28,0x2B,0x89,0x2B,0x89,0x1B,0x69,0x23,0xA7,0x1A,0xE5,0x11,0x05,0x0A,0x45,0x0A,0x45,0x0A,0x05,0x0A,0x25,0x0A,0x44,0x0A,0x08,0x34,0x6B,0x5D, +0x6B,0x5D,0x6B,0x5D,0x4B,0x5D,0x4B,0x5D,0x6B,0x5D,0x6B,0x5D,0x6B,0x5D,0x4B,0x5D,0x4A,0x5D,0x4A,0x65,0x4B,0x65,0x4A,0x65,0x4A,0x65,0xCB,0x85,0x6C,0xAE,0x4A,0xAE,0x89,0xAE,0x4D,0x8E,0xAB,0x3C,0xCC,0x2C,0xCB,0x2C,0xAB,0x2C,0xAB,0x2C,0xCC,0x24,0x8B,0x1C,0xCD,0x34,0xE6,0x12,0x46,0x43,0x2C,0xA6,0x49,0xAE,0x6A,0xA6,0x4B,0xA6,0x68,0xAE,0x8D,0xAE,0xC8,0x4B,0x05,0x12,0x46,0x12,0x66,0x0A,0x66,0x0A,0x47,0x12,0x47,0x1A,0x25,0x02,0xE9,0x23,0x6D,0x45,0xA7,0x13,0x27,0x0B,0xED,0x3C,0x4A,0x24,0x66,0x03,0x6A,0x24,0x8B,0x2C,0x66,0x03,0x09,0x14,0xAB,0x2C,0x26,0x03,0x4A,0x24,0x0E,0x3D,0x27,0x13,0x45,0x0A,0xE8,0x22,0x29,0x2B,0x6F,0x54,0xB9,0xB6,0x38,0xBE, +0xFA,0xBE,0xF1,0x6C,0x49,0x1B,0x08,0x13,0x86,0x0A,0x25,0x0A,0x66,0x12,0x86,0x12,0xA6,0x12,0xA6,0x12,0xA6,0x1A,0xA6,0x1A,0xA6,0x1A,0xA6,0x1A,0xA6,0x1A,0x86,0x22,0xA7,0x1A,0xC5,0x0A,0x29,0x2C,0xEB,0x3C,0xC9,0x1B,0xAA,0x13,0xEB,0x13,0xCA,0x13,0xC9,0x1B,0x8C,0x34,0xEA,0x1B,0x4C,0x1C,0xAA,0x13,0x48,0x13,0x47,0x13,0x06,0x0B,0x48,0x23,0x07,0x1B,0x27,0x1B,0xE4,0x12,0x28,0x3C,0xED,0x75,0x6A,0x65,0xAC,0x6D,0xEB,0x5C,0xC4,0x1A,0xC5,0x22,0xE5,0x2A,0xE4,0x2A,0x05,0x33,0x05,0x33,0x26,0x33,0x25,0x33,0x25,0x2B,0x45,0x2B,0x45,0x23,0x45,0x23,0x46,0x2B,0x05,0x2B,0x26,0x2B,0x25,0x2B,0x86,0x2B,0xCA,0x54,0xEB,0x54,0xCC,0x54,0xF2,0x8D,0x76,0xAE,0x16,0xAE, +0xB3,0xB6,0xD3,0xB6,0xB2,0xA6,0xA6,0x3B,0x25,0x2B,0xE4,0x2A,0x05,0x33,0x06,0x33,0x06,0x33,0x06,0x2B,0x26,0x2B,0x06,0x2B,0x05,0x2B,0x05,0x2B,0x05,0x2B,0x25,0x2B,0xC4,0x42,0xE4,0x3A,0x25,0x33,0x45,0x2B,0x46,0x2B,0xE6,0x22,0x86,0x1A,0x66,0x1A,0x85,0x12,0xA7,0x2B,0x2B,0x4D,0x6A,0x45,0x49,0x4D,0xC9,0x4C,0x29,0x4C,0x2A,0x5C,0x48,0x4C,0x68,0x54,0x27,0x54,0x47,0x5C,0x27,0x5C,0x67,0x5C,0x67,0x54,0x67,0x44,0xA8,0x44,0x87,0x34,0x26,0x2C,0x07,0x24,0x07,0x24,0x28,0x2C,0x28,0x2C,0x28,0x2C,0x46,0x24,0x88,0x3C,0x48,0x54,0x27,0x5C,0x27,0x54,0x47,0x54,0x47,0x54,0x47,0x54,0x47,0x54,0x47,0x3C,0x4B,0x45,0x0D,0x4E,0xED,0x45,0x0E,0x4E,0x0E,0x4E,0x0E,0x46, +0x2E,0x36,0x30,0x4E,0x0D,0x4D,0x4A,0x3C,0x0C,0x3D,0xCE,0x45,0xEF,0x45,0xEF,0x55,0xEF,0x55,0x30,0x4E,0x2F,0x36,0x4F,0x3E,0x0F,0x4E,0xCB,0x34,0x6A,0x34,0x2D,0x45,0x0E,0x46,0x0E,0x46,0x0E,0x4E,0x0E,0x4E,0x0E,0x4E,0x0F,0x4E,0x0E,0x4E,0xCE,0x45,0xCA,0x24,0x2B,0x35,0x6C,0x3D,0xEE,0x4D,0x2F,0x4E,0x2E,0x46,0x2E,0x4E,0x2E,0x46,0x2D,0x36,0x2E,0x4E,0x2C,0x45,0xAA,0x3C,0x4B,0x35,0xED,0x35,0x4E,0x3E,0x0D,0x46,0xEE,0x4D,0xEE,0x4D,0x2F,0x46,0x4F,0x46,0xEE,0x35,0xEF,0x45,0x92,0x66,0x72,0x6E,0x94,0x8D,0x96,0xAE,0x10,0x96,0x8B,0x7D,0xA9,0x7D,0xEA,0x7D,0x87,0x54,0xE6,0x43,0x28,0x4C,0x47,0x4C,0x46,0x4C,0x65,0x4C,0x65,0x4C,0x66,0x54,0x47,0x54,0x47,0x54, +0x47,0x54,0x47,0x54,0x47,0x54,0x47,0x54,0x27,0x54,0x27,0x54,0x27,0x54,0x27,0x54,0x27,0x54,0x26,0x4C,0x26,0x4C,0x46,0x4C,0x66,0x4C,0x86,0x4C,0x45,0x44,0x2D,0x7E,0x88,0x9E,0x0C,0x96,0x53,0xA6,0x34,0x9E,0xD4,0xAE,0x2C,0x8E,0x8B,0x96,0x8C,0x96,0x26,0x4C,0x06,0x44,0x07,0x44,0x48,0x4C,0x28,0x4C,0x07,0x44,0x46,0x4C,0x65,0x4C,0x47,0x44,0x68,0x4C,0x44,0x2B,0x67,0x4C,0xEB,0x7D,0xEA,0x7D,0xEA,0x7D,0xCB,0x7D,0xCC,0x7D,0xCC,0x7D,0xCB,0x7D,0xCB,0x7D,0xCB,0x7D,0xCB,0x7D,0xEB,0x7D,0xEB,0x7D,0x08,0x4C,0x26,0x33,0x27,0x3B,0x27,0x33,0x47,0x3B,0x47,0x3B,0x46,0x33,0x67,0x33,0x68,0x2B,0x07,0x1B,0x8A,0x23,0xC7,0x12,0x85,0x0A,0xE7,0x1A,0x08,0x23,0x86,0x1A, +0x63,0x1A,0x83,0x1A,0xA6,0x3B,0x88,0x54,0xE8,0x5C,0xA7,0x54,0xE4,0x3B,0xE5,0x3B,0xE6,0x3B,0xE7,0x3B,0xE8,0x3B,0xE7,0x3B,0xC5,0x3B,0xC4,0x3B,0x86,0x4C,0x69,0x6D,0x8A,0x75,0x6A,0x6D,0x69,0x6D,0x89,0x6D,0x89,0x6D,0x4B,0x6D,0x8A,0x54,0x47,0x2B,0x47,0x33,0x87,0x3B,0x45,0x2B,0x86,0x3B,0xA8,0x5C,0xC7,0x5C,0x86,0x54,0xC8,0x5C,0x47,0x23,0x26,0x23,0x02,0x02,0xE6,0x22,0xC6,0x22,0x25,0x12,0x66,0x1A,0x64,0x1A,0x66,0x3B,0xCA,0x64,0xA9,0x64,0xCA,0x64,0x49,0x54,0x84,0x1A,0xA6,0x1A,0xC7,0x22,0x82,0x3B,0xE8,0x64,0xA7,0x5C,0x86,0x5C,0xA7,0x64,0x86,0x5C,0xE7,0x64,0xA6,0x64,0xA6,0x64,0xA6,0x64,0xA7,0x64,0xA7,0x64,0xA7,0x64,0xA7,0x64,0xA8,0x64,0xA8,0x64, +0x89,0x64,0xA8,0x64,0xA7,0x64,0x86,0x64,0xC8,0x6C,0xA7,0x64,0xC6,0x5C,0xE5,0x5C,0x05,0x65,0xC5,0x5C,0xC8,0x5C,0xC9,0x5C,0xA8,0x54,0xCA,0x54,0x6E,0x65,0x12,0x76,0xF2,0x65,0x34,0x6E,0xD4,0x5D,0xF5,0x5D,0xF5,0x55,0xF6,0x55,0x15,0x56,0xF4,0x55,0x14,0x5E,0xF3,0x5D,0xF3,0x5D,0xF3,0x5D,0xF3,0x5D,0xF3,0x55,0xF2,0x55,0xF2,0x55,0xD3,0x55,0xD2,0x55,0xD2,0x55,0xD1,0x55,0xB1,0x55,0xB0,0x55,0xB1,0x55,0xB1,0x4D,0x92,0x4D,0xB3,0x4D,0xB3,0x55,0x91,0x4D,0x4F,0x4D,0xCC,0x3C,0x8A,0x3C,0xAA,0x3C,0x2F,0x5D,0x91,0x65,0xF3,0x6D,0x92,0x5D,0x72,0x4D,0x92,0x45,0x92,0x3D,0xB2,0x3D,0xB3,0x45,0x93,0x4D,0x57,0x6E,0xB8,0x86,0x78,0x86,0x57,0x7E,0x58,0x7E,0x78,0x7E, +0xB9,0x76,0xD9,0x7E,0xB3,0x4D,0x31,0x3D,0x71,0x45,0x0F,0x3D,0x30,0x3D,0x51,0x45,0x10,0x3D,0x30,0x45,0x2F,0x45,0x2F,0x4D,0x0B,0x3C,0x25,0x0A,0x46,0x22,0x47,0x2A,0x65,0x1A,0x45,0x22,0x86,0x22,0xC6,0x1A,0xE6,0x12,0xE7,0x22,0x67,0x22,0x06,0x22,0x06,0x12,0x25,0x0A,0x46,0x12,0x26,0x12,0x26,0x12,0xE3,0x01,0xA8,0x33,0x4C,0x5D,0x4B,0x55,0x4A,0x55,0x4A,0x5D,0x4A,0x5D,0x4A,0x55,0x4A,0x55,0x4A,0x55,0x4A,0x5D,0x4A,0x5D,0x2A,0x5D,0x4A,0x5D,0x4A,0x5D,0x49,0x65,0xCA,0x7D,0x4B,0x9E,0x0A,0xA6,0x49,0xA6,0x0C,0x8E,0xAA,0x3C,0xCB,0x2C,0xEB,0x2C,0xEB,0x34,0xEB,0x2C,0xEB,0x24,0x0B,0x25,0x0C,0x35,0xE5,0x0A,0x45,0x33,0x0C,0xA6,0x49,0xAE,0x29,0xA6,0x0B,0x9E, +0x08,0xA6,0x8E,0xAE,0x88,0x4B,0xC4,0x09,0x46,0x12,0x86,0x12,0x26,0x0A,0x06,0x12,0x27,0x1A,0x25,0x02,0x09,0x24,0x6E,0x45,0xA7,0x0B,0x47,0x0B,0xED,0x3C,0x4A,0x1C,0x86,0x03,0x6A,0x24,0xAB,0x2C,0x66,0x03,0x09,0x14,0xAB,0x34,0x26,0x03,0x2A,0x24,0x4F,0x4D,0x27,0x0B,0x65,0x02,0x6A,0x2B,0x4A,0x2B,0x15,0x8E,0xB9,0xBE,0x39,0xCE,0x58,0xB6,0xD9,0xAE,0xEB,0x2B,0x89,0x1B,0x45,0x02,0x66,0x12,0x66,0x1A,0x86,0x12,0xA6,0x12,0xA6,0x12,0x86,0x1A,0x86,0x1A,0xA6,0x12,0xA6,0x12,0xA6,0x12,0x86,0x1A,0x67,0x22,0x85,0x12,0x87,0x23,0xED,0x4C,0xEA,0x2B,0x8A,0x1B,0xCB,0x1B,0xAA,0x1B,0x68,0x23,0x27,0x1B,0x27,0x13,0x07,0x0B,0x28,0x13,0x08,0x1B,0x48,0x1B,0x67,0x13, +0xE7,0x1A,0xE7,0x1A,0x27,0x23,0xE4,0x12,0xE7,0x33,0x8C,0x6D,0x0A,0x5D,0x0B,0x65,0xEC,0x64,0x64,0x1A,0x44,0x1A,0x44,0x1A,0x44,0x1A,0x85,0x22,0x65,0x22,0x86,0x2A,0xC5,0x2A,0xC5,0x22,0xE5,0x22,0xE5,0x22,0xE6,0x22,0xE7,0x2A,0xE7,0x2A,0xE7,0x32,0xC6,0x2A,0x06,0x23,0x49,0x44,0x8A,0x4C,0x6A,0x4C,0xF1,0x85,0xD6,0xB6,0xF4,0xA5,0xB2,0x9E,0xB2,0x96,0xB2,0x96,0xA6,0x33,0xC4,0x22,0xE5,0x2A,0xC6,0x32,0xC6,0x32,0xA6,0x2A,0xC6,0x2A,0xC6,0x2A,0xE7,0x2A,0xE6,0x2A,0xC6,0x2A,0xC6,0x2A,0xC5,0x2A,0x86,0x3A,0xC6,0x3A,0xA5,0x2A,0xC6,0x22,0xA6,0x22,0x86,0x22,0xA7,0x2A,0x04,0x1A,0xC6,0x2A,0x87,0x33,0xAA,0x4C,0xA8,0x44,0xC8,0x44,0xC8,0x4C,0x47,0x44,0x07,0x4C, +0x66,0x44,0x46,0x44,0x47,0x54,0x06,0x54,0x27,0x5C,0x28,0x54,0x48,0x44,0x29,0x34,0xC7,0x1B,0x09,0x24,0xE9,0x23,0x0A,0x2C,0x0A,0x24,0xE9,0x23,0xE9,0x1B,0x0A,0x1C,0x27,0x1C,0x27,0x2C,0x48,0x44,0x07,0x4C,0x28,0x54,0x07,0x54,0x28,0x5C,0x07,0x4C,0x48,0x44,0x2B,0x4D,0xED,0x4D,0x2E,0x4E,0x2E,0x46,0x2E,0x3E,0x2F,0x3E,0x2E,0x3E,0x0F,0x4E,0x4D,0x4D,0xE8,0x2B,0x28,0x2C,0x6D,0x4D,0xCE,0x4D,0xEF,0x4D,0x0E,0x46,0x2F,0x3E,0x0E,0x36,0x2F,0x4E,0xAE,0x55,0xAB,0x3C,0xA6,0x1B,0xEB,0x3C,0xCF,0x55,0x2E,0x46,0x2E,0x46,0x2E,0x3E,0x0E,0x46,0xEE,0x45,0xEE,0x4D,0x4C,0x45,0x68,0x24,0x48,0x24,0xCE,0x4D,0x0F,0x56,0xEE,0x4D,0xEE,0x4D,0xED,0x45,0x2E,0x3E,0x4E,0x3E, +0xCE,0x5D,0xCA,0x3C,0xE7,0x23,0xEB,0x3C,0xEE,0x55,0xEE,0x4D,0x2F,0x4E,0x0E,0x46,0x0E,0x46,0x0E,0x3E,0x2E,0x46,0xAC,0x3D,0xA7,0x24,0x29,0x45,0x8F,0x76,0xAF,0x76,0x93,0x8D,0x95,0xAE,0x50,0x9E,0x2D,0x8E,0x4C,0x8E,0xAE,0x9E,0x09,0x65,0xE6,0x3B,0x08,0x44,0x08,0x44,0x27,0x44,0x26,0x4C,0x26,0x4C,0x26,0x4C,0x07,0x4C,0x07,0x4C,0x06,0x4C,0x06,0x4C,0x06,0x4C,0x06,0x4C,0x07,0x4C,0x07,0x4C,0x07,0x4C,0x07,0x4C,0x06,0x4C,0x27,0x4C,0x26,0x4C,0x46,0x4C,0x46,0x4C,0x66,0x4C,0x25,0x44,0x6E,0x86,0x88,0x96,0x0C,0x8E,0x33,0x9E,0x14,0x96,0xD3,0xA6,0x2C,0x8E,0xCC,0x9E,0x6C,0x8E,0x47,0x54,0x07,0x4C,0xE7,0x43,0x07,0x4C,0x08,0x4C,0x07,0x4C,0x26,0x4C,0x25,0x4C, +0x25,0x44,0xA5,0x3B,0xC6,0x3B,0xCD,0x7D,0xCB,0x7D,0xEB,0x7D,0xCB,0x7D,0xAB,0x7D,0xCC,0x7D,0xAC,0x7D,0xCB,0x7D,0xEB,0x7D,0xCB,0x7D,0xAA,0x75,0xCB,0x7D,0xCB,0x7D,0x68,0x5C,0x61,0x1A,0x84,0x22,0xA5,0x2A,0x64,0x22,0x83,0x22,0xA3,0x1A,0x82,0x12,0x87,0x2B,0x27,0x1B,0xCA,0x2B,0xE7,0x12,0x25,0x02,0xE7,0x1A,0x89,0x2B,0x64,0x0A,0x63,0x12,0xE5,0x22,0x4D,0x75,0xCD,0x7D,0x8B,0x75,0xEC,0x7D,0xA8,0x54,0xC5,0x3B,0xA6,0x33,0x67,0x33,0x67,0x33,0x87,0x3B,0x65,0x33,0x06,0x44,0xC7,0x64,0xC7,0x64,0xC7,0x5C,0xA7,0x5C,0x66,0x4C,0x86,0x54,0x86,0x54,0x88,0x54,0x2A,0x4C,0x07,0x2B,0xE6,0x22,0x07,0x2B,0xE7,0x2A,0x07,0x2B,0xA7,0x43,0xE7,0x43,0xE7,0x43,0xC7,0x43, +0x88,0x2B,0xA8,0x33,0x6A,0x4C,0x26,0x23,0x0B,0x4C,0x08,0x2B,0xC7,0x2A,0x27,0x33,0xCA,0x64,0x86,0x5C,0x85,0x54,0x45,0x54,0xA9,0x5C,0x06,0x2B,0x45,0x12,0x26,0x12,0x65,0x54,0x86,0x5C,0x86,0x5C,0xA6,0x5C,0xC7,0x64,0x86,0x5C,0x65,0x5C,0x86,0x5C,0x86,0x64,0x87,0x5C,0xA7,0x5C,0x87,0x5C,0x88,0x5C,0x88,0x5C,0x88,0x5C,0x88,0x5C,0xC9,0x5C,0x88,0x5C,0xA8,0x64,0x88,0x64,0x88,0x64,0x67,0x64,0xC7,0x64,0xC6,0x64,0xC5,0x5C,0xC7,0x5C,0xC8,0x5C,0x8A,0x54,0x0D,0x5D,0x91,0x65,0x35,0x76,0xD5,0x65,0x55,0x6E,0xF4,0x5D,0xB4,0x55,0xB4,0x55,0xB4,0x4D,0xF5,0x55,0xF4,0x55,0xF3,0x55,0xF3,0x5D,0xB3,0x55,0x92,0x55,0xB3,0x55,0xD3,0x55,0xD3,0x55,0xD2,0x55,0xD1,0x4D, +0xD1,0x55,0xB1,0x55,0xB1,0x55,0xB1,0x55,0xB2,0x55,0xB2,0x55,0xB2,0x55,0xB2,0x4D,0xB2,0x4D,0xB1,0x4D,0x70,0x45,0x2F,0x45,0xAC,0x34,0x6B,0x34,0xAC,0x3C,0x8F,0x5D,0xF3,0x65,0xF3,0x65,0xF3,0x65,0xF3,0x5D,0x14,0x5E,0xF3,0x55,0xB2,0x45,0xB3,0x45,0x52,0x3D,0x73,0x4D,0x78,0x7E,0x79,0x8E,0x38,0x8E,0x58,0x96,0x78,0x96,0x37,0x8E,0x9A,0x7E,0x78,0x76,0xF5,0x65,0x31,0x3D,0x10,0x35,0x50,0x3D,0x30,0x3D,0x0F,0x35,0x30,0x3D,0x2F,0x3D,0x2F,0x3D,0xEE,0x3C,0xEF,0x4C,0xC7,0x12,0xA4,0x01,0xC5,0x11,0xE2,0x09,0xE3,0x11,0x24,0x1A,0x04,0x0A,0x03,0x02,0x04,0x12,0xE5,0x19,0xC5,0x21,0xE5,0x19,0xE5,0x09,0xE5,0x09,0xE6,0x09,0xE6,0x11,0xE4,0x01,0xC9,0x3B,0x8F,0x6D, +0xAD,0x65,0xAC,0x65,0xAC,0x65,0xAC,0x65,0xAC,0x65,0xAC,0x65,0xAC,0x65,0xAC,0x65,0xAC,0x6D,0x8C,0x65,0x8C,0x65,0xAC,0x65,0xAB,0x65,0x4D,0x86,0xEF,0xAE,0xCE,0xB6,0xCD,0xB6,0xAF,0x96,0x4C,0x4D,0x4C,0x3D,0x4C,0x3D,0x4B,0x3D,0x4C,0x3D,0x6C,0x35,0x6C,0x35,0x8D,0x45,0x45,0x13,0x65,0x33,0x8E,0xAE,0xED,0xB6,0xAC,0xAE,0xEF,0xB6,0xAC,0xB6,0xF1,0xBE,0xEA,0x53,0x05,0x12,0x05,0x0A,0x46,0x0A,0x46,0x12,0x27,0x12,0x27,0x1A,0x25,0x02,0x09,0x24,0x6E,0x3D,0xA7,0x0B,0x47,0x03,0x0D,0x3D,0x6A,0x1C,0x86,0x03,0x6A,0x24,0x8B,0x2C,0x46,0x03,0xE9,0x1B,0x8B,0x34,0x05,0x0B,0x0A,0x24,0x0E,0x45,0x47,0x0B,0xA5,0x02,0x69,0x23,0xCB,0x2B,0x35,0x86,0xB9,0xBE,0x59,0xCE, +0x58,0xC6,0x57,0xA6,0x2D,0x3C,0xAA,0x1B,0x86,0x0A,0x25,0x12,0x05,0x12,0x86,0x1A,0xA6,0x12,0x86,0x12,0x86,0x1A,0x86,0x1A,0xA6,0x12,0xA6,0x0A,0x86,0x12,0x86,0x12,0x47,0x22,0x65,0x12,0xC5,0x12,0xEA,0x33,0x89,0x23,0x08,0x0B,0x28,0x13,0x07,0x13,0x07,0x23,0xC6,0x22,0x28,0x23,0x08,0x1B,0x08,0x1B,0x08,0x1B,0x07,0x13,0x26,0x13,0x07,0x23,0x27,0x2B,0x07,0x23,0x83,0x12,0x86,0x33,0x2C,0x65,0xEA,0x5C,0x0C,0x65,0x4B,0x54,0x24,0x12,0xE4,0x11,0xE4,0x11,0xC3,0x09,0xE4,0x11,0xC4,0x11,0xE5,0x11,0xC3,0x11,0xE3,0x11,0xE3,0x11,0x04,0x12,0x24,0x12,0x05,0x12,0x26,0x1A,0x26,0x1A,0x46,0x1A,0x64,0x12,0x06,0x1B,0xA7,0x2B,0x66,0x2B,0x4A,0x4C,0x0F,0x6D,0xD2,0x8D, +0xD1,0x8E,0xF2,0x8E,0xAE,0x6D,0x45,0x23,0x83,0x12,0x44,0x12,0x04,0x1A,0x04,0x1A,0x24,0x1A,0x25,0x1A,0x04,0x12,0x04,0x12,0x04,0x1A,0x24,0x1A,0x24,0x1A,0x24,0x1A,0x25,0x1A,0x25,0x1A,0x04,0x12,0x65,0x22,0x44,0x1A,0x64,0x1A,0x47,0x33,0xA8,0x43,0xC8,0x43,0x6A,0x5C,0x07,0x4C,0x28,0x4C,0x27,0x44,0x06,0x34,0xC8,0x44,0xE8,0x3C,0x28,0x3D,0xC7,0x3C,0x87,0x44,0x27,0x44,0x08,0x4C,0x09,0x44,0xA8,0x33,0xA8,0x23,0xEA,0x23,0xCA,0x23,0xA9,0x23,0x89,0x23,0xC9,0x23,0xA9,0x1B,0xC8,0x13,0xE8,0x13,0xA7,0x2B,0x86,0x23,0xA6,0x23,0x49,0x44,0xE8,0x4B,0xE7,0x53,0xE7,0x4B,0x68,0x44,0x6B,0x4D,0x2F,0x5E,0x0E,0x4E,0xED,0x45,0x0F,0x46,0x2F,0x46,0x2F,0x46,0x0F,0x46, +0x8A,0x4C,0x07,0x2C,0x2B,0x3D,0x4F,0x4E,0x4E,0x4E,0x2E,0x56,0x0E,0x4E,0x2E,0x46,0x4E,0x3E,0x4F,0x56,0x0B,0x4D,0x28,0x44,0x08,0x34,0xCD,0x4D,0x4F,0x56,0xEE,0x4D,0x2E,0x46,0x2E,0x46,0xED,0x3D,0x2E,0x4E,0x2F,0x5E,0xEB,0x44,0x08,0x2C,0xCA,0x34,0xEE,0x4D,0x0E,0x46,0x0E,0x46,0x0E,0x4E,0x0E,0x4E,0x0E,0x4E,0x0E,0x4E,0x0E,0x46,0x0A,0x4C,0x09,0x34,0x4D,0x3D,0x2F,0x4E,0x0F,0x4E,0xCE,0x55,0xAE,0x4D,0x2F,0x4E,0x2F,0x46,0x4F,0x46,0x6B,0x3D,0x47,0x34,0x26,0x44,0xC8,0x5C,0x8D,0x86,0x8C,0x7E,0xD2,0x8D,0x52,0x9E,0x4F,0x96,0x6D,0x8E,0x4C,0x86,0xCE,0x96,0xC8,0x5C,0x48,0x44,0x08,0x44,0x08,0x44,0x07,0x44,0x06,0x44,0x06,0x4C,0x07,0x4C,0xE7,0x4B,0xC8,0x4B, +0x07,0x4C,0x07,0x4C,0x07,0x4C,0x07,0x4C,0xE7,0x4B,0xE6,0x4B,0xE6,0x4B,0x07,0x4C,0xE6,0x4B,0x07,0x4C,0x06,0x4C,0x27,0x4C,0x06,0x44,0x46,0x4C,0x25,0x44,0x0D,0x7E,0x89,0x96,0x0C,0x86,0x73,0x96,0x54,0x96,0xB2,0x9E,0x2C,0x8E,0x6B,0x8E,0x6D,0x96,0xE6,0x43,0x07,0x4C,0x07,0x4C,0x07,0x4C,0x07,0x4C,0x07,0x4C,0x06,0x4C,0xE5,0x43,0x25,0x4C,0xA7,0x5C,0xED,0x7D,0x8C,0x75,0xCD,0x7D,0x6B,0x75,0x8B,0x75,0xAC,0x75,0xAB,0x75,0xAA,0x75,0xCA,0x75,0xCA,0x75,0xAA,0x75,0xAA,0x75,0xAB,0x75,0xAB,0x75,0xAB,0x7D,0xA8,0x5C,0x04,0x2B,0x00,0x0A,0xA3,0x22,0x24,0x2B,0x64,0x33,0xC9,0x5C,0x6C,0x6D,0xC7,0x33,0xA8,0x2B,0x69,0x23,0xC6,0x12,0xC6,0x12,0xA9,0x33,0x26,0x23, +0xC5,0x12,0xCD,0x54,0xCB,0x54,0xCA,0x54,0xC9,0x4C,0xA8,0x4C,0x2B,0x5D,0xC7,0x33,0x87,0x2B,0x68,0x2B,0xE6,0x22,0xE6,0x22,0x05,0x2B,0xA6,0x43,0x67,0x5C,0x05,0x54,0x28,0x4C,0xE6,0x43,0xE6,0x43,0x26,0x4C,0xC4,0x3B,0xA6,0x3B,0xC9,0x43,0xC6,0x22,0xA6,0x1A,0xA6,0x1A,0xA7,0x22,0x66,0x1A,0xE6,0x2A,0xE5,0x2A,0xE5,0x2A,0xC6,0x2A,0x88,0x2B,0x46,0x23,0x45,0x23,0x08,0x3C,0x2A,0x4C,0x06,0x2B,0x64,0x1A,0x87,0x3B,0x48,0x54,0xA6,0x5C,0x85,0x5C,0xC6,0x5C,0x67,0x54,0x26,0x33,0xE3,0x01,0xAC,0x43,0x88,0x5C,0x67,0x5C,0x67,0x5C,0x87,0x5C,0x67,0x5C,0x67,0x5C,0x87,0x5C,0x87,0x5C,0x87,0x5C,0x87,0x5C,0x87,0x5C,0x88,0x5C,0x88,0x5C,0x88,0x5C,0x88,0x5C,0x88,0x5C, +0x87,0x54,0xA8,0x5C,0x67,0x5C,0x88,0x64,0x68,0x64,0x88,0x64,0x87,0x5C,0xA7,0x5C,0xA8,0x5C,0x89,0x54,0x8B,0x54,0x70,0x6D,0xD2,0x6D,0x13,0x6E,0xB4,0x5D,0xD6,0x55,0x93,0x55,0x73,0x4D,0xD0,0x34,0x52,0x45,0x93,0x4D,0x92,0x4D,0x14,0x5E,0xD3,0x55,0xD3,0x55,0x92,0x55,0x52,0x4D,0x73,0x4D,0xB3,0x55,0xD3,0x55,0xD2,0x55,0xD1,0x55,0xB1,0x55,0xB1,0x55,0x91,0x55,0x92,0x55,0x92,0x55,0x92,0x55,0x92,0x55,0x91,0x4D,0x90,0x4D,0x6E,0x45,0xCB,0x34,0xCC,0x34,0xAC,0x34,0x2F,0x45,0xB2,0x5D,0xF3,0x65,0x15,0x5E,0xD3,0x55,0xF4,0x5D,0xF3,0x5D,0xF3,0x55,0xF3,0x55,0xF3,0x4D,0xF4,0x4D,0xB4,0x4D,0xB5,0x5D,0x79,0x86,0x38,0x8E,0x18,0x96,0x18,0x9E,0xF7,0x9D,0x17,0x9E, +0x38,0x7E,0x99,0x86,0x16,0x66,0x51,0x45,0x51,0x3D,0x71,0x3D,0x31,0x3D,0x51,0x3D,0x51,0x3D,0x30,0x35,0x70,0x45,0x0E,0x35,0xAC,0x34,0x48,0x13,0x08,0x1B,0xE8,0x1A,0x06,0x1B,0xE6,0x1A,0xE7,0x22,0xE6,0x12,0x07,0x1B,0x07,0x23,0x66,0x22,0xE5,0x19,0x46,0x1A,0xC8,0x1A,0xE9,0x1A,0xA9,0x1A,0xE9,0x22,0xA7,0x12,0x89,0x2B,0xE9,0x33,0x08,0x2C,0x08,0x2C,0x07,0x34,0x07,0x34,0x07,0x2C,0x28,0x2C,0x08,0x2C,0x08,0x34,0xE8,0x33,0xE8,0x33,0x08,0x34,0x28,0x2C,0x06,0x2C,0x27,0x3C,0x68,0x54,0x06,0x54,0x45,0x54,0x89,0x4C,0xC8,0x23,0x09,0x1C,0x29,0x24,0x08,0x1C,0x28,0x1C,0x29,0x14,0x29,0x14,0x29,0x24,0x47,0x1B,0x46,0x2B,0x47,0x54,0x25,0x4C,0x67,0x5C,0x27,0x54, +0x25,0x54,0x69,0x5C,0x27,0x2B,0xE8,0x22,0xC8,0x22,0x66,0x12,0x46,0x12,0x06,0x12,0x07,0x1A,0x05,0x02,0xEA,0x23,0x6E,0x45,0xA8,0x0B,0x47,0x0B,0x0D,0x3D,0x6A,0x1C,0x66,0x03,0x6A,0x2C,0x8B,0x34,0x46,0x0B,0xE9,0x1B,0x8B,0x34,0x06,0x0B,0x0A,0x24,0x2E,0x3D,0x68,0x0B,0xA5,0x02,0xAA,0x23,0x6A,0x23,0xD4,0x7D,0x58,0xB6,0x39,0xCE,0x18,0xC6,0x77,0xAE,0xCB,0x2B,0xCA,0x1B,0x66,0x0A,0x66,0x1A,0x46,0x1A,0x66,0x12,0x86,0x12,0x86,0x12,0x86,0x1A,0x86,0x1A,0xA6,0x12,0xA6,0x0A,0xA6,0x12,0x86,0x12,0x46,0x22,0xA7,0x1A,0x85,0x12,0xE6,0x12,0xE7,0x12,0xE8,0x12,0x28,0x1B,0xC7,0x1A,0xC7,0x22,0xE7,0x22,0xE7,0x1A,0xE7,0x1A,0x08,0x1B,0xE7,0x1A,0x07,0x1B,0x07,0x1B, +0xE7,0x22,0xC6,0x1A,0x07,0x1B,0x06,0x1B,0xE8,0x33,0x2C,0x55,0xA9,0x44,0xAA,0x4C,0x8B,0x4C,0x07,0x1B,0xE7,0x1A,0x07,0x23,0xE6,0x1A,0xE7,0x22,0xE7,0x22,0xE8,0x22,0xC6,0x22,0x07,0x23,0xE6,0x22,0x07,0x23,0x07,0x23,0xE7,0x22,0x08,0x2B,0xE7,0x22,0x07,0x23,0x47,0x1B,0x66,0x1B,0x49,0x2C,0xAA,0x3C,0xAB,0x44,0x4B,0x3C,0x12,0x7E,0xB1,0x7E,0x6D,0x5D,0xCB,0x4C,0xE8,0x2B,0x06,0x1B,0x07,0x23,0xE7,0x22,0x07,0x23,0x07,0x23,0x07,0x1B,0x07,0x1B,0x07,0x23,0x07,0x23,0x07,0x23,0x06,0x23,0xE6,0x22,0x06,0x23,0x06,0x2B,0xE5,0x32,0x05,0x3B,0xA7,0x53,0x07,0x54,0x06,0x4C,0x26,0x4C,0x46,0x4C,0x06,0x44,0x07,0x4C,0x07,0x44,0x48,0x44,0x4B,0x55,0x6C,0x45,0xAC,0x45, +0xAB,0x35,0xCC,0x3D,0x6C,0x45,0x4C,0x4D,0x29,0x34,0x4A,0x3C,0x67,0x1B,0x88,0x1B,0x68,0x1B,0x68,0x1B,0x89,0x23,0x47,0x1B,0x88,0x23,0xA7,0x1B,0xA6,0x13,0xC6,0x13,0x47,0x2B,0x87,0x23,0x66,0x1B,0x86,0x23,0x28,0x44,0xE7,0x3B,0x89,0x44,0xCD,0x55,0x0D,0x4E,0x2D,0x46,0x0D,0x46,0x2F,0x4E,0x0E,0x4E,0xEE,0x4D,0xAE,0x4D,0x8A,0x2C,0xE8,0x3B,0x0B,0x45,0x2E,0x46,0x4E,0x36,0x2D,0x36,0x2E,0x46,0x0E,0x4E,0xED,0x45,0x0E,0x46,0x2B,0x3D,0x28,0x34,0x69,0x44,0x6C,0x4D,0x4E,0x4E,0x0D,0x36,0x4E,0x3E,0x0E,0x3E,0x0E,0x46,0x2F,0x4E,0xCE,0x4D,0xAA,0x3C,0x08,0x2C,0xCA,0x3C,0xEE,0x55,0x0E,0x46,0x0E,0x3E,0x4E,0x3E,0x0E,0x3E,0x0E,0x46,0x2F,0x5E,0x4C,0x4D,0x28,0x2C, +0x0B,0x3C,0x4E,0x4D,0x10,0x46,0x2F,0x3E,0x0F,0x46,0xEF,0x4D,0xEE,0x4D,0xEE,0x45,0xEE,0x45,0x0A,0x35,0x48,0x34,0x07,0x44,0x06,0x4C,0xA4,0x43,0xEC,0x85,0x6D,0x8E,0x30,0x8E,0x2F,0x86,0x0D,0x7E,0x4D,0x86,0x8E,0x8E,0x8A,0x6D,0xE5,0x3B,0x06,0x3C,0xE7,0x43,0xE7,0x43,0xE7,0x43,0xE7,0x4B,0xE7,0x4B,0xE7,0x4B,0xC7,0x4B,0xC7,0x4B,0xE6,0x4B,0xE6,0x4B,0xE7,0x4B,0xE7,0x4B,0xC7,0x4B,0xC7,0x4B,0xE7,0x4B,0xE7,0x4B,0xE7,0x4B,0xE7,0x4B,0xE6,0x43,0x27,0x4C,0x06,0x44,0x47,0x4C,0xE5,0x3B,0x2A,0x65,0x6B,0x86,0x4E,0x86,0xF0,0x7D,0x11,0x86,0x0E,0x7E,0x4C,0x86,0xAD,0x96,0x49,0x65,0xC6,0x3B,0xE7,0x43,0xE6,0x43,0xE5,0x43,0xE5,0x43,0xC5,0x43,0x06,0x4C,0x88,0x5C, +0x89,0x6D,0xCB,0x7D,0x8B,0x75,0x6B,0x75,0x6C,0x75,0x8C,0x75,0x8C,0x75,0xAB,0x75,0xAA,0x75,0xAA,0x75,0xA9,0x75,0x89,0x75,0x89,0x75,0xAA,0x75,0xAB,0x7D,0x8B,0x75,0xAB,0x6D,0xCC,0x75,0xAD,0x75,0x2B,0x6D,0x8C,0x75,0xAC,0x7D,0xAC,0x7D,0xAB,0x7D,0x6B,0x75,0x07,0x44,0x45,0x2B,0x26,0x23,0x48,0x2B,0x06,0x1B,0x47,0x23,0x26,0x1B,0x28,0x13,0x6C,0x3C,0x8C,0x3C,0x6B,0x3C,0x8A,0x3C,0xAB,0x3C,0xAB,0x3C,0xC9,0x23,0x89,0x23,0x2C,0x3C,0xAB,0x33,0x49,0x2B,0x27,0x2B,0xE5,0x22,0x66,0x33,0x86,0x3B,0x67,0x33,0x27,0x33,0xC5,0x22,0x04,0x2B,0x03,0x2B,0xE3,0x22,0xE5,0x22,0x84,0x1A,0xA5,0x1A,0x44,0x12,0x86,0x1A,0x45,0x12,0x65,0x1A,0x63,0x1A,0x63,0x1A,0x85,0x22, +0x27,0x23,0x26,0x23,0x66,0x2B,0x48,0x4C,0x28,0x4C,0x25,0x2B,0x43,0x12,0x46,0x33,0x48,0x54,0x86,0x5C,0x65,0x54,0x65,0x54,0x68,0x54,0xE4,0x2A,0x03,0x0A,0xAB,0x3B,0x49,0x5C,0x68,0x5C,0x48,0x5C,0x48,0x5C,0x68,0x5C,0x68,0x5C,0x68,0x5C,0x68,0x5C,0x68,0x5C,0x68,0x5C,0x68,0x5C,0x68,0x5C,0x68,0x5C,0x68,0x5C,0x68,0x5C,0x68,0x5C,0xA7,0x54,0x86,0x54,0x87,0x5C,0x88,0x64,0x68,0x5C,0x67,0x5C,0x66,0x54,0x87,0x54,0x89,0x54,0xAD,0x5C,0x93,0x75,0xD3,0x75,0x0E,0x4D,0x0D,0x45,0x91,0x4D,0x52,0x3D,0xF0,0x44,0xD0,0x3C,0x6E,0x2C,0x11,0x45,0x10,0x45,0x30,0x45,0x50,0x4D,0x50,0x4D,0x51,0x4D,0x72,0x55,0x73,0x55,0x53,0x4D,0x93,0x55,0xD3,0x55,0x92,0x4D,0xB1,0x4D, +0x92,0x4D,0x51,0x45,0x10,0x3D,0x51,0x4D,0x72,0x4D,0x71,0x55,0x91,0x55,0x4F,0x4D,0x0D,0x45,0xAB,0x34,0xAB,0x34,0xEC,0x3C,0x70,0x4D,0xF3,0x5D,0xF4,0x5D,0xD4,0x55,0xF4,0x55,0xD4,0x55,0xD3,0x55,0xF3,0x5D,0xF3,0x5D,0xD3,0x55,0xD3,0x4D,0xF3,0x4D,0xB3,0x4D,0xD5,0x5D,0xB9,0x8E,0x38,0x8E,0x38,0x9E,0x18,0x9E,0x17,0xA6,0xD7,0xA5,0x58,0x86,0x78,0x7E,0x36,0x6E,0x51,0x45,0x92,0x45,0xB2,0x45,0x51,0x3D,0x72,0x45,0x72,0x45,0x71,0x45,0x4F,0x3D,0x8B,0x24,0x6A,0x24,0x6A,0x2C,0x6B,0x34,0x4B,0x34,0x8A,0x2C,0x6B,0x34,0x6B,0x34,0x6C,0x34,0x4B,0x2C,0x4C,0x34,0x08,0x2B,0x04,0x0A,0x66,0x0A,0x4A,0x1B,0x6A,0x1B,0x2A,0x13,0x4A,0x1B,0x69,0x1B,0x47,0x13,0x67,0x13, +0x47,0x13,0x47,0x13,0x47,0x1B,0x47,0x13,0x47,0x13,0x67,0x13,0x47,0x13,0x48,0x13,0x48,0x1B,0x28,0x13,0x89,0x1B,0x27,0x0B,0x67,0x13,0x46,0x13,0x26,0x23,0x06,0x2B,0x45,0x23,0x47,0x1B,0x49,0x13,0x49,0x13,0x49,0x13,0x68,0x13,0x68,0x13,0x68,0x0B,0x68,0x13,0x29,0x1B,0x09,0x1B,0x08,0x23,0x26,0x23,0x46,0x23,0x26,0x23,0x07,0x23,0x24,0x23,0x46,0x23,0x28,0x1B,0x29,0x1B,0x49,0x23,0xA7,0x12,0x25,0x0A,0x06,0x1A,0x06,0x1A,0xE5,0x09,0xCA,0x23,0x6F,0x4D,0xA8,0x13,0x06,0x0B,0x0D,0x3D,0x4A,0x1C,0x26,0x0B,0x4B,0x34,0x6B,0x34,0x46,0x03,0x29,0x1C,0xAB,0x2C,0x26,0x03,0x4A,0x1C,0x6F,0x3D,0x88,0x03,0xA5,0x02,0x8A,0x23,0x8A,0x2B,0x72,0x75,0x99,0xBE,0x97,0xC5, +0x18,0xC6,0x16,0xA6,0xAB,0x2B,0x69,0x13,0x86,0x0A,0x46,0x1A,0x26,0x1A,0x87,0x1A,0x86,0x12,0x86,0x12,0x66,0x1A,0x66,0x1A,0x86,0x12,0xA6,0x0A,0x86,0x0A,0x66,0x12,0x66,0x12,0x86,0x1A,0x86,0x12,0xA5,0x0A,0x27,0x1B,0xE7,0x12,0x08,0x23,0xC7,0x1A,0xE7,0x1A,0x06,0x1B,0xE6,0x1A,0xE7,0x1A,0x08,0x1B,0x07,0x13,0xE7,0x1A,0x07,0x23,0x07,0x13,0x08,0x13,0xE7,0x0A,0xEA,0x2B,0x8B,0x3C,0xAA,0x34,0xCA,0x3C,0xAA,0x34,0xAB,0x34,0x6B,0x34,0x4B,0x2C,0x6B,0x34,0x6B,0x34,0x6B,0x34,0x6B,0x34,0x6C,0x34,0x4A,0x3C,0x4A,0x3C,0x4A,0x34,0x69,0x34,0x69,0x34,0x6A,0x34,0x6A,0x3C,0x8A,0x3C,0x69,0x34,0xA9,0x34,0xC9,0x2C,0xE9,0x2C,0x4B,0x35,0xCE,0x4D,0xF0,0x55,0xD0,0x55, +0xEB,0x44,0xAB,0x3C,0x8B,0x3C,0x6B,0x3C,0x6B,0x34,0x4A,0x34,0x4B,0x2C,0x8B,0x2C,0x6A,0x2C,0x6A,0x2C,0x6A,0x2C,0x6A,0x34,0x6A,0x34,0x6A,0x3C,0x49,0x3C,0x29,0x3C,0x27,0x4C,0x07,0x4C,0x07,0x4C,0xE6,0x53,0xE5,0x53,0xE5,0x53,0x05,0x54,0x05,0x4C,0xE5,0x43,0x26,0x3C,0x47,0x3C,0x89,0x3C,0x2C,0x3D,0x2C,0x3D,0x0B,0x35,0x2C,0x35,0x6C,0x2D,0x4C,0x2D,0x4D,0x35,0xEB,0x34,0x0C,0x3D,0xEC,0x3C,0xE8,0x23,0x26,0x0B,0x47,0x13,0x47,0x1B,0x47,0x1B,0x26,0x1B,0x26,0x1B,0x46,0x1B,0x45,0x1B,0x66,0x1B,0x48,0x1B,0x27,0x1B,0x47,0x2B,0x46,0x23,0xE7,0x23,0xEA,0x34,0x0E,0x56,0x2E,0x56,0x0D,0x46,0x2E,0x46,0x2E,0x46,0x2E,0x46,0x2F,0x56,0x4D,0x4D,0x6A,0x34,0x29,0x34, +0x6D,0x4D,0x0F,0x4E,0x2F,0x46,0x4F,0x3E,0x2F,0x3E,0x0F,0x46,0x2F,0x56,0xCF,0x55,0xEB,0x44,0x29,0x2C,0xCA,0x34,0xEE,0x4D,0x2F,0x4E,0x2F,0x4E,0x4F,0x4E,0x2F,0x46,0x0E,0x46,0x2F,0x56,0x8D,0x4D,0x69,0x34,0x48,0x2C,0x2C,0x45,0xEF,0x5D,0x2F,0x56,0x2E,0x4E,0x4F,0x4E,0x0E,0x3E,0x2E,0x46,0x4F,0x56,0x4C,0x45,0x28,0x34,0x29,0x3C,0x8F,0x4D,0xF0,0x4D,0x30,0x4E,0x2F,0x46,0x2E,0x46,0x4E,0x4E,0x2E,0x4E,0xED,0x45,0xEA,0x3C,0x28,0x3C,0x08,0x44,0x28,0x4C,0x27,0x44,0xA4,0x33,0x87,0x54,0x0D,0x8E,0x4E,0x86,0x4E,0x86,0x4D,0x86,0x6E,0x86,0x8B,0x6D,0x25,0x44,0xC5,0x3B,0xE6,0x43,0xE6,0x43,0xE6,0x43,0xE7,0x43,0xC7,0x4B,0xC7,0x4B,0xC7,0x4B,0xC7,0x4B,0xC7,0x4B, +0xC7,0x4B,0xC7,0x4B,0xC7,0x4B,0xC7,0x4B,0xC7,0x4B,0xC7,0x4B,0xC7,0x4B,0xC7,0x4B,0xC7,0x4B,0xC7,0x4B,0xE7,0x43,0xE6,0x43,0xE6,0x43,0x07,0x44,0x06,0x44,0x06,0x44,0x88,0x65,0x6E,0x86,0x0E,0x7E,0x4F,0x86,0x4E,0x86,0x4D,0x7E,0x4C,0x86,0x45,0x44,0xE5,0x3B,0xC6,0x3B,0xC5,0x3B,0xC5,0x43,0x26,0x4C,0xC9,0x64,0x4B,0x75,0x8C,0x7D,0x8A,0x75,0x8A,0x75,0x8A,0x75,0x8A,0x6D,0x8B,0x6D,0x8B,0x6D,0x8B,0x6D,0x8A,0x6D,0x8A,0x6D,0x8A,0x6D,0x8A,0x75,0x8A,0x6D,0x69,0x6D,0x8A,0x6D,0xAA,0x75,0xAA,0x75,0x6C,0x6D,0x6C,0x6D,0x8C,0x6D,0x8C,0x6D,0x8B,0x6D,0x8B,0x6D,0x6B,0x75,0x6B,0x75,0x4B,0x75,0xC6,0x43,0xE7,0x43,0x87,0x33,0x27,0x23,0x27,0x1B,0x48,0x1B,0xAA,0x23, +0x4E,0x2C,0x4E,0x2C,0x6D,0x2C,0x6D,0x2C,0x6C,0x2C,0x6C,0x2C,0x6C,0x2C,0x4D,0x2C,0x6E,0x34,0x2E,0x34,0x2E,0x34,0x4E,0x3C,0xCC,0x33,0x07,0x1B,0xA5,0x12,0xE6,0x1A,0xC6,0x22,0x07,0x2B,0x85,0x1A,0x63,0x1A,0x62,0x12,0xE4,0x22,0x46,0x33,0x87,0x3B,0xC4,0x1A,0x83,0x12,0xA5,0x1A,0x28,0x2B,0x27,0x33,0xE5,0x2A,0xC8,0x4B,0xA8,0x43,0xE7,0x1A,0xC5,0x1A,0x28,0x44,0x89,0x54,0x49,0x4C,0x63,0x1A,0x63,0x1A,0x26,0x33,0x49,0x54,0x47,0x54,0x46,0x54,0x46,0x54,0x48,0x54,0xE4,0x2A,0xC2,0x01,0x8A,0x43,0x07,0x4C,0x48,0x5C,0x68,0x5C,0x48,0x54,0x47,0x54,0x47,0x54,0x47,0x54,0x47,0x54,0x67,0x5C,0x67,0x5C,0x67,0x5C,0x67,0x5C,0x67,0x5C,0x67,0x5C,0x67,0x5C,0x68,0x5C, +0x86,0x54,0x86,0x54,0x67,0x54,0x67,0x5C,0x67,0x5C,0x67,0x54,0xA6,0x54,0xE8,0x54,0x4E,0x65,0xD3,0x75,0x73,0x65,0x51,0x5D,0xD0,0x65,0x6E,0x4D,0xCD,0x2C,0xCF,0x2C,0x10,0x45,0xAF,0x3C,0x8F,0x34,0x52,0x55,0x31,0x4D,0xF0,0x44,0x2C,0x2C,0x0B,0x24,0x6D,0x34,0xAF,0x3C,0x52,0x55,0x93,0x55,0x73,0x4D,0x93,0x55,0xB3,0x55,0xB3,0x55,0x73,0x45,0x73,0x4D,0x52,0x45,0x51,0x45,0x91,0x55,0x70,0x55,0xED,0x44,0xCC,0x3C,0x8B,0x34,0xCC,0x3C,0x0E,0x45,0xD2,0x5D,0x14,0x5E,0xF4,0x55,0xF4,0x55,0xD4,0x55,0xD3,0x4D,0x92,0x45,0xB3,0x55,0xD3,0x5D,0x93,0x55,0xB3,0x55,0xF4,0x55,0xD3,0x4D,0xB3,0x4D,0x93,0x55,0x77,0x76,0x98,0x8E,0x58,0x96,0xB6,0x8D,0x96,0x8D,0x17,0x9E, +0x37,0x7E,0x98,0x7E,0xD3,0x5D,0x91,0x45,0x50,0x3D,0x91,0x3D,0x92,0x45,0x52,0x45,0x51,0x45,0x8E,0x2C,0x6C,0x24,0x6A,0x24,0x8A,0x2C,0x69,0x24,0x6A,0x2C,0x6A,0x2C,0xAB,0x24,0x6B,0x24,0x4B,0x24,0x2B,0x1C,0x0A,0x14,0x0B,0x24,0x08,0x1B,0x24,0x02,0x85,0x02,0x49,0x13,0x4A,0x0B,0x49,0x13,0xCA,0x23,0xEA,0x23,0x09,0x1C,0x09,0x1C,0xEA,0x2B,0xEA,0x2B,0xEA,0x2B,0xEA,0x2B,0xEA,0x23,0x0A,0x24,0xEB,0x23,0xEB,0x2B,0x6B,0x23,0x29,0x13,0xEC,0x23,0x0B,0x24,0x0B,0x24,0xEA,0x23,0xAA,0x23,0x28,0x23,0x27,0x1B,0x29,0x1B,0x2A,0x13,0x2A,0x13,0x2A,0x13,0x29,0x13,0x29,0x13,0x49,0x13,0x29,0x1B,0x0A,0x23,0xEA,0x22,0x0A,0x1B,0x29,0x1B,0x48,0x13,0x29,0x1B,0x0A,0x1B, +0x47,0x13,0x48,0x13,0x29,0x13,0x49,0x13,0x29,0x1B,0xA6,0x0A,0x25,0x0A,0x05,0x1A,0x06,0x1A,0xE5,0x09,0xAA,0x2B,0x2F,0x45,0x88,0x13,0x27,0x0B,0xCD,0x3C,0x4A,0x24,0x06,0x0B,0x2A,0x34,0x8C,0x3C,0x26,0x03,0x09,0x14,0xCC,0x2C,0x05,0x03,0x4A,0x1C,0x2E,0x3D,0x88,0x13,0x85,0x02,0xE8,0x12,0x69,0x23,0x72,0x6D,0xD9,0xBE,0x59,0xC6,0x99,0xC6,0xF5,0x95,0xAB,0x23,0x08,0x03,0x86,0x0A,0x46,0x12,0x46,0x1A,0x46,0x12,0x66,0x12,0x66,0x12,0x46,0x1A,0x66,0x12,0x66,0x12,0x86,0x0A,0x66,0x12,0x66,0x12,0x86,0x12,0x66,0x12,0x66,0x12,0xE7,0x12,0xC6,0x0A,0xE7,0x12,0xC7,0x1A,0xE7,0x1A,0x07,0x13,0x26,0x13,0x06,0x13,0x07,0x13,0x08,0x13,0x08,0x13,0xE7,0x1A,0xE7,0x22, +0x07,0x13,0x28,0x13,0xE7,0x0A,0xEA,0x23,0x6A,0x2C,0x89,0x2C,0xA9,0x2C,0xAA,0x2C,0x8A,0x2C,0x8B,0x2C,0x8B,0x24,0x8A,0x24,0x8A,0x24,0x8A,0x24,0x8A,0x24,0x8A,0x24,0x6A,0x2C,0x6A,0x2C,0x89,0x2C,0x89,0x2C,0xA9,0x2C,0xA9,0x2C,0x89,0x2C,0x89,0x2C,0xA9,0x2C,0xA8,0x24,0xA8,0x1C,0xC8,0x1C,0xA8,0x1C,0x89,0x14,0x6A,0x1C,0x8B,0x1C,0x89,0x2C,0x89,0x2C,0x8A,0x2C,0x6A,0x34,0x6A,0x2C,0x6A,0x24,0x6A,0x24,0x8A,0x24,0xAA,0x24,0xA9,0x2C,0x89,0x2C,0x68,0x2C,0x48,0x34,0x28,0x3C,0x28,0x3C,0x08,0x3C,0xC6,0x43,0xE7,0x3B,0x07,0x3C,0x07,0x3C,0x07,0x3C,0x07,0x44,0xE7,0x43,0xE8,0x43,0x49,0x4C,0x0C,0x4D,0x6E,0x45,0x6E,0x35,0x6E,0x35,0x4D,0x2D,0xEB,0x2C,0xAA,0x2C, +0x6C,0x2C,0x6B,0x2C,0xAB,0x2C,0x8B,0x24,0xAB,0x2C,0xAB,0x2C,0x49,0x24,0x09,0x24,0xA7,0x1B,0x87,0x1B,0xE5,0x0A,0x27,0x1B,0x06,0x13,0x27,0x1B,0xE7,0x12,0x07,0x1B,0x07,0x0B,0xE6,0x12,0xC6,0x12,0x06,0x1B,0x4A,0x34,0x0B,0x35,0x0A,0x35,0xC9,0x2C,0xEA,0x34,0xE9,0x34,0xE9,0x2C,0x0A,0x35,0xA9,0x34,0xC6,0x23,0xA6,0x2B,0x6A,0x4C,0xCA,0x34,0x0B,0x3D,0xEB,0x34,0xCB,0x3C,0xCB,0x3C,0xCA,0x34,0xEB,0x34,0x69,0x34,0xA7,0x2B,0x08,0x34,0xEB,0x34,0x2B,0x35,0xEA,0x34,0xCA,0x3C,0xCB,0x3C,0xCA,0x34,0xCA,0x34,0x89,0x34,0x08,0x34,0xE7,0x2B,0x28,0x34,0xCA,0x3C,0xEA,0x3C,0xA9,0x34,0xAA,0x34,0xCA,0x3C,0xCA,0x3C,0xCA,0x34,0x89,0x2C,0x07,0x24,0xE7,0x2B,0x6A,0x4C, +0x0B,0x35,0xEB,0x34,0xEA,0x34,0xC9,0x34,0x09,0x35,0x09,0x2D,0xE8,0x2C,0x67,0x2C,0x85,0x2B,0x66,0x3B,0x86,0x43,0x86,0x3B,0xC6,0x33,0xA5,0x2B,0xE5,0x33,0x06,0x44,0xC6,0x4C,0x69,0x65,0x29,0x5D,0x67,0x44,0xC5,0x33,0xC5,0x3B,0x06,0x4C,0xC5,0x43,0xC5,0x43,0xC6,0x43,0xC6,0x43,0xA6,0x4B,0xA6,0x4B,0xA7,0x4B,0xA6,0x4B,0xA6,0x4B,0xA6,0x43,0xA6,0x43,0xA6,0x43,0xA7,0x4B,0xA7,0x4B,0xA7,0x4B,0xA7,0x43,0xC7,0x4B,0xC6,0x43,0xC6,0x43,0xC6,0x43,0xC7,0x43,0xE7,0x43,0xE7,0x43,0x07,0x44,0x07,0x44,0x04,0x34,0xE8,0x54,0xCC,0x6D,0xAC,0x6D,0xAB,0x6D,0x08,0x55,0xC3,0x33,0xE4,0x33,0x25,0x3C,0x67,0x4C,0xE9,0x5C,0x4A,0x6D,0x8B,0x75,0x8B,0x7D,0x6B,0x75,0x4B,0x6D, +0x6C,0x6D,0x6B,0x6D,0x8A,0x6D,0x89,0x6D,0x89,0x6D,0x89,0x6D,0x8A,0x6D,0x8A,0x6D,0x8A,0x6D,0x6A,0x6D,0x6B,0x6D,0x8C,0x6D,0x8B,0x6D,0x6A,0x6D,0x69,0x6D,0x69,0x6D,0x6C,0x6D,0x6B,0x6D,0x6A,0x6D,0x8A,0x65,0x8A,0x65,0x8A,0x6D,0x8B,0x75,0x6B,0x75,0x2B,0x75,0xA6,0x43,0xC7,0x43,0x88,0x33,0x07,0x1B,0x49,0x1B,0xCC,0x1B,0x4E,0x2C,0x2E,0x24,0x2E,0x24,0x2E,0x24,0x2E,0x24,0x4E,0x24,0x4E,0x24,0x2E,0x24,0x2E,0x24,0x0E,0x24,0x0E,0x24,0x0E,0x24,0x0E,0x2C,0x2E,0x34,0x0D,0x34,0x6A,0x23,0xC7,0x0A,0x64,0x12,0x65,0x12,0x85,0x1A,0xA5,0x22,0x45,0x33,0xA7,0x43,0xC7,0x43,0xE7,0x43,0x85,0x33,0xC3,0x1A,0x85,0x1A,0x65,0x12,0xE6,0x2A,0x87,0x3B,0xA7,0x43,0xA7,0x43, +0xE7,0x1A,0xE6,0x1A,0x49,0x4C,0x08,0x44,0xE8,0x43,0xC5,0x22,0x03,0x0A,0xC6,0x2A,0x2A,0x54,0x28,0x54,0x48,0x54,0x27,0x54,0x28,0x54,0x05,0x2B,0xC2,0x01,0x28,0x33,0x47,0x54,0x47,0x54,0x46,0x54,0x46,0x54,0x47,0x54,0x46,0x54,0x26,0x54,0x47,0x54,0x47,0x54,0x47,0x54,0x47,0x54,0x47,0x54,0x47,0x54,0x47,0x54,0x47,0x54,0x47,0x54,0x66,0x54,0x66,0x54,0x47,0x54,0x48,0x5C,0x48,0x54,0x68,0x54,0xCA,0x54,0x0C,0x55,0x70,0x5D,0x51,0x55,0x92,0x5D,0xB2,0x5D,0x2F,0x4D,0x0F,0x45,0x31,0x45,0xB0,0x34,0xAD,0x3C,0x0F,0x45,0xAF,0x3C,0xF0,0x4C,0x6E,0x34,0x2D,0x34,0xAE,0x44,0xCF,0x44,0xAE,0x3C,0xCF,0x44,0xF0,0x44,0xF0,0x44,0x93,0x55,0x93,0x55,0x31,0x45,0x11,0x45, +0x34,0x4D,0x33,0x45,0x32,0x4D,0x71,0x4D,0x2E,0x45,0xAB,0x3C,0xCB,0x3C,0x8B,0x34,0xAD,0x3C,0x91,0x55,0x35,0x6E,0xD4,0x5D,0x72,0x4D,0xB3,0x55,0xD3,0x55,0x31,0x3D,0x51,0x3D,0x71,0x45,0x52,0x4D,0x93,0x5D,0xD4,0x65,0xB4,0x5D,0x72,0x4D,0x51,0x3D,0x92,0x45,0x51,0x3D,0x14,0x66,0xB8,0x86,0xB8,0x8E,0x37,0x8E,0xD6,0x85,0x38,0x96,0xB9,0x86,0x56,0x6E,0x51,0x45,0x91,0x45,0xB1,0x45,0x90,0x45,0x70,0x45,0x0F,0x3D,0xAE,0x34,0x2B,0x2C,0x6B,0x34,0x8B,0x2C,0x8A,0x2C,0x8A,0x2C,0x8A,0x2C,0x6A,0x2C,0x2A,0x1C,0x0A,0x1C,0xEB,0x1B,0xEB,0x13,0xCB,0x13,0xEB,0x23,0xE7,0x1A,0x04,0x02,0x65,0x02,0x29,0x13,0x09,0x0B,0x28,0x13,0xCA,0x2B,0x0A,0x2C,0x2A,0x2C,0x2A,0x2C, +0x0A,0x2C,0x0A,0x2C,0x0A,0x2C,0x0A,0x2C,0x0A,0x2C,0x2A,0x24,0x0A,0x2C,0x0B,0x2C,0x8A,0x23,0x08,0x0B,0xEB,0x23,0x2B,0x24,0x4A,0x24,0x2A,0x24,0xEB,0x2B,0x28,0x1B,0x08,0x13,0x28,0x13,0x09,0x13,0x09,0x1B,0xE9,0x1A,0x09,0x1B,0x28,0x13,0x29,0x13,0x08,0x1B,0xE9,0x1A,0xE9,0x1A,0x09,0x1B,0x29,0x0B,0x29,0x0B,0x09,0x13,0xEA,0x12,0x29,0x13,0x29,0x0B,0x09,0x0B,0x29,0x13,0x08,0x13,0xA6,0x0A,0x25,0x0A,0x05,0x1A,0xE5,0x19,0xC4,0x09,0xCB,0x2B,0x50,0x4D,0x68,0x13,0x27,0x0B,0xED,0x44,0x4A,0x24,0x06,0x0B,0x2B,0x34,0x8C,0x3C,0x26,0x03,0xE9,0x13,0xAC,0x34,0xE5,0x02,0x0A,0x24,0xEE,0x44,0x28,0x1B,0x66,0x12,0xA7,0x12,0x08,0x0B,0xCB,0x23,0x2D,0x44,0xED,0x4B, +0xCE,0x63,0xAC,0x3B,0xE7,0x0A,0xA6,0x02,0xC7,0x0A,0x66,0x12,0x87,0x1A,0x66,0x12,0x86,0x12,0x66,0x12,0x46,0x1A,0x46,0x1A,0x66,0x12,0x86,0x12,0x66,0x12,0x66,0x1A,0x86,0x12,0x46,0x12,0x46,0x12,0x86,0x0A,0x68,0x1B,0x68,0x1B,0x07,0x1B,0xC7,0x12,0xE6,0x0A,0x06,0x0B,0xE6,0x12,0xE6,0x12,0xE7,0x12,0xE7,0x12,0xC7,0x1A,0xA6,0x22,0xE7,0x12,0xE7,0x1A,0xC6,0x0A,0xEA,0x2B,0x6A,0x34,0x89,0x34,0x68,0x2C,0x89,0x2C,0x69,0x2C,0x8A,0x2C,0x8B,0x2C,0x8A,0x2C,0x89,0x2C,0x89,0x2C,0x89,0x2C,0x69,0x24,0x8B,0x2C,0x8B,0x2C,0x8A,0x2C,0x8A,0x2C,0x89,0x2C,0x69,0x2C,0x8A,0x2C,0xAB,0x34,0xAA,0x2C,0xAA,0x2C,0xC9,0x2C,0xCA,0x2C,0xCA,0x2C,0xCA,0x2C,0x8B,0x2C,0x8B,0x2C, +0xA9,0x24,0x89,0x24,0x89,0x2C,0x69,0x2C,0x8A,0x2C,0x8A,0x2C,0xAA,0x2C,0xA9,0x34,0x89,0x34,0x48,0x3C,0x28,0x3C,0x07,0x3C,0xE7,0x43,0xC8,0x43,0xC8,0x43,0xA8,0x4B,0x0B,0x3C,0x2C,0x34,0x6C,0x2C,0x8D,0x2C,0x8D,0x24,0x8E,0x2C,0x6E,0x34,0x4E,0x3C,0x8F,0x44,0x8F,0x3C,0x8E,0x24,0xAD,0x1C,0x0E,0x25,0x4E,0x2D,0xEC,0x2C,0x49,0x24,0x0B,0x34,0x0B,0x34,0x2A,0x2C,0x4A,0x2C,0x49,0x24,0x49,0x24,0x69,0x24,0x6A,0x2C,0x2A,0x2C,0xA9,0x23,0x69,0x1B,0xC7,0x12,0xC8,0x1A,0xA8,0x1A,0x88,0x12,0xA9,0x1A,0x08,0x1B,0x8A,0x23,0xCA,0x2B,0xA8,0x23,0xE9,0x33,0xC8,0x33,0xA7,0x2B,0xE7,0x33,0xC6,0x2B,0xE7,0x33,0xE7,0x33,0xA6,0x33,0xC7,0x33,0xC7,0x3B,0xC7,0x3B,0xC7,0x3B, +0xA7,0x33,0xC7,0x3B,0x86,0x3B,0x87,0x43,0xA7,0x43,0xC7,0x33,0xE7,0x2B,0xA6,0x2B,0xA7,0x3B,0xA7,0x43,0xA7,0x3B,0xA6,0x33,0xC6,0x33,0xC7,0x3B,0xA7,0x3B,0xA7,0x3B,0xC7,0x3B,0xA7,0x33,0xA7,0x3B,0xA7,0x3B,0xC7,0x3B,0xC7,0x33,0xC7,0x33,0xA7,0x33,0xA7,0x3B,0x66,0x3B,0x87,0x3B,0xC7,0x3B,0xC7,0x33,0xC7,0x33,0xC7,0x33,0xC7,0x33,0xE7,0x2B,0xC7,0x33,0xC6,0x33,0xC6,0x33,0xC5,0x33,0xE5,0x2B,0xC5,0x33,0x65,0x3B,0x66,0x43,0x66,0x43,0x87,0x43,0x86,0x3B,0xC6,0x3B,0xE6,0x3B,0x06,0x3C,0xE5,0x33,0xC2,0x33,0xC3,0x33,0x84,0x2B,0xC6,0x3B,0xE7,0x43,0xA6,0x3B,0xC6,0x43,0xA6,0x43,0xA5,0x43,0xA5,0x43,0xA6,0x43,0xA7,0x43,0xA7,0x43,0xA7,0x43,0xA7,0x43,0xA7,0x43, +0xC7,0x43,0xC7,0x43,0xC7,0x43,0xA7,0x43,0xA7,0x43,0xA6,0x43,0xA6,0x43,0xA6,0x43,0xA6,0x43,0xC7,0x43,0xC6,0x43,0xC6,0x43,0xC6,0x43,0xA6,0x3B,0xA6,0x3B,0xA6,0x3B,0xE4,0x33,0x62,0x23,0xE4,0x33,0x04,0x34,0x05,0x3C,0x87,0x4C,0xE8,0x54,0x49,0x5D,0x8A,0x65,0x8A,0x65,0x6B,0x6D,0x4B,0x65,0x4A,0x65,0x4A,0x65,0x4A,0x6D,0x4A,0x6D,0x4C,0x65,0x6B,0x65,0x69,0x65,0x89,0x65,0x89,0x65,0x69,0x65,0x69,0x65,0x69,0x65,0x6A,0x65,0x6B,0x65,0x6C,0x65,0x4C,0x65,0x6C,0x65,0x6B,0x65,0x8A,0x65,0x8A,0x6D,0x6A,0x6D,0x6A,0x6D,0x8A,0x65,0x89,0x65,0x89,0x65,0x6A,0x65,0x6A,0x6D,0x4A,0x6D,0x0A,0x6D,0x85,0x3B,0xC8,0x43,0xAA,0x3B,0x6A,0x23,0xAC,0x23,0xEE,0x1B,0xEE,0x13, +0xED,0x23,0xED,0x23,0xED,0x23,0xEE,0x1B,0xEE,0x1B,0xEE,0x1B,0xEE,0x1B,0xEE,0x1B,0xEE,0x1B,0xEE,0x1B,0xEE,0x23,0xCD,0x1B,0xCD,0x1B,0xED,0x23,0xED,0x23,0xAC,0x23,0x68,0x2B,0xC6,0x1A,0xE7,0x22,0x06,0x2B,0xA7,0x43,0xA7,0x43,0x86,0x3B,0x65,0x33,0xC7,0x43,0xE4,0x22,0x44,0x12,0x25,0x12,0x07,0x2B,0xC8,0x4B,0x65,0x3B,0x86,0x43,0xA6,0x1A,0xC6,0x22,0x0A,0x4C,0x29,0x4C,0x0A,0x4C,0x04,0x12,0x05,0x12,0x66,0x22,0x2B,0x54,0x09,0x54,0x28,0x54,0x28,0x54,0xC7,0x43,0x84,0x1A,0xC2,0x01,0xC7,0x2A,0x26,0x54,0x26,0x54,0x26,0x4C,0x26,0x54,0x47,0x54,0x46,0x54,0x26,0x54,0x47,0x54,0x46,0x54,0x46,0x54,0x46,0x54,0x46,0x54,0x46,0x54,0x46,0x54,0x46,0x54,0x46,0x54, +0x46,0x54,0x47,0x54,0x28,0x5C,0x28,0x5C,0x48,0x54,0x49,0x4C,0xEE,0x54,0x51,0x5D,0x31,0x4D,0x30,0x45,0xAE,0x3C,0x6E,0x34,0x4F,0x34,0x2F,0x34,0x70,0x34,0x90,0x34,0xAD,0x3C,0x4C,0x34,0xEC,0x2B,0x2E,0x34,0x4E,0x34,0xB0,0x44,0xAF,0x44,0xCE,0x44,0xCE,0x44,0xEF,0x44,0xEF,0x44,0xAF,0x3C,0xCF,0x3C,0x11,0x45,0x32,0x4D,0x31,0x4D,0x12,0x4D,0x32,0x4D,0x72,0x55,0xCE,0x3C,0x8C,0x34,0xED,0x3C,0xED,0x3C,0x4F,0x45,0xF3,0x5D,0x92,0x55,0x8F,0x34,0x32,0x4D,0x93,0x55,0xCF,0x3C,0xCF,0x3C,0x8E,0x34,0xCE,0x2C,0xAE,0x34,0xD0,0x3C,0x11,0x4D,0x12,0x4D,0x32,0x4D,0x52,0x4D,0x51,0x3D,0x71,0x3D,0x50,0x3D,0x91,0x4D,0xF3,0x5D,0x35,0x6E,0x97,0x7E,0x57,0x7E,0x37,0x7E, +0xB5,0x55,0xF0,0x3C,0x92,0x4D,0x50,0x3D,0x8F,0x45,0x4E,0x3D,0x8B,0x2C,0xAC,0x34,0x6B,0x34,0x4B,0x34,0x8B,0x34,0x49,0x34,0x49,0x2C,0x8A,0x34,0x4A,0x24,0xA8,0x13,0xAA,0x13,0x8A,0x1B,0xAB,0x1B,0xCC,0x1B,0xCC,0x13,0xCC,0x23,0xC8,0x1A,0xE4,0x09,0x45,0x0A,0xE8,0x12,0xE9,0x12,0xE8,0x1A,0x88,0x2B,0xE9,0x2B,0xE9,0x2B,0xE9,0x23,0xE9,0x23,0xE9,0x23,0xE9,0x23,0xE9,0x23,0x08,0x24,0x08,0x24,0xE9,0x23,0xEA,0x23,0x89,0x23,0x07,0x0B,0xEA,0x23,0x29,0x24,0x29,0x1C,0x29,0x1C,0xEA,0x23,0x08,0x13,0xE7,0x1A,0xE8,0x12,0xE8,0x12,0xE8,0x1A,0xE8,0x1A,0xE8,0x12,0x07,0x13,0x07,0x0B,0x07,0x13,0xE7,0x1A,0xE8,0x1A,0x08,0x13,0x28,0x0B,0x29,0x0B,0xE9,0x12,0xC9,0x1A, +0xE9,0x12,0x09,0x0B,0x09,0x0B,0x09,0x13,0x08,0x13,0x86,0x0A,0x05,0x0A,0x05,0x12,0x06,0x1A,0xC4,0x01,0xCB,0x23,0x70,0x4D,0x88,0x0B,0x27,0x0B,0x0E,0x45,0x2A,0x1C,0x27,0x0B,0x2B,0x2C,0x6C,0x34,0x27,0x03,0xE9,0x13,0x8C,0x2C,0xC6,0x02,0xEA,0x2B,0x0F,0x55,0xE8,0x22,0x66,0x1A,0x87,0x1A,0xC7,0x0A,0xC6,0x02,0xE7,0x02,0x08,0x13,0x67,0x22,0x87,0x12,0xC7,0x02,0xC7,0x02,0xC7,0x0A,0x66,0x0A,0x87,0x12,0x66,0x12,0x86,0x12,0x66,0x12,0x46,0x12,0x46,0x12,0x46,0x12,0x66,0x12,0x46,0x12,0x46,0x1A,0x25,0x12,0x46,0x1A,0x67,0x1A,0x65,0x02,0xA9,0x1B,0x6C,0x34,0x85,0x02,0x08,0x1B,0xE7,0x12,0x06,0x13,0xE6,0x1A,0xC6,0x1A,0xE7,0x1A,0xE8,0x12,0xC7,0x1A,0xA7,0x22, +0xC6,0x1A,0xE6,0x1A,0xA5,0x12,0xEA,0x33,0x4A,0x3C,0x89,0x3C,0x69,0x34,0x89,0x34,0x8A,0x34,0x8A,0x34,0x8A,0x34,0x8A,0x34,0x89,0x34,0xAA,0x3C,0x8A,0x3C,0x8A,0x34,0x8B,0x3C,0x8A,0x34,0x6A,0x34,0x6A,0x34,0x8A,0x34,0x8B,0x34,0x6B,0x34,0x4B,0x34,0x8C,0x34,0x8B,0x34,0x8A,0x34,0x89,0x34,0x8A,0x34,0xAA,0x34,0x8A,0x34,0x6A,0x34,0xE9,0x2C,0xA9,0x2C,0x89,0x34,0x69,0x34,0x49,0x3C,0x69,0x34,0x69,0x3C,0x69,0x3C,0x07,0x3C,0xC7,0x43,0xA7,0x43,0xA7,0x43,0xA7,0x43,0xA8,0x43,0xA9,0x43,0x89,0x4B,0xEE,0x2B,0x0F,0x24,0x4F,0x1C,0x70,0x1C,0x70,0x14,0x70,0x1C,0x50,0x1C,0x30,0x24,0xF0,0x23,0x0F,0x24,0x4F,0x24,0x4E,0x24,0x4D,0x1C,0x6C,0x1C,0x6B,0x24,0x6B,0x2C, +0xA9,0x23,0xA9,0x2B,0xA8,0x2B,0xC8,0x2B,0xC8,0x23,0xE8,0x23,0x09,0x1C,0xE8,0x1B,0xC9,0x1B,0x89,0x23,0x29,0x23,0x67,0x12,0x88,0x1A,0x27,0x12,0xCA,0x22,0xA9,0x1A,0x29,0x2B,0x8A,0x2B,0xC9,0x23,0x88,0x23,0x88,0x33,0x88,0x43,0xA8,0x4B,0xC8,0x43,0xC7,0x43,0xA7,0x43,0x87,0x4B,0x87,0x4B,0x87,0x43,0xA7,0x43,0xC7,0x43,0xA7,0x43,0x86,0x4B,0x87,0x53,0x66,0x53,0x87,0x53,0xA7,0x4B,0xA6,0x3B,0xC7,0x43,0xC6,0x3B,0xC6,0x43,0x86,0x4B,0x46,0x4B,0x66,0x53,0xA6,0x53,0x86,0x43,0x86,0x43,0xC7,0x4B,0x87,0x4B,0xA7,0x43,0xA7,0x43,0xA7,0x43,0xA7,0x43,0xA7,0x43,0xA7,0x4B,0x87,0x4B,0x87,0x4B,0x67,0x4B,0x87,0x4B,0x87,0x4B,0x87,0x4B,0x87,0x43,0xA7,0x3B,0xA7,0x33, +0x86,0x3B,0x86,0x43,0x87,0x4B,0xA6,0x4B,0xA6,0x43,0x87,0x43,0x87,0x4B,0x67,0x53,0x88,0x53,0x67,0x43,0xA7,0x43,0xA7,0x43,0xA7,0x4B,0xA6,0x43,0xE6,0x3B,0x05,0x34,0xE4,0x3B,0x06,0x44,0xC6,0x3B,0xA6,0x3B,0x87,0x3B,0xA7,0x43,0xC7,0x43,0x86,0x43,0xA6,0x43,0xA6,0x43,0x86,0x43,0x87,0x43,0x87,0x43,0x87,0x3B,0x87,0x3B,0xA6,0x3B,0xA6,0x3B,0xA6,0x3B,0xA6,0x3B,0xA6,0x3B,0xA6,0x3B,0xA6,0x3B,0xA6,0x3B,0x86,0x3B,0xA6,0x3B,0x85,0x3B,0x85,0x33,0x85,0x33,0xA6,0x3B,0xE7,0x43,0x27,0x44,0x48,0x4C,0xE9,0x54,0x09,0x5D,0x29,0x5D,0x6A,0x65,0x6B,0x65,0x6B,0x65,0x8B,0x65,0x4A,0x5D,0x49,0x5D,0x4A,0x5D,0x6A,0x65,0x6B,0x65,0x6B,0x65,0x6B,0x65,0x6A,0x65,0x6A,0x65, +0x4C,0x65,0x6A,0x65,0x69,0x65,0x69,0x65,0x6A,0x65,0x4A,0x65,0x4A,0x65,0x6A,0x65,0x49,0x5D,0x6B,0x65,0x6C,0x65,0x4C,0x65,0x4C,0x5D,0x4C,0x5D,0x4C,0x5D,0x4D,0x5D,0x4B,0x5D,0x6B,0x5D,0x6C,0x5D,0x8B,0x5D,0x6B,0x5D,0x4B,0x5D,0x4B,0x5D,0x4A,0x65,0xE9,0x64,0x85,0x3B,0x87,0x3B,0x8A,0x33,0x8C,0x2B,0xCD,0x23,0xCD,0x1B,0xAC,0x13,0x8C,0x23,0x8C,0x23,0x8C,0x23,0x8D,0x23,0x8D,0x23,0xAD,0x1B,0xAD,0x1B,0xAD,0x1B,0xAD,0x1B,0xAC,0x1B,0xAC,0x1B,0xCC,0x1B,0xAC,0x1B,0xAC,0x1B,0xAC,0x1B,0xCD,0x23,0x69,0x2B,0xC7,0x1A,0xA7,0x1A,0x07,0x2B,0x87,0x43,0x87,0x3B,0x67,0x3B,0x87,0x3B,0x87,0x3B,0xE5,0x2A,0x04,0x0A,0xA7,0x22,0x68,0x3B,0xA7,0x43,0x65,0x3B,0x86,0x43, +0x86,0x1A,0x85,0x1A,0xE9,0x43,0xC9,0x43,0xC5,0x22,0xA2,0x01,0xE4,0x09,0xA3,0x09,0x48,0x3B,0x09,0x4C,0x07,0x4C,0xE7,0x4B,0x04,0x2B,0x02,0x12,0x23,0x12,0xE3,0x09,0x64,0x3B,0x07,0x4C,0x48,0x54,0x07,0x4C,0x07,0x4C,0x27,0x54,0x27,0x54,0x27,0x54,0x27,0x54,0x27,0x54,0x27,0x54,0x26,0x54,0x26,0x54,0x26,0x54,0x26,0x54,0x26,0x54,0x27,0x54,0x27,0x54,0x27,0x5C,0x27,0x54,0x47,0x54,0x49,0x4C,0x30,0x5D,0x94,0x5D,0x95,0x55,0x73,0x4D,0x30,0x45,0x11,0x45,0xF3,0x44,0xD3,0x44,0xF1,0x44,0xCE,0x3C,0xEE,0x44,0x6D,0x34,0x6A,0x1B,0x4E,0x34,0x2E,0x34,0x0D,0x2C,0x4D,0x3C,0x8D,0x3C,0xAD,0x3C,0xCE,0x44,0xEF,0x44,0x8E,0x34,0x0D,0x2C,0x4D,0x2C,0xCF,0x3C,0x72,0x55, +0x10,0x55,0xEF,0x4C,0x8D,0x3C,0xAD,0x3C,0xCE,0x3C,0xEE,0x3C,0x50,0x45,0xD3,0x55,0x92,0x4D,0x93,0x4D,0x52,0x4D,0xB0,0x3C,0x6E,0x34,0xAF,0x3C,0xAF,0x3C,0x2D,0x2C,0xEF,0x3C,0xF0,0x3C,0xD0,0x44,0x6E,0x34,0xED,0x23,0xED,0x23,0xAF,0x34,0x51,0x3D,0x91,0x45,0xB1,0x45,0x91,0x45,0x71,0x45,0x51,0x4D,0x93,0x55,0x53,0x4D,0x12,0x45,0xF1,0x3C,0x52,0x45,0x71,0x45,0x70,0x4D,0x2E,0x45,0xAB,0x34,0xEC,0x3C,0x8A,0x34,0x6A,0x34,0x6A,0x34,0x49,0x34,0x29,0x34,0x49,0x34,0x6B,0x34,0x09,0x24,0xA9,0x13,0xAA,0x1B,0x8A,0x1B,0x8B,0x1B,0xAC,0x13,0x8B,0x13,0xAB,0x23,0xC7,0x1A,0xE4,0x09,0x25,0x0A,0xE9,0x1A,0xC9,0x12,0xC8,0x1A,0x68,0x2B,0xA8,0x2B,0xC9,0x23,0xC9,0x23, +0xC9,0x23,0xC9,0x23,0xC9,0x23,0xC9,0x23,0xE8,0x23,0xE8,0x23,0xC9,0x23,0xC9,0x23,0x49,0x23,0xE7,0x12,0xCA,0x23,0xE9,0x23,0x08,0x1C,0xE9,0x1B,0xA9,0x23,0xE8,0x12,0xC8,0x1A,0xC8,0x1A,0xC7,0x12,0xC8,0x1A,0xC8,0x1A,0xE8,0x12,0xE8,0x0A,0xE7,0x0A,0x07,0x0B,0xE7,0x12,0xE7,0x12,0xE8,0x12,0x08,0x0B,0xE9,0x0A,0xE9,0x12,0xC9,0x1A,0xC9,0x12,0xE9,0x12,0xE8,0x12,0xE8,0x12,0xE8,0x12,0x66,0x0A,0x05,0x0A,0xE5,0x11,0x06,0x1A,0x04,0x02,0x8A,0x1B,0x70,0x45,0xA9,0x0B,0x07,0x03,0x0E,0x3D,0x2A,0x1C,0x26,0x03,0x4B,0x2C,0x8C,0x34,0x26,0x03,0x0A,0x14,0xAD,0x2C,0xC5,0x02,0x0B,0x24,0x0F,0x4D,0xE8,0x1A,0x67,0x1A,0x67,0x1A,0xC7,0x12,0xC7,0x02,0xC7,0x0A,0x87,0x0A, +0xA7,0x1A,0xA7,0x0A,0xC7,0x02,0xE7,0x02,0xA7,0x0A,0xA7,0x12,0xA7,0x12,0xA7,0x12,0x86,0x0A,0x66,0x0A,0x46,0x0A,0x46,0x0A,0x46,0x0A,0x46,0x12,0x46,0x12,0x26,0x12,0x25,0x1A,0x46,0x1A,0x46,0x12,0xE8,0x12,0x4C,0x34,0xAC,0x3C,0x27,0x13,0xC7,0x12,0xE7,0x12,0xC7,0x1A,0xC6,0x1A,0xC7,0x1A,0xC7,0x1A,0xC7,0x1A,0xC7,0x1A,0xC6,0x1A,0xC6,0x1A,0xE6,0x1A,0xC6,0x12,0xEA,0x33,0x6A,0x3C,0x69,0x3C,0x89,0x34,0xA9,0x3C,0xAA,0x3C,0x8A,0x3C,0x69,0x34,0x69,0x3C,0x68,0x3C,0x68,0x3C,0x68,0x3C,0x69,0x3C,0x89,0x3C,0xA9,0x3C,0xA9,0x3C,0x89,0x3C,0x69,0x34,0x69,0x34,0x6A,0x34,0x8B,0x3C,0x6B,0x34,0x6A,0x34,0x8A,0x3C,0xAA,0x3C,0x89,0x34,0x88,0x34,0x89,0x34,0xCA,0x3C, +0xA9,0x34,0xA9,0x3C,0x8A,0x44,0x6A,0x4C,0x49,0x44,0x08,0x3C,0xC7,0x33,0xA6,0x33,0xA6,0x3B,0x86,0x43,0x87,0x43,0x88,0x43,0xA8,0x3B,0xC9,0x33,0xCA,0x33,0xCB,0x33,0xEE,0x2B,0xEE,0x23,0x0E,0x24,0x0E,0x1C,0x0E,0x1C,0x0E,0x1C,0x0E,0x1C,0xEF,0x1B,0x0F,0x24,0xCE,0x1B,0xEE,0x1B,0x2E,0x24,0x2E,0x1C,0x0D,0x24,0xED,0x23,0xCC,0x23,0xC8,0x13,0xC8,0x1B,0x88,0x1B,0x88,0x23,0x88,0x23,0xA8,0x23,0xA8,0x1B,0x88,0x13,0x88,0x1B,0x48,0x1B,0xA7,0x1A,0x67,0x1A,0x26,0x1A,0x46,0x12,0x87,0x12,0xC7,0x12,0x28,0x1B,0x28,0x1B,0x07,0x1B,0x06,0x23,0x06,0x23,0x88,0x3B,0xA8,0x43,0x46,0x3B,0xA7,0x4B,0x67,0x43,0x67,0x43,0x87,0x4B,0x66,0x43,0x66,0x3B,0x86,0x43,0xA7,0x43, +0x67,0x43,0x47,0x53,0x46,0x53,0x87,0x4B,0xA7,0x3B,0xA6,0x33,0x87,0x43,0x67,0x4B,0x46,0x43,0x66,0x43,0x87,0x4B,0x67,0x53,0x66,0x4B,0x86,0x43,0xA6,0x3B,0xA6,0x3B,0x67,0x43,0x87,0x43,0x86,0x3B,0x86,0x3B,0x87,0x43,0x87,0x4B,0x66,0x4B,0x46,0x43,0x86,0x43,0xA6,0x43,0xA6,0x43,0x87,0x43,0x87,0x43,0x87,0x43,0xA7,0x43,0xC7,0x43,0xA7,0x43,0x66,0x43,0x46,0x43,0x67,0x43,0x67,0x43,0x87,0x43,0x47,0x43,0x27,0x43,0x48,0x43,0x67,0x3B,0xA8,0x3B,0xA7,0x3B,0x66,0x3B,0x85,0x3B,0xA5,0x3B,0xA4,0x33,0x84,0x33,0x85,0x33,0x86,0x33,0x87,0x3B,0x87,0x3B,0x66,0x3B,0x66,0x3B,0x66,0x3B,0x66,0x3B,0x66,0x3B,0x86,0x3B,0x87,0x3B,0xA7,0x3B,0xA7,0x3B,0xC7,0x3B,0xC6,0x3B, +0xA6,0x3B,0xC6,0x3B,0xC6,0x3B,0xE7,0x43,0x07,0x44,0x07,0x44,0x27,0x44,0x28,0x4C,0x89,0x54,0xA9,0x54,0xCA,0x5C,0x0B,0x65,0x2B,0x65,0x4B,0x65,0x4B,0x65,0x4B,0x65,0x2A,0x5D,0x4B,0x65,0x4A,0x65,0x09,0x5D,0x4A,0x65,0x4A,0x5D,0x0A,0x5D,0x6B,0x65,0x4A,0x5D,0x49,0x5D,0x4A,0x5D,0x4A,0x5D,0x4B,0x5D,0x4B,0x5D,0x4A,0x5D,0x6A,0x5D,0x4A,0x5D,0x49,0x5D,0x49,0x5D,0x4A,0x5D,0x2B,0x5D,0x2C,0x5D,0x2C,0x5D,0x4A,0x5D,0x6A,0x65,0x49,0x5D,0x4B,0x5D,0x4D,0x5D,0x4D,0x5D,0xED,0x4C,0x6D,0x3C,0x4D,0x3C,0x4C,0x34,0x6C,0x3C,0x8D,0x3C,0x8E,0x3C,0x8E,0x3C,0xAE,0x44,0x0E,0x55,0x4D,0x5D,0x28,0x44,0x66,0x33,0x68,0x33,0x29,0x2B,0x2B,0x23,0x6B,0x23,0x6A,0x1B,0xAA,0x1B, +0x6B,0x23,0x6B,0x23,0x6B,0x23,0x6C,0x23,0x6C,0x23,0x6C,0x23,0x6C,0x23,0x6C,0x1B,0x6B,0x1B,0x8B,0x1B,0x8B,0x1B,0x8B,0x1B,0x8B,0x1B,0x8B,0x1B,0x6B,0x1B,0x4B,0x13,0x4A,0x23,0xE9,0x1A,0x67,0x12,0x28,0x33,0x67,0x3B,0x47,0x3B,0x48,0x3B,0x68,0x3B,0x67,0x3B,0xE6,0x2A,0xE3,0x09,0xE8,0x2A,0x69,0x3B,0x66,0x33,0x65,0x3B,0x86,0x43,0x25,0x12,0x24,0x12,0xA8,0x43,0x46,0x33,0x83,0x1A,0x88,0x3B,0x07,0x2B,0xC5,0x22,0xA4,0x22,0xE3,0x2A,0x28,0x54,0xA6,0x43,0x86,0x3B,0x4A,0x5C,0xC8,0x4B,0xE9,0x4B,0x86,0x3B,0x08,0x4C,0x28,0x54,0x07,0x4C,0x07,0x4C,0x08,0x4C,0x07,0x4C,0x07,0x4C,0x07,0x4C,0x07,0x4C,0x07,0x4C,0x07,0x4C,0x27,0x54,0x27,0x54,0x27,0x54,0x27,0x54, +0x08,0x54,0x07,0x54,0x26,0x54,0x25,0x54,0x45,0x4C,0x48,0x44,0x30,0x5D,0x94,0x5D,0x74,0x4D,0x73,0x4D,0x11,0x45,0xF1,0x44,0xF3,0x44,0xF2,0x4C,0x31,0x4D,0x8F,0x55,0x71,0x55,0xAF,0x3C,0x4E,0x34,0xF0,0x44,0xD0,0x44,0xD0,0x44,0xAE,0x3C,0xEF,0x44,0xAD,0x3C,0x6D,0x34,0x0C,0x2C,0xEC,0x23,0x0C,0x2C,0xEC,0x23,0x0B,0x24,0xAE,0x3C,0xAC,0x44,0x6C,0x3C,0xEE,0x44,0xCE,0x3C,0xEF,0x3C,0x92,0x4D,0xB3,0x55,0xB4,0x55,0xB3,0x4D,0x52,0x45,0xF1,0x3C,0x31,0x45,0xAF,0x3C,0x4D,0x2C,0xD0,0x44,0x8F,0x3C,0x10,0x45,0xCF,0x3C,0x2D,0x2C,0x0D,0x2C,0x6E,0x3C,0x8E,0x34,0x6E,0x2C,0xAE,0x2C,0xEF,0x34,0x30,0x3D,0x91,0x4D,0x92,0x4D,0x51,0x45,0x10,0x3D,0x11,0x35,0x31,0x35, +0x52,0x45,0x10,0x3D,0xCE,0x3C,0xED,0x3C,0x6A,0x34,0xAA,0x3C,0xAA,0x3C,0xAA,0x3C,0x8A,0x34,0x8A,0x3C,0x6A,0x3C,0x49,0x3C,0x49,0x34,0x6B,0x3C,0xE9,0x23,0x89,0x1B,0x8A,0x1B,0x6A,0x1B,0x6A,0x1B,0x8B,0x13,0x8B,0x0B,0x8B,0x1B,0xC7,0x12,0xE3,0x01,0x25,0x02,0xC9,0x12,0xC9,0x12,0xC8,0x1A,0x48,0x23,0xA8,0x23,0xA9,0x1B,0xAA,0x1B,0xAA,0x23,0x8A,0x23,0x8A,0x23,0xAA,0x23,0xA9,0x23,0xA9,0x23,0xA9,0x23,0x8A,0x23,0x09,0x1B,0xA8,0x12,0x6A,0x23,0xA9,0x1B,0xC8,0x1B,0xA9,0x1B,0x69,0x23,0xC9,0x12,0xA8,0x1A,0xA8,0x12,0xC8,0x12,0xC8,0x12,0xA8,0x1A,0xC9,0x1A,0xC8,0x12,0xC8,0x0A,0xE8,0x0A,0xC8,0x0A,0xC7,0x12,0xC7,0x12,0xC8,0x0A,0xC8,0x0A,0xC8,0x12,0xA8,0x1A, +0xA8,0x12,0xC8,0x12,0xC7,0x12,0xC7,0x12,0xA8,0x12,0x47,0x0A,0x06,0x02,0xE5,0x09,0xE5,0x11,0xE4,0x01,0xEA,0x23,0xB1,0x4D,0xA9,0x13,0x07,0x03,0x0E,0x45,0x4B,0x24,0x27,0x03,0x6C,0x24,0xAD,0x34,0x06,0x03,0x0A,0x1C,0xED,0x34,0xE6,0x02,0x2B,0x1C,0x70,0x4D,0x28,0x1B,0x86,0x1A,0x67,0x1A,0xA7,0x12,0xC7,0x0A,0xC7,0x12,0x87,0x1A,0xA7,0x0A,0xC7,0x0A,0xA7,0x0A,0xE8,0x12,0xA7,0x0A,0xA7,0x12,0x87,0x0A,0x87,0x0A,0x87,0x0A,0x86,0x0A,0x66,0x0A,0x66,0x0A,0x66,0x0A,0x66,0x0A,0x46,0x12,0x46,0x12,0x25,0x12,0x67,0x1A,0x05,0x02,0x6A,0x23,0x4C,0x34,0x27,0x0B,0x0B,0x34,0xC7,0x12,0xA7,0x1A,0xA7,0x1A,0xA6,0x1A,0xC6,0x1A,0xA7,0x12,0xA7,0x12,0xA7,0x12,0xC6,0x12, +0xC6,0x12,0xE6,0x12,0xC6,0x0A,0x0A,0x2C,0xAC,0x3C,0xAA,0x3C,0xAA,0x3C,0xA9,0x3C,0x89,0x34,0x89,0x3C,0xCA,0x44,0x2A,0x55,0x6A,0x5D,0x4A,0x5D,0x4A,0x5D,0x4B,0x5D,0xAA,0x5D,0xCB,0x65,0xCB,0x65,0x8A,0x5D,0x29,0x4D,0xC8,0x44,0xA9,0x3C,0xAA,0x3C,0x8A,0x34,0xAA,0x3C,0xAA,0x3C,0xA9,0x3C,0xA9,0x3C,0xA9,0x34,0xA9,0x34,0xA9,0x34,0xAB,0x34,0x6A,0x3C,0xE9,0x3B,0x88,0x3B,0x88,0x33,0xA8,0x33,0xA8,0x33,0xA7,0x33,0x87,0x3B,0x87,0x43,0x87,0x43,0xA8,0x33,0xC9,0x2B,0xEA,0x23,0xEB,0x1B,0xEC,0x13,0xAC,0x2B,0xAC,0x2B,0xAB,0x23,0xAB,0x23,0xAB,0x23,0xAB,0x23,0xAC,0x2B,0xAC,0x23,0xCD,0x23,0xCC,0x1B,0xED,0x1B,0xED,0x1B,0xCC,0x13,0xAD,0x1B,0xAE,0x2B,0x8E,0x2B, +0xEA,0x13,0xA9,0x13,0x48,0x13,0x27,0x1B,0x07,0x1B,0x07,0x1B,0x27,0x1B,0x88,0x1B,0xA9,0x23,0x27,0x1B,0x04,0x02,0x24,0x12,0x65,0x1A,0x24,0x0A,0xA6,0x1A,0xC6,0x1A,0xC6,0x02,0xE7,0x1A,0xC6,0x22,0xA5,0x22,0xE5,0x1A,0x87,0x2B,0xA7,0x33,0x87,0x43,0x46,0x43,0x67,0x43,0x87,0x3B,0x86,0x33,0x87,0x3B,0xA7,0x43,0x86,0x43,0x45,0x33,0xA8,0x3B,0x87,0x43,0x67,0x43,0xA7,0x3B,0xC7,0x33,0xC7,0x33,0x87,0x43,0x67,0x4B,0x88,0x4B,0xA7,0x3B,0xA7,0x3B,0x87,0x3B,0x66,0x3B,0x87,0x3B,0xC7,0x3B,0xA6,0x2B,0x86,0x3B,0x86,0x33,0x86,0x33,0xA6,0x3B,0x86,0x3B,0x45,0x3B,0x65,0x3B,0x86,0x3B,0x85,0x33,0xA6,0x2B,0x85,0x2B,0x85,0x2B,0x86,0x3B,0x66,0x3B,0x45,0x33,0x45,0x33, +0x86,0x33,0x66,0x33,0x66,0x3B,0x66,0x3B,0x87,0x3B,0x87,0x33,0x87,0x33,0x87,0x3B,0x87,0x3B,0xA7,0x3B,0xA7,0x33,0xC7,0x33,0xC6,0x33,0xE7,0x43,0x07,0x44,0x07,0x4C,0x28,0x4C,0x28,0x4C,0x28,0x44,0x28,0x44,0x49,0x4C,0x8A,0x54,0xAA,0x54,0x8A,0x54,0xAA,0x54,0xAA,0x54,0xCB,0x54,0xCB,0x5C,0xEB,0x5C,0xEB,0x5C,0x0B,0x5D,0x0B,0x5D,0x2B,0x65,0x2B,0x65,0x2B,0x65,0x4B,0x65,0x4C,0x65,0x4C,0x65,0x4C,0x65,0x6C,0x6D,0x4B,0x65,0x4B,0x65,0x2B,0x65,0x2B,0x5D,0x2B,0x5D,0x2B,0x5D,0x2B,0x5D,0x2B,0x5D,0x4B,0x65,0x0A,0x5D,0x2B,0x5D,0x2A,0x5D,0x29,0x5D,0x4A,0x5D,0x2B,0x5D,0x0B,0x55,0x2B,0x5D,0x2A,0x5D,0x49,0x5D,0x4A,0x5D,0x2B,0x5D,0x2C,0x5D,0x2B,0x5D,0x4A,0x5D, +0x2B,0x5D,0x4A,0x5D,0x49,0x5D,0x2A,0x5D,0x2C,0x5D,0x0D,0x5D,0x0C,0x5D,0x2B,0x5D,0x29,0x55,0x6B,0x5D,0x6D,0x5D,0xED,0x4C,0x4B,0x34,0xEB,0x2B,0x0D,0x2C,0x0E,0x2C,0xEF,0x23,0x0F,0x24,0x0F,0x24,0xEF,0x23,0xCF,0x1B,0xCE,0x23,0x0D,0x2C,0x2C,0x34,0x88,0x23,0x88,0x2B,0xAA,0x33,0x2A,0x2B,0x2B,0x23,0x2B,0x23,0x29,0x1B,0x68,0x1B,0x4A,0x23,0x4A,0x23,0x2A,0x23,0x2B,0x23,0x2B,0x23,0x2B,0x23,0x2B,0x1B,0x2A,0x1B,0x2A,0x1B,0x4A,0x23,0x4A,0x23,0x2A,0x1B,0x2A,0x1B,0x2A,0x1B,0x4B,0x1B,0x4B,0x1B,0x4B,0x23,0x0A,0x23,0x47,0x12,0x28,0x2B,0x47,0x3B,0x47,0x3B,0x48,0x43,0x48,0x3B,0x48,0x3B,0xA6,0x22,0x04,0x0A,0xA7,0x22,0x48,0x33,0x66,0x33,0x66,0x3B,0x66,0x3B, +0x27,0x1A,0x45,0x1A,0xA9,0x43,0xE8,0x4B,0x28,0x54,0x08,0x4C,0x28,0x4C,0x28,0x4C,0x49,0x54,0x07,0x4C,0xE7,0x43,0x08,0x4C,0x08,0x4C,0xC7,0x43,0x08,0x4C,0x07,0x4C,0x08,0x4C,0xE7,0x4B,0xE7,0x4B,0xE7,0x4B,0x08,0x4C,0xE7,0x4B,0xE7,0x4B,0x07,0x4C,0xE7,0x4B,0xE7,0x4B,0x07,0x4C,0x07,0x4C,0x07,0x4C,0x07,0x4C,0x07,0x4C,0x07,0x4C,0xE9,0x4B,0xE7,0x4B,0x26,0x54,0x05,0x54,0x26,0x4C,0x28,0x44,0x2F,0x5D,0x72,0x5D,0x93,0x55,0x52,0x4D,0x31,0x45,0x31,0x4D,0x31,0x4D,0x11,0x4D,0x51,0x4D,0x30,0x4D,0xF0,0x44,0xD0,0x3C,0x4E,0x2C,0xF0,0x44,0xCF,0x44,0xEF,0x44,0x30,0x4D,0x2F,0x4D,0x2F,0x4D,0x8D,0x34,0x6E,0x34,0x8F,0x3C,0x8E,0x3C,0x8E,0x3C,0xAD,0x3C,0xCD,0x44, +0xAC,0x44,0x0E,0x4D,0xCD,0x44,0x0F,0x45,0x50,0x4D,0xF0,0x3C,0xD0,0x3C,0xD0,0x3C,0xB0,0x34,0x90,0x34,0x4E,0x2C,0x0D,0x24,0x6E,0x34,0x4E,0x2C,0xEC,0x23,0x4E,0x2C,0x2E,0x2C,0x2D,0x2C,0x4E,0x34,0x8E,0x3C,0x8E,0x3C,0xAE,0x34,0xAE,0x34,0xAE,0x2C,0xCE,0x34,0xAF,0x34,0xF0,0x3C,0x11,0x45,0x31,0x45,0xF0,0x34,0x51,0x3D,0x71,0x3D,0xEF,0x34,0xAD,0x2C,0x6C,0x34,0xAC,0x44,0x6A,0x3C,0x6A,0x3C,0x8A,0x3C,0xAB,0x3C,0xAA,0x3C,0xAA,0x3C,0x6A,0x34,0x29,0x34,0x49,0x34,0x8B,0x3C,0xE9,0x2B,0x27,0x0B,0x49,0x13,0x49,0x1B,0x49,0x13,0x6B,0x13,0x6B,0x0B,0x8B,0x1B,0xA7,0x12,0xE3,0x01,0x25,0x0A,0xA9,0x12,0x89,0x12,0x88,0x12,0x28,0x23,0x68,0x23,0x89,0x1B,0x6A,0x13, +0x8A,0x1B,0x6A,0x1B,0x6A,0x23,0x6A,0x23,0x89,0x1B,0x89,0x1B,0x69,0x23,0x4A,0x23,0x0A,0x23,0x88,0x12,0x4A,0x23,0x68,0x1B,0x88,0x1B,0x89,0x1B,0x4A,0x23,0xC9,0x1A,0x88,0x12,0xA8,0x12,0xC7,0x0A,0xA7,0x0A,0x88,0x12,0x89,0x1A,0xA9,0x1A,0xE9,0x12,0xE9,0x12,0xE8,0x12,0xE8,0x12,0xE8,0x12,0xE8,0x12,0xE8,0x12,0xE8,0x12,0xE7,0x12,0xC8,0x1A,0xE7,0x12,0xE7,0x12,0xE8,0x12,0xE8,0x12,0xA8,0x12,0x68,0x0A,0x47,0x12,0x26,0x12,0x45,0x0A,0xCA,0x1B,0xEE,0x34,0x88,0x13,0x07,0x13,0x4C,0x3C,0xEB,0x23,0x48,0x03,0xEA,0x23,0x0B,0x2C,0x28,0x13,0xA9,0x1B,0x4C,0x34,0x07,0x03,0xEA,0x13,0xCD,0x34,0x48,0x13,0xE7,0x12,0xE8,0x1A,0x08,0x13,0xE7,0x0A,0xE7,0x12,0xC8,0x1A, +0xE7,0x0A,0xE8,0x12,0xC8,0x12,0xE8,0x1A,0xA7,0x12,0xC7,0x12,0xC8,0x12,0xE8,0x12,0xC7,0x12,0xA7,0x0A,0xA7,0x0A,0xA7,0x0A,0xA7,0x0A,0xA7,0x12,0xA7,0x12,0x87,0x12,0x86,0x12,0xA7,0x0A,0x87,0x02,0x8A,0x1B,0x28,0x1B,0x44,0x02,0x69,0x23,0x8B,0x2B,0xC8,0x1A,0xA7,0x1A,0xC6,0x12,0x07,0x13,0xE8,0x12,0xC8,0x12,0xE8,0x1A,0x07,0x13,0xE8,0x12,0xE8,0x12,0xE8,0x0A,0xAA,0x23,0x4B,0x34,0x49,0x2C,0xA9,0x3C,0xA9,0x3C,0x89,0x3C,0xCA,0x44,0x2A,0x55,0x8A,0x65,0x8A,0x6D,0x89,0x6D,0x69,0x6D,0x6A,0x65,0x69,0x65,0x68,0x65,0x68,0x65,0x89,0x65,0xA9,0x65,0x69,0x5D,0xE9,0x4C,0x88,0x3C,0xA9,0x3C,0xAA,0x3C,0xAA,0x3C,0xA9,0x3C,0xAA,0x3C,0xCB,0x3C,0xAC,0x3C,0x6B,0x2C, +0x2B,0x24,0x0B,0x2C,0xCA,0x33,0x8A,0x33,0xAA,0x33,0xA9,0x33,0xC8,0x2B,0x87,0x33,0x87,0x3B,0x67,0x43,0x67,0x3B,0x68,0x33,0x89,0x2B,0xAA,0x1B,0xAB,0x13,0xAC,0x13,0x8C,0x23,0x8B,0x23,0x8B,0x23,0x8B,0x23,0x8B,0x23,0x8B,0x23,0x8C,0x23,0x8C,0x23,0x8C,0x1B,0xAC,0x1B,0xAC,0x1B,0xAB,0x1B,0x8B,0x1B,0x8C,0x1B,0x8C,0x23,0x6C,0x1B,0xAB,0x1B,0x8A,0x1B,0x49,0x1B,0xC7,0x12,0xE7,0x1A,0x08,0x1B,0x28,0x1B,0xCA,0x2B,0x0B,0x2C,0x0B,0x34,0x85,0x02,0xE6,0x12,0x27,0x23,0x44,0x0A,0x68,0x33,0x06,0x23,0x65,0x02,0x44,0x0A,0xE3,0x09,0x24,0x12,0xE6,0x2A,0x88,0x3B,0x87,0x3B,0x67,0x3B,0x67,0x43,0x87,0x43,0x87,0x3B,0x86,0x3B,0x66,0x3B,0x66,0x3B,0x66,0x3B,0x66,0x3B, +0x66,0x33,0x66,0x33,0x66,0x33,0x46,0x33,0x46,0x33,0x46,0x33,0x46,0x3B,0x46,0x33,0x45,0x33,0x45,0x2B,0x66,0x2B,0x86,0x33,0x66,0x2B,0x66,0x2B,0x66,0x2B,0x86,0x2B,0xC6,0x33,0xA6,0x33,0x86,0x33,0xA6,0x3B,0xC6,0x3B,0xC6,0x3B,0xC7,0x3B,0x07,0x3C,0x27,0x3C,0x48,0x3C,0x48,0x3C,0x48,0x44,0x48,0x44,0x49,0x4C,0x69,0x54,0x8A,0x5C,0x89,0x4C,0xA9,0x4C,0xCA,0x54,0xCA,0x54,0xAA,0x54,0xCA,0x54,0xEA,0x54,0x0A,0x55,0x2B,0x55,0x2A,0x5D,0x0A,0x5D,0x4B,0x5D,0x4B,0x5D,0x4B,0x65,0x0B,0x5D,0x2C,0x6D,0x2C,0x65,0x4C,0x65,0x4C,0x65,0x4B,0x65,0x2A,0x5D,0x0A,0x5D,0x2B,0x5D,0x4C,0x5D,0x2C,0x5D,0x2C,0x5D,0x2B,0x5D,0x2B,0x5D,0x2A,0x5D,0x2A,0x5D,0x2A,0x5D,0x0A,0x5D, +0x2B,0x5D,0x2A,0x5D,0x2A,0x5D,0x0A,0x5D,0x0A,0x5D,0x0A,0x55,0x0A,0x55,0x0A,0x55,0x0A,0x5D,0x0A,0x5D,0x2A,0x5D,0x2A,0x5D,0x2A,0x5D,0x2B,0x5D,0x2B,0x5D,0x2B,0x5D,0x0A,0x55,0x2B,0x5D,0x2B,0x5D,0x2A,0x5D,0x29,0x5D,0x49,0x5D,0x4C,0x5D,0x0D,0x5D,0x2C,0x5D,0x2A,0x5D,0x49,0x5D,0x4A,0x5D,0x2B,0x5D,0x0C,0x5D,0x0B,0x5D,0x2A,0x5D,0x0C,0x5D,0x2B,0x5D,0x29,0x5D,0x29,0x5D,0x0A,0x5D,0x0C,0x5D,0x0C,0x5D,0x2B,0x5D,0x4B,0x5D,0xCB,0x4C,0x4B,0x34,0xCB,0x23,0xAB,0x1B,0xED,0x23,0x0E,0x24,0xAD,0x1B,0xCE,0x23,0xCE,0x23,0xEE,0x23,0xCE,0x1B,0xCE,0x1B,0xAE,0x1B,0xAD,0x23,0xCC,0x23,0xCB,0x23,0xCA,0x23,0xCB,0x2B,0x2A,0x1B,0x0B,0x1B,0x0B,0x1B,0x0A,0x1B,0x09,0x1B, +0x09,0x1B,0x09,0x1B,0x0A,0x1B,0x0A,0x1B,0x0A,0x1B,0x0A,0x1B,0x0A,0x1B,0x0A,0x1B,0x09,0x1B,0xE9,0x1A,0xE9,0x1A,0x0A,0x1B,0x2A,0x1B,0x0A,0x1B,0x0A,0x1B,0x0A,0x1B,0x2B,0x1B,0x0A,0x1B,0x87,0x12,0xC6,0x22,0x46,0x33,0x46,0x3B,0x47,0x3B,0x27,0x3B,0x48,0x3B,0x85,0x22,0x04,0x0A,0x65,0x1A,0x48,0x33,0x67,0x33,0x46,0x33,0x27,0x33,0xE7,0x11,0xC4,0x09,0x47,0x33,0xE7,0x4B,0xE5,0x4B,0xE5,0x43,0xE5,0x43,0xE6,0x43,0xC6,0x43,0xE6,0x43,0x07,0x4C,0xC7,0x43,0xC7,0x43,0xE7,0x4B,0xE6,0x4B,0xE5,0x4B,0xE6,0x43,0xE6,0x4B,0xE6,0x4B,0xE7,0x4B,0x07,0x4C,0xE7,0x4B,0xE7,0x4B,0xE7,0x4B,0xE7,0x4B,0xE7,0x4B,0xE8,0x4B,0xE8,0x4B,0xE8,0x4B,0xE8,0x4B,0xE8,0x4B,0xE8,0x4B, +0xE9,0x4B,0xE8,0x4B,0x06,0x4C,0xE6,0x4B,0x08,0x4C,0xE9,0x43,0x0F,0x5D,0x71,0x5D,0x92,0x55,0x52,0x4D,0x52,0x4D,0x71,0x55,0x2F,0x4D,0x30,0x4D,0x92,0x55,0x53,0x4D,0x32,0x4D,0xD1,0x3C,0x4E,0x2C,0x10,0x45,0xF0,0x44,0x0F,0x4D,0x0F,0x4D,0x4F,0x4D,0xAE,0x3C,0xAE,0x3C,0x8E,0x34,0x6E,0x34,0x8E,0x3C,0xCE,0x44,0xAC,0x3C,0xEC,0x44,0xED,0x44,0xED,0x44,0x0E,0x45,0x70,0x55,0x91,0x55,0xB2,0x55,0x72,0x55,0xF1,0x44,0xB0,0x3C,0x6F,0x34,0x90,0x3C,0xB0,0x3C,0x8F,0x34,0xAF,0x3C,0x8E,0x2C,0xCB,0x13,0xCD,0x1B,0xED,0x23,0xEC,0x23,0x0C,0x24,0x4C,0x2C,0x6C,0x2C,0x8D,0x2C,0xCE,0x34,0xAE,0x34,0x4D,0x2C,0x4E,0x2C,0x6F,0x34,0x31,0x45,0x31,0x3D,0x51,0x3D,0xEF,0x24, +0xAD,0x2C,0x6B,0x2C,0x8B,0x3C,0x4A,0x3C,0x8B,0x44,0x6A,0x44,0x8B,0x44,0x4A,0x34,0x6A,0x34,0x6A,0x34,0x6A,0x34,0x6A,0x3C,0x29,0x34,0x8B,0x44,0x6B,0x3C,0x0A,0x2C,0x48,0x1B,0x28,0x1B,0x29,0x1B,0x4A,0x13,0x4A,0x0B,0x6B,0x1B,0xA7,0x1A,0xE4,0x09,0x05,0x0A,0x89,0x12,0x69,0x12,0x68,0x12,0x08,0x23,0x49,0x23,0x6A,0x1B,0x6B,0x1B,0x4A,0x1B,0x4A,0x1B,0x4A,0x1B,0x4A,0x1B,0x49,0x1B,0x68,0x1B,0x49,0x1B,0x2A,0x23,0xE9,0x22,0x47,0x12,0x29,0x23,0x68,0x23,0x67,0x1B,0x48,0x1B,0x29,0x23,0x68,0x12,0x87,0x12,0xC7,0x0A,0xE7,0x0A,0xC7,0x0A,0x67,0x12,0x68,0x1A,0xA9,0x22,0x09,0x1B,0x29,0x1B,0x29,0x1B,0x28,0x1B,0x28,0x23,0x29,0x1B,0x29,0x1B,0x28,0x1B,0x48,0x1B, +0x28,0x23,0x28,0x1B,0x28,0x1B,0x49,0x1B,0x2A,0x1B,0x2B,0x1B,0x0A,0x1B,0xEA,0x2A,0x0A,0x2B,0x29,0x23,0x48,0x0B,0x68,0x0B,0x68,0x13,0x28,0x1B,0x28,0x1B,0x49,0x1B,0x68,0x0B,0x68,0x13,0x28,0x1B,0x28,0x23,0x08,0x1B,0x28,0x1B,0x48,0x1B,0x68,0x13,0x68,0x0B,0x48,0x0B,0x49,0x1B,0x69,0x1B,0x68,0x0B,0x89,0x0B,0x89,0x0B,0x49,0x13,0x49,0x1B,0x29,0x1B,0x09,0x23,0x09,0x23,0x29,0x23,0x09,0x1B,0x29,0x1B,0x29,0x1B,0x49,0x1B,0x49,0x1B,0x29,0x13,0x49,0x1B,0x49,0x1B,0x49,0x1B,0x29,0x23,0x29,0x1B,0x48,0x1B,0x49,0x13,0x4A,0x0B,0x6A,0x1B,0x2C,0x3C,0xA5,0x0A,0x08,0x13,0x4A,0x2B,0xC9,0x22,0x87,0x12,0xE6,0x0A,0x27,0x0B,0x08,0x13,0xC8,0x12,0xE8,0x1A,0x28,0x1B, +0x0A,0x1B,0x2A,0x1B,0x2A,0x1B,0x29,0x13,0x68,0x1B,0x26,0x13,0x48,0x34,0xCA,0x44,0xCA,0x44,0x0A,0x55,0x2A,0x5D,0x29,0x5D,0x07,0x5D,0x07,0x65,0x27,0x65,0x07,0x65,0x28,0x6D,0x27,0x65,0x27,0x65,0x27,0x65,0x27,0x65,0x28,0x5D,0x29,0x5D,0x2A,0x55,0xCA,0x44,0x8A,0x44,0x8A,0x3C,0xAB,0x44,0x8C,0x3C,0x2B,0x34,0x2C,0x2C,0x4D,0x34,0x6D,0x24,0x4D,0x2C,0x2D,0x34,0x0D,0x3C,0x0C,0x3C,0x2C,0x3C,0x2B,0x34,0xE9,0x3B,0x68,0x3B,0x47,0x43,0x27,0x43,0x28,0x3B,0x29,0x2B,0x4A,0x23,0x4B,0x1B,0x4B,0x1B,0x6C,0x13,0x6C,0x13,0x6B,0x13,0x6B,0x13,0x6C,0x13,0x6C,0x13,0x6C,0x13,0x6C,0x13,0x6C,0x1B,0x4B,0x1B,0x2A,0x1B,0x2A,0x23,0x4A,0x23,0x6A,0x1B,0x8A,0x13,0x8B,0x13, +0x2B,0x1B,0x4B,0x23,0x0A,0x1B,0x67,0x0A,0x87,0x0A,0xE8,0x1A,0x08,0x13,0xA9,0x23,0x88,0x1B,0xA9,0x1B,0x68,0x13,0x48,0x13,0xE6,0x0A,0x48,0x23,0x07,0x23,0x48,0x33,0x49,0x3B,0x48,0x33,0x07,0x23,0x27,0x2B,0x27,0x3B,0x27,0x43,0x06,0x43,0x46,0x3B,0x46,0x33,0x46,0x3B,0x26,0x3B,0x26,0x3B,0x46,0x3B,0x66,0x3B,0x66,0x3B,0x87,0x43,0x86,0x43,0xE7,0x3B,0x28,0x3C,0x08,0x44,0xA7,0x53,0xC8,0x5B,0x28,0x54,0x69,0x4C,0x69,0x4C,0x69,0x5C,0x69,0x5C,0x89,0x54,0xCA,0x54,0xEA,0x54,0xCA,0x5C,0xAA,0x64,0xEB,0x54,0xEB,0x5C,0xEB,0x64,0xCB,0x64,0xEB,0x64,0x0B,0x5D,0x0B,0x5D,0x0B,0x5D,0x0B,0x65,0xEB,0x64,0x0B,0x5D,0x2B,0x5D,0x2B,0x5D,0x0B,0x5D,0x0B,0x5D,0xEB,0x64, +0x0A,0x65,0x2A,0x5D,0x4A,0x55,0x2A,0x55,0x2A,0x5D,0x09,0x65,0x29,0x5D,0x29,0x55,0x28,0x4D,0x69,0x55,0x29,0x5D,0x09,0x5D,0xE9,0x54,0x2A,0x5D,0xEA,0x54,0x0B,0x5D,0xEB,0x5C,0xEB,0x54,0x0A,0x5D,0x09,0x55,0x29,0x55,0x29,0x55,0x2A,0x55,0x2A,0x55,0x0A,0x55,0x2B,0x55,0x2A,0x55,0x2A,0x55,0x29,0x5D,0x29,0x5D,0x29,0x5D,0x29,0x5D,0x0A,0x55,0x2A,0x55,0x2A,0x55,0x2A,0x5D,0x2A,0x5D,0x2A,0x5D,0x2A,0x5D,0x2A,0x5D,0x0A,0x55,0x0A,0x55,0x2A,0x55,0x2A,0x55,0x2A,0x55,0x0A,0x55,0x0A,0x55,0x09,0x55,0x0B,0x55,0xEB,0x54,0xEB,0x54,0x0A,0x55,0x29,0x55,0x29,0x55,0xEA,0x54,0x0D,0x55,0xEC,0x54,0xEA,0x54,0x08,0x55,0x08,0x55,0xEA,0x54,0xEB,0x54,0xEB,0x5C,0x0A,0x5D, +0xEE,0x5C,0xEC,0x5C,0x09,0x5D,0x28,0x5D,0x09,0x5D,0x0A,0x5D,0x0A,0x5D,0x0A,0x5D,0xEA,0x4C,0xC9,0x2B,0x6A,0x1B,0x8D,0x23,0x8D,0x1B,0x6C,0x13,0xAC,0x13,0xCD,0x13,0x8B,0x1B,0x8A,0x1B,0x8A,0x13,0xAA,0x1B,0xCC,0x1B,0xED,0x23,0xEE,0x23,0xED,0x23,0xCC,0x1B,0xCB,0x23,0xEC,0x2B,0x2A,0x13,0xCA,0x0A,0xCB,0x0A,0xEB,0x12,0xAA,0x0A,0xE9,0x12,0xE9,0x12,0xE9,0x12,0xE9,0x12,0xE9,0x12,0xE9,0x12,0xE9,0x12,0xE9,0x12,0xE9,0x12,0xE9,0x12,0xE9,0x12,0xE9,0x12,0xE9,0x12,0xEA,0x12,0xE9,0x12,0xC9,0x12,0xC9,0x12,0xE9,0x12,0xC7,0x1A,0xA4,0x1A,0x45,0x33,0x25,0x3B,0x26,0x3B,0x07,0x3B,0x27,0x3B,0x85,0x22,0xC3,0x09,0x24,0x12,0x48,0x33,0x26,0x33,0x27,0x33,0x07,0x33, +0x63,0x1A,0x02,0x12,0x01,0x12,0xC4,0x2A,0x87,0x43,0xE8,0x4B,0xC7,0x4B,0x86,0x43,0xC7,0x4B,0xC7,0x43,0xC7,0x43,0xC7,0x43,0xC7,0x43,0xE7,0x43,0xE7,0x43,0xE7,0x43,0xC7,0x43,0xC7,0x43,0xC7,0x43,0xE7,0x4B,0xE7,0x4B,0xE7,0x4B,0xE7,0x4B,0xE7,0x4B,0xE7,0x4B,0xE7,0x4B,0xE7,0x4B,0xE7,0x4B,0xE7,0x4B,0xE7,0x4B,0xE7,0x4B,0xE7,0x4B,0xE8,0x43,0xC7,0x43,0x07,0x4C,0xE6,0x4B,0x27,0x44,0x08,0x3C,0x2F,0x55,0x72,0x55,0x73,0x4D,0x73,0x4D,0x51,0x4D,0x91,0x55,0x70,0x55,0x4F,0x4D,0xB1,0x55,0x91,0x55,0x71,0x4D,0xEF,0x3C,0x8E,0x34,0x10,0x45,0x30,0x45,0x50,0x4D,0x30,0x4D,0x71,0x4D,0xEF,0x44,0xCE,0x3C,0xAD,0x3C,0xAD,0x3C,0xAD,0x3C,0xCD,0x3C,0xEE,0x44,0x0E,0x45, +0xED,0x44,0x0D,0x4D,0xEE,0x44,0x50,0x4D,0x92,0x55,0x72,0x55,0x73,0x4D,0xD1,0x3C,0xD1,0x34,0xD1,0x3C,0xD1,0x3C,0xD1,0x3C,0xD1,0x3C,0xD1,0x44,0xB0,0x3C,0x4F,0x34,0xAF,0x2C,0xAF,0x2C,0xAF,0x34,0x8F,0x2C,0x8E,0x2C,0x6E,0x2C,0x4D,0x2C,0x2D,0x24,0xEC,0x1B,0xCB,0x1B,0xEC,0x1B,0xEB,0x1B,0x6C,0x24,0xCE,0x34,0x8D,0x24,0x8C,0x24,0x8E,0x2C,0x6D,0x34,0x6C,0x34,0x8B,0x3C,0x8B,0x3C,0x8A,0x3C,0x89,0x34,0x89,0x34,0x8A,0x34,0x6A,0x3C,0x29,0x3C,0x09,0x44,0x28,0x4C,0x47,0x54,0x67,0x54,0x67,0x5C,0x2A,0x5C,0xE9,0x4B,0x87,0x2B,0x26,0x13,0x26,0x13,0x27,0x1B,0x66,0x12,0xA4,0x09,0xC5,0x11,0x47,0x22,0x67,0x1A,0x87,0x0A,0x09,0x13,0x4A,0x1B,0x29,0x1B,0x09,0x23, +0x49,0x1B,0x29,0x1B,0x08,0x23,0x09,0x23,0x29,0x23,0x29,0x23,0x09,0x1B,0xE8,0x1A,0xE8,0x22,0x46,0x12,0xE8,0x1A,0x29,0x23,0x29,0x1B,0x29,0x1B,0x29,0x1B,0xA8,0x12,0x68,0x12,0x88,0x12,0x87,0x12,0x87,0x12,0x66,0x12,0xA7,0x1A,0x87,0x12,0xE9,0x1A,0xE9,0x1A,0x0A,0x1B,0xEA,0x12,0x0A,0x1B,0x0A,0x1B,0xE9,0x12,0x09,0x1B,0x08,0x1B,0x29,0x1B,0x28,0x13,0x27,0x13,0x27,0x13,0x27,0x13,0x08,0x13,0x09,0x13,0x0A,0x13,0x0A,0x13,0x09,0x13,0x09,0x13,0x28,0x13,0x28,0x13,0x28,0x13,0x09,0x13,0x09,0x13,0x08,0x1B,0x08,0x1B,0x08,0x1B,0x28,0x13,0x28,0x13,0x28,0x13,0x29,0x13,0x29,0x13,0x09,0x13,0x09,0x13,0x09,0x13,0x09,0x13,0x29,0x13,0x29,0x13,0x28,0x0B,0x28,0x0B, +0x08,0x13,0x08,0x13,0x09,0x13,0x09,0x13,0x09,0x13,0x09,0x1B,0x09,0x1B,0x09,0x1B,0x09,0x1B,0x09,0x1B,0x09,0x1B,0x09,0x1B,0x09,0x1B,0x09,0x1B,0x09,0x1B,0x09,0x1B,0x28,0x1B,0x08,0x13,0x08,0x13,0x69,0x1B,0x4C,0x34,0x48,0x13,0x07,0x0B,0x48,0x13,0xE7,0x0A,0xE7,0x0A,0x28,0x1B,0xC7,0x12,0xE8,0x1A,0x86,0x12,0xE8,0x1A,0x08,0x1B,0x4B,0x03,0x29,0x03,0x29,0x0B,0x29,0x13,0x09,0x13,0x27,0x1B,0x49,0x34,0xE8,0x44,0xE7,0x4C,0x09,0x5D,0xC9,0x5C,0xA9,0x5C,0xC9,0x5C,0xC9,0x5C,0xEA,0x54,0xEB,0x54,0xE8,0x5C,0xC8,0x54,0xC8,0x54,0xC8,0x5C,0xE8,0x5C,0xC8,0x5C,0xC8,0x5C,0xE9,0x5C,0xCA,0x54,0xAC,0x54,0x4C,0x44,0xCC,0x33,0x8B,0x2B,0xAB,0x2B,0xEB,0x33,0xEA,0x33, +0xCB,0x2B,0x2B,0x34,0x2A,0x2C,0x09,0x24,0x0A,0x24,0x0D,0x24,0xEE,0x23,0xEE,0x23,0xCC,0x23,0xAA,0x23,0x89,0x23,0x69,0x2B,0x29,0x1B,0x2B,0x23,0xEC,0x1A,0x0D,0x1B,0x0A,0x1B,0x0A,0x1B,0x0A,0x1B,0x0B,0x1B,0x0B,0x1B,0x0B,0x1B,0x0B,0x1B,0x0B,0x1B,0x2B,0x1B,0x2B,0x1B,0x0A,0x13,0x6B,0x1B,0x2A,0x13,0x0A,0x13,0x4B,0x1B,0x0A,0x13,0x2A,0x13,0x2B,0x1B,0xCB,0x1A,0xAA,0x1A,0x25,0x12,0x85,0x22,0xA6,0x22,0x88,0x22,0xA8,0x1A,0x86,0x12,0x07,0x1B,0xE7,0x1A,0x28,0x23,0x27,0x23,0xA6,0x2B,0xC4,0x33,0xE9,0x33,0xE8,0x33,0x09,0x3C,0x09,0x3C,0x28,0x3C,0x49,0x44,0x49,0x44,0x69,0x44,0x89,0x4C,0xCA,0x54,0xCA,0x54,0xCA,0x4C,0xEA,0x54,0x0B,0x55,0x0B,0x55,0x0B,0x55, +0x0B,0x55,0x0B,0x55,0x2B,0x55,0x0A,0x55,0x0A,0x55,0x2A,0x55,0x0B,0x55,0x0B,0x55,0x0B,0x4D,0xEB,0x4C,0x0B,0x55,0x0C,0x55,0x0B,0x4D,0x0B,0x4D,0x2B,0x55,0x0A,0x4D,0x2A,0x55,0x09,0x55,0x0A,0x55,0x0A,0x55,0x0A,0x55,0x0A,0x55,0x0A,0x4D,0xEA,0x54,0xEA,0x54,0xEA,0x54,0xEA,0x54,0xEA,0x54,0xEA,0x54,0xEA,0x5C,0xEA,0x5C,0xCA,0x5C,0x29,0x4D,0x0A,0x55,0xEA,0x5C,0xEA,0x5C,0x0B,0x5D,0x0C,0x5D,0x0C,0x55,0x0C,0x55,0xEC,0x4C,0x2D,0x55,0x0D,0x55,0xAC,0x5C,0x8C,0x64,0xCC,0x64,0xCB,0x54,0xEB,0x44,0xCC,0x4C,0xAB,0x54,0x8B,0x54,0x4B,0x5C,0x2A,0x5C,0x2A,0x5C,0x2A,0x54,0x2A,0x4C,0x09,0x4C,0x09,0x44,0x09,0x44,0xE9,0x43,0xC9,0x43,0xC8,0x43,0xA8,0x43,0xA8,0x43, +0x88,0x43,0x88,0x43,0x68,0x3B,0x67,0x3B,0x67,0x3B,0x47,0x3B,0x47,0x3B,0x47,0x3B,0x47,0x33,0x47,0x33,0x47,0x3B,0x47,0x3B,0x47,0x3B,0x47,0x3B,0x47,0x3B,0x47,0x3B,0x47,0x3B,0x47,0x3B,0x47,0x3B,0x47,0x3B,0x47,0x3B,0x47,0x3B,0x47,0x3B,0x47,0x3B,0x67,0x3B,0x67,0x3B,0x67,0x3B,0x67,0x3B,0x67,0x3B,0x67,0x3B,0x67,0x3B,0x67,0x3B,0x66,0x43,0x87,0x43,0x87,0x3B,0xA9,0x33,0xCA,0x2B,0x0C,0x2C,0x4E,0x34,0x2E,0x24,0x2F,0x24,0x0F,0x24,0x0F,0x24,0x2F,0x2C,0x0F,0x2C,0x8C,0x1B,0x2B,0x13,0x4B,0x1B,0x4B,0x1B,0x2B,0x13,0x6C,0x1B,0xEE,0x23,0x2F,0x2C,0x4F,0x2C,0x4E,0x24,0x6E,0x24,0x4E,0x24,0x4E,0x24,0x2F,0x24,0x2F,0x24,0x0E,0x24,0xAC,0x1B,0x49,0x0B,0x69,0x0B, +0x48,0x13,0xC6,0x02,0xE7,0x0A,0xE7,0x12,0xA8,0x1A,0x88,0x1A,0x69,0x1A,0x89,0x1A,0x88,0x12,0xC9,0x1A,0xA8,0x12,0xA9,0x0A,0xCA,0x12,0xAA,0x12,0xA9,0x0A,0xC9,0x12,0xC9,0x12,0xA9,0x12,0x46,0x0A,0x25,0x12,0x08,0x33,0x07,0x3B,0x07,0x3B,0xE8,0x3A,0xC7,0x2A,0x05,0x12,0xA4,0x01,0xE5,0x09,0xA7,0x22,0x08,0x2B,0x07,0x33,0x07,0x33,0xC9,0x4B,0xC8,0x4B,0xC8,0x4B,0xC8,0x4B,0xA7,0x43,0x87,0x43,0xA7,0x43,0xC7,0x4B,0xA7,0x43,0xA7,0x43,0xC7,0x43,0xC7,0x43,0xC7,0x43,0xC7,0x43,0xC7,0x43,0xC7,0x43,0xC7,0x43,0xC7,0x43,0xC7,0x43,0xC7,0x43,0xC7,0x43,0xC7,0x43,0xC7,0x43,0xC7,0x43,0xC7,0x43,0xC7,0x43,0xC7,0x43,0xC7,0x43,0xC7,0x43,0xC7,0x43,0xC7,0x43,0xC7,0x43, +0xE8,0x4B,0xC7,0x4B,0xC7,0x4B,0xC6,0x4B,0xE7,0x4B,0xE8,0x3B,0x0F,0x5D,0x72,0x5D,0x53,0x4D,0x94,0x5D,0x72,0x55,0x71,0x55,0x71,0x55,0x71,0x5D,0xD2,0x5D,0x72,0x55,0x51,0x4D,0x10,0x45,0x8E,0x34,0x30,0x4D,0x10,0x4D,0x51,0x55,0x50,0x55,0x71,0x55,0x0F,0x45,0xEF,0x44,0xCE,0x44,0xCE,0x44,0xCE,0x44,0xCE,0x44,0xEE,0x44,0x0F,0x4D,0x0E,0x4D,0xED,0x44,0x6C,0x34,0xEF,0x44,0x72,0x55,0x52,0x4D,0x53,0x4D,0xF1,0x3C,0xF1,0x3C,0xF1,0x3C,0xD1,0x3C,0xF1,0x3C,0xF1,0x3C,0xD0,0x3C,0xB0,0x3C,0x4E,0x2C,0xAF,0x34,0x8F,0x34,0x8F,0x34,0xAF,0x3C,0xCF,0x3C,0xD0,0x44,0x8E,0x3C,0x4D,0x34,0x2D,0x2C,0x2D,0x2C,0x6E,0x34,0x4D,0x2C,0x4C,0x2C,0x8D,0x2C,0x4C,0x2C,0xAD,0x2C, +0xAE,0x34,0x8D,0x34,0x8C,0x34,0x8C,0x3C,0x8B,0x3C,0x8A,0x3C,0x8A,0x34,0x69,0x34,0x69,0x34,0x49,0x3C,0x49,0x44,0x29,0x4C,0x48,0x54,0x48,0x54,0x47,0x54,0x46,0x54,0x07,0x5C,0x48,0x5C,0x89,0x5C,0x49,0x4C,0xE9,0x3B,0x68,0x2B,0xA7,0x1A,0x05,0x0A,0x05,0x0A,0x68,0x1A,0x88,0x1A,0x88,0x12,0xA8,0x12,0xE9,0x1A,0x09,0x23,0x09,0x23,0xE8,0x1A,0xE9,0x22,0xE9,0x2A,0xE9,0x22,0xE9,0x22,0xE9,0x1A,0x29,0x1B,0x29,0x23,0xA7,0x1A,0x66,0x12,0xE8,0x22,0x08,0x23,0x09,0x1B,0xE9,0x1A,0xC9,0x22,0x48,0x12,0x67,0x12,0x67,0x12,0x46,0x12,0x66,0x12,0x46,0x12,0x66,0x12,0x66,0x12,0xE9,0x1A,0x09,0x1B,0x09,0x13,0xE9,0x12,0xA8,0x0A,0xE9,0x12,0x29,0x1B,0xE8,0x12,0x08,0x1B, +0xE7,0x12,0x08,0x13,0x08,0x13,0x08,0x13,0x08,0x13,0x08,0x13,0x09,0x13,0xE9,0x12,0xE9,0x12,0xE9,0x12,0xE8,0x12,0xE8,0x12,0xE8,0x12,0xE8,0x12,0xE9,0x12,0xE9,0x12,0xE8,0x1A,0x08,0x13,0x08,0x13,0x08,0x13,0x08,0x13,0x08,0x13,0x09,0x13,0x09,0x13,0x09,0x13,0x09,0x13,0xE8,0x12,0xE8,0x12,0x08,0x13,0x08,0x13,0x08,0x13,0x08,0x13,0xE8,0x12,0xE8,0x12,0xE8,0x12,0xE8,0x12,0xE8,0x12,0xE8,0x12,0x08,0x13,0x08,0x13,0x08,0x13,0x08,0x13,0x08,0x13,0xE8,0x12,0xE8,0x12,0xE8,0x12,0xE8,0x12,0xE8,0x12,0x08,0x13,0x08,0x1B,0xE7,0x12,0x28,0x13,0x0C,0x34,0x69,0x1B,0x07,0x0B,0x48,0x13,0xC6,0x0A,0xA7,0x0A,0x49,0x23,0xC7,0x12,0xC7,0x12,0xA7,0x12,0xA7,0x12,0xE8,0x1A, +0x2A,0x0B,0x29,0x13,0x08,0x13,0x08,0x13,0xE8,0x12,0x07,0x1B,0x49,0x3C,0xC9,0x4C,0xC7,0x4C,0x88,0x4C,0x88,0x54,0x88,0x54,0x67,0x54,0x87,0x54,0xA8,0x4C,0x89,0x4C,0xA8,0x54,0xA8,0x54,0xA8,0x54,0xA9,0x5C,0x88,0x54,0x87,0x54,0x88,0x54,0x88,0x54,0x89,0x4C,0x29,0x44,0x88,0x2B,0x47,0x23,0xEA,0x33,0xAC,0x4C,0x0D,0x55,0x2D,0x5D,0x2C,0x55,0x6D,0x5D,0x8C,0x5D,0x4B,0x55,0xCA,0x44,0xEA,0x2B,0x8B,0x1B,0x8D,0x1B,0xCE,0x2B,0x4C,0x1B,0x8C,0x23,0xCD,0x2B,0xE9,0x12,0xC9,0x12,0x09,0x1B,0xE8,0x12,0x09,0x1B,0x09,0x1B,0x0A,0x1B,0x0A,0x1B,0xEA,0x1A,0xCA,0x1A,0xCA,0x1A,0xEA,0x1A,0xEA,0x12,0x0A,0x1B,0x0A,0x1B,0x0A,0x13,0xE9,0x12,0xEA,0x12,0xEA,0x12,0x2B,0x1B, +0xE9,0x1A,0xEA,0x1A,0x0B,0x1B,0xE9,0x12,0x07,0x13,0xA8,0x2B,0xC9,0x33,0x45,0x02,0x66,0x02,0x49,0x2B,0x6C,0x4C,0xE6,0x1A,0xC7,0x12,0x0B,0x3C,0x2C,0x5D,0x09,0x55,0xEB,0x54,0xEB,0x54,0x0B,0x5D,0x0B,0x5D,0x0A,0x5D,0xEA,0x5C,0x0A,0x5D,0x0A,0x5D,0x0A,0x5D,0xE9,0x54,0xC9,0x54,0xEA,0x54,0x0A,0x55,0xEA,0x4C,0xEA,0x4C,0x0B,0x55,0xC9,0x4C,0xE9,0x4C,0x0A,0x55,0xEA,0x54,0xEA,0x4C,0xEA,0x4C,0xEA,0x4C,0x0A,0x55,0x0B,0x55,0xEA,0x4C,0xCA,0x4C,0xEA,0x4C,0xEA,0x4C,0xCA,0x4C,0xCA,0x4C,0xEA,0x4C,0xC9,0x4C,0xC9,0x4C,0xC9,0x4C,0xCA,0x4C,0xEA,0x54,0xEB,0x54,0xEB,0x54,0xEB,0x54,0x0B,0x5D,0xEC,0x5C,0xEB,0x5C,0xEB,0x5C,0xEB,0x5C,0xEB,0x5C,0xCB,0x5C,0xCB,0x5C, +0xA9,0x54,0x89,0x54,0x49,0x54,0x29,0x54,0x09,0x4C,0x09,0x44,0xE9,0x3B,0xE9,0x3B,0xC9,0x33,0x47,0x1B,0x67,0x23,0x88,0x3B,0x47,0x3B,0x06,0x2B,0x25,0x23,0x45,0x13,0x05,0x1B,0x05,0x1B,0xE5,0x22,0xC5,0x2A,0xC5,0x2A,0xA5,0x2A,0xC5,0x2A,0xE5,0x22,0xE5,0x22,0xE5,0x22,0xE5,0x22,0xE5,0x22,0xC5,0x22,0xE5,0x2A,0xE5,0x22,0xE5,0x22,0xE6,0x2A,0xE6,0x2A,0xE6,0x2A,0xE6,0x2A,0xE6,0x2A,0x06,0x2B,0x06,0x33,0x06,0x33,0x06,0x33,0x06,0x33,0x06,0x33,0x06,0x33,0x26,0x33,0x26,0x33,0x26,0x33,0x26,0x33,0x47,0x33,0x47,0x33,0x47,0x33,0x47,0x33,0x47,0x3B,0x47,0x3B,0x46,0x3B,0x46,0x3B,0x46,0x3B,0x46,0x3B,0x46,0x3B,0x47,0x3B,0x47,0x3B,0x47,0x3B,0x67,0x3B,0x67,0x3B, +0x66,0x3B,0x67,0x3B,0x67,0x33,0x89,0x33,0xAA,0x2B,0xAC,0x23,0xED,0x2B,0xED,0x23,0xEE,0x1B,0xEE,0x23,0xEE,0x23,0xCD,0x23,0xEE,0x23,0xCD,0x23,0x6C,0x1B,0x2B,0x13,0x2A,0x1B,0x6C,0x1B,0xAD,0x23,0xCE,0x23,0xCE,0x23,0xED,0x23,0xED,0x1B,0xEC,0x1B,0xEC,0x1B,0xED,0x1B,0xEE,0x1B,0xCE,0x23,0xEE,0x23,0xED,0x23,0xCC,0x23,0xEB,0x23,0xCB,0x23,0x69,0x1B,0xA6,0x0A,0x86,0x0A,0x88,0x12,0x89,0x1A,0x89,0x1A,0x68,0x1A,0xA8,0x1A,0x67,0x12,0xA8,0x12,0xA9,0x0A,0x89,0x0A,0x89,0x0A,0xC9,0x12,0xC9,0x12,0x88,0x0A,0x88,0x0A,0xE5,0x01,0xE3,0x01,0x24,0x12,0xA5,0x2A,0xC6,0x32,0xC6,0x32,0x24,0x1A,0x66,0x22,0x86,0x1A,0x45,0x12,0x65,0x1A,0xC6,0x2A,0x27,0x33,0x26,0x33, +0x87,0x3B,0x88,0x43,0x88,0x43,0x87,0x43,0x87,0x43,0x87,0x43,0xA7,0x43,0xA7,0x43,0xA7,0x43,0xA7,0x43,0xA7,0x43,0xA7,0x43,0xA7,0x43,0xA7,0x43,0xA7,0x43,0xC6,0x43,0xA7,0x43,0xA7,0x43,0xA7,0x43,0xA7,0x43,0xA7,0x43,0xA7,0x43,0xA7,0x43,0xA7,0x43,0xC7,0x43,0xC7,0x43,0xC7,0x43,0xC7,0x43,0xC7,0x43,0xC7,0x43,0xC7,0x43,0xC7,0x43,0xA8,0x4B,0xA7,0x4B,0xC6,0x4B,0xC6,0x4B,0xC6,0x43,0xC8,0x3B,0x0F,0x5D,0x52,0x55,0x32,0x4D,0xB4,0x5D,0x93,0x5D,0x92,0x5D,0x92,0x5D,0x92,0x5D,0xB3,0x55,0x52,0x4D,0x51,0x55,0x30,0x4D,0x8E,0x3C,0x51,0x55,0x31,0x55,0x71,0x5D,0x10,0x4D,0xAE,0x44,0xEF,0x44,0xCE,0x44,0xCE,0x44,0xCE,0x44,0xEE,0x44,0xEF,0x4C,0x0F,0x4D,0xEF,0x4C, +0x0E,0x4D,0xCD,0x44,0x4C,0x34,0xEF,0x44,0x72,0x55,0x72,0x4D,0x73,0x4D,0x32,0x3D,0x11,0x3D,0x11,0x3D,0xF0,0x34,0x11,0x3D,0x10,0x3D,0xF0,0x3C,0xCF,0x34,0x8E,0x2C,0xAF,0x3C,0x8F,0x3C,0xAF,0x3C,0xAF,0x3C,0xCF,0x3C,0xAE,0x3C,0x4D,0x34,0x2D,0x2C,0x4D,0x34,0x2D,0x34,0x4D,0x34,0x4C,0x34,0x8D,0x34,0xAD,0x3C,0x8C,0x34,0xAD,0x3C,0xCD,0x34,0xAD,0x34,0x8C,0x34,0x6B,0x3C,0x6B,0x3C,0x4A,0x3C,0x6A,0x3C,0x49,0x34,0x49,0x3C,0x49,0x3C,0x48,0x44,0x48,0x4C,0x48,0x54,0x48,0x54,0x47,0x54,0x27,0x4C,0x45,0x54,0x25,0x54,0x26,0x4C,0x28,0x4C,0x6A,0x54,0x6B,0x54,0x0B,0x44,0xAA,0x33,0xE8,0x1A,0x46,0x0A,0x05,0x02,0x46,0x0A,0x88,0x1A,0xA8,0x1A,0x88,0x1A,0x88,0x12, +0x89,0x1A,0x69,0x1A,0x69,0x22,0x88,0x1A,0x88,0x1A,0xA8,0x12,0xA7,0x12,0xA7,0x12,0x87,0x12,0x66,0x12,0xA7,0x1A,0x87,0x1A,0xA8,0x1A,0xA8,0x1A,0x68,0x1A,0x28,0x1A,0x46,0x12,0x67,0x12,0x46,0x12,0x66,0x12,0x46,0x12,0x46,0x12,0x67,0x12,0xC8,0x1A,0xA8,0x12,0xC8,0x12,0xE9,0x12,0xE9,0x12,0xE8,0x12,0xE8,0x12,0xE8,0x12,0xA7,0x12,0xC8,0x12,0xE8,0x12,0xC8,0x12,0xA8,0x0A,0xE9,0x12,0xC8,0x12,0xC8,0x12,0xE8,0x12,0xE8,0x12,0xC8,0x12,0xC8,0x12,0xC9,0x12,0xC9,0x12,0xC9,0x12,0xC8,0x12,0xC8,0x12,0xC9,0x12,0xC9,0x12,0xC8,0x12,0xC8,0x12,0xC8,0x12,0xE8,0x12,0xE8,0x12,0xC8,0x12,0xC8,0x12,0xC8,0x12,0xC8,0x12,0xC8,0x12,0xC8,0x12,0xC8,0x12,0xC8,0x12,0xC8,0x12, +0xC8,0x12,0xC8,0x12,0xC8,0x12,0xC8,0x12,0xC8,0x12,0xC8,0x12,0xC8,0x12,0xC8,0x12,0xC8,0x12,0xC8,0x12,0xC8,0x12,0xC8,0x12,0xC8,0x12,0xC8,0x12,0xC8,0x12,0xC8,0x12,0xC7,0x0A,0x08,0x13,0xC8,0x12,0x08,0x13,0x0C,0x34,0x6A,0x23,0x08,0x13,0x28,0x1B,0xA6,0x0A,0x86,0x0A,0x6A,0x23,0xA7,0x12,0xA7,0x12,0xA7,0x12,0x66,0x0A,0xC8,0x1A,0xC8,0x12,0xE8,0x1A,0xC7,0x12,0xC8,0x1A,0xC8,0x1A,0xC7,0x1A,0x09,0x3C,0x88,0x44,0x67,0x44,0x67,0x4C,0x48,0x4C,0x48,0x54,0x67,0x54,0x67,0x4C,0x67,0x4C,0x67,0x44,0x68,0x4C,0x47,0x4C,0x47,0x4C,0x27,0x4C,0x27,0x4C,0x68,0x54,0x88,0x54,0x48,0x44,0x89,0x4C,0x69,0x44,0xE6,0x33,0xE6,0x33,0xEA,0x4C,0x6B,0x5D,0x4A,0x5D,0x4A,0x5D, +0x4B,0x5D,0x4A,0x5D,0x48,0x5D,0x69,0x65,0x8A,0x65,0x0B,0x55,0x4B,0x3C,0xED,0x33,0xEE,0x2B,0xEF,0x2B,0xAF,0x23,0xCF,0x23,0x6C,0x1B,0x09,0x13,0xE7,0x0A,0x06,0x13,0xE8,0x12,0xC8,0x12,0xA8,0x12,0xA9,0x12,0xA9,0x12,0xA9,0x1A,0xA9,0x1A,0xCA,0x1A,0xA9,0x1A,0xCA,0x1A,0xC9,0x1A,0xA9,0x12,0xCA,0x1A,0xCA,0x1A,0x89,0x12,0xA9,0x1A,0xC8,0x1A,0xA9,0x12,0x89,0x0A,0x6A,0x13,0xAB,0x2C,0x4C,0x3D,0x4C,0x3D,0x09,0x1C,0x27,0x0B,0x6C,0x44,0x2E,0x5D,0x88,0x2B,0xA6,0x12,0xC9,0x2B,0xAA,0x44,0x29,0x4D,0xA8,0x4C,0xE9,0x54,0x29,0x5D,0x2A,0x5D,0x29,0x5D,0x49,0x5D,0x49,0x65,0x6A,0x65,0x49,0x65,0x29,0x5D,0x09,0x55,0xC9,0x4C,0xC9,0x4C,0xEA,0x4C,0xCA,0x4C,0xCA,0x4C, +0x09,0x4D,0xE9,0x4C,0xC9,0x4C,0xCA,0x4C,0xCA,0x4C,0xCA,0x4C,0xAA,0x4C,0xAA,0x4C,0xA9,0x4C,0xCA,0x4C,0xEA,0x54,0xC9,0x4C,0xA9,0x4C,0xEB,0x54,0xEB,0x54,0xCB,0x54,0x0C,0x5D,0x0C,0x5D,0x0C,0x5D,0xEC,0x5C,0xCC,0x54,0xAB,0x4C,0x6A,0x4C,0x4A,0x44,0x09,0x44,0xE9,0x3B,0xC8,0x3B,0x87,0x33,0x67,0x33,0x26,0x2B,0x05,0x23,0xE5,0x22,0xE5,0x22,0xA4,0x22,0x64,0x22,0x85,0x2A,0xA5,0x22,0xA6,0x22,0x85,0x1A,0x44,0x12,0x24,0x0A,0x03,0x02,0x23,0x02,0x44,0x12,0x65,0x22,0xC6,0x2A,0x27,0x2B,0x06,0x1B,0x06,0x23,0x06,0x2B,0x06,0x2B,0xE6,0x32,0xE6,0x32,0x06,0x33,0x06,0x2B,0x26,0x2B,0x26,0x2B,0x26,0x2B,0x26,0x33,0x26,0x33,0x06,0x33,0x27,0x33,0x27,0x33,0x27,0x33, +0x26,0x33,0x26,0x33,0x26,0x33,0x27,0x33,0x27,0x33,0x27,0x33,0x27,0x33,0x27,0x33,0x26,0x33,0x26,0x33,0x26,0x33,0x26,0x33,0x26,0x33,0x26,0x33,0x27,0x33,0x46,0x33,0x46,0x33,0x46,0x33,0x46,0x33,0x46,0x33,0x46,0x33,0x47,0x33,0x47,0x33,0x47,0x33,0x46,0x3B,0x46,0x3B,0x47,0x3B,0x47,0x3B,0x47,0x3B,0x67,0x3B,0x67,0x3B,0x67,0x3B,0x66,0x33,0x67,0x33,0x89,0x33,0x8A,0x2B,0x8C,0x2B,0xAD,0x23,0x8C,0x1B,0x8C,0x1B,0xAC,0x1B,0xAC,0x1B,0x8C,0x1B,0x8C,0x1B,0x8C,0x23,0x8C,0x23,0x4C,0x1B,0x4B,0x1B,0x6B,0x23,0xAC,0x23,0xAD,0x23,0x8D,0x23,0x8D,0x1B,0xAD,0x1B,0xCC,0x1B,0xAC,0x1B,0xCC,0x1B,0xCD,0x23,0xAD,0x23,0x8D,0x23,0x8D,0x23,0x8C,0x23,0x8B,0x23,0x6A,0x1B, +0x4A,0x1B,0x8B,0x23,0x09,0x1B,0x87,0x12,0x67,0x12,0x28,0x12,0x48,0x12,0x48,0x12,0x67,0x12,0x87,0x12,0x87,0x0A,0x67,0x0A,0xA9,0x0A,0x8D,0x2B,0x0E,0x3C,0xCC,0x33,0xCD,0x2B,0xED,0x33,0x8B,0x33,0x89,0x33,0x47,0x33,0x67,0x3B,0x46,0x3B,0x05,0x33,0x47,0x3B,0x26,0x33,0x07,0x2B,0x27,0x33,0x27,0x33,0xE5,0x2A,0xE5,0x2A,0xE5,0x2A,0x88,0x3B,0x88,0x3B,0x87,0x3B,0x87,0x3B,0x87,0x3B,0x87,0x43,0x87,0x3B,0x67,0x3B,0x87,0x43,0x87,0x43,0x87,0x43,0x87,0x43,0x87,0x43,0xA7,0x3B,0xA7,0x3B,0xA6,0x3B,0xA7,0x43,0xA7,0x43,0xA7,0x43,0xA7,0x43,0xA7,0x43,0xA7,0x43,0xA7,0x43,0xA7,0x43,0xA7,0x43,0xA7,0x43,0xA7,0x43,0xA7,0x43,0xA7,0x43,0xA7,0x43,0xA7,0x43,0xA7,0x43, +0xA8,0x43,0xA7,0x43,0xA6,0x43,0xC6,0x43,0xC6,0x3B,0xC8,0x33,0x2F,0x5D,0x72,0x55,0x53,0x4D,0xB4,0x55,0xB3,0x55,0xB3,0x5D,0xD3,0x55,0x72,0x4D,0x52,0x45,0x11,0x3D,0x51,0x55,0x51,0x55,0x8E,0x44,0x72,0x5D,0x50,0x55,0x51,0x55,0xEF,0x4C,0x8E,0x3C,0x0F,0x4D,0x0F,0x4D,0xEF,0x4C,0xEF,0x4C,0x0F,0x4D,0x0F,0x4D,0xCE,0x44,0x8D,0x3C,0xAD,0x3C,0x8D,0x3C,0x4C,0x2C,0x0F,0x45,0x72,0x4D,0x52,0x4D,0x52,0x45,0x31,0x3D,0x31,0x3D,0x31,0x3D,0x10,0x3D,0x51,0x3D,0x50,0x3D,0x30,0x3D,0xEF,0x34,0xAE,0x2C,0xAF,0x34,0xAF,0x34,0xEF,0x3C,0xEF,0x3C,0xEF,0x3C,0xAE,0x3C,0x6D,0x2C,0x6D,0x2C,0x4D,0x2C,0x6D,0x2C,0x8D,0x34,0x8D,0x34,0x8D,0x34,0xAD,0x34,0xAC,0x34,0xCD,0x3C, +0xCC,0x34,0xAC,0x34,0x8C,0x34,0x6B,0x3C,0x4B,0x3C,0x4A,0x3C,0x2A,0x3C,0x29,0x3C,0x49,0x44,0x48,0x44,0x27,0x4C,0x27,0x4C,0x27,0x54,0x28,0x54,0x27,0x4C,0x27,0x4C,0x66,0x44,0x67,0x4C,0x67,0x54,0x47,0x54,0x07,0x4C,0x07,0x4C,0x49,0x4C,0x8A,0x4C,0x4A,0x4C,0xE9,0x3B,0x48,0x2B,0x86,0x1A,0x05,0x0A,0x06,0x0A,0x47,0x0A,0x47,0x0A,0x28,0x02,0x28,0x0A,0x28,0x0A,0x47,0x12,0x46,0x12,0x66,0x0A,0x66,0x0A,0x46,0x0A,0x47,0x0A,0x27,0x12,0x27,0x0A,0x27,0x0A,0x47,0x0A,0x46,0x0A,0x26,0x0A,0x46,0x12,0x26,0x0A,0x46,0x12,0x26,0x0A,0x26,0x12,0x26,0x12,0x47,0x0A,0x67,0x12,0xA8,0x12,0xC8,0x12,0xA8,0x0A,0xE8,0x12,0xC8,0x12,0xA7,0x0A,0xA7,0x12,0xA7,0x12,0xE8,0x1A, +0xC9,0x12,0x88,0x0A,0xA9,0x12,0xCA,0x12,0x89,0x12,0xA8,0x12,0xE8,0x1A,0xC7,0x12,0xC7,0x12,0xC7,0x12,0xC8,0x12,0xA8,0x12,0xA8,0x12,0xC8,0x12,0xC7,0x12,0xC7,0x12,0xA9,0x12,0xA9,0x12,0xA8,0x12,0xA8,0x12,0xA8,0x12,0xA8,0x12,0xA8,0x12,0xA8,0x12,0xA8,0x12,0xA8,0x12,0xA8,0x12,0xA8,0x12,0xA8,0x12,0xA8,0x12,0xA8,0x12,0xA8,0x12,0xA8,0x12,0xA8,0x12,0xA8,0x12,0xA8,0x12,0xA8,0x12,0xA8,0x12,0xA8,0x12,0xA8,0x12,0xA8,0x12,0xA8,0x12,0xA8,0x12,0xA8,0x12,0xA8,0x12,0xA8,0x12,0xA8,0x12,0xA8,0x12,0xA7,0x12,0xC8,0x12,0xC8,0x12,0x09,0x1B,0xAB,0x2B,0x08,0x1B,0xC7,0x12,0x29,0x1B,0x87,0x0A,0x87,0x12,0x4A,0x2B,0xA8,0x12,0x87,0x12,0xC8,0x12,0x87,0x0A,0xC8,0x1A, +0x87,0x1A,0xC8,0x22,0xA7,0x1A,0xA7,0x1A,0x87,0x1A,0xA7,0x1A,0xEA,0x3B,0x28,0x44,0x27,0x44,0x07,0x44,0x08,0x44,0x07,0x44,0x06,0x44,0x06,0x44,0x26,0x44,0x47,0x44,0x07,0x44,0x07,0x44,0x07,0x44,0x48,0x4C,0x47,0x4C,0x07,0x44,0x07,0x44,0x48,0x44,0x06,0x3C,0xA8,0x4C,0xE8,0x54,0xE7,0x4C,0x28,0x55,0x07,0x55,0xC6,0x4C,0x07,0x55,0xC9,0x54,0xE9,0x54,0xE8,0x54,0xC6,0x54,0xC6,0x54,0xC8,0x54,0xCA,0x54,0xEC,0x4C,0x0B,0x2C,0xEC,0x23,0xCD,0x23,0x0E,0x2C,0x0E,0x2C,0x0D,0x2C,0xCB,0x2B,0x69,0x1B,0x8A,0x1B,0x49,0x1B,0x08,0x13,0xC8,0x12,0xA8,0x12,0xA8,0x12,0xA9,0x1A,0x88,0x12,0x89,0x1A,0xA9,0x1A,0x68,0x12,0x68,0x12,0xA9,0x1A,0x69,0x12,0x89,0x1A,0x89,0x1A, +0x87,0x1A,0xA9,0x12,0xC9,0x0A,0x8E,0x2C,0x4D,0x35,0x6B,0x2D,0x4B,0x25,0x4D,0x2D,0x0D,0x35,0xAB,0x34,0x0C,0x4D,0x47,0x1B,0xA5,0x0A,0xA9,0x23,0x0C,0x4D,0xC8,0x44,0x28,0x5D,0x29,0x5D,0x49,0x65,0x49,0x65,0x48,0x65,0x28,0x5D,0x28,0x5D,0x48,0x65,0x28,0x5D,0x69,0x65,0x4A,0x65,0x09,0x55,0xC9,0x4C,0xCA,0x4C,0xCA,0x4C,0xCB,0x4C,0xCA,0x4C,0xCA,0x4C,0xCA,0x4C,0xCB,0x4C,0xCB,0x4C,0xAA,0x4C,0x8A,0x4C,0xAB,0x4C,0xCB,0x54,0xAA,0x4C,0x8A,0x4C,0xAA,0x54,0xCB,0x54,0x8B,0x54,0x2A,0x44,0xE9,0x43,0x88,0x33,0x47,0x2B,0x27,0x23,0xE6,0x22,0xC5,0x1A,0xC5,0x1A,0xA5,0x1A,0xA5,0x1A,0xA5,0x1A,0xA5,0x1A,0xA5,0x1A,0xA5,0x1A,0xA5,0x1A,0xA5,0x1A,0xA5,0x1A,0xA5,0x1A, +0xC6,0x1A,0xC7,0x22,0xC7,0x2A,0xA7,0x2A,0xA6,0x1A,0x66,0x12,0x45,0x12,0x46,0x1A,0x25,0x12,0x46,0x12,0x25,0x0A,0x04,0x12,0x45,0x1A,0x45,0x22,0xA7,0x2A,0x08,0x2B,0xE6,0x22,0xE6,0x2A,0xE6,0x2A,0xC6,0x2A,0xC6,0x2A,0xE6,0x2A,0x06,0x2B,0xE6,0x22,0x06,0x2B,0x06,0x2B,0xE6,0x2A,0xE6,0x32,0xE6,0x32,0xE6,0x2A,0xE6,0x2A,0x06,0x2B,0x06,0x33,0x06,0x33,0x06,0x33,0x06,0x33,0x06,0x33,0x06,0x33,0x06,0x33,0x06,0x2B,0x26,0x33,0x26,0x33,0x26,0x33,0x26,0x33,0x26,0x33,0x26,0x33,0x26,0x33,0x26,0x33,0x26,0x33,0x26,0x33,0x26,0x33,0x46,0x33,0x46,0x33,0x46,0x33,0x46,0x33,0x46,0x33,0x47,0x3B,0x47,0x3B,0x47,0x3B,0x47,0x3B,0x47,0x3B,0x67,0x3B,0x67,0x3B,0x67,0x3B, +0x87,0x33,0x88,0x33,0x49,0x2B,0x0A,0x1B,0x2B,0x1B,0x4C,0x1B,0x4C,0x1B,0x4C,0x1B,0x4B,0x13,0x4A,0x13,0x4A,0x1B,0x4B,0x1B,0x4B,0x1B,0x2B,0x1B,0x2B,0x1B,0x6C,0x23,0x6B,0x1B,0x6B,0x1B,0x4B,0x1B,0x4C,0x1B,0x4C,0x1B,0x4C,0x1B,0x6B,0x1B,0x4B,0x1B,0x2A,0x1B,0x4B,0x1B,0x4C,0x1B,0x2C,0x1B,0x4C,0x23,0x4B,0x23,0x4A,0x23,0x4A,0x23,0x2A,0x23,0x2A,0x23,0x09,0x23,0x67,0x12,0x47,0x12,0x68,0x1A,0x08,0x12,0x28,0x12,0x47,0x12,0xA8,0x1A,0x46,0x0A,0xA8,0x12,0x4B,0x23,0x8C,0x2B,0x8C,0x2B,0x8B,0x23,0x8D,0x23,0xAC,0x2B,0xAB,0x33,0xEB,0x43,0x09,0x44,0xE8,0x4B,0xE7,0x4B,0xE7,0x4B,0xE7,0x4B,0xC7,0x43,0xC8,0x43,0xC8,0x43,0xA8,0x43,0x87,0x3B,0x66,0x3B,0x45,0x3B, +0x67,0x3B,0x87,0x3B,0xA7,0x3B,0x87,0x3B,0x67,0x3B,0x87,0x3B,0xA7,0x3B,0xA8,0x43,0x87,0x3B,0x87,0x3B,0x87,0x3B,0x87,0x3B,0x87,0x3B,0x87,0x3B,0x87,0x3B,0x87,0x3B,0x87,0x3B,0x87,0x3B,0x87,0x3B,0x87,0x43,0x87,0x43,0x87,0x43,0x87,0x43,0x87,0x43,0xA7,0x43,0xA7,0x43,0xA7,0x43,0xA7,0x43,0xA7,0x43,0xA7,0x43,0xA7,0x43,0xA7,0x43,0xA8,0x3B,0xC7,0x3B,0xA6,0x3B,0xC6,0x3B,0xA6,0x3B,0xE8,0x3B,0x0F,0x55,0x51,0x55,0x52,0x4D,0x72,0x55,0x72,0x55,0xB2,0x55,0xB2,0x55,0x51,0x45,0x10,0x3D,0x11,0x3D,0x51,0x55,0x51,0x55,0xAE,0x44,0x71,0x55,0xEF,0x44,0xCE,0x44,0xCE,0x44,0xCE,0x44,0x0F,0x4D,0x0F,0x4D,0x0F,0x4D,0x0F,0x4D,0x0F,0x4D,0x0F,0x4D,0xCE,0x44,0x8D,0x3C, +0x4C,0x34,0x8D,0x3C,0x2C,0x34,0xEF,0x44,0x51,0x4D,0x31,0x4D,0x32,0x45,0x31,0x3D,0x31,0x3D,0x31,0x3D,0x31,0x3D,0x71,0x45,0x51,0x3D,0x30,0x3D,0x0F,0x35,0xCE,0x2C,0xF0,0x34,0xCF,0x34,0x0F,0x3D,0x0F,0x3D,0x30,0x3D,0x0F,0x35,0xCE,0x2C,0xAE,0x2C,0x8D,0x2C,0xAD,0x2C,0xAE,0x2C,0xAD,0x2C,0xCD,0x2C,0xED,0x34,0xCD,0x34,0xAC,0x2C,0xAB,0x2C,0x8B,0x34,0x6B,0x3C,0x4B,0x3C,0x2B,0x44,0x2A,0x44,0x29,0x44,0x09,0x44,0x28,0x4C,0x28,0x4C,0x07,0x4C,0x07,0x4C,0x07,0x4C,0x07,0x4C,0x27,0x4C,0x27,0x4C,0x48,0x3C,0x28,0x3C,0x07,0x44,0x07,0x4C,0x28,0x54,0x27,0x54,0x07,0x54,0x07,0x4C,0x48,0x54,0x07,0x4C,0x08,0x4C,0x09,0x4C,0x68,0x33,0xC7,0x1A,0x46,0x12,0x05,0x02, +0x68,0x02,0x47,0x02,0x27,0x0A,0x26,0x0A,0x26,0x0A,0x26,0x02,0x46,0x0A,0x47,0x0A,0x28,0x12,0x29,0x12,0x28,0x12,0x28,0x0A,0x47,0x0A,0x46,0x02,0x45,0x02,0x45,0x0A,0x47,0x12,0x47,0x0A,0x27,0x0A,0x27,0x0A,0x27,0x0A,0x27,0x0A,0x48,0x0A,0x88,0x12,0x87,0x0A,0xE8,0x12,0x65,0x02,0x85,0x02,0xA6,0x0A,0x65,0x0A,0x85,0x12,0x65,0x12,0x66,0x0A,0x87,0x12,0x88,0x12,0x88,0x12,0x89,0x12,0x88,0x12,0x87,0x0A,0x86,0x0A,0x87,0x12,0x87,0x12,0x88,0x12,0x88,0x12,0x88,0x12,0x87,0x12,0x87,0x12,0xA6,0x12,0x88,0x12,0x88,0x12,0x88,0x12,0x88,0x12,0x88,0x12,0x88,0x12,0x87,0x12,0x87,0x12,0x87,0x12,0x87,0x12,0x87,0x12,0x88,0x12,0x68,0x12,0x88,0x1A,0x88,0x12,0x88,0x12, +0x88,0x12,0x88,0x12,0x88,0x12,0x88,0x12,0x88,0x12,0x88,0x12,0x88,0x12,0x88,0x12,0x87,0x12,0x87,0x12,0xA7,0x12,0xA7,0x12,0xA7,0x12,0xA7,0x12,0xA7,0x12,0xA7,0x12,0x88,0x12,0x88,0x12,0x87,0x12,0xA8,0x12,0xE8,0x1A,0x87,0x0A,0xA8,0x12,0xE8,0x1A,0x87,0x12,0x87,0x12,0xC9,0x1A,0x87,0x12,0x87,0x12,0xA8,0x12,0xA8,0x12,0xA8,0x12,0x67,0x1A,0x67,0x1A,0x67,0x12,0xA8,0x1A,0xA8,0x1A,0xA7,0x12,0x89,0x33,0xC7,0x3B,0xE6,0x3B,0xC6,0x3B,0xE7,0x43,0x08,0x44,0xC6,0x3B,0xC6,0x3B,0xE7,0x43,0xA6,0x3B,0xC7,0x3B,0xE8,0x43,0xC6,0x3B,0xA5,0x3B,0x06,0x44,0x27,0x4C,0x27,0x44,0x47,0x44,0xE9,0x54,0x28,0x5D,0x48,0x5D,0x47,0x5D,0x88,0x65,0x89,0x65,0x49,0x5D,0x09,0x5D, +0x28,0x4C,0x69,0x4C,0x68,0x54,0x88,0x54,0xC8,0x54,0x08,0x5D,0x27,0x5D,0x28,0x55,0x29,0x55,0x2B,0x55,0xCB,0x3C,0x4B,0x34,0xAA,0x1B,0xAB,0x1B,0xAD,0x1B,0xCE,0x23,0xCA,0x1B,0x8A,0x1B,0x49,0x1B,0xE8,0x12,0x87,0x0A,0x88,0x12,0x88,0x12,0x68,0x12,0x88,0x12,0x47,0x0A,0xA9,0x1A,0x88,0x12,0x68,0x0A,0x68,0x12,0xA9,0x12,0xEB,0x22,0x09,0x23,0xEA,0x12,0x0A,0x0B,0x8E,0x2C,0xEB,0x24,0x2A,0x1D,0x2A,0x1D,0x0B,0x1D,0x0C,0x25,0xEB,0x2C,0xCB,0x34,0x29,0x2C,0xC6,0x0A,0x88,0x23,0xCB,0x4C,0xC9,0x44,0xE8,0x54,0xE8,0x54,0xE8,0x54,0xE8,0x5C,0xE7,0x5C,0x07,0x5D,0xE7,0x54,0xE7,0x54,0x08,0x5D,0xE8,0x54,0xE8,0x54,0xEA,0x54,0xEA,0x54,0xAA,0x4C,0x8A,0x4C,0x8A,0x4C, +0xAB,0x4C,0xCB,0x4C,0x8A,0x44,0x6A,0x44,0x8A,0x44,0x8A,0x4C,0x49,0x44,0x09,0x3C,0xE9,0x3B,0xE9,0x3B,0x68,0x33,0xE6,0x22,0xC6,0x22,0x85,0x1A,0x65,0x12,0x85,0x1A,0x86,0x1A,0x86,0x1A,0x86,0x1A,0xA6,0x1A,0xA6,0x22,0xA6,0x22,0x86,0x22,0x85,0x22,0xA6,0x22,0xA6,0x22,0xA6,0x22,0xA6,0x22,0xA7,0x22,0xC7,0x22,0xC7,0x22,0xC7,0x22,0xE7,0x12,0xC8,0x1A,0xC8,0x1A,0xA7,0x1A,0x87,0x12,0x66,0x0A,0x66,0x12,0x46,0x1A,0x26,0x12,0x67,0x1A,0x66,0x12,0x87,0x1A,0x4A,0x3B,0xE9,0x32,0x87,0x22,0x46,0x1A,0xA6,0x22,0xC6,0x2A,0xE7,0x2A,0xE7,0x2A,0xC6,0x2A,0x07,0x2B,0x07,0x2B,0x06,0x23,0x06,0x2B,0xE6,0x2A,0xE6,0x32,0xE6,0x32,0xE7,0x32,0xE7,0x32,0x07,0x33,0x07,0x2B, +0xE6,0x2A,0x06,0x33,0x06,0x33,0x07,0x33,0x06,0x33,0x26,0x33,0x06,0x33,0x06,0x33,0x06,0x33,0x06,0x33,0x26,0x33,0x26,0x33,0x26,0x33,0x26,0x33,0x26,0x33,0x26,0x33,0x26,0x33,0x26,0x33,0x26,0x33,0x26,0x33,0x27,0x33,0x27,0x33,0x46,0x33,0x46,0x33,0x46,0x33,0x46,0x33,0x47,0x33,0x47,0x33,0x47,0x33,0x47,0x3B,0x47,0x3B,0x47,0x3B,0x87,0x2B,0x69,0x2B,0xC8,0x12,0xEA,0x1A,0xEB,0x12,0xCB,0x0A,0x0C,0x13,0xEA,0x12,0x0A,0x13,0x09,0x1B,0x09,0x1B,0x09,0x13,0xEA,0x12,0x0A,0x1B,0x0A,0x1B,0x0A,0x1B,0xE9,0x0A,0x2A,0x13,0x2B,0x13,0x2B,0x1B,0x2B,0x1B,0x0A,0x13,0x0A,0x1B,0x0A,0x1B,0x2B,0x1B,0x0B,0x1B,0x0B,0x1B,0x0B,0x1B,0x0B,0x1B,0x0A,0x1B,0x2A,0x1B,0x2A,0x1B, +0xEA,0x1A,0xC9,0x1A,0x09,0x23,0x88,0x1A,0x06,0x0A,0x28,0x12,0x07,0x12,0x47,0x12,0x26,0x12,0x09,0x23,0x46,0x0A,0xE9,0x1A,0x4C,0x23,0x2B,0x1B,0x2B,0x1B,0x2A,0x23,0x2C,0x1B,0x2B,0x1B,0x29,0x23,0x48,0x2B,0x09,0x44,0xC7,0x43,0xE6,0x4B,0x06,0x4C,0xC6,0x43,0x07,0x4C,0x08,0x4C,0xE7,0x43,0xC7,0x43,0x08,0x4C,0x08,0x4C,0xC7,0x4B,0xA7,0x3B,0x86,0x33,0x66,0x33,0x86,0x33,0x87,0x3B,0x87,0x3B,0x67,0x3B,0x46,0x33,0x67,0x3B,0x67,0x3B,0x67,0x3B,0x67,0x3B,0x67,0x3B,0x87,0x3B,0x87,0x3B,0x87,0x3B,0x67,0x3B,0x67,0x3B,0x87,0x3B,0x87,0x3B,0x87,0x3B,0x87,0x3B,0x87,0x3B,0x87,0x3B,0x87,0x3B,0x87,0x3B,0x87,0x3B,0x87,0x3B,0x87,0x3B,0x87,0x3B,0x87,0x3B,0x87,0x43, +0x88,0x3B,0xA8,0x3B,0xA7,0x3B,0xC6,0x43,0xA6,0x3B,0xA8,0x3B,0x4B,0x44,0x6D,0x44,0x8E,0x44,0xCF,0x4C,0xCE,0x4C,0xEE,0x4C,0x0F,0x55,0x0F,0x4D,0x0F,0x4D,0x10,0x4D,0x2F,0x55,0x0F,0x4D,0x8D,0x3C,0x0F,0x4D,0xEE,0x44,0xCE,0x44,0xCE,0x44,0xCE,0x44,0x2F,0x4D,0x50,0x55,0x50,0x4D,0x0F,0x4D,0xCD,0x3C,0x8D,0x3C,0x8C,0x34,0x6C,0x34,0x8C,0x44,0xAD,0x44,0x2B,0x34,0xEF,0x44,0x31,0x4D,0x52,0x4D,0x52,0x4D,0x52,0x45,0x52,0x45,0x52,0x45,0x51,0x3D,0x51,0x45,0x51,0x3D,0x31,0x3D,0x10,0x35,0xCF,0x2C,0x10,0x3D,0xF0,0x3C,0x10,0x3D,0x10,0x3D,0xEF,0x34,0xCE,0x34,0xAE,0x2C,0xAE,0x2C,0xAE,0x2C,0xAE,0x2C,0xAE,0x2C,0xAD,0x2C,0xCE,0x34,0x0F,0x3D,0xCE,0x3C,0x6C,0x2C, +0x8B,0x34,0x6B,0x34,0x4A,0x3C,0x2A,0x3C,0x2A,0x44,0x09,0x44,0x09,0x44,0x08,0x44,0x08,0x4C,0xE8,0x4B,0xE7,0x4B,0xE7,0x4B,0xE7,0x4B,0x07,0x4C,0x07,0x44,0x07,0x44,0x09,0x44,0x09,0x44,0xE8,0x43,0xE8,0x4B,0xE8,0x53,0xE7,0x53,0xE7,0x53,0x07,0x54,0x06,0x54,0x06,0x4C,0x07,0x4C,0x28,0x4C,0x49,0x54,0x4A,0x5C,0xC9,0x4B,0x06,0x33,0x65,0x0A,0x24,0x0A,0xE5,0x09,0x06,0x0A,0x47,0x12,0x48,0x0A,0x28,0x0A,0x08,0x0A,0xE7,0x09,0x08,0x12,0xE7,0x09,0x07,0x0A,0x06,0x02,0x46,0x0A,0x46,0x0A,0x26,0x12,0x26,0x02,0x06,0x02,0x27,0x0A,0x27,0x0A,0x48,0x0A,0x07,0x0A,0x27,0x0A,0x87,0x12,0xA7,0x12,0x64,0x02,0xE6,0x12,0x29,0x3C,0x2A,0x44,0xA8,0x33,0x09,0x44,0xAC,0x54, +0x8B,0x4C,0x4B,0x4C,0x68,0x2B,0x65,0x0A,0x65,0x0A,0x87,0x12,0x86,0x12,0x87,0x12,0x67,0x12,0x67,0x12,0x68,0x12,0x68,0x12,0x68,0x12,0x68,0x12,0x68,0x12,0x67,0x12,0x68,0x0A,0x68,0x0A,0x67,0x0A,0x67,0x12,0x67,0x12,0x67,0x12,0x67,0x12,0x67,0x12,0x67,0x12,0x67,0x12,0x67,0x12,0x68,0x12,0x68,0x12,0x68,0x12,0x68,0x12,0x68,0x12,0x68,0x12,0x68,0x12,0x68,0x12,0x68,0x12,0x68,0x12,0x67,0x12,0x67,0x12,0x67,0x12,0x67,0x12,0x67,0x12,0x67,0x12,0x67,0x12,0x67,0x0A,0x67,0x0A,0x67,0x0A,0x87,0x0A,0x88,0x12,0x88,0x12,0x67,0x0A,0x67,0x0A,0x67,0x0A,0x67,0x0A,0x88,0x12,0x67,0x12,0x67,0x12,0x67,0x12,0x68,0x12,0x67,0x12,0x67,0x12,0x87,0x12,0x88,0x0A,0x87,0x0A, +0x68,0x12,0x87,0x12,0x66,0x0A,0x25,0x02,0x25,0x02,0x86,0x0A,0xA8,0x33,0xC7,0x3B,0xC6,0x3B,0xE7,0x3B,0x86,0x33,0x66,0x2B,0x87,0x33,0x87,0x3B,0x67,0x3B,0x88,0x3B,0x87,0x3B,0xA7,0x3B,0x65,0x33,0xA5,0x3B,0xA8,0x54,0x2A,0x65,0x2A,0x65,0x2A,0x65,0x29,0x5D,0x28,0x5D,0x48,0x5D,0x47,0x5D,0x07,0x55,0x08,0x5D,0x0A,0x65,0x0B,0x5D,0x0A,0x65,0x89,0x54,0x08,0x44,0x48,0x4C,0xEA,0x5C,0x49,0x5D,0x47,0x5D,0x26,0x55,0x67,0x5D,0x47,0x5D,0x69,0x5D,0x4A,0x55,0x49,0x34,0xCA,0x23,0x6C,0x1B,0x6D,0x1B,0x69,0x13,0x69,0x13,0x69,0x1B,0x08,0x13,0x67,0x0A,0x67,0x0A,0x67,0x12,0x67,0x0A,0x47,0x0A,0x68,0x12,0x47,0x0A,0x67,0x0A,0x88,0x0A,0xA9,0x0A,0xEE,0x33,0xEE,0x33, +0xED,0x33,0xEE,0x2B,0x0E,0x2C,0x4D,0x24,0xAB,0x24,0xA9,0x1C,0xEA,0x1C,0xEB,0x1C,0xAA,0x1C,0xCA,0x1C,0xAA,0x2C,0x8B,0x34,0xAD,0x44,0x2B,0x3C,0x8B,0x4C,0xA9,0x4C,0xA8,0x54,0xA8,0x54,0xA8,0x4C,0x88,0x54,0xA8,0x54,0xA8,0x54,0xA7,0x54,0x87,0x4C,0xA7,0x54,0xA8,0x4C,0xA8,0x54,0x89,0x4C,0x89,0x4C,0x8A,0x4C,0x8B,0x4C,0x8B,0x4C,0x09,0x34,0xAB,0x4C,0xCB,0x4C,0x69,0x44,0x89,0x44,0x69,0x44,0xC7,0x33,0x05,0x23,0x23,0x0A,0x03,0x0A,0x45,0x12,0x86,0x1A,0x46,0x1A,0x66,0x1A,0xA7,0x22,0x86,0x22,0x86,0x1A,0x66,0x1A,0x66,0x1A,0x66,0x22,0x86,0x22,0x86,0x22,0xA6,0x22,0xA6,0x2A,0x86,0x22,0x86,0x22,0x86,0x22,0xA6,0x22,0x86,0x22,0x86,0x22,0x87,0x1A,0xA7,0x1A, +0xE8,0x12,0xA7,0x12,0x87,0x12,0xA7,0x12,0xC8,0x12,0xE8,0x1A,0xA8,0x1A,0x87,0x1A,0xC8,0x1A,0xC7,0x12,0xA7,0x0A,0xE8,0x12,0xCC,0x3B,0xCC,0x3B,0x8B,0x2B,0xA7,0x0A,0x65,0x12,0xA6,0x1A,0xC6,0x22,0xC7,0x2A,0xC6,0x2A,0xE7,0x2A,0xE7,0x22,0x07,0x2B,0xE7,0x2A,0xE6,0x2A,0xC6,0x32,0xC7,0x32,0xC7,0x32,0xC7,0x32,0xE7,0x2A,0x07,0x2B,0xE6,0x2A,0xE6,0x2A,0x06,0x33,0x07,0x33,0x07,0x33,0x07,0x33,0x07,0x33,0x07,0x33,0x26,0x33,0x26,0x33,0x27,0x33,0x27,0x33,0x27,0x33,0x27,0x33,0x27,0x33,0x27,0x33,0x26,0x33,0x26,0x33,0x26,0x33,0x26,0x33,0x27,0x33,0x27,0x33,0x27,0x33,0x27,0x33,0x27,0x33,0x27,0x33,0x47,0x33,0x47,0x33,0x47,0x3B,0x47,0x3B,0x47,0x3B,0x47,0x3B, +0x89,0x2B,0xE8,0x1A,0xE9,0x1A,0xEB,0x1A,0xEB,0x12,0xCB,0x12,0xAA,0x0A,0xC9,0x12,0xC9,0x12,0xC8,0x12,0xC9,0x12,0xC9,0x12,0xA9,0x12,0xA8,0x0A,0xA8,0x0A,0xC8,0x0A,0xC8,0x02,0x0A,0x0B,0xE9,0x0A,0xEA,0x0A,0xCA,0x12,0xCA,0x12,0x0A,0x1B,0xE9,0x1A,0xEA,0x1A,0xC9,0x12,0xCA,0x1A,0xEA,0x1A,0xCA,0x1A,0xCA,0x12,0xEA,0x12,0x09,0x13,0xEA,0x1A,0xA8,0x12,0x87,0x12,0x67,0x12,0x26,0x0A,0x07,0x0A,0x07,0x12,0xE6,0x09,0x46,0x12,0xC8,0x22,0x05,0x02,0x68,0x0A,0xA9,0x12,0xAA,0x12,0xEA,0x1A,0xC9,0x12,0xCB,0x12,0xEA,0x12,0xE8,0x12,0xC6,0x1A,0x09,0x44,0xC7,0x43,0xE7,0x43,0xC5,0x43,0x27,0x4C,0xE6,0x43,0xC6,0x43,0xE7,0x43,0x08,0x4C,0xE8,0x4B,0xE7,0x4B,0xE7,0x4B, +0xCA,0x5C,0x28,0x44,0x65,0x33,0x24,0x2B,0x45,0x2B,0x65,0x33,0x66,0x33,0x67,0x3B,0x67,0x3B,0x67,0x3B,0x67,0x3B,0x67,0x3B,0x67,0x3B,0x67,0x3B,0x67,0x3B,0x67,0x3B,0x67,0x3B,0x67,0x3B,0x67,0x3B,0x67,0x3B,0x67,0x3B,0x67,0x3B,0x67,0x3B,0x67,0x3B,0x67,0x3B,0x67,0x3B,0x67,0x3B,0x67,0x3B,0x67,0x3B,0x67,0x3B,0x67,0x3B,0x67,0x3B,0x68,0x3B,0x88,0x3B,0x87,0x43,0x87,0x43,0x86,0x43,0x67,0x3B,0x88,0x3B,0x89,0x3B,0x69,0x33,0x69,0x33,0x89,0x3B,0xA8,0x3B,0xA8,0x3B,0xE9,0x43,0xEA,0x43,0xEA,0x43,0x6C,0x3C,0x2B,0x3C,0x0B,0x34,0x8D,0x44,0xAD,0x44,0xAD,0x44,0xCD,0x44,0xAD,0x44,0xCD,0x44,0xED,0x44,0xEE,0x4C,0xCD,0x44,0xAD,0x3C,0x8C,0x3C,0x8C,0x3C,0xAC,0x3C, +0x4B,0x3C,0x4B,0x3C,0xCA,0x2B,0xAE,0x44,0x10,0x4D,0x31,0x4D,0x31,0x4D,0x32,0x4D,0x52,0x4D,0x52,0x4D,0x32,0x45,0x31,0x45,0x11,0x3D,0x11,0x3D,0x11,0x3D,0xD0,0x34,0xF0,0x3C,0xF0,0x44,0x11,0x45,0xF0,0x3C,0xCF,0x34,0xCF,0x34,0xCF,0x34,0xEF,0x34,0xAE,0x2C,0xAF,0x34,0xCF,0x34,0xCF,0x34,0x8D,0x34,0x6D,0x34,0x8D,0x34,0x6D,0x34,0x6B,0x34,0x4B,0x34,0x2A,0x3C,0x09,0x3C,0xE8,0x43,0xE8,0x43,0xE8,0x43,0xE8,0x43,0xE8,0x43,0xC8,0x4B,0xC8,0x4B,0xC8,0x4B,0xE7,0x4B,0xE7,0x4B,0x07,0x44,0x07,0x44,0xC9,0x53,0xC8,0x4B,0xC9,0x53,0xE8,0x53,0xE8,0x53,0xC8,0x53,0xE7,0x4B,0xE7,0x4B,0xE7,0x4B,0x07,0x4C,0x07,0x4C,0x27,0x4C,0xE6,0x43,0xC6,0x43,0xE7,0x53,0x08,0x54, +0x29,0x4C,0x87,0x33,0xA5,0x22,0x05,0x12,0xE6,0x09,0xC7,0x01,0xE8,0x01,0x08,0x0A,0x27,0x12,0x06,0x12,0x26,0x12,0xA7,0x1A,0x67,0x0A,0x47,0x0A,0x27,0x0A,0xE7,0x09,0x66,0x02,0x67,0x02,0xA8,0x12,0x27,0x02,0x07,0x02,0x27,0x0A,0x26,0x0A,0x86,0x12,0x43,0x0A,0x25,0x1B,0x2C,0x5D,0x4C,0x65,0x2B,0x5D,0x8C,0x6D,0x0A,0x5D,0x2B,0x65,0x2A,0x65,0x2A,0x65,0x6C,0x6D,0x89,0x4C,0xC4,0x1A,0x23,0x02,0x65,0x12,0x47,0x0A,0x47,0x12,0x48,0x12,0x48,0x12,0x48,0x12,0x48,0x12,0x48,0x12,0x48,0x12,0x48,0x12,0x67,0x0A,0x67,0x0A,0x67,0x0A,0x67,0x0A,0x67,0x0A,0x67,0x0A,0x67,0x0A,0x47,0x0A,0x67,0x0A,0x67,0x0A,0x67,0x0A,0x67,0x0A,0x68,0x0A,0x68,0x0A,0x68,0x0A,0x68,0x0A, +0x47,0x12,0x47,0x12,0x47,0x12,0x47,0x12,0x47,0x12,0x47,0x12,0x47,0x12,0x47,0x12,0x47,0x12,0x67,0x0A,0x67,0x0A,0x67,0x0A,0x67,0x0A,0x67,0x0A,0x67,0x0A,0x67,0x0A,0x47,0x12,0x68,0x12,0x47,0x12,0x67,0x12,0x67,0x12,0x67,0x12,0x67,0x12,0x27,0x12,0x47,0x12,0x47,0x12,0x47,0x12,0x47,0x12,0x67,0x0A,0x67,0x0A,0x67,0x0A,0x67,0x0A,0x66,0x02,0x46,0x02,0x29,0x13,0xEB,0x2B,0x2C,0x2C,0xE9,0x2B,0x6A,0x44,0x2B,0x5D,0x2B,0x65,0x2B,0x65,0x69,0x4C,0x87,0x33,0x67,0x2B,0x47,0x2B,0x07,0x2B,0x48,0x33,0x68,0x33,0x26,0x2B,0x86,0x33,0x68,0x4C,0xA9,0x5C,0x87,0x4C,0x67,0x4C,0xC8,0x54,0xC8,0x54,0xC7,0x4C,0xC7,0x54,0xC7,0x54,0xA8,0x54,0xA9,0x54,0xAA,0x54,0x6A,0x54, +0xA6,0x54,0xA7,0x54,0xA9,0x54,0xAA,0x54,0xA9,0x4C,0xA8,0x4C,0xC7,0x4C,0x07,0x55,0xC6,0x54,0xC6,0x54,0xA6,0x4C,0xA7,0x4C,0x0A,0x55,0xAC,0x4C,0x6A,0x1B,0x4C,0x1B,0x69,0x13,0x49,0x13,0x4A,0x1B,0x09,0x1B,0x67,0x0A,0x26,0x0A,0x47,0x0A,0x47,0x0A,0x67,0x0A,0x26,0x0A,0x4A,0x23,0x88,0x0A,0xE9,0x12,0x8C,0x23,0x4B,0x1B,0x6C,0x1B,0x6B,0x1B,0x6C,0x1B,0x4C,0x1B,0x6B,0x1B,0x2C,0x2C,0x6B,0x2C,0x29,0x1C,0x6A,0x1C,0x8B,0x1C,0x8A,0x1C,0x6A,0x1C,0x6B,0x2C,0xEB,0x2B,0x0B,0x3C,0x2A,0x44,0x49,0x4C,0x48,0x4C,0x48,0x4C,0x48,0x4C,0x48,0x4C,0x48,0x4C,0x48,0x4C,0x48,0x4C,0x48,0x4C,0x48,0x4C,0x27,0x44,0x27,0x44,0x48,0x44,0x89,0x4C,0x89,0x4C,0xC7,0x33,0xC3,0x12, +0x68,0x44,0x0B,0x55,0x6B,0x5D,0x2A,0x5D,0x0A,0x5D,0x4B,0x65,0x6C,0x6D,0x4D,0x6D,0x09,0x44,0xC5,0x1A,0x65,0x12,0xA7,0x22,0x87,0x22,0x66,0x22,0x86,0x22,0x45,0x1A,0x66,0x1A,0x66,0x22,0x86,0x22,0x86,0x22,0x86,0x22,0x86,0x22,0x85,0x22,0x65,0x22,0x86,0x22,0x86,0x22,0xA6,0x22,0xA6,0x22,0xA7,0x22,0xA7,0x22,0xA7,0x22,0xA7,0x22,0xE8,0x1A,0xE9,0x1A,0xE8,0x1A,0x08,0x1B,0xE8,0x12,0xC7,0x12,0xA7,0x12,0xC7,0x12,0xE7,0x12,0x07,0x0B,0x89,0x13,0x0B,0x2C,0x6E,0x44,0x0D,0x34,0x4D,0x34,0xCB,0x1B,0x28,0x1B,0xC6,0x12,0x86,0x12,0xA6,0x22,0xC7,0x2A,0xC7,0x22,0xC6,0x22,0xE7,0x2A,0x07,0x2B,0xE7,0x32,0xE7,0x32,0xC7,0x32,0xE7,0x32,0xE7,0x32,0xE7,0x2A,0x07,0x2B, +0x06,0x2B,0x06,0x2B,0x07,0x2B,0x07,0x2B,0x07,0x2B,0x06,0x2B,0x06,0x2B,0x06,0x2B,0x06,0x2B,0x07,0x33,0x07,0x33,0x07,0x33,0x07,0x33,0x26,0x33,0x26,0x33,0x26,0x33,0x27,0x33,0x27,0x33,0x27,0x33,0x27,0x33,0x27,0x33,0x27,0x33,0x27,0x33,0x26,0x33,0x47,0x33,0x47,0x33,0x47,0x33,0x47,0x33,0x47,0x33,0x47,0x33,0x47,0x33,0x47,0x33,0x49,0x23,0xC8,0x12,0xAD,0x33,0xCE,0x33,0xAE,0x33,0x8D,0x33,0xA9,0x12,0x88,0x12,0x88,0x12,0x68,0x12,0x69,0x12,0x89,0x12,0x89,0x0A,0x88,0x0A,0xC8,0x12,0x08,0x13,0x29,0x0B,0x4A,0x13,0x0A,0x0B,0xEA,0x12,0xC9,0x0A,0x89,0x0A,0xC9,0x12,0x89,0x12,0xA9,0x12,0xA9,0x12,0xA9,0x12,0xAA,0x12,0xA9,0x0A,0xA9,0x0A,0xC9,0x0A,0xA8,0x0A, +0xA8,0x12,0x87,0x12,0x66,0x12,0x05,0x0A,0xE5,0x01,0xE6,0x01,0x06,0x0A,0x26,0x0A,0x46,0x12,0x46,0x12,0xC4,0x01,0x88,0x12,0x89,0x12,0x89,0x12,0x89,0x12,0x89,0x12,0x8A,0x0A,0xA9,0x12,0x67,0x0A,0x86,0x12,0xC9,0x3B,0xC8,0x43,0xE7,0x4B,0xE6,0x4B,0xE6,0x43,0xE7,0x43,0xE7,0x43,0xE7,0x43,0xC7,0x43,0xE7,0x4B,0xE8,0x4B,0xE8,0x4B,0xCA,0x5C,0xCA,0x5C,0xEA,0x5C,0xCA,0x5C,0x48,0x4C,0xA6,0x3B,0x65,0x33,0x66,0x33,0x67,0x33,0x67,0x33,0x67,0x3B,0x67,0x3B,0x67,0x3B,0x47,0x3B,0x47,0x3B,0x67,0x3B,0x67,0x3B,0x67,0x3B,0x67,0x3B,0x67,0x3B,0x67,0x3B,0x67,0x3B,0x67,0x3B,0x67,0x3B,0x67,0x3B,0x67,0x3B,0x67,0x3B,0x67,0x3B,0x67,0x3B,0x67,0x3B,0x67,0x3B,0x67,0x3B, +0x68,0x3B,0x68,0x3B,0x67,0x3B,0x66,0x3B,0x66,0x3B,0x87,0x43,0x47,0x3B,0x68,0x3B,0x68,0x43,0x67,0x3B,0x87,0x3B,0x87,0x43,0x66,0x3B,0x66,0x3B,0x67,0x3B,0x67,0x3B,0x88,0x2B,0x88,0x2B,0xA9,0x33,0xA9,0x33,0xC9,0x33,0xA9,0x33,0xEA,0x33,0xEA,0x33,0xEA,0x33,0xEA,0x33,0x0A,0x34,0x2B,0x3C,0x4B,0x3C,0x4B,0x3C,0x4B,0x3C,0x4B,0x3C,0xE9,0x3B,0xE9,0x3B,0x88,0x2B,0x8D,0x4C,0xEF,0x54,0xF0,0x54,0xF0,0x4C,0x31,0x55,0x31,0x55,0x32,0x4D,0x11,0x4D,0xF1,0x44,0xD1,0x44,0xF1,0x44,0x12,0x45,0xD1,0x3C,0x10,0x45,0xF0,0x44,0xCF,0x3C,0xAF,0x34,0xAF,0x34,0xEF,0x3C,0xCF,0x34,0xCF,0x34,0xCF,0x34,0xAF,0x34,0xCF,0x3C,0xCF,0x3C,0x8E,0x34,0x6D,0x34,0x6D,0x34,0x6D,0x34, +0x4B,0x3C,0x2B,0x3C,0x0A,0x3C,0xE8,0x3B,0xE7,0x43,0xE7,0x43,0xE7,0x43,0xE7,0x43,0xC8,0x43,0xC8,0x4B,0xA8,0x4B,0xA8,0x4B,0xC8,0x4B,0xE7,0x4B,0xE7,0x43,0x07,0x44,0xC8,0x4B,0xC8,0x4B,0xA8,0x4B,0xC8,0x4B,0xC8,0x4B,0xC7,0x4B,0xE7,0x43,0xE7,0x43,0x07,0x44,0x07,0x44,0xE7,0x43,0xE7,0x43,0x08,0x44,0x28,0x44,0x28,0x3C,0x49,0x3C,0x89,0x3C,0x8A,0x44,0x4B,0x4C,0xEA,0x43,0x28,0x2B,0x66,0x12,0x05,0x0A,0x05,0x0A,0xE5,0x11,0xE5,0x09,0xA7,0x1A,0x2D,0x44,0x4E,0x3C,0x2D,0x2C,0x0E,0x2C,0x0E,0x2C,0x0C,0x2C,0x0C,0x2C,0xED,0x33,0x88,0x0A,0xE6,0x01,0x27,0x0A,0x25,0x0A,0x45,0x12,0xC4,0x1A,0xCA,0x5C,0xE9,0x54,0xA7,0x4C,0xE8,0x54,0xA7,0x4C,0xC8,0x54,0xE8,0x54, +0xC7,0x54,0xC7,0x54,0xC7,0x54,0xE9,0x5C,0xEA,0x5C,0xE8,0x3B,0xA6,0x1A,0x46,0x0A,0x27,0x0A,0x27,0x0A,0x46,0x0A,0x45,0x0A,0x45,0x0A,0x45,0x0A,0x45,0x0A,0x46,0x0A,0x47,0x12,0x47,0x12,0x47,0x12,0x47,0x12,0x47,0x12,0x48,0x12,0x48,0x12,0x48,0x12,0x48,0x0A,0x48,0x0A,0x67,0x0A,0x67,0x0A,0x67,0x0A,0x67,0x0A,0x67,0x0A,0x66,0x0A,0x47,0x12,0x47,0x12,0x47,0x12,0x47,0x12,0x47,0x12,0x47,0x12,0x47,0x12,0x47,0x12,0x47,0x12,0x47,0x12,0x47,0x12,0x47,0x12,0x47,0x12,0x47,0x12,0x47,0x0A,0x47,0x0A,0x27,0x0A,0x47,0x12,0x26,0x0A,0x47,0x12,0x47,0x12,0x27,0x0A,0x27,0x12,0x47,0x12,0x47,0x12,0x27,0x12,0x47,0x12,0x47,0x12,0x67,0x0A,0x67,0x0A,0x46,0x02,0x67,0x02, +0xC6,0x02,0xA9,0x13,0xCE,0x34,0xCD,0x34,0xAC,0x34,0xCB,0x44,0xEA,0x4C,0x88,0x4C,0xA8,0x54,0x88,0x54,0xAA,0x54,0x49,0x44,0x47,0x2B,0x27,0x2B,0x28,0x33,0xC7,0x22,0x07,0x2B,0x06,0x2B,0x88,0x3B,0x08,0x44,0x27,0x44,0x47,0x4C,0x88,0x4C,0x67,0x4C,0x67,0x4C,0x68,0x4C,0x88,0x4C,0x68,0x4C,0x68,0x4C,0x49,0x4C,0x49,0x4C,0x49,0x4C,0x85,0x44,0x86,0x44,0x68,0x44,0x48,0x44,0x49,0x44,0x68,0x44,0x48,0x4C,0x27,0x44,0x28,0x4C,0x07,0x44,0x68,0x4C,0x48,0x4C,0x28,0x44,0x4A,0x44,0x49,0x23,0xE9,0x12,0x29,0x1B,0xE8,0x12,0xC9,0x12,0xC9,0x1A,0x47,0x12,0x06,0x0A,0x06,0x12,0x26,0x12,0x06,0x0A,0x67,0x12,0x2A,0x23,0x46,0x02,0xA8,0x0A,0x4B,0x1B,0x2A,0x13,0x2B,0x13, +0x2A,0x13,0x2B,0x13,0x0B,0x13,0x2B,0x1B,0x29,0x1B,0xEB,0x2B,0xEA,0x23,0x2B,0x2C,0x0A,0x1C,0x2A,0x1C,0x2A,0x24,0xEA,0x23,0xEA,0x2B,0x0A,0x3C,0xE8,0x3B,0x07,0x44,0xE8,0x3B,0x08,0x44,0x08,0x44,0x09,0x44,0xE9,0x43,0xE8,0x43,0xE8,0x43,0x08,0x44,0x08,0x44,0x07,0x44,0x07,0x44,0x06,0x3C,0xE6,0x3B,0x27,0x44,0x89,0x4C,0xA9,0x54,0x08,0x55,0xE8,0x54,0xC7,0x4C,0xC7,0x4C,0xE8,0x54,0xC8,0x54,0x88,0x4C,0xA8,0x54,0xAA,0x54,0x8A,0x54,0x46,0x33,0x22,0x12,0x43,0x12,0x85,0x1A,0x66,0x1A,0x86,0x22,0x86,0x22,0x86,0x22,0x66,0x22,0x66,0x22,0x66,0x22,0x85,0x22,0x85,0x22,0x85,0x22,0x85,0x22,0x86,0x22,0xA6,0x22,0xA6,0x22,0xA6,0x1A,0xA6,0x1A,0xA7,0x1A,0xA7,0x1A, +0x29,0x23,0x29,0x1B,0x28,0x1B,0x28,0x13,0x08,0x13,0x08,0x1B,0x28,0x1B,0x48,0x1B,0x27,0x0B,0x0A,0x1C,0xCE,0x34,0xEF,0x44,0x51,0x65,0x32,0x65,0x72,0x5D,0x8F,0x34,0x6C,0x34,0x68,0x13,0xA5,0x0A,0xA6,0x1A,0xE7,0x2A,0xC7,0x2A,0xC7,0x22,0xE7,0x2A,0xE7,0x2A,0xC6,0x2A,0xC7,0x2A,0xC7,0x32,0xC7,0x32,0xE7,0x2A,0xE7,0x2A,0x07,0x2B,0x06,0x2B,0x06,0x2B,0x06,0x2B,0x06,0x2B,0x07,0x2B,0x07,0x2B,0x07,0x2B,0x07,0x2B,0x07,0x33,0x07,0x33,0x27,0x33,0x27,0x33,0x27,0x33,0x27,0x33,0x27,0x33,0x27,0x33,0x27,0x33,0x27,0x33,0x27,0x33,0x27,0x33,0x27,0x33,0x27,0x33,0x27,0x33,0x27,0x33,0x27,0x33,0x27,0x33,0x27,0x33,0x26,0x33,0x26,0x33,0x47,0x33,0x47,0x33,0x47,0x33, +0x2A,0x23,0x2A,0x23,0x0A,0x1B,0x0B,0x23,0xEB,0x1A,0x0B,0x23,0x2A,0x23,0x67,0x12,0x67,0x12,0x48,0x12,0x28,0x0A,0x28,0x0A,0x69,0x12,0x2A,0x23,0x8A,0x2B,0x89,0x23,0xAC,0x23,0xCD,0x2B,0xCD,0x23,0xAD,0x2B,0x2B,0x1B,0x68,0x0A,0x89,0x12,0x89,0x12,0x68,0x12,0x89,0x12,0x89,0x12,0x88,0x0A,0x68,0x02,0xC9,0x0A,0xEA,0x0A,0xC9,0x0A,0x88,0x0A,0x46,0x02,0x46,0x0A,0x04,0x02,0x46,0x0A,0x88,0x1A,0xE6,0x01,0xE5,0x01,0x46,0x12,0xA7,0x1A,0x66,0x12,0x68,0x12,0x27,0x0A,0x69,0x12,0x07,0x0A,0x48,0x0A,0x48,0x0A,0x47,0x0A,0x46,0x0A,0xC7,0x22,0xC9,0x43,0xC8,0x43,0xC7,0x43,0xC7,0x43,0xC7,0x43,0xC7,0x43,0xE8,0x43,0xE8,0x43,0xE8,0x43,0xE8,0x43,0xC8,0x4B,0xE7,0x4B, +0x2A,0x65,0xC9,0x5C,0x2A,0x65,0xEA,0x5C,0x0A,0x65,0x0B,0x65,0xE7,0x43,0x45,0x2B,0x46,0x2B,0x46,0x33,0x47,0x33,0x47,0x33,0x27,0x33,0x47,0x33,0x47,0x3B,0x47,0x3B,0x47,0x33,0x47,0x33,0x47,0x33,0x47,0x33,0x47,0x33,0x47,0x33,0x47,0x33,0x67,0x3B,0x67,0x3B,0x67,0x3B,0x67,0x3B,0x67,0x3B,0x67,0x3B,0x67,0x3B,0x67,0x3B,0x67,0x3B,0x68,0x33,0x67,0x33,0x87,0x33,0x86,0x33,0x86,0x3B,0x66,0x3B,0x67,0x3B,0x67,0x3B,0x67,0x3B,0x67,0x3B,0x66,0x3B,0x66,0x3B,0x86,0x3B,0x86,0x3B,0x66,0x3B,0x67,0x3B,0x68,0x3B,0x68,0x3B,0x68,0x3B,0x68,0x3B,0x88,0x3B,0x88,0x3B,0x88,0x33,0x88,0x33,0x88,0x3B,0x88,0x33,0x88,0x33,0x88,0x33,0x88,0x33,0xA8,0x33,0xA8,0x33,0xA8,0x33, +0x87,0x33,0x87,0x33,0xC8,0x3B,0x2B,0x44,0x8D,0x4C,0xAE,0x54,0xCF,0x54,0xCF,0x54,0xCF,0x4C,0xF0,0x4C,0xF0,0x4C,0xCF,0x4C,0xD0,0x44,0xD0,0x44,0xB0,0x44,0xAF,0x44,0xEF,0x44,0xEF,0x3C,0xCF,0x3C,0xAE,0x3C,0xAE,0x34,0xCE,0x34,0xEE,0x34,0xEF,0x3C,0xEF,0x3C,0xCE,0x34,0x8E,0x34,0x6D,0x34,0x6D,0x34,0x6C,0x34,0x6C,0x34,0x4C,0x34,0x0A,0x3C,0xEA,0x3B,0xC9,0x3B,0xC8,0x3B,0xC7,0x43,0xE7,0x43,0xC7,0x43,0xC7,0x3B,0xC8,0x43,0xC8,0x4B,0xA8,0x4B,0xA8,0x4B,0xC8,0x4B,0xE8,0x43,0xE7,0x43,0xE7,0x3B,0xE7,0x3B,0xC7,0x3B,0xC7,0x4B,0xC7,0x4B,0xC7,0x4B,0xE7,0x4B,0xC6,0x3B,0x07,0x44,0x07,0x3C,0x07,0x44,0xE8,0x43,0xE8,0x43,0x09,0x3C,0x2A,0x34,0x6B,0x2C,0xAC,0x24, +0xEC,0x24,0x2D,0x3D,0xCC,0x3C,0x29,0x3C,0x29,0x44,0x08,0x44,0x46,0x33,0x64,0x1A,0xE3,0x11,0x05,0x12,0xC4,0x01,0xCC,0x23,0xEF,0x34,0x8D,0x1C,0xCE,0x1C,0xAD,0x14,0x8D,0x2C,0x2D,0x2C,0x4E,0x34,0x68,0x02,0x07,0x02,0x06,0x0A,0xE5,0x09,0xE7,0x22,0x4A,0x4C,0x89,0x54,0x88,0x54,0x87,0x4C,0x87,0x4C,0x87,0x4C,0xA7,0x4C,0x87,0x4C,0x67,0x4C,0x88,0x4C,0xA8,0x54,0x68,0x4C,0x69,0x4C,0x8B,0x54,0x88,0x33,0x24,0x0A,0x24,0x02,0xC6,0x1A,0x68,0x2B,0x25,0x23,0x66,0x2B,0x08,0x44,0x66,0x2B,0xC3,0x1A,0x05,0x02,0x46,0x0A,0x26,0x12,0x47,0x12,0x27,0x12,0x07,0x0A,0x27,0x12,0x28,0x12,0x27,0x0A,0x27,0x0A,0x47,0x0A,0x47,0x0A,0x46,0x0A,0x45,0x0A,0x46,0x0A,0x45,0x0A, +0x27,0x0A,0x27,0x12,0x27,0x12,0x07,0x0A,0x07,0x0A,0x27,0x12,0x27,0x12,0x27,0x12,0x27,0x12,0x27,0x12,0x27,0x12,0x27,0x0A,0x27,0x0A,0x27,0x0A,0x27,0x0A,0x27,0x0A,0x27,0x0A,0x27,0x0A,0x27,0x0A,0x27,0x0A,0x27,0x0A,0x27,0x12,0x27,0x12,0x27,0x12,0x27,0x12,0x27,0x12,0x47,0x12,0x06,0x0A,0x46,0x0A,0x46,0x02,0x87,0x0A,0x0D,0x3C,0xCC,0x34,0xED,0x34,0xED,0x34,0x6B,0x24,0x49,0x24,0x89,0x34,0x48,0x3C,0x26,0x44,0x27,0x4C,0x06,0x44,0x48,0x44,0x08,0x3C,0x06,0x1B,0x48,0x2B,0xE7,0x22,0xA7,0x22,0xE7,0x22,0xC6,0x1A,0x27,0x2B,0xA8,0x3B,0xC8,0x3B,0x28,0x44,0x28,0x44,0x07,0x44,0x28,0x44,0x28,0x44,0x08,0x3C,0x29,0x44,0x29,0x4C,0x28,0x44,0x07,0x44,0x27,0x4C, +0x46,0x34,0x06,0x34,0x07,0x3C,0xE8,0x3B,0xC8,0x3B,0xE8,0x43,0xE9,0x43,0xC9,0x43,0xC9,0x43,0xEA,0x43,0xE8,0x3B,0xE7,0x3B,0x08,0x44,0xC8,0x3B,0x08,0x23,0xC9,0x1A,0xC9,0x1A,0xC9,0x1A,0xA9,0x1A,0x48,0x12,0x06,0x0A,0xC6,0x09,0x06,0x12,0xC5,0x09,0xE5,0x09,0x67,0x1A,0xC8,0x1A,0x06,0x02,0xA8,0x12,0xC9,0x12,0xC9,0x12,0xC9,0x12,0xC9,0x12,0xAA,0x12,0xAA,0x12,0xAA,0x12,0xC9,0x12,0x8B,0x2B,0xAA,0x23,0xAA,0x23,0xCA,0x23,0xAA,0x23,0xC9,0x23,0xCA,0x23,0xA9,0x2B,0xC9,0x2B,0xC7,0x33,0xC5,0x33,0xA6,0x33,0xC7,0x3B,0xC7,0x3B,0xA8,0x3B,0xC8,0x3B,0x88,0x33,0xE9,0x43,0xA8,0x3B,0xA7,0x3B,0xE7,0x3B,0x27,0x44,0x47,0x4C,0xA8,0x4C,0x09,0x5D,0x09,0x5D,0x09,0x5D, +0x47,0x5D,0x27,0x5D,0x48,0x5D,0xC8,0x54,0x67,0x44,0x67,0x4C,0x67,0x4C,0x88,0x4C,0xE9,0x5C,0xE9,0x5C,0xC9,0x5C,0xCA,0x5C,0x4A,0x54,0x06,0x2B,0x65,0x1A,0x66,0x1A,0x87,0x22,0x45,0x1A,0x66,0x22,0x66,0x22,0x65,0x22,0x86,0x22,0x85,0x22,0x85,0x22,0x85,0x22,0x85,0x1A,0xA6,0x22,0xA6,0x1A,0xA6,0x1A,0xA7,0x1A,0xA7,0x12,0xE8,0x1A,0x69,0x23,0x49,0x1B,0x69,0x1B,0x27,0x13,0x48,0x13,0x48,0x1B,0x48,0x1B,0x68,0x13,0xA8,0x0B,0x0E,0x35,0xCE,0x3C,0xB3,0x75,0xD5,0x95,0x95,0x95,0x58,0x9E,0x11,0x5D,0x0E,0x2D,0x0A,0x14,0xC6,0x02,0x07,0x1B,0xC7,0x22,0xE7,0x2A,0xC7,0x2A,0xE7,0x2A,0xC7,0x2A,0xE6,0x2A,0xE7,0x2A,0xE7,0x2A,0xE7,0x2A,0xE7,0x2A,0xE7,0x2A,0xE7,0x2A, +0xE7,0x2A,0xE7,0x2A,0xE7,0x2A,0xE7,0x2A,0xE7,0x2A,0xE7,0x2A,0x07,0x2B,0x07,0x2B,0x07,0x2B,0x07,0x2B,0x07,0x2B,0x07,0x33,0x07,0x2B,0x07,0x33,0x07,0x33,0x27,0x33,0x27,0x33,0x27,0x33,0x27,0x33,0x27,0x33,0x27,0x33,0x27,0x33,0x27,0x33,0x27,0x33,0x27,0x33,0x27,0x33,0x27,0x33,0x47,0x33,0x47,0x33,0x47,0x33,0x47,0x33,0x47,0x33,0xE9,0x1A,0xA8,0x12,0x88,0x12,0x88,0x12,0x88,0x12,0x88,0x1A,0x88,0x12,0x87,0x12,0x27,0x12,0x07,0x0A,0x48,0x12,0x48,0x12,0x68,0x0A,0x4B,0x2B,0x28,0x1B,0x28,0x1B,0x2A,0x13,0x4B,0x1B,0x4B,0x1B,0x2B,0x23,0x0B,0x23,0xA9,0x1A,0x48,0x12,0x48,0x12,0x68,0x12,0x48,0x0A,0x88,0x12,0x68,0x0A,0x88,0x0A,0x8C,0x23,0xCE,0x2B,0xCE,0x2B, +0xAD,0x33,0x87,0x0A,0xE5,0x01,0xE4,0x01,0xA8,0x12,0x6B,0x2B,0x06,0x02,0x05,0x02,0xE8,0x22,0x49,0x2B,0xC7,0x22,0x05,0x0A,0x06,0x0A,0x06,0x0A,0x26,0x0A,0x06,0x0A,0x26,0x0A,0xE5,0x01,0xE4,0x09,0x07,0x2B,0xC9,0x43,0xA8,0x43,0xC8,0x4B,0xC8,0x4B,0xC8,0x43,0xC8,0x43,0xC8,0x43,0xC8,0x43,0xE8,0x43,0xE8,0x43,0xE8,0x43,0xE7,0x43,0xA8,0x54,0xE9,0x5C,0xA8,0x54,0x88,0x54,0xA8,0x54,0xA9,0x54,0xCA,0x5C,0x8A,0x54,0xA7,0x3B,0x26,0x2B,0x26,0x33,0x47,0x33,0x48,0x33,0x27,0x33,0x27,0x33,0x27,0x33,0x47,0x33,0x47,0x33,0x47,0x33,0x47,0x33,0x47,0x33,0x47,0x33,0x47,0x33,0x47,0x33,0x47,0x33,0x47,0x33,0x47,0x33,0x47,0x33,0x47,0x33,0x47,0x33,0x47,0x33,0x47,0x33, +0x67,0x33,0x67,0x33,0x67,0x33,0x66,0x33,0x66,0x33,0x66,0x3B,0x67,0x3B,0x47,0x3B,0x67,0x3B,0x67,0x3B,0x66,0x33,0x66,0x33,0x66,0x3B,0x66,0x3B,0x67,0x3B,0x67,0x3B,0x47,0x43,0x47,0x43,0x47,0x43,0x47,0x43,0x67,0x3B,0x67,0x3B,0x67,0x3B,0x67,0x3B,0x67,0x3B,0x67,0x3B,0x68,0x3B,0x68,0x3B,0x68,0x3B,0x68,0x3B,0x68,0x3B,0x68,0x3B,0xA7,0x3B,0x87,0x3B,0x67,0x33,0x67,0x33,0x88,0x33,0x89,0x33,0x89,0x33,0x89,0x33,0xCA,0x33,0xCA,0x33,0xEB,0x33,0x0B,0x3C,0x2C,0x3C,0x4C,0x44,0x6D,0x44,0x6D,0x44,0x8D,0x44,0x8D,0x44,0xAD,0x3C,0xAD,0x3C,0xAD,0x3C,0xCD,0x3C,0xCD,0x3C,0xCE,0x3C,0xCD,0x3C,0x8D,0x3C,0x6C,0x34,0x4C,0x34,0x4C,0x3C,0x4B,0x34,0x2B,0x34,0x0A,0x34, +0xC9,0x3B,0xA8,0x3B,0xA8,0x3B,0xA8,0x3B,0xA7,0x3B,0xC7,0x3B,0xC7,0x3B,0xC7,0x3B,0xC7,0x3B,0xC7,0x43,0xA7,0x43,0xA8,0x43,0xA8,0x43,0xC8,0x43,0xC8,0x3B,0xE8,0x3B,0x07,0x3C,0xE7,0x3B,0xC7,0x43,0xC7,0x4B,0xA7,0x4B,0xC7,0x43,0xE7,0x43,0xE7,0x3B,0xE7,0x3B,0xC8,0x43,0xC9,0x43,0xA9,0x43,0xCA,0x3B,0x0B,0x34,0x6C,0x24,0x8D,0x1C,0xCD,0x24,0xCD,0x2C,0x6A,0x34,0xE7,0x2B,0xE6,0x3B,0x07,0x44,0x07,0x4C,0xE8,0x53,0x67,0x43,0xE7,0x32,0x65,0x0A,0x08,0x0B,0x6C,0x1C,0x2E,0x25,0x2E,0x1D,0x6E,0x1D,0xEE,0x34,0x30,0x45,0x8F,0x3C,0x47,0x02,0x47,0x0A,0x07,0x0A,0x06,0x0A,0x0C,0x4C,0x0B,0x54,0x08,0x4C,0x28,0x4C,0x47,0x44,0x27,0x44,0x48,0x44,0x48,0x44,0x48,0x44, +0x48,0x4C,0x48,0x44,0x27,0x44,0x48,0x44,0x49,0x4C,0x49,0x4C,0xC8,0x33,0x62,0x0A,0xC8,0x33,0x0C,0x5D,0x4C,0x65,0x2B,0x65,0x6B,0x6D,0x6B,0x65,0x6A,0x65,0x6A,0x65,0x69,0x2B,0x44,0x0A,0x25,0x0A,0x25,0x0A,0x06,0x0A,0x07,0x12,0x07,0x12,0x07,0x0A,0x28,0x12,0x27,0x0A,0x07,0x0A,0x27,0x12,0x46,0x12,0x26,0x12,0x05,0x12,0x05,0x12,0x07,0x0A,0x27,0x0A,0x27,0x12,0x27,0x0A,0x07,0x12,0x27,0x12,0x07,0x12,0x07,0x0A,0x07,0x12,0x07,0x12,0x07,0x12,0x07,0x12,0x27,0x0A,0x27,0x0A,0x27,0x0A,0x27,0x0A,0x27,0x0A,0x27,0x0A,0x27,0x0A,0x27,0x0A,0x27,0x0A,0x27,0x0A,0x27,0x12,0x27,0x12,0x07,0x12,0x27,0x12,0x06,0x0A,0x47,0x12,0x26,0x0A,0x67,0x0A,0x6B,0x2B,0x0D,0x3C, +0x6A,0x24,0x8B,0x2C,0x4B,0x24,0x2A,0x24,0xE9,0x1B,0xC7,0x23,0xC7,0x33,0xA6,0x33,0xA6,0x3B,0x85,0x33,0xA6,0x3B,0xC8,0x33,0x27,0x23,0xC6,0x12,0xC7,0x1A,0xA6,0x12,0x87,0x12,0xA7,0x1A,0xA6,0x1A,0xE6,0x22,0xC8,0x3B,0x87,0x33,0xA6,0x33,0xE7,0x3B,0xE7,0x3B,0xE9,0x3B,0xC9,0x3B,0xA8,0x3B,0x87,0x33,0xA6,0x3B,0xE5,0x3B,0xC4,0x3B,0x27,0x34,0x48,0x3C,0xC7,0x33,0xE8,0x43,0xC8,0x43,0x46,0x33,0x68,0x3B,0x89,0x3B,0x89,0x3B,0x27,0x2B,0x08,0x3C,0xC9,0x54,0xC9,0x54,0xAA,0x54,0xCA,0x3B,0x66,0x1A,0x68,0x12,0x27,0x0A,0x69,0x1A,0x07,0x0A,0x07,0x12,0xA5,0x01,0xC6,0x11,0xE6,0x11,0xE5,0x09,0x47,0x12,0x47,0x12,0x06,0x0A,0x88,0x1A,0x47,0x0A,0x68,0x12,0x68,0x0A, +0x48,0x12,0x68,0x12,0x69,0x12,0x68,0x0A,0xA8,0x0A,0x6A,0x23,0x8A,0x23,0x8A,0x23,0x8A,0x23,0x69,0x23,0x69,0x23,0x69,0x23,0x67,0x23,0x87,0x23,0x07,0x34,0x47,0x3C,0x28,0x4C,0x86,0x33,0x66,0x2B,0x66,0x33,0x67,0x33,0x88,0x33,0x47,0x2B,0x67,0x33,0x87,0x33,0x69,0x4C,0xEA,0x5C,0x0A,0x5D,0xE9,0x5C,0xC8,0x54,0xC8,0x54,0xE8,0x5C,0xC6,0x54,0xC7,0x54,0x09,0x5D,0xEA,0x5C,0xA9,0x54,0x48,0x4C,0x48,0x4C,0xA9,0x54,0xE9,0x5C,0xE8,0x5C,0xE9,0x5C,0xEA,0x5C,0x0B,0x65,0xAC,0x5C,0xEA,0x43,0xE7,0x22,0x66,0x1A,0x66,0x1A,0x66,0x1A,0x86,0x22,0x86,0x22,0x66,0x1A,0x85,0x1A,0xA6,0x22,0x86,0x1A,0x86,0x1A,0xA6,0x1A,0xC7,0x1A,0xC7,0x1A,0xC7,0x1A,0xE8,0x1A,0x49,0x23, +0x69,0x23,0x69,0x1B,0x89,0x1B,0x68,0x13,0x89,0x1B,0x89,0x1B,0x89,0x1B,0x88,0x0B,0x0A,0x0C,0x6F,0x35,0xEF,0x3C,0xF5,0x8D,0xB6,0xAD,0x96,0xAD,0x75,0x9D,0xD6,0x8D,0x0D,0x1D,0xAC,0x1C,0x47,0x0B,0x07,0x1B,0xC7,0x22,0xC7,0x2A,0xC7,0x2A,0xC6,0x2A,0xC7,0x2A,0xE6,0x2A,0xE6,0x2A,0xE7,0x2A,0xE7,0x2A,0xE7,0x2A,0xE7,0x2A,0xE7,0x2A,0xE7,0x2A,0xE7,0x2A,0xE7,0x2A,0xE7,0x2A,0xE7,0x2A,0xE7,0x2A,0xE7,0x2A,0x07,0x2B,0x07,0x2B,0x07,0x2B,0x07,0x2B,0x07,0x2B,0x07,0x2B,0x07,0x2B,0x07,0x33,0x27,0x33,0x27,0x33,0x27,0x33,0x27,0x33,0x27,0x33,0x27,0x33,0x27,0x33,0x27,0x33,0x27,0x33,0x27,0x33,0x27,0x33,0x27,0x33,0x27,0x33,0x27,0x33,0x27,0x33,0x27,0x33,0x47,0x33, +0x66,0x12,0x46,0x0A,0x26,0x0A,0x67,0x12,0x47,0x12,0x47,0x0A,0x47,0x12,0xE5,0x01,0xE6,0x09,0xE6,0x09,0x27,0x12,0xE6,0x01,0xC9,0x1A,0xC9,0x1A,0xC7,0x12,0xE7,0x12,0xC9,0x12,0xC9,0x12,0xC9,0x12,0xA9,0x1A,0xCA,0x1A,0x89,0x1A,0x48,0x12,0x07,0x0A,0xE7,0x01,0x68,0x12,0xA9,0x1A,0x68,0x0A,0x4B,0x23,0x6C,0x23,0x0B,0x13,0x2C,0x1B,0x4B,0x23,0x2B,0x1B,0xA8,0x0A,0xA8,0x12,0xC8,0x12,0x4B,0x23,0x47,0x0A,0xA7,0x1A,0x28,0x23,0x07,0x23,0x28,0x2B,0x69,0x33,0x46,0x12,0xE5,0x09,0xC4,0x01,0xA3,0x01,0x83,0x01,0x45,0x12,0xE7,0x2A,0x89,0x43,0xC9,0x43,0x88,0x43,0xC8,0x43,0xA8,0x43,0xC8,0x43,0xC8,0x43,0xC8,0x43,0xC8,0x43,0xC8,0x43,0xE8,0x43,0xE7,0x43,0xE7,0x43, +0x67,0x4C,0x47,0x44,0x67,0x4C,0x88,0x4C,0x88,0x4C,0x48,0x4C,0x28,0x4C,0x69,0x54,0xE8,0x43,0x26,0x2B,0x26,0x2B,0x47,0x33,0x27,0x33,0x27,0x33,0x07,0x33,0x27,0x33,0x27,0x33,0x27,0x33,0x27,0x33,0x27,0x33,0x27,0x33,0x47,0x33,0x47,0x33,0x47,0x33,0x47,0x33,0x47,0x33,0x47,0x33,0x47,0x33,0x47,0x33,0x47,0x33,0x47,0x33,0x47,0x33,0x27,0x3B,0x27,0x3B,0x47,0x33,0x47,0x33,0x47,0x33,0x27,0x3B,0x27,0x3B,0x27,0x3B,0x27,0x3B,0x47,0x3B,0x47,0x33,0x47,0x33,0x47,0x33,0x47,0x33,0x47,0x3B,0x48,0x3B,0x47,0x3B,0x47,0x3B,0x47,0x3B,0x47,0x3B,0x47,0x3B,0x47,0x3B,0x47,0x3B,0x47,0x3B,0x47,0x3B,0x47,0x3B,0x47,0x3B,0x47,0x3B,0x47,0x3B,0x47,0x3B,0x67,0x3B,0x67,0x3B, +0x66,0x3B,0x46,0x3B,0x67,0x3B,0x88,0x3B,0x88,0x3B,0x88,0x3B,0x88,0x3B,0x68,0x33,0x68,0x33,0x87,0x33,0x88,0x33,0x87,0x2B,0x88,0x33,0x88,0x33,0x88,0x2B,0x88,0x2B,0xA9,0x33,0xCA,0x33,0xCA,0x3B,0xEA,0x3B,0x0A,0x3C,0x0A,0x3C,0x0A,0x3C,0x0A,0x3C,0x2B,0x3C,0x2B,0x44,0x4B,0x44,0x4C,0x44,0x4B,0x44,0x0B,0x44,0xC9,0x3B,0xA8,0x3B,0xA8,0x3B,0xA8,0x3B,0x88,0x3B,0x88,0x43,0x88,0x3B,0xA8,0x3B,0xA8,0x3B,0xA7,0x3B,0xA7,0x3B,0xA7,0x3B,0xA7,0x43,0xA7,0x43,0xA8,0x3B,0xA8,0x3B,0xC9,0x33,0xC9,0x33,0xC7,0x3B,0xC7,0x3B,0xA7,0x3B,0xA8,0x43,0xA8,0x3B,0x88,0x3B,0xC9,0x3B,0xA8,0x3B,0xA9,0x43,0x89,0x43,0x89,0x4B,0x89,0x4B,0x89,0x43,0xCA,0x3B,0xEA,0x33,0x2B,0x2C, +0x0A,0x2C,0x0A,0x34,0xE9,0x3B,0xC8,0x3B,0xC8,0x43,0xC7,0x43,0xC6,0x43,0xC7,0x4B,0xE8,0x4B,0xE8,0x4B,0xE9,0x3B,0xC8,0x2B,0x4A,0x2C,0x0D,0x3D,0x8C,0x24,0xAC,0x2C,0xE9,0x1B,0xEA,0x1B,0x6D,0x34,0xE8,0x12,0xC4,0x01,0xA4,0x01,0x67,0x1A,0xAA,0x43,0xC9,0x43,0xA8,0x43,0xE7,0x43,0x08,0x44,0xE7,0x3B,0xE8,0x3B,0xE8,0x3B,0xE9,0x3B,0x06,0x3C,0xE6,0x3B,0xE6,0x3B,0xE7,0x3B,0x85,0x33,0xE6,0x3B,0xA9,0x54,0xA9,0x54,0x0A,0x5D,0xA9,0x54,0x88,0x4C,0x68,0x44,0x68,0x44,0xA8,0x4C,0x87,0x4C,0x66,0x44,0xEC,0x5C,0x6A,0x4C,0xE5,0x1A,0x24,0x0A,0xC3,0x01,0xE5,0x09,0x06,0x12,0x06,0x0A,0xE7,0x09,0x28,0x12,0x07,0x0A,0xE6,0x09,0xE6,0x09,0xE6,0x11,0xE5,0x11,0x06,0x1A, +0x06,0x0A,0x07,0x0A,0x07,0x0A,0x06,0x0A,0x06,0x0A,0x07,0x0A,0x06,0x0A,0xE6,0x09,0x07,0x0A,0x07,0x0A,0x07,0x0A,0x07,0x0A,0x07,0x0A,0x07,0x0A,0x07,0x0A,0x07,0x0A,0x07,0x0A,0x07,0x0A,0x07,0x0A,0x07,0x0A,0x07,0x0A,0x07,0x0A,0x07,0x0A,0x06,0x0A,0x06,0x0A,0x06,0x0A,0xE6,0x09,0x27,0x0A,0x06,0x02,0x46,0x0A,0x6B,0x2B,0x6B,0x2B,0xA8,0x1B,0xA9,0x1B,0xA9,0x1B,0xCA,0x23,0x89,0x23,0x27,0x1B,0x47,0x23,0x06,0x2B,0x06,0x2B,0x26,0x33,0x06,0x2B,0x07,0x23,0x08,0x1B,0xE8,0x1A,0xA6,0x12,0x65,0x0A,0xA7,0x12,0xA8,0x1A,0x66,0x12,0x65,0x12,0xE5,0x22,0x08,0x44,0xE7,0x3B,0xA6,0x33,0x66,0x2B,0x88,0x33,0x68,0x2B,0x68,0x33,0xC9,0x3B,0x86,0x33,0xA5,0x3B,0xC8,0x5C, +0xEA,0x54,0x0A,0x5D,0xA9,0x54,0xCA,0x5C,0x8A,0x5C,0x67,0x3B,0xE7,0x2A,0x07,0x2B,0x27,0x2B,0x67,0x33,0x48,0x44,0xA7,0x4C,0x86,0x44,0xA8,0x4C,0x49,0x44,0x68,0x33,0x0B,0x23,0xEB,0x1A,0x07,0x02,0xC7,0x01,0xC6,0x01,0x48,0x12,0x88,0x1A,0xC5,0x09,0xC5,0x01,0xA8,0x1A,0xE8,0x22,0x67,0x1A,0xC5,0x01,0x68,0x12,0x27,0x0A,0x27,0x0A,0x27,0x12,0x27,0x12,0x27,0x0A,0x47,0x0A,0xC9,0x12,0x8B,0x23,0x6A,0x1B,0x69,0x1B,0x28,0x13,0x69,0x1B,0x68,0x23,0x27,0x1B,0x67,0x23,0x49,0x3C,0x0A,0x55,0x2A,0x55,0xEA,0x5C,0x69,0x54,0x66,0x33,0x67,0x33,0x47,0x2B,0x27,0x2B,0x07,0x2B,0x47,0x2B,0xC8,0x3B,0x49,0x4C,0x68,0x4C,0x68,0x4C,0x88,0x4C,0x87,0x4C,0x88,0x4C,0xA8,0x54, +0x88,0x4C,0xA8,0x54,0x68,0x4C,0x49,0x4C,0x8A,0x54,0x6A,0x4C,0x69,0x4C,0x89,0x4C,0x68,0x4C,0x47,0x44,0x67,0x4C,0x47,0x4C,0x48,0x4C,0x6A,0x4C,0x8B,0x54,0xE9,0x3B,0x46,0x1A,0x87,0x22,0x66,0x1A,0x87,0x1A,0x87,0x22,0x66,0x1A,0x86,0x1A,0xA6,0x1A,0xA6,0x1A,0xA7,0x1A,0xC7,0x1A,0xC8,0x1A,0x09,0x23,0xE8,0x1A,0xA7,0x0A,0xC8,0x12,0xE8,0x1A,0xE7,0x12,0x69,0x23,0x69,0x1B,0xEA,0x23,0xA9,0x23,0xCA,0x1B,0xE9,0x13,0x8C,0x14,0xB0,0x35,0x30,0x45,0x73,0x7D,0xB6,0xAD,0x97,0xB5,0x96,0xA5,0x55,0x8D,0x4D,0x1D,0x2E,0x25,0x88,0x0B,0x27,0x1B,0xE7,0x22,0xC7,0x2A,0xC7,0x32,0xC7,0x2A,0xC7,0x2A,0xE6,0x22,0xE6,0x22,0xE6,0x22,0xE7,0x2A,0xE7,0x2A,0xE7,0x2A,0xE7,0x2A, +0xE7,0x2A,0xE7,0x2A,0xE7,0x2A,0xE7,0x2A,0xE7,0x2A,0xE7,0x2A,0xE7,0x2A,0xE7,0x2A,0xE7,0x2A,0x07,0x2B,0x07,0x2B,0x07,0x2B,0x07,0x2B,0x07,0x2B,0x07,0x2B,0x07,0x33,0x07,0x33,0x27,0x33,0x27,0x33,0x27,0x33,0x27,0x33,0x27,0x33,0x27,0x33,0x27,0x33,0x27,0x33,0x27,0x33,0x27,0x33,0x27,0x33,0x27,0x33,0x27,0x33,0x27,0x33,0x27,0x33,0x28,0x2B,0x45,0x12,0x05,0x0A,0xC4,0x01,0xC4,0x01,0x06,0x0A,0xC5,0x01,0xC5,0x09,0x47,0x12,0xC5,0x01,0x06,0x0A,0x46,0x12,0x26,0x0A,0x66,0x0A,0x67,0x0A,0x87,0x0A,0x88,0x12,0x68,0x12,0x68,0x12,0x88,0x1A,0x89,0x1A,0x48,0x12,0x07,0x0A,0xE7,0x09,0x07,0x0A,0x27,0x12,0xC9,0x22,0x67,0x0A,0xC9,0x1A,0xEA,0x1A,0x0B,0x1B,0xCB,0x12, +0xCB,0x1A,0xEA,0x1A,0xC9,0x12,0x87,0x0A,0x0A,0x1B,0xC9,0x12,0xC8,0x12,0x09,0x23,0xC6,0x1A,0x68,0x33,0xEA,0x43,0xA9,0x3B,0x89,0x3B,0x48,0x33,0x89,0x3B,0x06,0x2B,0xC6,0x2A,0x68,0x3B,0xC9,0x43,0xC8,0x4B,0xA8,0x43,0xA7,0x43,0xC8,0x4B,0xA8,0x43,0xC8,0x43,0xC8,0x43,0xC8,0x43,0xC8,0x43,0xC8,0x43,0xE7,0x43,0xE7,0x43,0xE7,0x43,0x07,0x3C,0x48,0x44,0x07,0x44,0x07,0x3C,0x07,0x3C,0x07,0x44,0x28,0x4C,0xE7,0x43,0xA7,0x3B,0x26,0x2B,0x27,0x2B,0x27,0x33,0x07,0x2B,0x27,0x33,0x07,0x33,0x07,0x33,0x27,0x33,0x27,0x33,0x27,0x33,0x27,0x33,0x27,0x33,0x27,0x33,0x27,0x33,0x27,0x33,0x27,0x33,0x27,0x33,0x27,0x33,0x27,0x33,0x27,0x33,0x27,0x33,0x27,0x33,0x27,0x33, +0x06,0x3B,0x26,0x3B,0x26,0x33,0x27,0x33,0x27,0x33,0x27,0x3B,0x27,0x3B,0x07,0x3B,0x27,0x3B,0x27,0x33,0x48,0x33,0x48,0x2B,0x48,0x2B,0x48,0x33,0x28,0x33,0x28,0x3B,0x47,0x3B,0x47,0x3B,0x47,0x3B,0x47,0x3B,0x47,0x3B,0x47,0x3B,0x47,0x3B,0x47,0x3B,0x47,0x3B,0x47,0x3B,0x47,0x3B,0x47,0x3B,0x47,0x33,0x47,0x33,0x47,0x33,0x47,0x33,0x67,0x3B,0x67,0x3B,0x67,0x3B,0x47,0x3B,0x47,0x3B,0x47,0x33,0x67,0x3B,0x67,0x3B,0x67,0x3B,0x67,0x33,0x86,0x33,0x86,0x33,0x87,0x33,0x87,0x33,0x87,0x33,0x86,0x33,0x48,0x3B,0x47,0x33,0x48,0x3B,0x67,0x33,0x67,0x3B,0x68,0x33,0x88,0x3B,0x88,0x3B,0x88,0x3B,0x88,0x3B,0x88,0x3B,0x88,0x3B,0x88,0x3B,0x68,0x3B,0x67,0x3B,0x67,0x3B, +0xA7,0x3B,0x87,0x3B,0x88,0x3B,0x88,0x43,0x89,0x3B,0x88,0x3B,0x88,0x3B,0x87,0x33,0xA7,0x3B,0xA6,0x3B,0xA7,0x3B,0xA7,0x3B,0xA8,0x3B,0xA9,0x33,0xCA,0x2B,0xCA,0x2B,0xA8,0x33,0xC9,0x33,0xC9,0x2B,0xC9,0x2B,0x0A,0x34,0xEA,0x33,0xCA,0x33,0x89,0x3B,0x89,0x43,0x69,0x43,0x69,0x4B,0x88,0x4B,0x88,0x43,0x88,0x43,0xA8,0x43,0xC8,0x43,0xA8,0x43,0x88,0x43,0x88,0x4B,0x89,0x4B,0xAA,0x4B,0xA9,0x43,0x88,0x3B,0xA7,0x43,0xA6,0x3B,0xC6,0x43,0xE7,0x43,0x07,0x3C,0x08,0x3C,0xAB,0x4C,0x2B,0x3C,0x88,0x2B,0xE7,0x1B,0x08,0x24,0x4A,0x34,0x47,0x1B,0xE6,0x1A,0x85,0x1A,0x85,0x1A,0x68,0x3B,0x67,0x3B,0xA7,0x3B,0x65,0x2B,0xA6,0x33,0xC7,0x33,0x87,0x33,0xC9,0x3B,0x88,0x33, +0xA5,0x33,0xA5,0x33,0x28,0x44,0x89,0x4C,0xAA,0x54,0xEA,0x5C,0x09,0x5D,0xE8,0x5C,0xE8,0x54,0x09,0x5D,0x2B,0x5D,0xCA,0x54,0x69,0x4C,0x27,0x44,0x27,0x3C,0xC9,0x54,0xE9,0x54,0x0A,0x5D,0xEB,0x5C,0x8A,0x54,0x6B,0x54,0xA6,0x22,0xA3,0x01,0x06,0x12,0xE6,0x09,0xE6,0x09,0xE7,0x09,0x07,0x0A,0x07,0x12,0xE7,0x11,0xC6,0x11,0xE7,0x11,0x06,0x0A,0x06,0x0A,0x06,0x0A,0x06,0x0A,0x07,0x0A,0x07,0x0A,0x06,0x0A,0xE6,0x09,0xE6,0x09,0xE6,0x09,0xE7,0x09,0xE7,0x09,0xE7,0x09,0xE7,0x09,0xE7,0x09,0xE7,0x09,0xE6,0x09,0xE6,0x09,0xE6,0x09,0xE6,0x09,0x06,0x0A,0xE6,0x09,0xE6,0x09,0xE6,0x09,0xE6,0x09,0xE6,0x09,0x06,0x0A,0xE6,0x09,0x06,0x02,0x67,0x12,0xC8,0x1A,0xE9,0x1A, +0xE6,0x12,0xC7,0x0A,0x09,0x1B,0x0A,0x1B,0x09,0x1B,0xE8,0x22,0x87,0x1A,0x86,0x1A,0x66,0x1A,0x65,0x1A,0xA6,0x1A,0x86,0x12,0x87,0x12,0x4A,0x2B,0x08,0x1B,0x45,0x02,0xC9,0x1A,0x09,0x23,0x25,0x0A,0x44,0x0A,0x09,0x44,0xCB,0x5C,0xEB,0x64,0x89,0x54,0x86,0x33,0x26,0x23,0x48,0x2B,0x28,0x2B,0x07,0x23,0x67,0x33,0x28,0x4C,0x48,0x4C,0x47,0x4C,0x06,0x44,0x06,0x44,0x27,0x44,0x29,0x4C,0x67,0x33,0xA6,0x1A,0xC8,0x22,0xA6,0x1A,0x07,0x2B,0x86,0x33,0x85,0x2B,0x85,0x2B,0xA6,0x2B,0x87,0x2B,0x89,0x2B,0x8D,0x2B,0xAD,0x2B,0xCA,0x12,0x07,0x02,0xE6,0x01,0x88,0x12,0x4B,0x2B,0x05,0x02,0x46,0x0A,0x09,0x23,0x08,0x23,0xC8,0x1A,0xA8,0x1A,0xE5,0x01,0x06,0x0A,0xE6,0x09, +0xE5,0x09,0x05,0x0A,0xE6,0x01,0x47,0x0A,0xE9,0x12,0x49,0x1B,0x28,0x13,0x48,0x13,0x68,0x13,0x48,0x13,0x48,0x13,0x68,0x1B,0xA8,0x2B,0x29,0x3C,0x68,0x44,0x47,0x44,0x08,0x44,0x49,0x4C,0x46,0x2B,0x06,0x23,0x07,0x23,0xC6,0x1A,0xC7,0x1A,0xC6,0x1A,0x88,0x33,0xE9,0x3B,0x08,0x44,0x07,0x3C,0x28,0x44,0x27,0x44,0x27,0x44,0x07,0x3C,0xE8,0x43,0x28,0x44,0x08,0x44,0x28,0x44,0x28,0x44,0x07,0x3C,0x07,0x44,0xE6,0x3B,0x07,0x3C,0xE7,0x3B,0x27,0x44,0x07,0x3C,0xE7,0x3B,0xE7,0x3B,0x07,0x44,0x85,0x2B,0x46,0x1A,0x67,0x1A,0x67,0x1A,0x67,0x1A,0x87,0x1A,0x87,0x1A,0x87,0x1A,0x87,0x12,0xA7,0x12,0xE8,0x1A,0x09,0x23,0xE9,0x1A,0xE9,0x1A,0x87,0x0A,0x46,0x02,0xA8,0x0A, +0x29,0x1B,0x49,0x23,0xE7,0x12,0x49,0x1B,0x69,0x1B,0xAA,0x1B,0xEA,0x1B,0x0A,0x14,0x6B,0x0C,0xB0,0x35,0x30,0x3D,0xF5,0x7D,0x55,0x95,0x35,0x9D,0x96,0x9D,0x34,0x85,0xAF,0x2D,0xED,0x24,0x88,0x0B,0x48,0x1B,0xC7,0x22,0xA7,0x2A,0xA7,0x2A,0xA6,0x2A,0xC7,0x2A,0xE7,0x22,0xE6,0x22,0xE6,0x22,0xE6,0x22,0xE7,0x2A,0xE7,0x2A,0xE7,0x2A,0xE7,0x2A,0xE7,0x2A,0xE7,0x2A,0xE7,0x2A,0xE7,0x2A,0xE7,0x2A,0xE7,0x2A,0xE7,0x2A,0xE7,0x2A,0xE7,0x2A,0x07,0x2B,0x07,0x2B,0x07,0x2B,0x07,0x2B,0x07,0x2B,0x07,0x2B,0x07,0x2B,0x07,0x2B,0x07,0x2B,0x27,0x33,0x27,0x33,0x27,0x33,0x27,0x33,0x27,0x33,0x27,0x33,0x27,0x33,0x27,0x33,0x27,0x33,0x27,0x33,0x27,0x33,0x27,0x33,0x27,0x33, +0x48,0x33,0x28,0x33,0x28,0x2B,0x08,0x2B,0x09,0x2B,0x88,0x1A,0x47,0x12,0xA9,0x22,0x26,0x12,0x25,0x12,0x66,0x12,0xA7,0x1A,0xE7,0x22,0x86,0x12,0x26,0x02,0x26,0x02,0x06,0x0A,0x27,0x0A,0x27,0x12,0xE6,0x09,0xC5,0x01,0xE6,0x09,0xE7,0x09,0xE6,0x09,0xE6,0x09,0x06,0x0A,0x66,0x12,0x25,0x0A,0x88,0x12,0x68,0x0A,0x48,0x0A,0x69,0x12,0x69,0x0A,0x68,0x0A,0x88,0x12,0xE9,0x1A,0x2A,0x1B,0xE9,0x1A,0xC8,0x12,0xE8,0x1A,0x27,0x23,0xC9,0x3B,0x88,0x3B,0x87,0x3B,0xA8,0x43,0xA9,0x43,0x87,0x3B,0xA7,0x43,0xA8,0x43,0xC8,0x4B,0xA7,0x43,0xC8,0x43,0xC7,0x43,0xA7,0x43,0xC8,0x43,0xA7,0x43,0xC8,0x43,0xC8,0x43,0xC8,0x43,0xC8,0x43,0xC8,0x43,0xE7,0x43,0xE7,0x43,0xE6,0x43, +0xA7,0x3B,0xA7,0x33,0xA7,0x33,0xC7,0x3B,0xE7,0x3B,0xC7,0x3B,0xE7,0x3B,0x08,0x44,0xA7,0x3B,0x26,0x2B,0x26,0x2B,0x27,0x2B,0xE7,0x2A,0x07,0x33,0xE7,0x32,0xE7,0x32,0x07,0x2B,0x07,0x2B,0x07,0x2B,0x07,0x2B,0x07,0x2B,0x07,0x2B,0x27,0x33,0x27,0x33,0x27,0x33,0x27,0x33,0x27,0x33,0x27,0x33,0x27,0x33,0x27,0x33,0x27,0x33,0x27,0x33,0x26,0x33,0x27,0x33,0x27,0x33,0x27,0x2B,0x27,0x2B,0x27,0x33,0x27,0x33,0x28,0x33,0x28,0x33,0x27,0x2B,0x47,0x2B,0x48,0x23,0x48,0x2B,0x48,0x2B,0x28,0x33,0x28,0x33,0x47,0x33,0x47,0x33,0x47,0x33,0x47,0x33,0x47,0x33,0x47,0x33,0x47,0x33,0x47,0x33,0x47,0x33,0x47,0x33,0x47,0x33,0x47,0x33,0x47,0x33,0x47,0x33,0x47,0x33,0x47,0x33, +0x47,0x3B,0x47,0x3B,0x47,0x3B,0x47,0x3B,0x47,0x3B,0x47,0x3B,0x67,0x3B,0x67,0x3B,0x87,0x3B,0x67,0x3B,0x86,0x3B,0x86,0x3B,0x86,0x3B,0x66,0x3B,0x66,0x3B,0x66,0x3B,0x68,0x3B,0x68,0x3B,0x67,0x3B,0x47,0x33,0x67,0x33,0x67,0x33,0x67,0x3B,0x67,0x3B,0x68,0x3B,0x68,0x3B,0x68,0x3B,0x67,0x3B,0x67,0x3B,0x67,0x3B,0x88,0x3B,0x87,0x43,0x66,0x33,0x67,0x3B,0x67,0x3B,0x68,0x3B,0x69,0x3B,0x88,0x3B,0x88,0x3B,0x87,0x3B,0x87,0x3B,0x87,0x3B,0xA7,0x3B,0xA7,0x3B,0xA8,0x33,0xEA,0x33,0x2C,0x2C,0x2C,0x24,0x2D,0x24,0x4D,0x24,0x4C,0x1C,0x4C,0x1C,0xAD,0x2C,0x8C,0x34,0xCA,0x33,0xA9,0x3B,0x68,0x43,0x87,0x43,0x87,0x43,0xA7,0x3B,0xA7,0x3B,0xA7,0x3B,0xA7,0x3B,0x87,0x43, +0x87,0x43,0x87,0x4B,0x47,0x43,0x48,0x43,0x89,0x43,0xA9,0x43,0xC9,0x43,0xC9,0x43,0xC8,0x43,0xA7,0x43,0x86,0x3B,0xE7,0x3B,0x08,0x3C,0x6A,0x4C,0x4A,0x4C,0xA8,0x43,0x07,0x2C,0x07,0x34,0x49,0x44,0x08,0x3C,0xE8,0x43,0xC8,0x43,0xC7,0x3B,0x08,0x4C,0x48,0x4C,0x68,0x4C,0x85,0x33,0x65,0x2B,0x66,0x2B,0x46,0x2B,0x67,0x33,0x27,0x2B,0x65,0x2B,0xE8,0x3B,0x8B,0x54,0xAB,0x54,0xAA,0x54,0xA9,0x54,0x88,0x4C,0xC8,0x54,0xC8,0x54,0xE9,0x5C,0x88,0x4C,0xA9,0x4C,0x8A,0x4C,0x48,0x44,0x89,0x4C,0xA9,0x54,0xC8,0x4C,0xE9,0x54,0xA9,0x54,0xAA,0x5C,0x8A,0x54,0x8C,0x5C,0x47,0x2B,0x04,0x02,0xE4,0x01,0xE5,0x01,0x26,0x02,0x27,0x02,0xE6,0x01,0xC6,0x01,0xE7,0x09,0xE7,0x09, +0x27,0x0A,0x06,0x0A,0xE6,0x09,0xE6,0x09,0xE6,0x09,0xE6,0x09,0xE6,0x09,0xE6,0x09,0xE6,0x09,0xE6,0x09,0xE6,0x09,0xE6,0x09,0xE6,0x09,0xE6,0x09,0xE7,0x09,0xE7,0x09,0xE6,0x09,0xE6,0x09,0xE6,0x09,0xE6,0x09,0xE6,0x09,0xE6,0x09,0xE6,0x09,0xE6,0x09,0xE6,0x09,0xE6,0x09,0x07,0x12,0xC5,0x01,0xE6,0x09,0x47,0x0A,0x06,0x02,0x47,0x0A,0x66,0x0A,0x27,0x0A,0x48,0x12,0x28,0x12,0x48,0x12,0x88,0x1A,0x47,0x12,0x26,0x0A,0x26,0x12,0x45,0x12,0x65,0x12,0x66,0x12,0xC9,0x22,0xC9,0x1A,0x29,0x23,0xA6,0x0A,0xA8,0x12,0x4A,0x23,0x45,0x02,0xA9,0x3B,0x6B,0x4C,0x28,0x44,0x08,0x44,0x28,0x44,0xE9,0x43,0x06,0x23,0x07,0x23,0xE8,0x22,0xE7,0x1A,0x28,0x23,0xA9,0x33,0xA8,0x33, +0x88,0x43,0x46,0x33,0x46,0x33,0x46,0x33,0x67,0x2B,0x07,0x23,0x66,0x12,0x67,0x1A,0x88,0x1A,0x46,0x1A,0x86,0x22,0xC7,0x22,0xC7,0x1A,0xC7,0x1A,0xE8,0x12,0x0A,0x1B,0x0B,0x1B,0x0A,0x13,0x2B,0x1B,0xA9,0x0A,0xA8,0x0A,0x2A,0x1B,0xE8,0x12,0x25,0x02,0xE8,0x12,0x49,0x1B,0xEB,0x33,0x4D,0x44,0x09,0x23,0x06,0x02,0x06,0x0A,0x27,0x0A,0xC4,0x01,0x05,0x0A,0x46,0x0A,0x88,0x12,0xE9,0x1A,0xE8,0x12,0x49,0x13,0xEA,0x23,0xEA,0x1B,0xA9,0x1B,0x89,0x13,0x89,0x1B,0xA9,0x2B,0xC8,0x33,0xA7,0x33,0x86,0x33,0xA8,0x3B,0xA8,0x3B,0x68,0x2B,0x86,0x12,0xC7,0x22,0x87,0x1A,0xA7,0x1A,0x86,0x1A,0x07,0x23,0x47,0x2B,0xE9,0x3B,0xA7,0x3B,0xC7,0x3B,0xC8,0x3B,0xC8,0x3B,0xC8,0x3B, +0xC9,0x3B,0xA8,0x3B,0xA7,0x33,0x07,0x3C,0xC6,0x3B,0xA4,0x33,0xC5,0x33,0xA5,0x33,0xA7,0x33,0x87,0x33,0xA7,0x33,0x66,0x2B,0xE7,0x3B,0x69,0x4C,0xC9,0x54,0x46,0x44,0xA8,0x2A,0x46,0x1A,0x67,0x22,0x67,0x1A,0x66,0x12,0xA7,0x1A,0x87,0x12,0xA7,0x1A,0xE9,0x1A,0x09,0x23,0xE9,0x1A,0xA7,0x0A,0x88,0x0A,0x67,0x0A,0x67,0x0A,0x09,0x1B,0x49,0x13,0x6A,0x1B,0x2C,0x34,0x49,0x13,0x69,0x1B,0xAA,0x13,0xA9,0x13,0x2B,0x1C,0x2B,0x14,0x50,0x3D,0x30,0x45,0xD4,0x75,0xF6,0x95,0x75,0x9D,0xF7,0xA5,0xF3,0x7C,0xB0,0x35,0x4B,0x1C,0x89,0x13,0x89,0x2B,0xE7,0x22,0xC7,0x2A,0xC7,0x2A,0xE7,0x2A,0xC7,0x22,0xE7,0x22,0xE7,0x22,0xE7,0x22,0xE7,0x2A,0xE7,0x2A,0xE7,0x2A,0xE7,0x2A, +0xE7,0x2A,0xE7,0x2A,0xE7,0x2A,0xE7,0x2A,0xE7,0x2A,0xE7,0x2A,0xE7,0x2A,0xE7,0x2A,0xE7,0x2A,0xE7,0x2A,0xE7,0x2A,0xE7,0x2A,0xE7,0x2A,0xE7,0x2A,0x07,0x2B,0x07,0x2B,0x07,0x2B,0x07,0x2B,0x07,0x2B,0x07,0x2B,0x07,0x2B,0x07,0x2B,0x27,0x33,0x27,0x33,0x27,0x33,0x27,0x33,0x27,0x33,0x27,0x33,0x27,0x33,0x27,0x33,0x27,0x33,0x27,0x33,0x07,0x33,0x48,0x33,0x48,0x33,0x48,0x33,0x49,0x33,0xE8,0x22,0x88,0x1A,0xA9,0x22,0x47,0x1A,0x87,0x1A,0xA6,0x1A,0x68,0x33,0x28,0x2B,0x49,0x2B,0x45,0x0A,0xE5,0x01,0x26,0x0A,0xC5,0x01,0xE5,0x01,0x06,0x0A,0xE5,0x09,0xC5,0x01,0x27,0x12,0xA9,0x22,0xC5,0x01,0x67,0x12,0xC8,0x22,0x86,0x12,0x05,0x0A,0x26,0x0A,0x27,0x0A,0x08,0x0A, +0x07,0x0A,0x27,0x0A,0xC8,0x1A,0xC8,0x12,0xA8,0x12,0xC8,0x12,0xC8,0x12,0x69,0x2B,0xA9,0x33,0x87,0x33,0x67,0x33,0xA8,0x43,0x88,0x3B,0x87,0x3B,0xA7,0x43,0xC7,0x43,0x87,0x43,0x87,0x43,0x87,0x43,0xA7,0x43,0xA7,0x43,0xA7,0x3B,0xC7,0x43,0xC8,0x43,0xA8,0x43,0xA8,0x43,0xA8,0x43,0xC8,0x43,0xC7,0x43,0xC7,0x43,0xC7,0x43,0xC7,0x43,0x68,0x33,0x68,0x2B,0x88,0x33,0x46,0x2B,0xE8,0x3B,0xAB,0x5C,0xAB,0x54,0xCB,0x5C,0x4A,0x4C,0x87,0x33,0x06,0x2B,0x06,0x2B,0x07,0x2B,0xE7,0x2A,0xE7,0x2A,0x07,0x33,0x07,0x2B,0x07,0x2B,0x07,0x2B,0x07,0x2B,0x07,0x2B,0x07,0x2B,0x07,0x2B,0x07,0x2B,0x07,0x2B,0x07,0x2B,0x07,0x2B,0x07,0x2B,0x07,0x2B,0x07,0x2B,0x07,0x2B,0x07,0x2B, +0x26,0x2B,0x27,0x2B,0x27,0x2B,0x27,0x2B,0x28,0x2B,0x28,0x2B,0x28,0x2B,0x27,0x2B,0x27,0x2B,0x27,0x2B,0x47,0x23,0x47,0x23,0x48,0x23,0x48,0x2B,0x28,0x2B,0x28,0x33,0x27,0x2B,0x27,0x2B,0x27,0x2B,0x27,0x2B,0x27,0x2B,0x27,0x2B,0x27,0x2B,0x27,0x2B,0x47,0x33,0x47,0x33,0x47,0x33,0x47,0x33,0x47,0x33,0x47,0x33,0x47,0x33,0x47,0x33,0x27,0x33,0x47,0x33,0x47,0x33,0x48,0x33,0x47,0x33,0x27,0x33,0x27,0x33,0x26,0x33,0x26,0x33,0x26,0x33,0x26,0x33,0x46,0x33,0x47,0x33,0x46,0x33,0x47,0x33,0x47,0x33,0x67,0x33,0x67,0x33,0x67,0x33,0x67,0x33,0x67,0x33,0x67,0x33,0x67,0x33,0x67,0x33,0x47,0x33,0x67,0x33,0x68,0x33,0x68,0x33,0x88,0x33,0x67,0x33,0x67,0x33,0x67,0x33, +0x87,0x33,0x67,0x33,0x67,0x3B,0x68,0x3B,0x68,0x3B,0x68,0x3B,0x68,0x3B,0x67,0x3B,0x87,0x3B,0x67,0x3B,0x87,0x33,0x88,0x33,0xA9,0x2B,0x2B,0x2C,0x8D,0x2C,0x8D,0x24,0xAF,0x1C,0xAF,0x14,0xCE,0x14,0xAE,0x1C,0xEE,0x2C,0x8C,0x34,0xA8,0x2B,0xA7,0x3B,0x87,0x3B,0x86,0x3B,0xA6,0x3B,0xC6,0x33,0xC7,0x33,0xA7,0x33,0xA7,0x33,0x88,0x33,0x87,0x33,0x88,0x3B,0x88,0x43,0x68,0x43,0x87,0x3B,0x88,0x3B,0x88,0x3B,0x87,0x3B,0x88,0x3B,0x88,0x43,0xA8,0x3B,0xA8,0x3B,0xC7,0x33,0xE8,0x3B,0xA6,0x33,0xC7,0x3B,0xC7,0x3B,0xE7,0x3B,0xE8,0x43,0xA7,0x3B,0x87,0x3B,0xA7,0x3B,0x28,0x4C,0xAA,0x5C,0xCA,0x54,0xCA,0x54,0x69,0x44,0x86,0x2B,0x46,0x23,0x26,0x2B,0xC6,0x22,0x07,0x2B, +0x26,0x2B,0xE9,0x43,0x0A,0x44,0x2A,0x4C,0x4A,0x4C,0x29,0x44,0x48,0x4C,0x68,0x4C,0x47,0x44,0x27,0x44,0x47,0x44,0x89,0x4C,0x68,0x44,0x48,0x44,0x89,0x4C,0x27,0x44,0x47,0x44,0x47,0x44,0x48,0x44,0x07,0x44,0x08,0x44,0x09,0x44,0x8B,0x54,0xC9,0x33,0x48,0x1B,0x28,0x13,0x0B,0x2C,0xCF,0x44,0x4E,0x34,0x09,0x13,0x47,0x02,0xE6,0x01,0xC5,0x01,0xE5,0x01,0xE6,0x01,0x06,0x0A,0x06,0x0A,0x06,0x0A,0xE6,0x09,0xC6,0x09,0xE6,0x09,0xC6,0x09,0xE6,0x09,0xE6,0x09,0xC7,0x09,0xE7,0x09,0xE7,0x09,0xE7,0x09,0xC7,0x09,0xC7,0x09,0xC7,0x09,0xE7,0x09,0xE7,0x09,0xE7,0x09,0xE7,0x09,0xE7,0x09,0xE7,0x09,0xC6,0x09,0xC6,0x09,0xC6,0x09,0xC5,0x09,0xE6,0x09,0xE5,0x01,0xE5,0x01, +0x06,0x0A,0x27,0x12,0xC7,0x09,0xC7,0x09,0x28,0x12,0x47,0x12,0xA8,0x1A,0xA8,0x1A,0x29,0x2B,0x85,0x12,0xC6,0x1A,0x69,0x33,0x67,0x1A,0x8B,0x3B,0x28,0x23,0x07,0x1B,0xC8,0x12,0xC8,0x12,0xE7,0x1A,0x88,0x2B,0x88,0x33,0x66,0x33,0xA7,0x3B,0x87,0x33,0x48,0x33,0xA6,0x1A,0xC7,0x1A,0x86,0x12,0x86,0x12,0xC7,0x1A,0x28,0x23,0x07,0x23,0xA8,0x2A,0xA7,0x22,0x86,0x1A,0xA6,0x1A,0xA6,0x1A,0x66,0x12,0x47,0x12,0x27,0x12,0x27,0x12,0x06,0x0A,0x07,0x12,0x07,0x0A,0xE8,0x09,0x49,0x0A,0x8A,0x12,0x8B,0x12,0x89,0x0A,0xEA,0x12,0xA9,0x12,0xA9,0x12,0x88,0x0A,0x09,0x13,0xC7,0x0A,0x28,0x13,0x49,0x1B,0xC6,0x02,0xCB,0x2B,0x08,0x13,0xA7,0x0A,0xC9,0x1A,0xE9,0x1A,0xA9,0x1A, +0xA8,0x12,0xA8,0x1A,0xC8,0x1A,0xC9,0x1A,0xE9,0x1A,0xA7,0x0A,0x28,0x13,0xCA,0x23,0xA9,0x13,0xA9,0x1B,0x89,0x13,0x28,0x13,0x28,0x13,0x27,0x23,0x27,0x2B,0x27,0x2B,0x28,0x2B,0xE7,0x22,0x08,0x23,0x87,0x1A,0x88,0x1A,0x05,0x02,0xA7,0x1A,0x66,0x12,0x24,0x0A,0xE6,0x1A,0xE9,0x3B,0xC8,0x33,0xA7,0x33,0x46,0x2B,0x67,0x2B,0x68,0x2B,0x48,0x2B,0x68,0x2B,0xE9,0x43,0xAA,0x54,0xC9,0x54,0xC9,0x54,0xA9,0x54,0x49,0x4C,0x26,0x2B,0x07,0x23,0x28,0x2B,0x48,0x2B,0xE9,0x43,0x49,0x4C,0x68,0x4C,0x67,0x4C,0x29,0x3B,0x26,0x1A,0x67,0x1A,0x87,0x1A,0x66,0x12,0x87,0x1A,0x87,0x12,0xE8,0x1A,0xE9,0x1A,0xC8,0x12,0x87,0x0A,0x67,0x0A,0xA8,0x12,0xC8,0x12,0xA8,0x12,0xE9,0x1A, +0xEA,0x0B,0x4D,0x24,0xA6,0x02,0xCB,0x23,0x69,0x1B,0xCA,0x1B,0xA9,0x1B,0xCA,0x1B,0xCA,0x1B,0x4C,0x2C,0x30,0x4D,0x71,0x65,0xD4,0x7D,0x73,0x7D,0xF5,0x95,0xD1,0x6C,0x0E,0x35,0xEA,0x1B,0xCA,0x23,0x89,0x2B,0xC7,0x22,0xA7,0x2A,0xA7,0x2A,0xA6,0x22,0xC7,0x22,0xE7,0x22,0xC7,0x22,0xC7,0x2A,0xC7,0x2A,0xC7,0x2A,0xC7,0x2A,0xC7,0x2A,0xE7,0x2A,0xE7,0x2A,0xE7,0x2A,0xE7,0x2A,0xE7,0x2A,0xE7,0x2A,0xE7,0x2A,0xE7,0x2A,0xE7,0x2A,0xE7,0x2A,0xE7,0x2A,0xE7,0x2A,0xE7,0x2A,0xE7,0x2A,0xE7,0x2A,0x07,0x2B,0x07,0x2B,0x07,0x2B,0x07,0x2B,0x07,0x2B,0x07,0x2B,0x07,0x2B,0x07,0x2B,0x07,0x2B,0x27,0x33,0x27,0x33,0x27,0x33,0x27,0x33,0x27,0x33,0x27,0x33,0x27,0x33,0x27,0x33, +0x28,0x33,0xE7,0x32,0x47,0x33,0x26,0x2B,0x27,0x2B,0x69,0x33,0xA7,0x1A,0xE5,0x09,0x47,0x12,0x05,0x0A,0x08,0x33,0x27,0x33,0x68,0x3B,0x48,0x33,0x69,0x3B,0xE8,0x2A,0xA8,0x1A,0x26,0x0A,0x66,0x12,0xE8,0x22,0xC8,0x1A,0x88,0x12,0xC9,0x1A,0x4B,0x2B,0x05,0x02,0xE8,0x22,0x28,0x2B,0xA6,0x1A,0x04,0x0A,0x05,0x02,0xE6,0x01,0xE7,0x01,0xE5,0x09,0x87,0x1A,0x6A,0x33,0xC7,0x1A,0xC7,0x1A,0xC8,0x1A,0xA7,0x12,0x48,0x2B,0x88,0x33,0x87,0x3B,0xC8,0x43,0x87,0x3B,0x88,0x3B,0x87,0x3B,0xE8,0x43,0x86,0x3B,0xA8,0x43,0xA8,0x43,0xA8,0x43,0xA7,0x3B,0xA7,0x3B,0xA7,0x3B,0xC7,0x3B,0xC7,0x3B,0xA8,0x43,0xA8,0x43,0xA8,0x43,0xA8,0x43,0xA7,0x43,0xA7,0x43,0xC7,0x43,0xC7,0x43, +0xE7,0x22,0x28,0x2B,0xC6,0x1A,0x88,0x33,0x2A,0x4C,0x2A,0x44,0x2A,0x44,0xE9,0x43,0x2A,0x4C,0xC8,0x3B,0x06,0x2B,0xE6,0x2A,0xE7,0x2A,0xC6,0x22,0xE7,0x2A,0xE7,0x32,0xE7,0x2A,0xE7,0x2A,0xE7,0x2A,0xE7,0x2A,0xE7,0x2A,0x07,0x2B,0x07,0x2B,0x07,0x2B,0x07,0x2B,0x07,0x2B,0x07,0x2B,0x07,0x2B,0x07,0x2B,0x07,0x2B,0x07,0x2B,0x07,0x2B,0x06,0x2B,0x07,0x2B,0x27,0x23,0x27,0x23,0x08,0x23,0x07,0x2B,0x07,0x2B,0x07,0x2B,0x07,0x2B,0x07,0x2B,0x27,0x2B,0x27,0x23,0x27,0x2B,0x27,0x2B,0x07,0x33,0x07,0x3B,0x27,0x2B,0x27,0x2B,0x27,0x2B,0x27,0x2B,0x27,0x2B,0x27,0x2B,0x27,0x2B,0x27,0x2B,0x27,0x2B,0x27,0x33,0x27,0x33,0x27,0x33,0x27,0x33,0x27,0x33,0x27,0x33,0x27,0x33, +0x47,0x33,0x47,0x33,0x47,0x33,0x27,0x2B,0x28,0x33,0x48,0x33,0x48,0x33,0x48,0x33,0x48,0x33,0x47,0x33,0x47,0x33,0x48,0x3B,0x28,0x33,0x28,0x33,0x28,0x33,0x28,0x3B,0x47,0x33,0x47,0x33,0x47,0x33,0x47,0x33,0x67,0x33,0x67,0x33,0x47,0x33,0x47,0x33,0x48,0x33,0x48,0x33,0x48,0x33,0x48,0x33,0x47,0x2B,0x47,0x33,0x67,0x33,0x67,0x33,0x88,0x33,0x88,0x33,0x68,0x3B,0x67,0x3B,0x47,0x3B,0x47,0x3B,0x47,0x3B,0x67,0x3B,0x67,0x3B,0x67,0x3B,0x68,0x33,0x68,0x2B,0xA9,0x2B,0x6C,0x34,0xCE,0x2C,0xAD,0x1C,0xCF,0x1C,0xAE,0x1C,0xCE,0x24,0xAD,0x2C,0x6C,0x2C,0xE9,0x2B,0x87,0x2B,0x87,0x33,0x66,0x3B,0x86,0x3B,0x86,0x33,0x87,0x33,0x87,0x33,0x88,0x33,0x88,0x33,0x68,0x3B, +0x88,0x33,0xA8,0x3B,0xA8,0x3B,0x87,0x3B,0x87,0x3B,0x87,0x3B,0xA7,0x3B,0x88,0x3B,0x88,0x3B,0x68,0x43,0x88,0x3B,0x88,0x3B,0xA8,0x33,0xC8,0x3B,0x67,0x33,0xC8,0x3B,0x88,0x43,0x68,0x3B,0x68,0x3B,0x88,0x43,0x88,0x3B,0xA8,0x43,0xE8,0x43,0xE8,0x3B,0xE8,0x3B,0xE8,0x3B,0x4A,0x44,0x87,0x2B,0xE6,0x1A,0xC7,0x22,0x86,0x1A,0xA8,0x22,0xE6,0x22,0x89,0x3B,0xC9,0x3B,0xE9,0x43,0x09,0x44,0xE8,0x3B,0x08,0x44,0xE8,0x3B,0xE8,0x3B,0x08,0x44,0x08,0x44,0xC6,0x33,0xC7,0x3B,0xC6,0x33,0x86,0x2B,0xC8,0x33,0xE7,0x3B,0xC7,0x3B,0xE8,0x3B,0xC8,0x3B,0xC7,0x3B,0x08,0x44,0xC7,0x33,0x08,0x34,0xAB,0x3C,0xCC,0x3C,0xCC,0x34,0xAC,0x2C,0xAC,0x2C,0xEE,0x34,0x8D,0x2C,0x8A,0x13, +0x47,0x12,0x06,0x0A,0xC5,0x01,0xA4,0x01,0x84,0x01,0xA5,0x01,0xC6,0x09,0xE6,0x09,0xC6,0x09,0xC6,0x09,0xC6,0x09,0xC6,0x09,0xC6,0x09,0xC6,0x09,0xC6,0x09,0xC6,0x09,0xC6,0x09,0xC6,0x09,0xC6,0x09,0xC6,0x09,0xC6,0x09,0xC6,0x09,0xC6,0x09,0xC6,0x09,0xC6,0x09,0xC6,0x09,0xA6,0x09,0xE6,0x09,0xC6,0x09,0xC6,0x09,0x06,0x0A,0x06,0x0A,0xE6,0x09,0x07,0x12,0xA7,0x09,0xC7,0x09,0x27,0x12,0x66,0x12,0xE8,0x1A,0xAA,0x2B,0x2F,0x5D,0x67,0x2B,0xC8,0x3B,0x0E,0x65,0x08,0x2B,0x8A,0x3B,0x91,0x6D,0x46,0x23,0x09,0x1B,0xE8,0x12,0xA6,0x12,0xE6,0x1A,0xA5,0x1A,0x27,0x2B,0xC6,0x22,0xE8,0x22,0xE8,0x22,0xC8,0x22,0xA7,0x1A,0x25,0x0A,0xC7,0x1A,0x45,0x0A,0xE4,0x01,0x86,0x12, +0x47,0x12,0x67,0x12,0x25,0x0A,0xE5,0x01,0xE6,0x09,0xE6,0x09,0xE7,0x09,0x27,0x12,0x27,0x12,0x46,0x0A,0x67,0x12,0x28,0x12,0x29,0x12,0x6A,0x12,0x49,0x12,0x29,0x0A,0x28,0x0A,0x68,0x12,0x47,0x0A,0xA9,0x12,0x0A,0x23,0xE9,0x12,0x29,0x1B,0xC7,0x0A,0x07,0x0B,0xCA,0x23,0x69,0x1B,0xE8,0x12,0xC8,0x12,0xA8,0x12,0x47,0x0A,0xA9,0x1A,0xA8,0x12,0x88,0x12,0x87,0x12,0x88,0x12,0xA8,0x12,0xA7,0x0A,0x49,0x1B,0xCA,0x23,0xA9,0x1B,0x89,0x1B,0x6A,0x1B,0x6A,0x1B,0x29,0x1B,0xA7,0x12,0x45,0x12,0x66,0x1A,0x46,0x12,0x87,0x12,0x87,0x12,0xC9,0x22,0xEA,0x22,0x26,0x0A,0xE8,0x22,0x86,0x12,0x43,0x0A,0xC8,0x3B,0xCC,0x5C,0xAB,0x54,0x6B,0x4C,0x47,0x2B,0x27,0x2B,0x27,0x23, +0xE7,0x22,0x48,0x2B,0x0A,0x44,0x29,0x4C,0x08,0x44,0x08,0x44,0x29,0x44,0xE9,0x43,0x28,0x2B,0x87,0x1A,0x87,0x1A,0xC8,0x22,0x69,0x33,0x68,0x33,0x67,0x33,0x66,0x33,0xE8,0x32,0x45,0x1A,0x66,0x22,0x66,0x1A,0x66,0x1A,0x87,0x1A,0x87,0x12,0xE8,0x1A,0xA7,0x12,0xA7,0x12,0xC8,0x12,0xC8,0x12,0xC8,0x12,0xC8,0x12,0xA7,0x12,0xE8,0x1A,0xCA,0x0B,0x2C,0x24,0x25,0x02,0x8A,0x2B,0x8A,0x2B,0x49,0x1B,0x07,0x13,0x28,0x1B,0x48,0x23,0xC6,0x0A,0x47,0x13,0x4B,0x2C,0x4C,0x34,0x8D,0x44,0x2C,0x3C,0xAA,0x2B,0x89,0x13,0x48,0x13,0x28,0x1B,0xE8,0x22,0xA7,0x22,0xC7,0x22,0xE7,0x2A,0xE7,0x22,0xC7,0x22,0xC7,0x22,0xC7,0x22,0xC7,0x2A,0xC7,0x2A,0xC7,0x2A,0xC7,0x2A,0xE7,0x2A, +0xC7,0x2A,0xE7,0x2A,0xE7,0x2A,0xE7,0x2A,0xE7,0x2A,0xE7,0x2A,0xE7,0x2A,0xE7,0x2A,0xE7,0x2A,0xE7,0x2A,0xE7,0x2A,0xE7,0x2A,0xE7,0x2A,0xE7,0x2A,0xE7,0x2A,0xE7,0x2A,0x07,0x2B,0x07,0x2B,0x07,0x2B,0x07,0x2B,0x07,0x2B,0x07,0x2B,0x07,0x2B,0x07,0x2B,0x27,0x33,0x27,0x33,0x27,0x33,0x27,0x33,0x27,0x33,0x27,0x33,0x27,0x33,0x27,0x33,0x08,0x33,0x48,0x3B,0x26,0x33,0x66,0x33,0x46,0x2B,0x27,0x2B,0x69,0x33,0x67,0x1A,0x06,0x0A,0x67,0x1A,0x49,0x33,0x47,0x33,0x47,0x33,0x47,0x33,0x07,0x33,0x49,0x3B,0x87,0x12,0xA7,0x12,0x08,0x23,0x49,0x23,0x29,0x23,0x29,0x23,0x2A,0x23,0xE9,0x1A,0x29,0x23,0xE7,0x1A,0x68,0x2B,0xA9,0x33,0x28,0x2B,0x87,0x1A,0x68,0x12,0x28,0x12, +0x08,0x33,0x8A,0x3B,0x89,0x3B,0x28,0x2B,0x85,0x12,0xE7,0x1A,0x86,0x0A,0x48,0x2B,0x88,0x33,0xA8,0x3B,0x67,0x33,0xA8,0x43,0x68,0x3B,0x88,0x3B,0x87,0x3B,0xA7,0x3B,0x88,0x3B,0x88,0x3B,0xA8,0x3B,0xA8,0x3B,0xC7,0x3B,0xC7,0x3B,0xA7,0x3B,0x87,0x3B,0xA7,0x3B,0xA8,0x43,0xA8,0x43,0xA8,0x43,0xA8,0x43,0xA8,0x43,0xA8,0x43,0xA8,0x43,0xA7,0x1A,0xE8,0x22,0xA6,0x1A,0x07,0x23,0x68,0x33,0x67,0x2B,0x67,0x33,0x67,0x33,0x46,0x2B,0x67,0x33,0xE6,0x22,0xC6,0x22,0xE7,0x2A,0xC6,0x22,0xE7,0x2A,0xC6,0x2A,0xE7,0x2A,0xE7,0x2A,0xE7,0x2A,0xE7,0x2A,0xE7,0x2A,0xE7,0x2A,0xE7,0x2A,0xE7,0x2A,0xE7,0x2A,0xE7,0x2A,0xE7,0x2A,0xE7,0x2A,0xE7,0x2A,0xE7,0x2A,0xE7,0x2A,0xE7,0x2A, +0xE6,0x32,0xE7,0x2A,0xE7,0x2A,0xE7,0x2A,0xE7,0x2A,0xE7,0x2A,0xE7,0x2A,0xE7,0x32,0xE7,0x32,0x06,0x33,0x06,0x2B,0x06,0x2B,0x06,0x33,0xE6,0x32,0xE6,0x3A,0xC6,0x42,0x07,0x2B,0x07,0x2B,0x07,0x2B,0x07,0x2B,0x07,0x2B,0x07,0x2B,0x07,0x2B,0x07,0x2B,0x07,0x33,0x07,0x33,0x07,0x33,0x07,0x33,0x07,0x33,0x07,0x33,0x07,0x33,0x07,0x33,0x27,0x2B,0x27,0x2B,0x27,0x2B,0x27,0x2B,0x28,0x33,0x28,0x33,0x28,0x33,0x07,0x2B,0x28,0x33,0x08,0x33,0x28,0x33,0x28,0x33,0x08,0x33,0x08,0x33,0x09,0x33,0x29,0x3B,0x28,0x33,0x27,0x33,0x27,0x33,0x27,0x33,0x27,0x33,0x27,0x33,0x27,0x33,0x28,0x33,0x27,0x33,0x28,0x33,0x48,0x33,0x48,0x33,0x48,0x33,0x47,0x33,0x47,0x33,0x47,0x33, +0x68,0x2B,0x47,0x33,0x47,0x33,0x47,0x33,0x47,0x33,0x46,0x3B,0x46,0x3B,0x47,0x3B,0x47,0x3B,0x48,0x3B,0x48,0x33,0x49,0x2B,0xAA,0x2B,0x6D,0x2C,0xCE,0x2C,0xAC,0x14,0xAD,0x2C,0x8C,0x2C,0x8C,0x34,0x8D,0x3C,0xEA,0x33,0x48,0x2B,0x88,0x33,0x68,0x33,0x67,0x3B,0x67,0x3B,0x67,0x3B,0x67,0x3B,0x68,0x3B,0x48,0x3B,0x48,0x43,0x48,0x43,0x87,0x33,0x67,0x33,0x67,0x3B,0x67,0x3B,0x67,0x3B,0x87,0x33,0xA7,0x33,0x87,0x33,0x67,0x3B,0x68,0x3B,0x67,0x3B,0x88,0x3B,0x68,0x33,0x88,0x33,0x68,0x3B,0x69,0x43,0x49,0x43,0x6A,0x4B,0x49,0x43,0x49,0x43,0x69,0x43,0x68,0x3B,0x68,0x33,0x67,0x2B,0x88,0x2B,0x67,0x23,0x88,0x2B,0x48,0x23,0xA7,0x1A,0x87,0x1A,0x67,0x1A,0x27,0x1A, +0x64,0x12,0xC5,0x1A,0x67,0x33,0x86,0x33,0x66,0x33,0x87,0x33,0x87,0x33,0xA8,0x33,0x88,0x33,0xA8,0x33,0x87,0x33,0x08,0x44,0x29,0x44,0x09,0x44,0x0A,0x44,0x89,0x33,0x67,0x2B,0x67,0x2B,0x46,0x2B,0x67,0x33,0x2A,0x44,0xAB,0x54,0xAB,0x4C,0x28,0x34,0x69,0x2C,0x69,0x24,0x89,0x1C,0xAA,0x1C,0x8A,0x1C,0x8B,0x1C,0x8B,0x1C,0xAC,0x24,0xEE,0x43,0xAC,0x3B,0x4B,0x33,0xEA,0x22,0x88,0x1A,0x27,0x12,0xC5,0x09,0xA5,0x01,0xA6,0x09,0xA6,0x09,0xA6,0x09,0xA6,0x09,0xA6,0x09,0xA6,0x09,0xC6,0x01,0xC6,0x01,0xA6,0x09,0xA6,0x09,0xA6,0x09,0xA6,0x09,0xC6,0x01,0xC6,0x01,0xC6,0x01,0xC6,0x01,0xA6,0x01,0xC6,0x09,0xC6,0x09,0xA6,0x09,0xA6,0x09,0xA5,0x09,0xA5,0x01,0xC5,0x01, +0xE5,0x09,0xA6,0x09,0xA7,0x09,0xC7,0x09,0x26,0x12,0x25,0x0A,0xA5,0x0A,0x2B,0x3C,0x4E,0x5D,0xA6,0x2B,0xA6,0x33,0x4E,0x75,0x85,0x1A,0x89,0x3B,0x4F,0x6D,0xC7,0x33,0xA8,0x0A,0xC8,0x12,0x69,0x2B,0xCE,0x54,0x69,0x2B,0x04,0x0A,0x46,0x12,0x47,0x12,0x47,0x12,0x88,0x1A,0xE8,0x22,0x66,0x0A,0x28,0x23,0xCB,0x3B,0xAA,0x33,0x08,0x23,0x87,0x12,0x87,0x12,0x87,0x12,0x06,0x0A,0x28,0x12,0x08,0x12,0x86,0x01,0x27,0x12,0x66,0x12,0x24,0x02,0xA6,0x12,0x09,0x23,0x68,0x12,0xE6,0x09,0xC6,0x09,0x06,0x12,0x07,0x12,0xE6,0x09,0x07,0x12,0x0A,0x2B,0x88,0x12,0xA7,0x12,0xE8,0x12,0x07,0x13,0x68,0x1B,0xEA,0x2B,0x48,0x13,0x08,0x13,0x66,0x0A,0x87,0x12,0x68,0x12,0x48,0x12, +0x67,0x0A,0x87,0x0A,0x88,0x0A,0x67,0x0A,0x68,0x0A,0x87,0x0A,0x49,0x1B,0xA9,0x23,0xA9,0x1B,0x8A,0x1B,0x4A,0x13,0x09,0x13,0x09,0x1B,0xC9,0x1A,0x87,0x1A,0x26,0x12,0x87,0x12,0x68,0x12,0x26,0x0A,0x47,0x12,0xC9,0x22,0xA8,0x1A,0xA8,0x1A,0xC7,0x1A,0xC6,0x1A,0x09,0x44,0xE8,0x3B,0xC7,0x33,0x09,0x44,0x05,0x23,0x07,0x23,0xC6,0x1A,0xC7,0x1A,0xC7,0x1A,0x48,0x2B,0x67,0x2B,0x46,0x2B,0x05,0x23,0xE5,0x1A,0x07,0x23,0xA7,0x1A,0x47,0x12,0x68,0x12,0x27,0x12,0x47,0x12,0x66,0x12,0x65,0x12,0x64,0x12,0x65,0x22,0x45,0x22,0x66,0x22,0x66,0x1A,0x66,0x1A,0xA7,0x1A,0xA7,0x1A,0xC7,0x1A,0xE8,0x1A,0xC8,0x12,0xE8,0x1A,0xE8,0x1A,0xE8,0x1A,0xE8,0x1A,0xC8,0x1A,0xE8,0x1A, +0x69,0x03,0xAA,0x23,0x66,0x0A,0x87,0x1A,0x6A,0x33,0x08,0x23,0xE7,0x1A,0xC7,0x22,0xC7,0x22,0x27,0x23,0x47,0x13,0x67,0x03,0x88,0x03,0x88,0x0B,0x47,0x03,0x88,0x13,0x28,0x13,0x69,0x1B,0x08,0x1B,0xC7,0x1A,0xC7,0x22,0xA7,0x22,0xC7,0x22,0xC7,0x22,0xC7,0x22,0xC7,0x22,0xC7,0x22,0xC7,0x2A,0xC7,0x2A,0xC7,0x2A,0xC7,0x2A,0xC7,0x2A,0xC7,0x2A,0xC7,0x2A,0xE7,0x2A,0xE7,0x2A,0xE7,0x2A,0xE7,0x2A,0xE7,0x2A,0xE7,0x2A,0xE7,0x2A,0xE7,0x2A,0xE7,0x2A,0xE7,0x2A,0xE7,0x2A,0xE7,0x2A,0xE7,0x2A,0xE7,0x2A,0x07,0x2B,0x07,0x2B,0x07,0x2B,0x07,0x2B,0x07,0x2B,0x07,0x2B,0x07,0x2B,0x07,0x2B,0x07,0x2B,0x27,0x33,0x27,0x33,0x27,0x33,0x27,0x33,0x27,0x33,0x27,0x33,0x27,0x33, +0xE9,0x32,0x28,0x33,0x06,0x2B,0x45,0x33,0x65,0x33,0x46,0x2B,0x49,0x2B,0xE9,0x22,0x06,0x0A,0x26,0x12,0x08,0x33,0x48,0x3B,0x06,0x33,0x67,0x3B,0x27,0x33,0x27,0x33,0xA7,0x12,0x66,0x0A,0xE7,0x12,0x69,0x23,0x29,0x1B,0xE8,0x12,0xE8,0x12,0xE8,0x12,0xE8,0x12,0x69,0x23,0xA9,0x33,0x48,0x2B,0x89,0x33,0xA7,0x1A,0x68,0x12,0x89,0x1A,0x69,0x43,0x48,0x3B,0x68,0x3B,0x47,0x2B,0xA5,0x12,0xA6,0x12,0x86,0x12,0x48,0x2B,0x88,0x3B,0x87,0x33,0x67,0x3B,0x68,0x3B,0x89,0x43,0x68,0x3B,0xA8,0x3B,0x87,0x3B,0xA9,0x3B,0x88,0x3B,0x88,0x3B,0xA8,0x3B,0xC8,0x3B,0xA8,0x3B,0xA7,0x3B,0xC8,0x3B,0xA8,0x3B,0xA8,0x3B,0xA8,0x43,0xA8,0x43,0xA8,0x43,0xA8,0x43,0xA8,0x43,0xA8,0x43, +}; +const lv_img_dsc_t ui_img_background_png = { + .header.always_zero = 0, + .header.w = 480, + .header.h = 480, + .data_size = sizeof(ui_img_background_png_data), + .header.cf = LV_IMG_CF_TRUE_COLOR, + .data = ui_img_background_png_data}; + diff --git a/examples/indicator_matter/main/ui/ui_img_co2_png.c b/examples/indicator_matter/main/ui/ui_img_co2_png.c new file mode 100644 index 0000000..353cd97 --- /dev/null +++ b/examples/indicator_matter/main/ui/ui_img_co2_png.c @@ -0,0 +1,36 @@ +// SquareLine LVGL GENERATED FILE +// EDITOR VERSION: SquareLine Studio 1.1.1 +// LVGL VERSION: 8.3.3 +// PROJECT: sensecap + +#include "ui.h" + +#ifndef LV_ATTRIBUTE_MEM_ALIGN +#define LV_ATTRIBUTE_MEM_ALIGN +#endif + +// IMAGE DATA: assets/co2.png +const LV_ATTRIBUTE_MEM_ALIGN uint8_t ui_img_co2_png_data[] = { +0x00,0x00,0x00,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,0x10,0xFF,0xFF,0x60,0xFF,0xFF,0x9F,0xFF,0xFF,0xCF,0xFF,0xFF,0xEF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xEF,0xFF,0xFF,0xBF,0xFF,0xFF,0x90,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,0xFF,0xFF,0x10,0xFF,0xFF,0x7F,0xFF,0xFF,0xEF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xDE,0xFF,0xFF,0x5F,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,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,0x6F,0xFF,0xFF,0xEF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xDE,0xFF,0xFF,0x30,0x00,0x00,0x00,0x00,0x00,0x00,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,0x10,0xFF,0xFF,0x9F,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFE,0xFF,0xFF,0x7F,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,0x10,0xFF,0xFF,0xCF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, +0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFE,0xFF,0xFF,0x7F,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0xA0,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFE,0xFF,0xFF,0x70,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x6F,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xDE,0xF7,0xFF, +0x9D,0xEF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xDE,0xF7,0xFF,0x9D,0xEF,0xFF,0xDE,0xF7,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xEE,0xFF,0xFF,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x20,0xFF,0xFF,0xEF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x9D,0xEF,0xFF,0xAF,0x7D,0xFF,0xEA,0x54,0xFF,0xEA,0x54,0xFF,0xEA,0x54,0xFF,0x12,0x96,0xFF,0x75,0xAE,0xFF,0x0B,0x5D,0xFF,0xEA,0x54,0xFF,0xEA,0x54,0xFF,0xAF,0x7D,0xFF,0x9D,0xEF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xBE,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0xA0,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x9D,0xEF,0xFF,0x4D,0x6D,0xFF,0xEA,0x54,0xFF,0xEA,0x54,0xFF,0xEA,0x54,0xFF,0xEA,0x54,0xFF,0xEA,0x54,0xFF,0xEA,0x54,0xFF, +0xEA,0x54,0xFF,0xEA,0x54,0xFF,0xEA,0x54,0xFF,0xEA,0x54,0xFF,0x0B,0x5D,0xFF,0x9D,0xEF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFE,0xFF,0xFF,0x40,0x00,0x00,0x00,0xFF,0xFF,0x10,0xFF,0xFF,0xEF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x12,0x96,0xFF,0xEA,0x54,0xFF,0xEA,0x54,0xFF,0xEA,0x54,0xFF,0xEA,0x54,0xFF,0xEA,0x54,0xFF,0xEA,0x54,0xFF,0xEA,0x54,0xFF,0xEA,0x54,0xFF,0xEA,0x54,0xFF,0xEA,0x54,0xFF,0xEA,0x54,0xFF,0xEA,0x54,0xFF,0xAF,0x7D,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xBE,0x00,0x00,0x00,0xFF,0xFF,0x60,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xEA,0x54,0xFF,0xEA,0x54,0xFF,0xEA,0x54,0xFF,0xEA,0x54,0xFF,0xEA,0x54,0xFF,0xEA,0x54,0xFF,0xEA,0x54,0xFF,0xEA,0x54,0xFF,0xEA,0x54,0xFF,0xEA,0x54,0xFF,0xEA,0x54,0xFF,0xEA,0x54,0xFF, +0xEA,0x54,0xFF,0xEA,0x54,0xFF,0xDE,0xF7,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFE,0xFF,0xFF,0x10,0xFF,0xFF,0xA0,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x19,0xCF,0xFF,0x4D,0x6D,0xFF,0xEA,0x54,0xFF,0xEA,0x54,0xFF,0x6E,0x75,0xFF,0x4D,0x6D,0xFF,0xEA,0x54,0xFF,0xEA,0x54,0xFF,0xEA,0x54,0xFF,0x4D,0x6D,0xFF,0xAF,0x7D,0xFF,0xEA,0x54,0xFF,0xEA,0x54,0xFF,0xEA,0x54,0xFF,0xEA,0x54,0xFF,0xEA,0x54,0xFF,0xAF,0x7D,0xFF,0x9D,0xEF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFE,0xFF,0xFF,0x60,0xFF,0xFF,0xCF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xD7,0xBE,0xFF,0xEA,0x54,0xFF,0xEA,0x54,0xFF,0x4D,0x6D,0xFF,0x7B,0xDF,0xFF,0x7B,0xDF,0xFF,0x9D,0xEF,0xFF,0xB6,0xB6,0xFF,0xEA,0x54,0xFF,0xD7,0xBE,0xFF,0xDE,0xF7,0xFF,0x3A,0xD7,0xFF,0x9D,0xEF,0xFF,0x6E,0x75,0xFF,0xEA,0x54,0xFF,0xEA,0x54,0xFF,0xEA,0x54,0xFF,0xEA,0x54,0xFF,0x4D,0x6D,0xFF, +0x9D,0xEF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x8F,0xFF,0xFF,0xEF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xDE,0xF7,0xFF,0x4D,0x6D,0xFF,0xEA,0x54,0xFF,0xEA,0x54,0xFF,0xB6,0xB6,0xFF,0xD7,0xBE,0xFF,0xEA,0x54,0xFF,0x4D,0x6D,0xFF,0xB6,0xB6,0xFF,0x12,0x96,0xFF,0x9D,0xEF,0xFF,0x4D,0x6D,0xFF,0xEA,0x54,0xFF,0xB6,0xB6,0xFF,0x3A,0xD7,0xFF,0xEA,0x54,0xFF,0xEA,0x54,0xFF,0xEA,0x54,0xFF,0xEA,0x54,0xFF,0xEA,0x54,0xFF,0xAF,0x7D,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x9E,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x19,0xCF,0xFF,0xEA,0x54,0xFF,0xEA,0x54,0xFF,0xEA,0x54,0xFF,0x3A,0xD7,0xFF,0x53,0x9E,0xFF,0xEA,0x54,0xFF,0xEA,0x54,0xFF,0xEA,0x54,0xFF,0x75,0xAE,0xFF,0x3A,0xD7,0xFF,0xEA,0x54,0xFF,0xEA,0x54,0xFF,0xAF,0x7D,0xFF,0xDE,0xF7,0xFF,0xEA,0x54,0xFF,0xEA,0x54,0xFF,0xEA,0x54,0xFF,0xEA,0x54,0xFF,0xEA,0x54,0xFF,0xEA,0x54,0xFF,0xDE,0xF7,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, +0xFF,0xFF,0xFF,0xFF,0xFF,0xBE,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xD7,0xBE,0xFF,0xEA,0x54,0xFF,0xEA,0x54,0xFF,0xEA,0x54,0xFF,0x19,0xCF,0xFF,0xB6,0xB6,0xFF,0xEA,0x54,0xFF,0xEA,0x54,0xFF,0x12,0x96,0xFF,0x75,0xAE,0xFF,0x7B,0xDF,0xFF,0xEA,0x54,0xFF,0xEA,0x54,0xFF,0xF1,0x8D,0xFF,0x9D,0xEF,0xFF,0x4D,0x6D,0xFF,0xD7,0xBE,0xFF,0xB6,0xB6,0xFF,0xEA,0x54,0xFF,0xEA,0x54,0xFF,0xEA,0x54,0xFF,0x9D,0xEF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xBE,0xFF,0xFF,0xDF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x19,0xCF,0xFF,0xEA,0x54,0xFF,0xEA,0x54,0xFF,0xEA,0x54,0xFF,0xAF,0x7D,0xFF,0xDE,0xF7,0xFF,0x53,0x9E,0xFF,0xB6,0xB6,0xFF,0x9D,0xEF,0xFF,0x0B,0x5D,0xFF,0x9D,0xEF,0xFF,0xD7,0xBE,0xFF,0x12,0x96,0xFF,0x9D,0xEF,0xFF,0x75,0xAE,0xFF,0x0B,0x5D,0xFF,0xF1,0x8D,0xFF,0x3A,0xD7,0xFF,0xEA,0x54,0xFF,0xEA,0x54,0xFF,0xEA,0x54,0xFF,0xDE,0xF7,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x9E,0xFF,0xFF,0xBF,0xFF,0xFF,0xFF, +0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xDE,0xF7,0xFF,0x0B,0x5D,0xFF,0xEA,0x54,0xFF,0xEA,0x54,0xFF,0xEA,0x54,0xFF,0xAF,0x7D,0xFF,0xB6,0xB6,0xFF,0xB6,0xB6,0xFF,0x4D,0x6D,0xFF,0xEA,0x54,0xFF,0x4D,0x6D,0xFF,0xB6,0xB6,0xFF,0xD7,0xBE,0xFF,0x12,0x96,0xFF,0xEA,0x54,0xFF,0x4D,0x6D,0xFF,0xDE,0xF7,0xFF,0x75,0xAE,0xFF,0xEA,0x54,0xFF,0xEA,0x54,0xFF,0x12,0x96,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x80,0xFF,0xFF,0x90,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x19,0xCF,0xFF,0xEA,0x54,0xFF,0xEA,0x54,0xFF,0xEA,0x54,0xFF,0xEA,0x54,0xFF,0xEA,0x54,0xFF,0xEA,0x54,0xFF,0xEA,0x54,0xFF,0xEA,0x54,0xFF,0xEA,0x54,0xFF,0xEA,0x54,0xFF,0xEA,0x54,0xFF,0xEA,0x54,0xFF,0xEA,0x54,0xFF,0x0B,0x5D,0xFF,0x4D,0x6D,0xFF,0x4D,0x6D,0xFF,0xEA,0x54,0xFF,0x4D,0x6D,0xFF,0x9D,0xEF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFE,0xFF,0xFF,0x40,0xFF,0xFF,0x40,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, +0x3A,0xD7,0xFF,0x6E,0x75,0xFF,0xEA,0x54,0xFF,0xEA,0x54,0xFF,0xEA,0x54,0xFF,0xEA,0x54,0xFF,0xEA,0x54,0xFF,0xEA,0x54,0xFF,0xEA,0x54,0xFF,0xEA,0x54,0xFF,0xEA,0x54,0xFF,0xEA,0x54,0xFF,0xEA,0x54,0xFF,0xEA,0x54,0xFF,0xEA,0x54,0xFF,0xEA,0x54,0xFF,0xAF,0x7D,0xFF,0x9D,0xEF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xEE,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0xEF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xDE,0xF7,0xFF,0x7B,0xDF,0xFF,0x6E,0x75,0xFF,0xEA,0x54,0xFF,0xEA,0x54,0xFF,0xEA,0x54,0xFF,0xEA,0x54,0xFF,0xEA,0x54,0xFF,0xEA,0x54,0xFF,0xEA,0x54,0xFF,0xEA,0x54,0xFF,0x75,0xAE,0xFF,0x9D,0xEF,0xFF,0xDE,0xF7,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x9E,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x80,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, +0xDE,0xF7,0xFF,0x12,0x96,0xFF,0xEA,0x54,0xFF,0xEA,0x54,0xFF,0xEA,0x54,0xFF,0xEA,0x54,0xFF,0xEA,0x54,0xFF,0x0B,0x5D,0xFF,0xB6,0xB6,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFE,0xFF,0xFF,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x10,0xFF,0xFF,0xDE,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x9D,0xEF,0xFF,0xB6,0xB6,0xFF,0x53,0x9E,0xFF,0x53,0x9E,0xFF,0xD7,0xBE,0xFF,0xDE,0xF7,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x9E,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x40,0xFF,0xFF,0xFE,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, +0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xDE,0xFF,0xFF,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x70,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xEE,0xFF,0xFF,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x80,0xFF,0xFF,0xFE,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, +0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xEE,0xFF,0xFF,0x30,0x00,0x00,0x00,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,0x70,0xFF,0xFF,0xFE,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xDE,0xFF,0xFF,0x30,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,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,0x20,0xFF,0xFF,0xCE,0xFF,0xFF,0xFE,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, +0xFF,0xFF,0x8F,0xFF,0xFF,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,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,0x50,0xFF,0xFF,0xBE,0xFF,0xFF,0xFE,0xFF,0xFF,0xFE,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xEF,0xFF,0xFF,0x90,0xFF,0xFF,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,0xFF,0xFF,0x20,0xFF,0xFF,0x50,0xFF,0xFF,0x80,0xFF,0xFF,0x9E,0xFF,0xFF,0xBE,0xFF,0xFF,0xAF,0xFF,0xFF,0x9F,0xFF,0xFF,0x6F,0xFF,0xFF,0x40,0xFF,0xFF,0x10,0x00,0x00,0x00,0x00,0x00,0x00,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 ui_img_co2_png = { + .header.always_zero = 0, + .header.w = 30, + .header.h = 30, + .data_size = sizeof(ui_img_co2_png_data), + .header.cf = LV_IMG_CF_TRUE_COLOR_ALPHA, + .data = ui_img_co2_png_data}; + diff --git a/examples/indicator_matter/main/ui/ui_img_display_png.c b/examples/indicator_matter/main/ui/ui_img_display_png.c new file mode 100644 index 0000000..c3e27cb --- /dev/null +++ b/examples/indicator_matter/main/ui/ui_img_display_png.c @@ -0,0 +1,58 @@ +// SquareLine LVGL GENERATED FILE +// EDITOR VERSION: SquareLine Studio 1.1.1 +// LVGL VERSION: 8.3.3 +// PROJECT: sensecap + +#include "ui.h" + +#ifndef LV_ATTRIBUTE_MEM_ALIGN +#define LV_ATTRIBUTE_MEM_ALIGN +#endif + +// IMAGE DATA: assets/display.png +const LV_ATTRIBUTE_MEM_ALIGN uint8_t ui_img_display_png_data[] = { +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,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,0x40,0xFF,0xFF,0x6F,0xFF,0xFF,0xAF,0xFF,0xFF,0xDF,0xFF,0xFF,0xEF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xDF,0xFF,0xFF,0xBF,0xFF,0xFF,0x90,0xFF,0xFF,0x5F,0xFF,0xFF,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,0xFF,0xFF,0x40,0xFF,0xFF,0x90,0xFF,0xFF,0xEF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, +0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xBF,0xFF,0xFF,0x5F,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,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,0x40,0xFF,0xFF,0xBF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xDF,0xFF,0xFF,0x7F,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,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,0x10,0xFF,0xFF,0x8F,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xDF,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,0xFF,0xFF,0x30,0xFF,0xFF,0xDF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, +0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x7F,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,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,0x50,0xFF,0xFF,0xEF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, +0xFF,0xFF,0xAF,0xFF,0xFF,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,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,0x5F,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xCF,0xFF,0xFF,0x10,0x00,0x00,0x00,0x00,0x00,0x00,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,0x30,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, +0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x9F,0x00,0x00,0x00,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,0x20,0xFF,0xFF,0xDF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, +0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x7F,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,0xA0,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,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,0xFF,0xFF,0x60,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, +0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xCF,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0xDF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, +0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x5F,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x60,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xDF,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0xCF,0xFF,0xFF,0xFF, +0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x40,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x20,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, +0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x9F,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x70,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xEF,0x00,0x00,0x00, +0x00,0x00,0x00,0xFF,0xFF,0xAF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x30,0x00,0x00,0x00,0xFF,0xFF,0xCF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, +0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x60,0x00,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, +0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x80,0xFF,0xFF,0x20,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x9F,0xFF,0xFF,0x20,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, +0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x9F,0xFF,0xFF,0x20,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, +0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x9F,0xFF,0xFF,0x10,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x90,0x00,0x00,0x00,0xFF,0xFF,0xEF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, +0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x80,0x00,0x00,0x00,0xFF,0xFF,0xCF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, +0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x4F,0x00,0x00,0x00,0xFF,0xFF,0x90,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x20,0x00,0x00,0x00,0xFF,0xFF,0x50,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, +0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xCF,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x10,0xFF,0xFF,0xEF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, +0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x90,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x90,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x40,0xFF,0xFF,0xFF, +0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x9F,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0xBF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, +0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,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,0x00,0x00,0xFF,0xFF,0x20,0xFF,0xFF,0xEF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x90,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x70,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xDF,0xFF,0xFF,0x10,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,0xA0,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, +0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,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,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x10,0xFF,0xFF,0xCF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x60,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,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,0x10,0xFF,0xFF,0xCF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x60,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,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,0x10,0xFF,0xFF,0xAF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, +0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xEF,0xFF,0xFF,0x50,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,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,0x80,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xCF,0xFF,0xFF,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,0xFF,0xFF,0x20,0xFF,0xFF,0xBF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xEF,0xFF,0xFF,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,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,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,0x60,0xFF,0xFF,0xEF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x9F,0xFF,0xFF,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,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,0xDF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x60, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,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,0xDF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x60,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,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,0xDF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x60,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,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,0xDF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, +0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x60,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,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,0xDF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x4F,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,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,0x70,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xDF,0xFF,0xFF,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,0xFF,0xFF,0x40,0xFF,0xFF,0x80,0xFF,0xFF,0x80,0xFF,0xFF,0x80,0xFF,0xFF,0x80,0xFF,0xFF,0x80,0xFF,0xFF,0x80,0xFF,0xFF,0x80,0xFF,0xFF,0x80,0xFF,0xFF,0x80, +0xFF,0xFF,0x80,0xFF,0xFF,0x80,0xFF,0xFF,0x80,0xFF,0xFF,0x80,0xFF,0xFF,0x80,0xFF,0xFF,0x6F,0xFF,0xFF,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,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,0x10,0xFF,0xFF,0x20,0xFF,0xFF,0x20,0xFF,0xFF,0x20,0xFF,0xFF,0x20,0xFF,0xFF,0x20,0xFF,0xFF,0x20,0xFF,0xFF,0x20,0xFF,0xFF,0x20,0xFF,0xFF,0x20,0xFF,0xFF,0x20,0xFF,0xFF,0x20,0xFF,0xFF,0x20,0xFF,0xFF,0x20,0xFF,0xFF,0x20,0xFF,0xFF,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,0xFF,0xFF,0x7F,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, +0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xDF,0xFF,0xFF,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,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,0xCF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x60,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,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,0xBF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,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,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x20,0xFF,0xFF,0x80,0xFF,0xFF,0x9F, +0xFF,0xFF,0x9F,0xFF,0xFF,0x9F,0xFF,0xFF,0x9F,0xFF,0xFF,0x9F,0xFF,0xFF,0x9F,0xFF,0xFF,0x9F,0xFF,0xFF,0x9F,0xFF,0xFF,0x9F,0xFF,0xFF,0x9F,0xFF,0xFF,0x9F,0xFF,0xFF,0x9F,0xFF,0xFF,0x9F,0xFF,0xFF,0x9F,0xFF,0xFF,0x9F,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,}; +const lv_img_dsc_t ui_img_display_png = { + .header.always_zero = 0, + .header.w = 44, + .header.h = 53, + .data_size = sizeof(ui_img_display_png_data), + .header.cf = LV_IMG_CF_TRUE_COLOR_ALPHA, + .data = ui_img_display_png_data}; + diff --git a/examples/indicator_matter/main/ui/ui_img_high_light_png.c b/examples/indicator_matter/main/ui/ui_img_high_light_png.c new file mode 100644 index 0000000..3849c9c --- /dev/null +++ b/examples/indicator_matter/main/ui/ui_img_high_light_png.c @@ -0,0 +1,29 @@ +// SquareLine LVGL GENERATED FILE +// EDITOR VERSION: SquareLine Studio 1.1.1 +// LVGL VERSION: 8.3.3 +// PROJECT: sensecap + +#include "ui.h" + +#ifndef LV_ATTRIBUTE_MEM_ALIGN +#define LV_ATTRIBUTE_MEM_ALIGN +#endif + +// IMAGE DATA: assets/high_light.png +const LV_ATTRIBUTE_MEM_ALIGN uint8_t ui_img_high_light_png_data[] = { +0x00,0x00,0x00,0x00,0x00,0x00,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,0xDF,0xFF,0xFF,0xDF,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0xFF,0xFF,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,0xFF,0xFF,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0xFF,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,0xFF,0xFF,0xDF,0xFF,0xFF,0xDF,0xFF,0xFF,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0xDF,0xFF,0xFF,0xDF,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x20,0xFF,0xFF,0xDF,0xFF,0xFF,0xDF,0xFF,0xFF,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0xDF,0xFF,0xFF,0xFF,0xFF,0xFF,0xDF,0xFF,0xFF,0x10,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,0x20,0xFF,0xFF,0xDF,0xFF,0xFF,0xFF,0xFF,0xFF,0xDF,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x20,0xFF,0xFF,0xDF,0xFF,0xFF,0xFF,0xFF,0xFF,0x4F,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,0x40,0xFF,0xFF,0xFF,0xFF,0xFF,0xDF, +0xFF,0xFF,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x20,0xFF,0xFF,0x40,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x40,0xFF,0xFF,0xBF,0xFF,0xFF,0xEF,0xFF,0xFF,0xFF,0xFF,0xFF,0xBF,0xFF,0xFF,0x5F,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x50,0xFF,0xFF,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,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,0x7F,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x7F,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,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,0x60,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,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,0xFF,0xFF,0xBF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xBF,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0xDF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xDF,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xEF,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0xDF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xDF,0xFF,0xFF,0xDF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xDF,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0xEF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, +0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0xDF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xDF,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0xBF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xBF,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,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,0x40,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x5F,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,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,0x80,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, +0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,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,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x10,0xFF,0xFF,0x50,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x60,0xFF,0xFF,0xBF,0xFF,0xFF,0xFF,0xFF,0xFF,0xEF,0xFF,0xFF,0xBF,0xFF,0xFF,0x40,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x40,0xFF,0xFF,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x20,0xFF,0xFF,0xDF,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,0xFF,0xFF,0x50,0xFF,0xFF,0xFF,0xFF,0xFF,0xDF,0xFF,0xFF,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0xDF,0xFF,0xFF,0xFF,0xFF,0xFF,0xDF,0xFF,0xFF,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,0xFF,0xFF,0x10,0xFF,0xFF,0xDF,0xFF,0xFF,0xFF,0xFF,0xFF,0xDF,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x10,0xFF,0xFF,0xDF,0xFF,0xFF,0xDF,0xFF,0xFF,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0xDF,0xFF,0xFF,0xDF,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x20,0xFF,0xFF,0xDF,0xFF,0xFF,0xDF,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0xFF,0xFF,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,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0xDF,0xFF,0xFF,0xDF,0x00,0x00,0x00,0x00,0x00,0x00,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 ui_img_high_light_png = { + .header.always_zero = 0, + .header.w = 22, + .header.h = 22, + .data_size = sizeof(ui_img_high_light_png_data), + .header.cf = LV_IMG_CF_TRUE_COLOR_ALPHA, + .data = ui_img_high_light_png_data}; + diff --git a/examples/indicator_matter/main/ui/ui_img_humidity_1_png.c b/examples/indicator_matter/main/ui/ui_img_humidity_1_png.c new file mode 100644 index 0000000..9ffb6b8 --- /dev/null +++ b/examples/indicator_matter/main/ui/ui_img_humidity_1_png.c @@ -0,0 +1,32 @@ +// SquareLine LVGL GENERATED FILE +// EDITOR VERSION: SquareLine Studio 1.1.1 +// LVGL VERSION: 8.3.3 +// PROJECT: sensecap + +#include "ui.h" + +#ifndef LV_ATTRIBUTE_MEM_ALIGN +#define LV_ATTRIBUTE_MEM_ALIGN +#endif + +// IMAGE DATA: assets/humidity_1.png +const LV_ATTRIBUTE_MEM_ALIGN uint8_t ui_img_humidity_1_png_data[] = { +0x00,0x00,0x00,0x00,0x00,0x00,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,0x55,0x10,0x5C,0x55,0x30,0x5C,0x4D,0x40,0x5C,0x4D,0x40,0x5C,0x55,0x30,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x5C,0x55,0x30,0x7C,0x4D,0x90,0x5C,0x4D,0xDF,0x7C,0x4D,0xFF,0x7C,0x4D,0xFF,0x7C,0x4D,0xFF,0x7C,0x4D,0xFF,0x7C,0x4D,0xFF,0x7C,0x4D,0xEF,0x7C,0x4D,0xAF,0x7C,0x4D,0x5F,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,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,0x55,0x10,0x5C,0x4D,0xA0,0x7C,0x4D,0xFF,0x7C,0x4D,0xFF,0x7C,0x4D,0xFF,0x7C,0x4D,0xFF,0x7C,0x4D,0xFF, +0x7C,0x4D,0xFF,0x7C,0x4D,0xFF,0x7C,0x4D,0xFF,0x7C,0x4D,0xFF,0x7C,0x4D,0xFF,0x7C,0x4D,0xFF,0x7C,0x4D,0xDF,0x7C,0x4D,0x5F,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x5C,0x55,0x40,0x7C,0x4D,0xEF,0x7C,0x4D,0xFF,0x7C,0x4D,0xFF,0x7C,0x4D,0xFF,0x7C,0x4D,0xFF,0x7C,0x4D,0xFF,0x7C,0x4D,0xFF,0x7C,0x4D,0xFF,0x7C,0x4D,0xFF,0x7C,0x4D,0xFF,0x7C,0x4D,0xFF,0x7C,0x4D,0xFF,0x7C,0x4D,0xFF,0x7C,0x4D,0xFF,0x7C,0x4D,0xFF,0x7C,0x4D,0x7F,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x5C,0x4D,0x50,0x7C,0x4D,0xFF,0x7C,0x4D,0xFF,0x7C,0x4D,0xFF,0x7C,0x4D,0xFF,0x7C,0x4D,0xFF,0x7C,0x4D,0xFF,0x7C,0x4D,0xFF,0x7C,0x4D,0xFF,0x7C,0x4D,0xFF,0x7C,0x4D,0xFF,0x7C,0x4D,0xFF,0x7C,0x4D,0xFF,0x7C,0x4D,0xFF,0x7C,0x4D,0xFF,0x7C,0x4D,0xFF,0x7C,0x4D,0xFF,0x7C,0x4D,0xFF,0x7C,0x4D,0x9F,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x7C,0x55,0x20,0x7C,0x4D,0xEF,0x7C,0x4D,0xFF,0x7C,0x4D,0xFF,0x7C,0x4D,0xFF,0x7C,0x4D,0xFF,0x7C,0x4D,0xFF,0x7C,0x4D,0xFF,0x7C,0x4D,0xFF,0x1A,0x4D,0xFF,0xCE,0x32,0xFF,0x71,0x3B,0xFF,0x7C,0x4D,0xFF,0x7C,0x4D,0xFF,0x7C,0x4D,0xFF,0x7C,0x4D,0xFF,0x7C,0x4D,0xFF,0x7C,0x4D,0xFF,0x7C,0x4D,0xFF,0x7C,0x4D,0xFF,0x5C,0x4D,0x8F,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x7C,0x4D,0xDF,0x7C,0x4D,0xFF,0x7C,0x4D,0xFF,0x7C,0x4D,0xFF,0x7C,0x4D,0xFF,0x7C,0x4D,0xFF,0x7C,0x4D,0xFF,0x7C,0x4D,0xFF,0x56,0x44,0xFF,0x25,0x19,0xFF,0xE3,0x18,0xFF,0xE3,0x18,0xFF,0x66,0x21,0xFF,0xD9,0x44,0xFF,0x7C,0x4D,0xFF,0x7C,0x4D,0xFF,0x7C,0x4D,0xFF,0x7C,0x4D,0xFF,0x7C,0x4D,0xFF,0x7C,0x4D,0xFF,0x7C,0x4D,0xFF,0x5C,0x4D,0x40,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x5C,0x4D,0x60,0x7C,0x4D,0xFF,0x7C,0x4D,0xFF,0x7C,0x4D,0xFF,0x7C,0x4D,0xFF,0x7C,0x4D,0xFF,0x7C,0x4D,0xFF,0x7C,0x4D,0xFF,0x71,0x3B,0xFF, +0xE3,0x18,0xFF,0xE3,0x18,0xFF,0xE3,0x18,0xFF,0xE3,0x18,0xFF,0xE3,0x18,0xFF,0x66,0x21,0xFF,0xD9,0x44,0xFF,0x7C,0x4D,0xFF,0x7C,0x4D,0xFF,0x7C,0x4D,0xFF,0x7C,0x4D,0xFF,0x7C,0x4D,0xFF,0x7C,0x4D,0xFF,0x7C,0x4D,0xDF,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x7C,0x4D,0xDF,0x7C,0x4D,0xFF,0x7C,0x4D,0xFF,0x7C,0x4D,0xFF,0x7C,0x4D,0xFF,0x7C,0x4D,0xFF,0x7C,0x4D,0xFF,0x71,0x3B,0xFF,0xE3,0x18,0xFF,0xE3,0x18,0xFF,0xE3,0x18,0xFF,0xE3,0x18,0xFF,0xE3,0x18,0xFF,0xE3,0x18,0xFF,0xE3,0x18,0xFF,0x66,0x21,0xFF,0xD9,0x44,0xFF,0x7C,0x4D,0xFF,0x7C,0x4D,0xFF,0x7C,0x4D,0xFF,0x7C,0x4D,0xFF,0x7C,0x4D,0xFF,0x7C,0x4D,0xFF,0x5C,0x4D,0x4F,0x00,0x00,0x00,0x5C,0x4D,0x40,0x7C,0x4D,0xFF,0x7C,0x4D,0xFF,0x7C,0x4D,0xFF,0x7C,0x4D,0xFF,0x7C,0x4D,0xFF,0x7C,0x4D,0xFF,0x56,0x44,0xFF,0xE3,0x18,0xFF,0xE3,0x18,0xFF,0xE3,0x18,0xFF,0xE3,0x18,0xFF,0xE3,0x18,0xFF,0xE3,0x18,0xFF,0xE3,0x18,0xFF,0xE3,0x18,0xFF,0xE3,0x18,0xFF,0x66,0x21,0xFF,0x1A,0x4D,0xFF,0x7C,0x4D,0xFF,0x7C,0x4D,0xFF,0x7C,0x4D,0xFF, +0x7C,0x4D,0xFF,0x7C,0x4D,0xFF,0x7C,0x4D,0xBF,0x00,0x00,0x00,0x7C,0x4D,0x90,0x7C,0x4D,0xFF,0x7C,0x4D,0xFF,0x7C,0x4D,0xFF,0x7C,0x4D,0xFF,0x7C,0x4D,0xFF,0xD9,0x44,0xFF,0x66,0x21,0xFF,0xE3,0x18,0xFF,0xE3,0x18,0xFF,0xE3,0x18,0xFF,0xE3,0x18,0xFF,0xE3,0x18,0xFF,0xE3,0x18,0xFF,0xE3,0x18,0xFF,0xE3,0x18,0xFF,0xE3,0x18,0xFF,0xE3,0x18,0xFF,0x09,0x2A,0xFF,0x7C,0x4D,0xFF,0x7C,0x4D,0xFF,0x7C,0x4D,0xFF,0x7C,0x4D,0xFF,0x7C,0x4D,0xFF,0x7C,0x4D,0xEF,0x00,0x00,0x00,0x7C,0x4D,0xBF,0x7C,0x4D,0xFF,0x7C,0x4D,0xFF,0x7C,0x4D,0xFF,0x7C,0x4D,0xFF,0x7C,0x4D,0xFF,0x8C,0x2A,0xFF,0xE3,0x18,0xFF,0xE3,0x18,0xFF,0xE3,0x18,0xFF,0xF4,0x3B,0xFF,0x56,0x44,0xFF,0x25,0x19,0xFF,0x8C,0x2A,0xFF,0x8C,0x2A,0xFF,0xE3,0x18,0xFF,0xE3,0x18,0xFF,0xE3,0x18,0xFF,0xE3,0x18,0xFF,0x56,0x44,0xFF,0x7C,0x4D,0xFF,0x7C,0x4D,0xFF,0x7C,0x4D,0xFF,0x7C,0x4D,0xFF,0x7C,0x4D,0xFF,0x7C,0x55,0x20,0x7C,0x4D,0xCF,0x7C,0x4D,0xFF,0x7C,0x4D,0xFF,0x7C,0x4D,0xFF,0x7C,0x4D,0xFF,0x7C,0x4D,0xFF,0x66,0x21,0xFF,0xE3,0x18,0xFF, +0xE3,0x18,0xFF,0x66,0x21,0xFF,0xB3,0x3B,0xFF,0xB3,0x3B,0xFF,0x09,0x2A,0xFF,0x56,0x44,0xFF,0xE3,0x18,0xFF,0xE3,0x18,0xFF,0xE3,0x18,0xFF,0xE3,0x18,0xFF,0xE3,0x18,0xFF,0x4B,0x2A,0xFF,0x7C,0x4D,0xFF,0x7C,0x4D,0xFF,0x7C,0x4D,0xFF,0x7C,0x4D,0xFF,0x7C,0x4D,0xFF,0x5C,0x4D,0x40,0x5C,0x4D,0xDF,0x7C,0x4D,0xFF,0x7C,0x4D,0xFF,0x7C,0x4D,0xFF,0x7C,0x4D,0xFF,0x97,0x44,0xFF,0xE3,0x18,0xFF,0xE3,0x18,0xFF,0xE3,0x18,0xFF,0xE3,0x18,0xFF,0xB3,0x3B,0xFF,0xF4,0x3B,0xFF,0x8C,0x2A,0xFF,0x8C,0x2A,0xFF,0x66,0x21,0xFF,0xE3,0x18,0xFF,0xE3,0x18,0xFF,0xE3,0x18,0xFF,0xE3,0x18,0xFF,0x66,0x21,0xFF,0x7C,0x4D,0xFF,0x7C,0x4D,0xFF,0x7C,0x4D,0xFF,0x7C,0x4D,0xFF,0x7C,0x4D,0xFF,0x5C,0x4D,0x40,0x7C,0x4D,0xCF,0x7C,0x4D,0xFF,0x7C,0x4D,0xFF,0x7C,0x4D,0xFF,0x7C,0x4D,0xFF,0xD9,0x4C,0xFF,0xE3,0x18,0xFF,0xE3,0x18,0xFF,0xE3,0x18,0xFF,0xE3,0x18,0xFF,0xE3,0x18,0xFF,0xE3,0x18,0xFF,0x56,0x44,0xFF,0x8C,0x2A,0xFF,0xB3,0x3B,0xFF,0x56,0x44,0xFF,0xE3,0x18,0xFF,0xE3,0x18,0xFF,0xE3,0x18,0xFF,0x66,0x21,0xFF, +0x7C,0x4D,0xFF,0x7C,0x4D,0xFF,0x7C,0x4D,0xFF,0x7C,0x4D,0xFF,0x7C,0x4D,0xFF,0x5C,0x4D,0x40,0x5C,0x4D,0xA0,0x7C,0x4D,0xFF,0x7C,0x4D,0xFF,0x7C,0x4D,0xFF,0x7C,0x4D,0xFF,0x1A,0x4D,0xFF,0x25,0x19,0xFF,0xE3,0x18,0xFF,0xE3,0x18,0xFF,0xE3,0x18,0xFF,0xE3,0x18,0xFF,0x8C,0x2A,0xFF,0x8C,0x2A,0xFF,0x30,0x33,0xFF,0x4B,0x2A,0xFF,0x97,0x44,0xFF,0xE3,0x18,0xFF,0xE3,0x18,0xFF,0xE3,0x18,0xFF,0x09,0x2A,0xFF,0x7C,0x4D,0xFF,0x7C,0x4D,0xFF,0x7C,0x4D,0xFF,0x7C,0x4D,0xFF,0x7C,0x4D,0xFF,0xFB,0x44,0x10,0x5C,0x4D,0x70,0x7C,0x4D,0xFF,0x7C,0x4D,0xFF,0x7C,0x4D,0xFF,0x7C,0x4D,0xFF,0x7C,0x4D,0xFF,0x09,0x2A,0xFF,0xE3,0x18,0xFF,0xE3,0x18,0xFF,0xE3,0x18,0xFF,0xE3,0x18,0xFF,0x71,0x3B,0xFF,0xE3,0x18,0xFF,0x66,0x21,0xFF,0xF4,0x3B,0xFF,0xCE,0x32,0xFF,0xE3,0x18,0xFF,0xE3,0x18,0xFF,0xE3,0x18,0xFF,0xB3,0x3B,0xFF,0x7C,0x4D,0xFF,0x7C,0x4D,0xFF,0x7C,0x4D,0xFF,0x7C,0x4D,0xFF,0x5C,0x4D,0xDF,0x00,0x00,0x00,0x3B,0x55,0x20,0x7C,0x4D,0xFF,0x7C,0x4D,0xFF,0x7C,0x4D,0xFF,0x7C,0x4D,0xFF,0x7C,0x4D,0xFF, +0x56,0x44,0xFF,0xE3,0x18,0xFF,0xE3,0x18,0xFF,0xE3,0x18,0xFF,0xE3,0x18,0xFF,0xE3,0x18,0xFF,0xE3,0x18,0xFF,0xE3,0x18,0xFF,0xE3,0x18,0xFF,0xE3,0x18,0xFF,0xE3,0x18,0xFF,0xE3,0x18,0xFF,0x66,0x21,0xFF,0x7C,0x4D,0xFF,0x7C,0x4D,0xFF,0x7C,0x4D,0xFF,0x7C,0x4D,0xFF,0x7C,0x4D,0xFF,0x7C,0x4D,0x9F,0x00,0x00,0x00,0x00,0x00,0x00,0x7C,0x4D,0xBF,0x7C,0x4D,0xFF,0x7C,0x4D,0xFF,0x7C,0x4D,0xFF,0x7C,0x4D,0xFF,0x7C,0x4D,0xFF,0x30,0x33,0xFF,0xE3,0x18,0xFF,0xE3,0x18,0xFF,0xE3,0x18,0xFF,0xE3,0x18,0xFF,0xE3,0x18,0xFF,0xE3,0x18,0xFF,0xE3,0x18,0xFF,0xE3,0x18,0xFF,0xE3,0x18,0xFF,0x25,0x19,0xFF,0x97,0x44,0xFF,0x7C,0x4D,0xFF,0x7C,0x4D,0xFF,0x7C,0x4D,0xFF,0x7C,0x4D,0xFF,0x7C,0x4D,0xFF,0x3C,0x55,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x5C,0x4D,0x40,0x7C,0x4D,0xFF,0x7C,0x4D,0xFF,0x7C,0x4D,0xFF,0x7C,0x4D,0xFF,0x7C,0x4D,0xFF,0x7C,0x4D,0xFF,0x30,0x33,0xFF,0xE3,0x18,0xFF,0xE3,0x18,0xFF,0xE3,0x18,0xFF,0xE3,0x18,0xFF,0xE3,0x18,0xFF,0xE3,0x18,0xFF,0xE3,0x18,0xFF,0x66,0x21,0xFF,0x97,0x44,0xFF, +0x7C,0x4D,0xFF,0x7C,0x4D,0xFF,0x7C,0x4D,0xFF,0x7C,0x4D,0xFF,0x7C,0x4D,0xFF,0x7C,0x4D,0x9F,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x7C,0x4D,0x90,0x7C,0x4D,0xFF,0x7C,0x4D,0xFF,0x7C,0x4D,0xFF,0x7C,0x4D,0xFF,0x7C,0x4D,0xFF,0x7C,0x4D,0xFF,0xD9,0x4C,0xFF,0x8C,0x2A,0xFF,0xA8,0x21,0xFF,0xE3,0x18,0xFF,0x25,0x19,0xFF,0x09,0x2A,0xFF,0x30,0x33,0xFF,0x1A,0x4D,0xFF,0x7C,0x4D,0xFF,0x7C,0x4D,0xFF,0x7C,0x4D,0xFF,0x7C,0x4D,0xFF,0x7C,0x4D,0xFF,0x5C,0x4D,0xDE,0x3C,0x55,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x7B,0x55,0x10,0x7C,0x4D,0xCF,0x7C,0x4D,0xFF,0x7C,0x4D,0xFF,0x7C,0x4D,0xFF,0x7C,0x4D,0xFF,0x7C,0x4D,0xFF,0x7C,0x4D,0xFF,0x7C,0x4D,0xFF,0x7C,0x4D,0xFF,0x7C,0x4D,0xFF,0x7C,0x4D,0xFF,0x7C,0x4D,0xFF,0x7C,0x4D,0xFF,0x7C,0x4D,0xFF,0x7C,0x4D,0xFF,0x7C,0x4D,0xFF,0x7C,0x4D,0xFF,0x7C,0x4D,0xFF,0x7C,0x4D,0xFE,0x5C,0x55,0x30,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x7B,0x55,0x10, +0x7C,0x4D,0xCF,0x7C,0x4D,0xFF,0x7C,0x4D,0xFF,0x7C,0x4D,0xFF,0x7C,0x4D,0xFF,0x7C,0x4D,0xFF,0x7C,0x4D,0xFF,0x7C,0x4D,0xFF,0x7C,0x4D,0xFF,0x7C,0x4D,0xFF,0x7C,0x4D,0xFF,0x7C,0x4D,0xFF,0x7C,0x4D,0xFF,0x7C,0x4D,0xFF,0x7C,0x4D,0xFF,0x7C,0x4D,0xFF,0x7C,0x4D,0xEE,0x7C,0x4D,0x60,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x7C,0x4D,0x90,0x7C,0x4D,0xFF,0x7C,0x4D,0xFF,0x7C,0x4D,0xFF,0x7C,0x4D,0xFF,0x7C,0x4D,0xFF,0x7C,0x4D,0xFF,0x7C,0x4D,0xFF,0x7C,0x4D,0xFF,0x7C,0x4D,0xFF,0x7C,0x4D,0xFF,0x7C,0x4D,0xFF,0x7C,0x4D,0xFF,0x7C,0x4D,0xFF,0x5C,0x4D,0xDE,0x5C,0x55,0x30,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x3C,0x55,0x20,0x7C,0x4D,0xBF,0x7C,0x4D,0xFF,0x7C,0x4D,0xFF,0x7C,0x4D,0xFF,0x7C,0x4D,0xFF,0x7C,0x4D,0xFF,0x7C,0x4D,0xFF,0x7C,0x4D,0xFF,0x7C,0x4D,0xFF, +0x7C,0x4D,0xFE,0x7C,0x4D,0xEE,0x5C,0x4D,0x80,0xFB,0x54,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x3C,0x55,0x20,0x7C,0x4D,0x6F,0x7C,0x4D,0xAF,0x7C,0x4D,0xBF,0x5C,0x4D,0xDF,0x5C,0x4D,0xDF,0x7C,0x4D,0xAE,0x7C,0x4D,0x8F,0x5C,0x4D,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,}; +const lv_img_dsc_t ui_img_humidity_1_png = { + .header.always_zero = 0, + .header.w = 26, + .header.h = 26, + .data_size = sizeof(ui_img_humidity_1_png_data), + .header.cf = LV_IMG_CF_TRUE_COLOR_ALPHA, + .data = ui_img_humidity_1_png_data}; + diff --git a/examples/indicator_matter/main/ui/ui_img_humidity_2_png.c b/examples/indicator_matter/main/ui/ui_img_humidity_2_png.c new file mode 100644 index 0000000..337f34e --- /dev/null +++ b/examples/indicator_matter/main/ui/ui_img_humidity_2_png.c @@ -0,0 +1,36 @@ +// SquareLine LVGL GENERATED FILE +// EDITOR VERSION: SquareLine Studio 1.1.1 +// LVGL VERSION: 8.3.3 +// PROJECT: sensecap + +#include "ui.h" + +#ifndef LV_ATTRIBUTE_MEM_ALIGN +#define LV_ATTRIBUTE_MEM_ALIGN +#endif + +// IMAGE DATA: assets/humidity_2.png +const LV_ATTRIBUTE_MEM_ALIGN uint8_t ui_img_humidity_2_png_data[] = { +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,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,0x30,0xFF,0xFF,0x60,0xFF,0xFF,0x80,0xFF,0xFF,0x9F,0xFF,0xFF,0x90,0xFF,0xFF,0x80,0xFF,0xFF,0x50,0xFF,0xFF,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,0xFF,0xFF,0x20,0xFF,0xFF,0x90,0xFF,0xFF,0xEF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xCE,0xFF,0xFF,0x5F,0xFF,0xFF,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,0xFF,0xFF,0x10,0xFF,0xFF,0xA0,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xDF,0xFF,0xFF,0x7F,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,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,0x40,0xFF,0xFF,0xEF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xDE,0xFF,0xFF,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,0xFF,0xFF,0x5F,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, +0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xDE,0xFF,0xFF,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x5F,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xDE,0xFF,0xFF,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x20,0xFF,0xFF,0xEF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, +0xFF,0xFF,0xFF,0xBF,0xEF,0xFF,0x1D,0x7E,0xFF,0x5D,0x96,0xFF,0xBF,0xEF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xCE,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0xDF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x1E,0xBF,0xFF,0x9C,0x5D,0xFF,0x7C,0x4D,0xFF,0x7C,0x4D,0xFF,0x7C,0x4D,0xFF,0xDE,0xB6,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x80,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x60,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xBE,0xA6,0xFF,0x7C,0x4D,0xFF,0x7C,0x4D,0xFF,0x7C,0x4D,0xFF,0x7C,0x4D,0xFF, +0x7C,0x4D,0xFF,0x7C,0x4D,0xFF,0xBE,0xA6,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xEE,0xFF,0xFF,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0xDF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xBE,0xA6,0xFF,0x7C,0x4D,0xFF,0x7C,0x4D,0xFF,0x7C,0x4D,0xFF,0x7C,0x4D,0xFF,0x7C,0x4D,0xFF,0x7C,0x4D,0xFF,0x7C,0x4D,0xFF,0x7C,0x4D,0xFF,0xBE,0xA6,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x80,0x00,0x00,0x00,0xFF,0xFF,0x40,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xBE,0xA6,0xFF,0x7C,0x4D,0xFF,0x7C,0x4D,0xFF,0x7C,0x4D,0xFF,0x7C,0x4D,0xFF,0x7C,0x4D,0xFF,0x7C,0x4D,0xFF,0x7C,0x4D,0xFF,0x7C,0x4D,0xFF,0x7C,0x4D,0xFF,0x7C,0x4D,0xFF, +0xBE,0xA6,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xEE,0x00,0x00,0x00,0xFF,0xFF,0x80,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x7F,0xDF,0xFF,0x7C,0x4D,0xFF,0x7C,0x4D,0xFF,0x7C,0x4D,0xFF,0x7C,0x4D,0xFF,0x7C,0x4D,0xFF,0x7C,0x4D,0xFF,0x7C,0x4D,0xFF,0x7C,0x4D,0xFF,0x7C,0x4D,0xFF,0x7C,0x4D,0xFF,0x7C,0x4D,0xFF,0x7C,0x4D,0xFF,0x5F,0xD7,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFE,0xFF,0xFF,0x40,0xFF,0xFF,0xBF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xBC,0x65,0xFF,0x7C,0x4D,0xFF,0x7C,0x4D,0xFF,0x7C,0x4D,0xFF,0xDD,0x6D,0xFF,0xBC,0x65,0xFF,0x7C,0x4D,0xFF,0x7C,0x4D,0xFF,0xDD,0x6D,0xFF,0x7C,0x4D,0xFF,0x7C,0x4D,0xFF,0x7C,0x4D,0xFF,0x7C,0x4D,0xFF,0xBC,0x65,0xFF,0xDF,0xF7,0xFF,0xFF,0xFF,0xFF, +0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFE,0xFF,0xFF,0x70,0xFF,0xFF,0xDF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x1E,0xBF,0xFF,0x7C,0x4D,0xFF,0x7C,0x4D,0xFF,0x7C,0x4D,0xFF,0x1D,0x7E,0xFF,0x3E,0xCF,0xFF,0x7F,0xDF,0xFF,0xDD,0x6D,0xFF,0xBC,0x65,0xFF,0x1E,0xBF,0xFF,0x7C,0x4D,0xFF,0x7C,0x4D,0xFF,0x7C,0x4D,0xFF,0x7C,0x4D,0xFF,0x7C,0x4D,0xFF,0xBE,0xA6,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x9E,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xDD,0x6D,0xFF,0x7C,0x4D,0xFF,0x7C,0x4D,0xFF,0x7C,0x4D,0xFF,0x5D,0x96,0xFF,0xBE,0xA6,0xFF,0x3E,0xC7,0xFF,0x1D,0x7E,0xFF,0x1E,0xBF,0xFF,0xBC,0x65,0xFF,0x7C,0x4D,0xFF,0x7C,0x4D,0xFF,0x7C,0x4D,0xFF,0x7C,0x4D,0xFF,0x7C,0x4D,0xFF,0xBC,0x65,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, +0xFF,0xFF,0xFF,0xFF,0xFF,0xAF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x7C,0x4D,0xFF,0x7C,0x4D,0xFF,0x7C,0x4D,0xFF,0x7C,0x4D,0xFF,0xBC,0x65,0xFF,0x5F,0xD7,0xFF,0x5F,0xD7,0xFF,0x1D,0x7E,0xFF,0x1E,0xBF,0xFF,0x7C,0x4D,0xFF,0x7C,0x4D,0xFF,0x7C,0x4D,0xFF,0x7C,0x4D,0xFF,0x7C,0x4D,0xFF,0x7C,0x4D,0xFF,0x7C,0x4D,0xFF,0xDF,0xF7,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xBE,0xFF,0xFF,0xEF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x7C,0x4D,0xFF,0x7C,0x4D,0xFF,0x7C,0x4D,0xFF,0x7C,0x4D,0xFF,0x7C,0x4D,0xFF,0x7C,0x4D,0xFF,0x7C,0x4D,0xFF,0x1E,0xBF,0xFF,0x1D,0x7E,0xFF,0x5F,0xD7,0xFF,0x5F,0xD7,0xFF,0xFD,0x6D,0xFF,0x7C,0x4D,0xFF,0x7C,0x4D,0xFF,0x7C,0x4D,0xFF,0x7C,0x4D,0xFF,0xDF,0xF7,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xAF,0xFF,0xFF,0xDF,0xFF,0xFF,0xFF, +0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xBC,0x65,0xFF,0x7C,0x4D,0xFF,0x7C,0x4D,0xFF,0x7C,0x4D,0xFF,0x7C,0x4D,0xFF,0x7C,0x4D,0xFF,0xBC,0x65,0xFF,0x1E,0xBF,0xFF,0x1D,0x7E,0xFF,0x3E,0xC7,0xFF,0xBE,0xA6,0xFF,0x9D,0x9E,0xFF,0x7C,0x4D,0xFF,0x7C,0x4D,0xFF,0x7C,0x4D,0xFF,0x9C,0x5D,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x8F,0xFF,0xFF,0xA0,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x5D,0x96,0xFF,0x7C,0x4D,0xFF,0x7C,0x4D,0xFF,0x7C,0x4D,0xFF,0x7C,0x4D,0xFF,0x7C,0x4D,0xFF,0x1E,0xBF,0xFF,0xBC,0x65,0xFF,0x9C,0x5D,0xFF,0xBF,0xEF,0xFF,0x5F,0xD7,0xFF,0x3D,0x86,0xFF,0x7C,0x4D,0xFF,0x7C,0x4D,0xFF,0x7C,0x4D,0xFF,0x3D,0x86,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFE,0xFF,0xFF,0x4F,0xFF,0xFF,0x70,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, +0xFF,0xFF,0xFF,0x5F,0xD7,0xFF,0x7C,0x4D,0xFF,0x7C,0x4D,0xFF,0x7C,0x4D,0xFF,0x7C,0x4D,0xFF,0x7C,0x4D,0xFF,0xFD,0x6D,0xFF,0x7C,0x4D,0xFF,0x7C,0x4D,0xFF,0xBC,0x65,0xFF,0xBD,0x65,0xFF,0x7C,0x4D,0xFF,0x7C,0x4D,0xFF,0x7C,0x4D,0xFF,0x7C,0x4D,0xFF,0x5F,0xD7,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFE,0xFF,0xFF,0x20,0xFF,0xFF,0x10,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x5D,0x96,0xFF,0x7C,0x4D,0xFF,0x7C,0x4D,0xFF,0x7C,0x4D,0xFF,0x7C,0x4D,0xFF,0x7C,0x4D,0xFF,0x7C,0x4D,0xFF,0x7C,0x4D,0xFF,0x7C,0x4D,0xFF,0x7C,0x4D,0xFF,0x7C,0x4D,0xFF,0x7C,0x4D,0xFF,0x7C,0x4D,0xFF,0x5D,0x96,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xBE,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0xA0,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xDF,0xF7,0xFF,0xFD,0x6D,0xFF, +0x7C,0x4D,0xFF,0x7C,0x4D,0xFF,0x7C,0x4D,0xFF,0x7C,0x4D,0xFF,0x7C,0x4D,0xFF,0x7C,0x4D,0xFF,0x7C,0x4D,0xFF,0x7C,0x4D,0xFF,0x7C,0x4D,0xFF,0x7C,0x4D,0xFF,0xBC,0x65,0xFF,0xBF,0xEF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFE,0xFF,0xFF,0x5E,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x20,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xDF,0xF7,0xFF,0x5D,0x96,0xFF,0x7C,0x4D,0xFF,0x7C,0x4D,0xFF,0x7C,0x4D,0xFF,0x7C,0x4D,0xFF,0x7C,0x4D,0xFF,0x7C,0x4D,0xFF,0x7C,0x4D,0xFF,0x7C,0x4D,0xFF,0x1D,0x7E,0xFF,0xDF,0xF7,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xDE,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x80,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x5F,0xD7,0xFF,0x5D,0x96,0xFF,0xBC,0x65,0xFF, +0x7C,0x4D,0xFF,0x7C,0x4D,0xFF,0x9C,0x5D,0xFF,0x5D,0x96,0xFF,0x5F,0xD7,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFE,0xFF,0xFF,0x3F,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0xCF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFE,0xFF,0xFF,0x7F,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x20,0xFF,0xFF,0xDF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, +0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFE,0xFF,0xFF,0x8F,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,0x20,0xFF,0xFF,0xDF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFE,0xFF,0xFF,0x8F,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,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,0x90,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFE, +0xFF,0xFF,0xEE,0xFF,0xFF,0x6F,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,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,0x20,0xFF,0xFF,0xBF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFE,0xFF,0xFF,0xEE,0xFF,0xFF,0x7F,0xFF,0xFF,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,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,0x20,0xFF,0xFF,0x6F,0xFF,0xFF,0xBF,0xFF,0xFF,0xEF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xEE,0xFF,0xFF,0xAE,0xFF,0xFF,0x6E,0xFF,0xFF,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,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,0x10,0xFF,0xFF,0x20,0xFF,0xFF,0x20,0xFF,0xFF,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,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 ui_img_humidity_2_png = { + .header.always_zero = 0, + .header.w = 30, + .header.h = 31, + .data_size = sizeof(ui_img_humidity_2_png_data), + .header.cf = LV_IMG_CF_TRUE_COLOR_ALPHA, + .data = ui_img_humidity_2_png_data}; + diff --git a/examples/indicator_matter/main/ui/ui_img_location2_png.c b/examples/indicator_matter/main/ui/ui_img_location2_png.c new file mode 100644 index 0000000..d620627 --- /dev/null +++ b/examples/indicator_matter/main/ui/ui_img_location2_png.c @@ -0,0 +1,24 @@ +// SquareLine LVGL GENERATED FILE +// EDITOR VERSION: SquareLine Studio 1.2.1 +// LVGL VERSION: 8.3.4 +// PROJECT: SquareLine_Project + +#include "ui.h" + +#ifndef LV_ATTRIBUTE_MEM_ALIGN +#define LV_ATTRIBUTE_MEM_ALIGN +#endif + +// IMAGE DATA: assets/location2.png +const LV_ATTRIBUTE_MEM_ALIGN uint8_t ui_img_location2_png_data[] = { +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x40,0xFF,0xFF,0x90,0xFF,0xFF,0x9F,0xFF,0xFF,0x90,0xFF,0xFF,0x40,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x9F,0xFF,0xFF,0xFF,0xFF,0xFF,0xCF,0xFF,0xFF,0x9F,0xFF,0xFF,0xBF,0xFF,0xFF,0xFF,0xFF,0xFF,0x8F,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x8F,0xFF,0xFF,0xDF,0xFF,0xFF,0x40,0xFF,0xFF,0x6F,0xFF,0xFF,0x9F,0xFF,0xFF,0x5F,0xFF,0xFF,0x40,0xFF,0xFF,0xDF,0xFF,0xFF,0x8F,0x00,0x00,0x00,0xFF,0xFF,0x20,0xFF,0xFF,0xFF,0xFF,0xFF,0x50,0xFF,0xFF,0x8F,0xFF,0xFF,0xEF,0xFF,0xFF,0xAF,0xFF,0xFF,0xDF,0xFF,0xFF,0x9F,0xFF,0xFF,0x40,0xFF,0xFF,0xFF,0xFF,0xFF,0x40,0xFF,0xFF,0x90,0xFF,0xFF,0xCF,0xFF,0xFF,0x10,0xFF,0xFF,0xFF,0xFF,0xFF,0x40,0x00,0x00,0x00,0xFF,0xFF,0x40,0xFF,0xFF,0xFF,0xFF,0xFF,0x10,0xFF,0xFF,0xCF,0xFF,0xFF,0x90,0xFF,0xFF,0xA0,0xFF,0xFF,0xB0,0xFF,0xFF,0x10,0xFF,0xFF,0xFF,0xFF,0xFF,0x40,0x00,0x00,0x00,0xFF,0xFF,0x40,0xFF,0xFF,0xFF,0xFF,0xFF,0x10, +0xFF,0xFF,0xA0,0xFF,0xFF,0x9F,0xFF,0xFF,0x90,0xFF,0xFF,0xBF,0x00,0x00,0x00,0xFF,0xFF,0xA0,0xFF,0xFF,0xDF,0xFF,0xFF,0xAF,0xFF,0xFF,0xEF,0xFF,0xFF,0x90,0x00,0x00,0x00,0xFF,0xFF,0xBF,0xFF,0xFF,0x90,0xFF,0xFF,0x40,0xFF,0xFF,0xFF,0xFF,0xFF,0x20,0x00,0x00,0x00,0xFF,0xFF,0x60,0xFF,0xFF,0x9F,0xFF,0xFF,0x6F,0x00,0x00,0x00,0xFF,0xFF,0x20,0xFF,0xFF,0xFF,0xFF,0xFF,0x4F,0x00,0x00,0x00,0xFF,0xFF,0xCF,0xFF,0xFF,0xCF,0xFF,0xFF,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x10,0xFF,0xFF,0xCF,0xFF,0xFF,0xDF,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x20,0xFF,0xFF,0xDF,0xFF,0xFF,0xBF,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0xCF,0xFF,0xFF,0xDF,0xFF,0xFF,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x20,0xFF,0xFF,0xDF,0xFF,0xFF,0x9F,0x00,0x00,0x00,0xFF,0xFF,0x9F,0xFF,0xFF,0xDF,0xFF,0xFF,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x20,0xFF,0xFF,0xEF,0xFF,0xFF,0xDF,0xFF,0xFF,0xDF, +0xFF,0xFF,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x20,0xFF,0xFF,0x9F,0xFF,0xFF,0x30,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,}; +const lv_img_dsc_t ui_img_location2_png = { + .header.always_zero = 0, + .header.w = 11, + .header.h = 13, + .data_size = sizeof(ui_img_location2_png_data), + .header.cf = LV_IMG_CF_TRUE_COLOR_ALPHA, + .data = ui_img_location2_png_data}; + diff --git a/examples/indicator_matter/main/ui/ui_img_location_png.c b/examples/indicator_matter/main/ui/ui_img_location_png.c new file mode 100644 index 0000000..eb8abdc --- /dev/null +++ b/examples/indicator_matter/main/ui/ui_img_location_png.c @@ -0,0 +1,32 @@ +// SquareLine LVGL GENERATED FILE +// EDITOR VERSION: SquareLine Studio 1.1.1 +// LVGL VERSION: 8.3.3 +// PROJECT: sensecap + +#include "ui.h" + +#ifndef LV_ATTRIBUTE_MEM_ALIGN +#define LV_ATTRIBUTE_MEM_ALIGN +#endif + +// IMAGE DATA: assets/location.png +const LV_ATTRIBUTE_MEM_ALIGN uint8_t ui_img_location_png_data[] = { +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xEA,0x54,0x10,0xCA,0x54,0x40,0xEA,0x54,0x9F,0xEA,0x54,0xDF,0xEA,0x54,0xEF,0xEA,0x54,0xFF,0xEA,0x54,0xFF,0xEA,0x54,0xCF,0xEA,0x54,0xAF,0xEA,0x54,0x5F,0xEA,0x54,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xEA,0x54,0x6F,0xEA,0x54,0xEF,0xEA,0x54,0xFF,0xEA,0x54,0xFF,0xEA,0x54,0xFF,0xEA,0x54,0xFF,0xEA,0x54,0xFF,0xEA,0x54,0xFF,0xEA,0x54,0xFF,0xEA,0x54,0xFF,0xEA,0x54,0xFF,0xEA,0x54,0xDF,0xEA,0x54,0x7F,0xEA,0x54,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xEA,0x54,0x20,0xEA,0x54,0xCF,0xEA,0x54,0xFF,0xEA,0x54,0xFF,0xEA,0x54,0xFF,0xEA,0x54,0xFF,0xEA,0x54,0xFF,0xEA,0x54,0xFF, +0xEA,0x54,0xFF,0xEA,0x54,0xFF,0xEA,0x54,0xFF,0xEA,0x54,0xFF,0xEA,0x54,0xFF,0xEA,0x54,0xFF,0xEA,0x54,0xFF,0xEA,0x54,0xDF,0xAA,0x54,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,0xCA,0x54,0x30,0xEA,0x54,0xDF,0xEA,0x54,0xFF,0xEA,0x54,0xFF,0xEA,0x54,0xFF,0xEA,0x54,0xFF,0xEA,0x54,0xFF,0xEA,0x54,0xFF,0xEA,0x54,0xFF,0xEA,0x54,0xFF,0xEA,0x54,0xFF,0xEA,0x54,0xFF,0xEA,0x54,0xFF,0xEA,0x54,0xFF,0xEA,0x54,0xFF,0xEA,0x54,0xFF,0xEA,0x54,0xFF,0xEA,0x54,0xEF,0xEA,0x54,0x5F,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xEA,0x54,0x20,0xEA,0x54,0xDF,0xEA,0x54,0xFF,0xEA,0x54,0xFF,0xEA,0x54,0xFF,0xEA,0x54,0xFF,0xEA,0x54,0xFF,0xEA,0x54,0xFF,0xEA,0x54,0xFF,0xEA,0x54,0xFF,0xEA,0x54,0xFF,0xEA,0x54,0xFF,0xEA,0x54,0xFF,0xEA,0x54,0xFF,0xEA,0x54,0xFF,0xEA,0x54,0xFF,0xEA,0x54,0xFF,0xEA,0x54,0xFF,0xEA,0x54,0xFF,0xEA,0x54,0xFF,0xCA,0x54,0x30,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xEA,0x54,0xDF,0xEA,0x54,0xFF,0xEA,0x54,0xFF,0xEA,0x54,0xFF,0xEA,0x54,0xFF,0xEA,0x54,0xFF,0xEA,0x54,0xFF,0xEA,0x54,0xFF,0xEA,0x54,0xFF,0xEA,0x54,0xFF,0xEA,0x54,0xFF,0xEA,0x54,0xFF,0xEA,0x54,0xFF,0xEA,0x54,0xFF,0xEA,0x54,0xFF,0xEA,0x54,0xFF,0xEA,0x54,0xFF,0xEA,0x54,0xFF,0xEA,0x54,0xFF,0xEA,0x54,0xFF,0xEA,0x54,0xDF,0xEA,0x54,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xEA,0x54,0x60,0xEA,0x54,0xFF,0xEA,0x54,0xFF,0xEA,0x54,0xFF,0xEA,0x54,0xFF,0xEA,0x54,0xFF,0xEA,0x54,0xFF,0xEA,0x54,0xFF,0xEA,0x54,0xFF,0xEA,0x54,0xFF,0xEA,0x54,0xFF,0xEA,0x54,0xFF,0xEA,0x54,0xFF,0xEA,0x54,0xFF,0xEA,0x54,0xFF,0xA9,0x4C,0xFF,0xA9,0x4C,0xFF,0xEA,0x54,0xFF,0xEA,0x54,0xFF,0xEA,0x54,0xFF,0xEA,0x54,0xFF,0xEA,0x54,0xFF,0xEA,0x54,0x8F,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xEA,0x54,0xDF,0xEA,0x54,0xFF,0xEA,0x54,0xFF,0xEA,0x54,0xFF,0xEA,0x54,0xFF,0xEA,0x54,0xFF,0xEA,0x54,0xFF,0xEA,0x54,0xFF,0xEA,0x54,0xFF, +0xEA,0x54,0xFF,0xEA,0x54,0xFF,0xEA,0x54,0xFF,0xEA,0x54,0xFF,0xA9,0x4C,0xFF,0xE7,0x32,0xFF,0x24,0x21,0xFF,0x23,0x19,0xFF,0xA9,0x4C,0xFF,0xEA,0x54,0xFF,0xEA,0x54,0xFF,0xEA,0x54,0xFF,0xEA,0x54,0xFF,0xEA,0x54,0xEF,0xEA,0x54,0x10,0x00,0x00,0x00,0xEA,0x54,0x50,0xEA,0x54,0xFF,0xEA,0x54,0xFF,0xEA,0x54,0xFF,0xEA,0x54,0xFF,0xEA,0x54,0xFF,0xEA,0x54,0xFF,0xEA,0x54,0xFF,0xEA,0x54,0xFF,0xEA,0x54,0xFF,0xEA,0x54,0xFF,0xEA,0x54,0xFF,0xE8,0x43,0xFF,0x66,0x32,0xFF,0xE3,0x18,0xFF,0xE3,0x18,0xFF,0xE3,0x18,0xFF,0xE3,0x18,0xFF,0x69,0x4C,0xFF,0xEA,0x54,0xFF,0xEA,0x54,0xFF,0xEA,0x54,0xFF,0xEA,0x54,0xFF,0xEA,0x54,0xFF,0xCA,0x54,0x80,0x00,0x00,0x00,0xEA,0x54,0xA0,0xEA,0x54,0xFF,0xEA,0x54,0xFF,0xEA,0x54,0xFF,0xEA,0x54,0xFF,0xEA,0x54,0xFF,0xEA,0x54,0xFF,0xEA,0x54,0xFF,0xEA,0x54,0xFF,0xEA,0x54,0xFF,0xE8,0x43,0xFF,0xE5,0x29,0xFF,0xE3,0x18,0xFF,0xE3,0x18,0xFF,0xE3,0x18,0xFF,0xE3,0x18,0xFF,0xE3,0x18,0xFF,0xE5,0x29,0xFF,0xEA,0x54,0xFF,0xEA,0x54,0xFF,0xEA,0x54,0xFF,0xEA,0x54,0xFF, +0xEA,0x54,0xFF,0xEA,0x54,0xFF,0xEA,0x54,0xBF,0x00,0x00,0x00,0xEA,0x54,0xCF,0xEA,0x54,0xFF,0xEA,0x54,0xFF,0xEA,0x54,0xFF,0xEA,0x54,0xFF,0xEA,0x54,0xFF,0xEA,0x54,0xFF,0xA9,0x4C,0xFF,0xE7,0x32,0xFF,0x24,0x21,0xFF,0xE3,0x18,0xFF,0xE3,0x18,0xFF,0xE3,0x18,0xFF,0xE3,0x18,0xFF,0xE3,0x18,0xFF,0xE3,0x18,0xFF,0xE3,0x18,0xFF,0xE8,0x43,0xFF,0xEA,0x54,0xFF,0xEA,0x54,0xFF,0xEA,0x54,0xFF,0xEA,0x54,0xFF,0xEA,0x54,0xFF,0xEA,0x54,0xFF,0xEA,0x54,0xEF,0x00,0x00,0x00,0xEA,0x54,0xFF,0xEA,0x54,0xFF,0xEA,0x54,0xFF,0xEA,0x54,0xFF,0xEA,0x54,0xFF,0xEA,0x54,0xFF,0x27,0x3B,0xFF,0x24,0x21,0xFF,0xE3,0x18,0xFF,0xE3,0x18,0xFF,0xE3,0x18,0xFF,0xE3,0x18,0xFF,0xE3,0x18,0xFF,0xE3,0x18,0xFF,0xE3,0x18,0xFF,0xE3,0x18,0xFF,0x64,0x21,0xFF,0xEA,0x54,0xFF,0xEA,0x54,0xFF,0xEA,0x54,0xFF,0xEA,0x54,0xFF,0xEA,0x54,0xFF,0xEA,0x54,0xFF,0xEA,0x54,0xFF,0xEA,0x54,0xFF,0xAA,0x54,0x20,0xEA,0x54,0xFF,0xEA,0x54,0xFF,0xEA,0x54,0xFF,0xEA,0x54,0xFF,0xEA,0x54,0xFF,0xEA,0x54,0xFF,0x25,0x2A,0xFF,0xE3,0x18,0xFF, +0xE3,0x18,0xFF,0xE3,0x18,0xFF,0xE3,0x18,0xFF,0xE3,0x18,0xFF,0xE3,0x18,0xFF,0xE3,0x18,0xFF,0xE3,0x18,0xFF,0xE3,0x18,0xFF,0x67,0x3B,0xFF,0xEA,0x54,0xFF,0xEA,0x54,0xFF,0xEA,0x54,0xFF,0xEA,0x54,0xFF,0xEA,0x54,0xFF,0xEA,0x54,0xFF,0xEA,0x54,0xFF,0xEA,0x54,0xFF,0xAA,0x54,0x20,0xEA,0x54,0xFF,0xEA,0x54,0xFF,0xEA,0x54,0xFF,0xEA,0x54,0xFF,0xEA,0x54,0xFF,0xEA,0x54,0xFF,0x69,0x4C,0xFF,0xE6,0x32,0xFF,0xE5,0x29,0xFF,0xE3,0x18,0xFF,0xE3,0x18,0xFF,0xE3,0x18,0xFF,0xE3,0x18,0xFF,0xE3,0x18,0xFF,0xE3,0x18,0xFF,0x64,0x21,0xFF,0xEA,0x54,0xFF,0xEA,0x54,0xFF,0xEA,0x54,0xFF,0xEA,0x54,0xFF,0xEA,0x54,0xFF,0xEA,0x54,0xFF,0xEA,0x54,0xFF,0xEA,0x54,0xFF,0xEA,0x54,0xFF,0xAA,0x54,0x20,0xEA,0x54,0xDF,0xEA,0x54,0xFF,0xEA,0x54,0xFF,0xEA,0x54,0xFF,0xEA,0x54,0xFF,0xEA,0x54,0xFF,0xEA,0x54,0xFF,0xEA,0x54,0xFF,0xEA,0x54,0xFF,0xA9,0x4C,0xFF,0x27,0x3B,0xFF,0xE3,0x18,0xFF,0xE3,0x18,0xFF,0xE3,0x18,0xFF,0xE3,0x18,0xFF,0x66,0x32,0xFF,0xEA,0x54,0xFF,0xEA,0x54,0xFF,0xEA,0x54,0xFF,0xEA,0x54,0xFF, +0xEA,0x54,0xFF,0xEA,0x54,0xFF,0xEA,0x54,0xFF,0xEA,0x54,0xFF,0xEA,0x54,0xFF,0x00,0x00,0x00,0xEA,0x54,0xA0,0xEA,0x54,0xFF,0xEA,0x54,0xFF,0xEA,0x54,0xFF,0xEA,0x54,0xFF,0xEA,0x54,0xFF,0xEA,0x54,0xFF,0xEA,0x54,0xFF,0xEA,0x54,0xFF,0xEA,0x54,0xFF,0xEA,0x54,0xFF,0x24,0x19,0xFF,0xE3,0x18,0xFF,0xE3,0x18,0xFF,0xE3,0x18,0xFF,0x69,0x4C,0xFF,0xEA,0x54,0xFF,0xEA,0x54,0xFF,0xEA,0x54,0xFF,0xEA,0x54,0xFF,0xEA,0x54,0xFF,0xEA,0x54,0xFF,0xEA,0x54,0xFF,0xEA,0x54,0xFF,0xEA,0x54,0xCF,0x00,0x00,0x00,0xEA,0x54,0x60,0xEA,0x54,0xFF,0xEA,0x54,0xFF,0xEA,0x54,0xFF,0xEA,0x54,0xFF,0xEA,0x54,0xFF,0xEA,0x54,0xFF,0xEA,0x54,0xFF,0xEA,0x54,0xFF,0xEA,0x54,0xFF,0xEA,0x54,0xFF,0x66,0x32,0xFF,0xE3,0x18,0xFF,0xE3,0x18,0xFF,0x66,0x32,0xFF,0xEA,0x54,0xFF,0xEA,0x54,0xFF,0xEA,0x54,0xFF,0xEA,0x54,0xFF,0xEA,0x54,0xFF,0xEA,0x54,0xFF,0xEA,0x54,0xFF,0xEA,0x54,0xFF,0xEA,0x54,0xFF,0xEA,0x54,0x90,0x00,0x00,0x00,0xEA,0x54,0x10,0xEA,0x54,0xEF,0xEA,0x54,0xFF,0xEA,0x54,0xFF,0xEA,0x54,0xFF,0xEA,0x54,0xFF, +0xEA,0x54,0xFF,0xEA,0x54,0xFF,0xEA,0x54,0xFF,0xEA,0x54,0xFF,0xEA,0x54,0xFF,0x27,0x3B,0xFF,0xE3,0x18,0xFF,0xE3,0x18,0xFF,0xE8,0x43,0xFF,0xEA,0x54,0xFF,0xEA,0x54,0xFF,0xEA,0x54,0xFF,0xEA,0x54,0xFF,0xEA,0x54,0xFF,0xEA,0x54,0xFF,0xEA,0x54,0xFF,0xEA,0x54,0xFF,0xEA,0x54,0xFF,0xAA,0x54,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0xCA,0x54,0x80,0xEA,0x54,0xFF,0xEA,0x54,0xFF,0xEA,0x54,0xFF,0xEA,0x54,0xFF,0xEA,0x54,0xFF,0xEA,0x54,0xFF,0xEA,0x54,0xFF,0xEA,0x54,0xFF,0xEA,0x54,0xFF,0xAA,0x4C,0xFF,0xA4,0x21,0xFF,0x66,0x32,0xFF,0xEA,0x54,0xFF,0xEA,0x54,0xFF,0xEA,0x54,0xFF,0xEA,0x54,0xFF,0xEA,0x54,0xFF,0xEA,0x54,0xFF,0xEA,0x54,0xFF,0xEA,0x54,0xFF,0xEA,0x54,0xFF,0xEA,0x54,0x9F,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xEA,0x54,0x10,0xEA,0x54,0xDF,0xEA,0x54,0xFF,0xEA,0x54,0xFF,0xEA,0x54,0xFF,0xEA,0x54,0xFF,0xEA,0x54,0xFF,0xEA,0x54,0xFF,0xEA,0x54,0xFF,0xEA,0x54,0xFF,0xEA,0x54,0xFF,0xEA,0x54,0xFF,0xEA,0x54,0xFF,0xEA,0x54,0xFF,0xEA,0x54,0xFF,0xEA,0x54,0xFF,0xEA,0x54,0xFF, +0xEA,0x54,0xFF,0xEA,0x54,0xFF,0xEA,0x54,0xFF,0xEA,0x54,0xFF,0xEA,0x54,0xDE,0xAA,0x54,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xCA,0x54,0x30,0xEA,0x54,0xEF,0xEA,0x54,0xFF,0xEA,0x54,0xFF,0xEA,0x54,0xFF,0xEA,0x54,0xFF,0xEA,0x54,0xFF,0xEA,0x54,0xFF,0xEA,0x54,0xFF,0xEA,0x54,0xFF,0xEA,0x54,0xFF,0xEA,0x54,0xFF,0xEA,0x54,0xFF,0xEA,0x54,0xFF,0xEA,0x54,0xFF,0xEA,0x54,0xFF,0xEA,0x54,0xFF,0xEA,0x54,0xFF,0xEA,0x54,0xFF,0xEA,0x54,0xFF,0xEA,0x54,0x5F,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xEA,0x54,0x60,0xEA,0x54,0xFF,0xEA,0x54,0xFF,0xEA,0x54,0xFF,0xEA,0x54,0xFF,0xEA,0x54,0xFF,0xEA,0x54,0xFF,0xEA,0x54,0xFF,0xEA,0x54,0xFF,0xEA,0x54,0xFF,0xEA,0x54,0xFF,0xEA,0x54,0xFF,0xEA,0x54,0xFF,0xEA,0x54,0xFF,0xEA,0x54,0xFF,0xEA,0x54,0xFF,0xEA,0x54,0xFF,0xEA,0x54,0xFE,0xCA,0x54,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, +0xCA,0x54,0x30,0xEA,0x54,0xDF,0xEA,0x54,0xFF,0xEA,0x54,0xFF,0xEA,0x54,0xFF,0xEA,0x54,0xFF,0xEA,0x54,0xFF,0xEA,0x54,0xFF,0xEA,0x54,0xFF,0xEA,0x54,0xFF,0xEA,0x54,0xFF,0xEA,0x54,0xFF,0xEA,0x54,0xFF,0xEA,0x54,0xFF,0xEA,0x54,0xFF,0xEA,0x54,0xEE,0xEA,0x54,0x60,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xEA,0x54,0x20,0xEA,0x54,0xA0,0xEA,0x54,0xFF,0xEA,0x54,0xFF,0xEA,0x54,0xFF,0xEA,0x54,0xFF,0xEA,0x54,0xFF,0xEA,0x54,0xFF,0xEA,0x54,0xFF,0xEA,0x54,0xFF,0xEA,0x54,0xFF,0xEA,0x54,0xFF,0xEA,0x54,0xFE,0xEA,0x54,0xAE,0xAA,0x54,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,0xEA,0x54,0x20,0xEA,0x54,0x60,0xEA,0x54,0xBF,0xEA,0x54,0xFF,0xEA,0x54,0xFF,0xEA,0x54,0xFF,0xEA,0x54,0xFF,0xEA,0x54,0xFF,0xEA,0x54,0xBE, +0xCA,0x54,0x80,0xAA,0x54,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,0xAA,0x54,0x20,0xAA,0x54,0x20,0xAA,0x54,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,}; +const lv_img_dsc_t ui_img_location_png = { + .header.always_zero = 0, + .header.w = 26, + .header.h = 26, + .data_size = sizeof(ui_img_location_png_data), + .header.cf = LV_IMG_CF_TRUE_COLOR_ALPHA, + .data = ui_img_location_png_data}; + diff --git a/examples/indicator_matter/main/ui/ui_img_lock_png.c b/examples/indicator_matter/main/ui/ui_img_lock_png.c new file mode 100644 index 0000000..fb440ba --- /dev/null +++ b/examples/indicator_matter/main/ui/ui_img_lock_png.c @@ -0,0 +1,27 @@ +// SquareLine LVGL GENERATED FILE +// EDITOR VERSION: SquareLine Studio 1.1.1 +// LVGL VERSION: 8.3.3 +// PROJECT: sensecap + +#include "ui.h" + +#ifndef LV_ATTRIBUTE_MEM_ALIGN +#define LV_ATTRIBUTE_MEM_ALIGN +#endif + +// IMAGE DATA: assets/lock.png +const LV_ATTRIBUTE_MEM_ALIGN uint8_t ui_img_lock_png_data[] = { +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x40,0xFF,0xFF,0xAF,0xFF,0xFF,0xEF,0xFF,0xFF,0xFF,0xFF,0xFF,0xEF,0xFF,0xFF,0xAF,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,0xFF,0xFF,0x7F,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x7F,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x7F,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xAF,0xFF,0xFF,0x40,0xFF,0xFF,0x20,0xFF,0xFF,0x40,0xFF,0xFF,0xA0,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x70,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0xDF,0xFF,0xFF,0xFF,0xFF,0xFF,0x9F,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x90,0xFF,0xFF,0xFF, +0xFF,0xFF,0xEF,0xFF,0xFF,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x40,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x20,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x30,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x50,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x60,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x60,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x60,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0xAF,0xFF,0xFF,0xDF,0xFF,0xFF,0xEF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xDF,0xFF,0xFF,0xDF,0xFF,0xFF,0xDF,0xFF,0xFF,0xDF, +0xFF,0xFF,0xDF,0xFF,0xFF,0xDF,0xFF,0xFF,0xDF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xEF,0xFF,0xFF,0xDF,0xFF,0xFF,0x8F,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, +0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, +0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, +0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFE,0xFF,0xFF,0x50,0xFF,0xFF,0x80,0xFF,0xFF,0x80,0xFF,0xFF,0x80,0xFF,0xFF,0x80,0xFF,0xFF,0x80,0xFF,0xFF,0x80,0xFF,0xFF,0x80,0xFF,0xFF,0x80,0xFF,0xFF,0x80,0xFF,0xFF,0x80,0xFF,0xFF,0x80,0xFF,0xFF,0x80,0xFF,0xFF,0x80,0xFF,0xFF,0x80,0xFF,0xFF,0x80,0xFF,0xFF,0x40,}; +const lv_img_dsc_t ui_img_lock_png = { + .header.always_zero = 0, + .header.w = 17, + .header.h = 22, + .data_size = sizeof(ui_img_lock_png_data), + .header.cf = LV_IMG_CF_TRUE_COLOR_ALPHA, + .data = ui_img_lock_png_data}; + diff --git a/examples/indicator_matter/main/ui/ui_img_low_light_png.c b/examples/indicator_matter/main/ui/ui_img_low_light_png.c new file mode 100644 index 0000000..88edcca --- /dev/null +++ b/examples/indicator_matter/main/ui/ui_img_low_light_png.c @@ -0,0 +1,27 @@ +// SquareLine LVGL GENERATED FILE +// EDITOR VERSION: SquareLine Studio 1.1.1 +// LVGL VERSION: 8.3.3 +// PROJECT: sensecap + +#include "ui.h" + +#ifndef LV_ATTRIBUTE_MEM_ALIGN +#define LV_ATTRIBUTE_MEM_ALIGN +#endif + +// IMAGE DATA: assets/low_light.png +const LV_ATTRIBUTE_MEM_ALIGN uint8_t ui_img_low_light_png_data[] = { +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,0xDF,0xFF,0xFF,0xDF,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,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,0xDF,0xFF,0xFF,0xDF,0x00,0x00,0x00,0x00,0x00,0x00,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,0x30,0xFF,0xFF,0x90,0xFF,0xFF,0x10,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,0x20,0xFF,0xFF,0x9F,0xFF,0xFF,0x30,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0xA0,0xFF,0xFF,0xFF,0xFF,0xFF,0x4F,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,0x40,0xFF,0xFF,0xFF,0xFF,0xFF,0x90,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x20,0xFF,0xFF,0x40,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x40,0xFF,0xFF,0xBF,0xFF,0xFF,0xEF,0xFF,0xFF,0xFF,0xFF,0xFF,0xBF,0xFF,0xFF,0x5F,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x50,0xFF,0xFF,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x7F,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x7F,0x00,0x00,0x00,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,0x60,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,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,0xFF,0xFF,0xBF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xBF,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0xDF,0xFF,0xFF,0xDF,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xEF,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0xDF,0xFF,0xFF,0xDF,0xFF,0xFF,0xDF,0xFF,0xFF,0xDF,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0xEF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0xDF,0xFF,0xFF,0xDF,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0xBF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, +0xFF,0xFF,0xFF,0xFF,0xFF,0xBF,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,0x40,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x5F,0x00,0x00,0x00,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,0x80,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x80,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x10,0xFF,0xFF,0x50,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x60,0xFF,0xFF,0xBF,0xFF,0xFF,0xFF,0xFF,0xFF,0xEF,0xFF,0xFF,0xBF,0xFF,0xFF,0x40,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x40,0xFF,0xFF,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x90,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,0xFF,0xFF,0x50,0xFF,0xFF,0xFF,0xFF,0xFF,0x9F,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x30,0xFF,0xFF,0x9F,0xFF,0xFF,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,0xFF,0xFF,0x10,0xFF,0xFF,0x90,0xFF,0xFF,0x30,0x00,0x00,0x00,0x00,0x00,0x00,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,0xDF,0xFF,0xFF,0xDF,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,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,0xDF,0xFF,0xFF,0xDF,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 ui_img_low_light_png = { + .header.always_zero = 0, + .header.w = 18, + .header.h = 18, + .data_size = sizeof(ui_img_low_light_png_data), + .header.cf = LV_IMG_CF_TRUE_COLOR_ALPHA, + .data = ui_img_low_light_png_data}; + diff --git a/examples/indicator_matter/main/ui/ui_img_matter_qrcode_png.c b/examples/indicator_matter/main/ui/ui_img_matter_qrcode_png.c new file mode 100644 index 0000000..3840314 --- /dev/null +++ b/examples/indicator_matter/main/ui/ui_img_matter_qrcode_png.c @@ -0,0 +1,998 @@ +// This file was generated by SquareLine Studio +// SquareLine Studio version: SquareLine Studio 1.3.1 +// LVGL version: 8.3.4 +// Project name: SquareLine_Project + +#include "ui.h" + +#ifndef LV_ATTRIBUTE_MEM_ALIGN +#define LV_ATTRIBUTE_MEM_ALIGN +#endif + +// IMAGE DATA: assets/ui_img_matter_qrcode.png +const LV_ATTRIBUTE_MEM_ALIGN uint8_t ui_img_matter_qrcode_png_data[] = { +0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF, + 0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, + 0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, + 0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF, + 0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF, + 0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF, + 0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF, + 0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF, + 0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF, + 0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, + 0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF, + 0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF, + 0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, + 0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF, + 0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF, + 0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF, + 0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF, + 0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF, + 0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF, + 0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF, + 0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF, + 0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, + 0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF, + 0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF, + 0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF, + 0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, + 0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF, + 0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, + 0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF, + 0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF, + 0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, + 0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF, + 0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF, + 0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF, + 0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, + 0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF, + 0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, + 0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF, + 0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF, + 0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, + 0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF, + 0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF, + 0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF, + 0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF, + 0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF, + 0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, + 0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF, + 0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF, + 0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF, + 0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF, + 0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, + 0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF, + 0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF, + 0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, + 0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, + 0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF, + 0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF, + 0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, + 0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF, + 0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF, + 0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF, + 0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF, + 0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF, + 0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF, + 0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF, + 0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF, + 0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF, + 0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, + 0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, + 0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF, + 0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, + 0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, + 0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, + 0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, + 0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF, + 0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, + 0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, + 0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, + 0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, + 0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, + 0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF, + 0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF, + 0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, + 0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF, + 0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF, + 0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF, + 0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF, + 0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF, + 0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, + 0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, + 0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, + 0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF, + 0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF, + 0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF, + 0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, + 0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF, + 0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, + 0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF, + 0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF, + 0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF, + 0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF, + 0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF, + 0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF, + 0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, + 0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF, + 0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF, + 0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF, + 0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, + 0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF, + 0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, + 0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF, + 0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, + 0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF, + 0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF, + 0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, + 0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, + 0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, + 0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF, + 0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF, + 0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, + 0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF, + 0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, + 0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF, + 0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF, + 0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF, + 0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF, + 0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, + 0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, + 0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF, + 0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, + 0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, + 0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF, + 0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, + 0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, + 0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, + 0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF, + 0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF, + 0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, + 0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF, + 0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, + 0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF, + 0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, + 0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF, + 0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF, + 0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, + 0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF, + 0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, + 0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, + 0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, + 0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF, + 0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF, + 0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, + 0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, + 0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF, + 0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, + 0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, + 0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF, + 0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF, + 0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, + 0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, + 0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF, + 0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF, + 0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF, + 0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF, + 0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, + 0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, + 0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF, + 0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF, + 0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF, + 0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, + 0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, + 0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF, + 0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF, + 0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, + 0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF, + 0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF, + 0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF, + 0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF, + 0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF, + 0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF, + 0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF, + 0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, + 0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF, + 0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF, + 0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, + 0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF, + 0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF, + 0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF, + 0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF, + 0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF, + 0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF, + 0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF, + 0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, + 0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, + 0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF, + 0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF, + 0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF, + 0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF, + 0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF, + 0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF, + 0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF, + 0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, + 0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF, + 0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, + 0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, + 0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF, + 0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF, + 0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, + 0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF, + 0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, + 0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, + 0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, + 0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF, + 0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, + 0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, + 0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, + 0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, + 0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, + 0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, + 0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF, + 0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, + 0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, + 0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, + 0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, + 0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, + 0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, + 0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, + 0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, + 0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, + 0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, + 0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, + 0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, + 0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF, + 0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, + 0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, + 0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF, + 0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF, + 0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, + 0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF, + 0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF, + 0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF, + 0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF, + 0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF, + 0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, + 0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF, + 0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF, + 0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, + 0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, + 0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF, + 0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF, + 0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, + 0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, + 0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, + 0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, + 0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF, + 0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, + 0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, + 0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, + 0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF, + 0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, + 0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, + 0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, + 0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, + 0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, + 0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF, + 0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF, + 0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF, + 0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF, + 0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, + 0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF, + 0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, + 0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, + 0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, + 0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF, + 0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, + 0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, + 0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, + 0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, + 0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, + 0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF, + 0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, + 0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, + 0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF, + 0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF, + 0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, + 0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF, + 0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, + 0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF, + 0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF, + 0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF, + 0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF, + 0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF, + 0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, + 0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF, + 0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, + 0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF, + 0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, + 0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF, + 0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, + 0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF, + 0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, + 0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, + 0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, + 0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, + 0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, + 0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, + 0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, + 0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, + 0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF, + 0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, + 0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, + 0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF, + 0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF, + 0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF, + 0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF, + 0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, + 0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF, + 0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF, + 0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF, + 0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF, + 0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, + 0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF, + 0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF, + 0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF, + 0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, + 0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF, + 0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF, + 0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF, + 0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF, + 0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF, + 0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF, + 0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF, + 0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF, + 0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, + 0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF, + 0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF, + 0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF, + 0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, + 0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF, + 0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, + 0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, + 0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF, + 0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF, + 0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, + 0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, + 0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF, + 0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF, + 0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, + 0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, + 0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, + 0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF, + 0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF, + 0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, + 0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF, + 0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF, + 0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF, + 0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, + 0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, + 0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF, + 0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, + 0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, + 0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, + 0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, + 0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF, + 0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, + 0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, + 0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF, + 0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF, + 0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, + 0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF, + 0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF, + 0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF, + 0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF, + 0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF, + 0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF, + 0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF, + 0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF, + 0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, + 0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF, + 0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF, + 0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF, + 0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF, + 0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF, + 0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF, + 0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, + 0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF, + 0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, + 0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF, + 0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, + 0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, + 0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF, + 0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF, + 0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, + 0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, + 0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF, + 0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF, + 0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, + 0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, + 0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, + 0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF, + 0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, + 0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF, + 0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF, + 0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF, + 0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF, + 0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF, + 0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, + 0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, + 0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF, + 0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, + 0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF, + 0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF, + 0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF, + 0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, + 0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF, + 0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, + 0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, + 0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF, + 0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, + 0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, + 0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, + 0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF, + 0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, + 0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, + 0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, + 0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, + 0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, + 0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, + 0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, + 0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, + 0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF, + 0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, + 0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, + 0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF, + 0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF, + 0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, + 0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, + 0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, + 0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, + 0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, + 0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF, + 0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF, + 0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF, + 0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF, + 0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF, + 0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF, + 0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF, + 0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF, + 0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF, + 0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, + 0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF, + 0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, + 0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF, + 0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF, + 0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF, + 0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, + 0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF, + 0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, + 0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF, + 0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF, + 0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, + 0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, + 0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF, + 0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF, + 0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, + 0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, + 0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF, + 0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, + 0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, + 0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, + 0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF, + 0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, + 0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, + 0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF, + 0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, + 0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF, + 0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF, + 0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, + 0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, + 0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF, + 0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, + 0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, + 0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF, + 0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, + 0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF, + 0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF, + 0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, + 0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF, + 0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF, + 0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF, + 0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, + 0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, + 0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF, + 0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, + 0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF, + 0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF, + 0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF, + 0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF, + 0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF, + 0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF, + 0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF, + 0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF, + 0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, + 0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF, + 0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, + 0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, + 0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, + 0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF, + 0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, + 0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, + 0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, + 0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF, + 0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, + 0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, + 0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF, + 0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, + 0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, + 0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF, + 0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, + 0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, + 0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF, + 0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF, + 0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF, + 0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF, + 0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, + 0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF, + 0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF, + 0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, + 0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, + 0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF, + 0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF, + 0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF, + 0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF, + 0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, + 0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, + 0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF, + 0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF, + 0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF, + 0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF, + 0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, + 0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF, + 0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF, + 0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, + 0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, + 0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF, + 0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, + 0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF, + 0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, + 0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF, + 0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF, + 0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF, + 0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, + 0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF, + 0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF, + 0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF, + 0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF, + 0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF, + 0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF, + 0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF, + 0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, + 0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF, + 0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF, + 0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, + 0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, + 0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF, + 0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, + 0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF, + 0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF, + 0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF, + 0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, + 0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF, + 0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF, + 0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF, + 0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF, + 0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, + 0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF, + 0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, + 0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF, + 0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, + 0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, + 0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF, + 0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, + 0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, + 0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF, + 0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF, + 0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, + 0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, + 0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, + 0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF, + 0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF, + 0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF, + 0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF, + 0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, + 0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF, + 0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF, + 0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF, + 0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF, + 0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF, + 0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF, + 0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, + 0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, + 0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, + 0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF, + 0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, + 0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, + 0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, + 0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF, + 0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF, + 0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, + 0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, + 0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, + 0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF, + 0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF, + 0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF, + 0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, + 0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF, + 0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, + 0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF, + 0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, + 0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, + 0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, + 0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, + 0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, + 0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF, + 0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF, + 0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, + 0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, + 0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, + 0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, + 0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF, + 0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, + 0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, + 0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, + 0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF, + 0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF, + 0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, + 0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, + 0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF, + 0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, + 0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF, + 0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF, + 0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, + 0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF, + 0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, + 0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF, + 0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, + 0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF, + 0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF, + 0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, + 0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, + 0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF, + 0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, + 0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, + 0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, + 0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF, + 0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, + 0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF, + 0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, + 0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF, + 0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF, + 0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF, + 0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF, + 0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF, + 0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF, + 0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF, + 0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF, + 0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF, + 0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF, + 0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, + 0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, + 0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF, + 0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF, + 0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, + 0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, + 0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, + 0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF, + 0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, + 0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF, + 0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF, + 0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF, + 0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, + 0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF, + 0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF, + 0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF, + 0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, + 0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, + 0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, + 0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF, + 0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF, + 0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, + 0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF, + 0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF, + 0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF, + 0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, + 0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, + 0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF, + 0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF, + 0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, + 0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF, + 0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, + 0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF, + 0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF, + 0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF, + 0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF, + 0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF, + 0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF, + 0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, + 0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF, + 0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, + 0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF, + 0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF, + 0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF, + 0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, + 0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF, + 0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, + 0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, + 0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF, + 0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF, + 0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF, + 0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, + 0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF, + 0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF, + 0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF, + 0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF, + 0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF, + 0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF, + 0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, + 0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF, + 0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, + 0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF, + 0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF, + 0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF, + 0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, + 0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, + 0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, + 0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, + 0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, + 0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF, + 0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, + 0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, + 0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF, + 0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF, + 0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, + 0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF, + 0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF, + 0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF, + 0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, + 0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF, + 0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF, + 0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF, + 0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF, + 0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, + 0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, + 0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, + 0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF, + 0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, + 0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, + 0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, + 0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF, + 0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, + 0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, + 0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, + 0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, + 0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, + 0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, + 0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF, + 0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, + 0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF, + 0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF, + 0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF, + 0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, + 0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, + 0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF, + 0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF, + 0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, + 0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, + 0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF, + 0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF, + 0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, + 0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF, + 0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF, + 0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF, + 0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, + 0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF, + 0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, + 0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF, + 0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, + 0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF, + 0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, + 0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, + 0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF, + 0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF, + 0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF, + 0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, + 0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, + 0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, + 0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF, + 0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF, + 0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, + 0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, + 0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, + 0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF, + 0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF, + 0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, + 0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, + 0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF, + 0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, + 0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, + 0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, + 0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, + 0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, + 0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF, + 0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, + 0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, + 0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF, + 0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, + 0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, + 0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF, + 0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF, + 0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, + 0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, + 0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, + 0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF, + 0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF, + 0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF, + 0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF, + 0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF, + 0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF, + 0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, + 0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, + 0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF, + 0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF, + 0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, + 0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, + 0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF, + 0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF, + 0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, + 0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, + 0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF, + 0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, + 0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF, + 0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF, + 0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF, + 0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF, + 0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, + 0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF, + 0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF, + 0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF, + 0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, + 0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, + 0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF, + 0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF, + 0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF, + 0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, + 0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF, + 0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF, + 0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, + 0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, + 0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, + 0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, + 0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, + 0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF, + 0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, + 0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF, + 0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, + 0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF, + 0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, + 0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF, + 0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF, + 0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, + 0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF, + 0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, + 0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF, + 0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, + 0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF, + 0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF, + 0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF, + 0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF, + 0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF, + 0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF, + 0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, + 0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF, + 0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, + 0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF, + 0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF, + 0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF, + 0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF, + 0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, + 0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF, + 0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, + 0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF, + 0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF, + 0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF, + 0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF, + 0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF, + 0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF, + 0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF, + 0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF, + 0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF, + 0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, + 0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, + 0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF, + 0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, + 0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, + 0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, + 0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF, + 0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF, + 0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, + 0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, + 0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, + 0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF, + 0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF, + 0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF, + 0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF, + 0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, + 0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, + 0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, + 0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF, + 0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, + 0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, + 0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, + 0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF, + 0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, + 0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, + 0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, + 0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, + 0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, + 0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF, + 0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF, + 0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, + 0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF, + 0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF, + 0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF, + 0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, + 0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF, + 0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, + 0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF, + 0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, + 0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF, + 0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF, + 0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF, + 0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, + 0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, + 0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF, + 0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, + 0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF, + 0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, + 0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, + 0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF, + 0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF, + 0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF, + 0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, + 0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF, + 0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, + 0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF, + 0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF, + 0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, + 0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, + 0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, + 0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF, + 0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF, + 0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, + 0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, + 0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, + 0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF, + 0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, + 0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, + 0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, + 0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF, + 0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF, + 0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, + 0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF, + 0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF, + 0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, + 0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, + 0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF, + 0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,}; +const lv_img_dsc_t ui_img_matter_qrcode_png = { + .header.always_zero = 0, + .header.w = 250, + .header.h = 250, + .data_size = sizeof(ui_img_matter_qrcode_png_data), + .header.cf = LV_IMG_CF_TRUE_COLOR_ALPHA, + .data = ui_img_matter_qrcode_png_data}; + diff --git a/examples/indicator_matter/main/ui/ui_img_setting_png.c b/examples/indicator_matter/main/ui/ui_img_setting_png.c new file mode 100644 index 0000000..aee27ec --- /dev/null +++ b/examples/indicator_matter/main/ui/ui_img_setting_png.c @@ -0,0 +1,28 @@ +// SquareLine LVGL GENERATED FILE +// EDITOR VERSION: SquareLine Studio 1.1.1 +// LVGL VERSION: 8.3.3 +// PROJECT: sensecap + +#include "ui.h" + +#ifndef LV_ATTRIBUTE_MEM_ALIGN +#define LV_ATTRIBUTE_MEM_ALIGN +#endif + +// IMAGE DATA: assets/setting.png +const LV_ATTRIBUTE_MEM_ALIGN uint8_t ui_img_setting_png_data[] = { +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x20,0xFF,0xFF,0x90,0xFF,0xFF,0x9F,0xFF,0xFF,0x9F,0xFF,0xFF,0x9F,0xFF,0xFF,0x90,0xFF,0xFF,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,0xFF,0xFF,0xA0,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xBF,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,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,0xBF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,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,0xFF,0xFF,0x30,0xFF,0xFF,0x9F,0xFF,0xFF,0x5F,0xFF,0xFF,0x10,0xFF,0xFF,0x20,0xFF,0xFF,0xEF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x20,0x00,0x00,0x00,0xFF,0xFF,0x40,0xFF,0xFF,0x9F,0xFF,0xFF,0x50,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x10,0xFF,0xFF,0xDF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xEF,0xFF,0xFF,0xEF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xEF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xEF,0xFF,0xFF,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x7F,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xAF,0x00,0x00,0x00,0xFF,0xFF,0x20,0xFF,0xFF,0xFF, +0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xBF,0xFF,0xFF,0x6F,0xFF,0xFF,0x50,0xFF,0xFF,0x6F,0xFF,0xFF,0xBF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x40,0xFF,0xFF,0xA0,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x80,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x80,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xBF,0xFF,0xFF,0x70,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xCF,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0xA0,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x90,0x00,0x00,0x00,0xFF,0xFF,0x60,0xFF,0xFF,0xEF, +0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x4F,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x40,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x70,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x80,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x30,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xB0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x10,0xFF,0xFF,0xBF,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,0xFF,0xFF,0x20,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xCF,0xFF,0xFF,0x20,0x00,0x00,0x00,0xFF,0xFF,0x20,0xFF,0xFF,0xDF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, +0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x80,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x60,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xDF,0xFF,0xFF,0x50,0xFF,0xFF,0xAF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xEF,0xFF,0xFF,0x30,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x20,0xFF,0xFF,0xDF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xCF,0xFF,0xFF,0x60,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xEF,0xFF,0xFF,0x5F,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x40,0xFF,0xFF,0xDF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x80,0x00,0x00,0x00,0xFF,0xFF,0xBF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, +0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xDF,0xFF,0xFF,0xEF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xDF,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x40,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x5F,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x80,0xFF,0xFF,0xFF,0xFF,0xFF,0xBF,0xFF,0xFF,0x6F,0xFF,0xFF,0x90,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x9F,0xFF,0xFF,0x60,0xFF,0xFF,0xBF,0xFF,0xFF,0xFF,0xFF,0xFF,0xAF,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x20,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0xFF,0xFF,0xDF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x10,0x00,0x00,0x00,0x00,0x00,0x00,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,0xAF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xCF,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,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,0x70,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x80,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 ui_img_setting_png = { + .header.always_zero = 0, + .header.w = 21, + .header.h = 21, + .data_size = sizeof(ui_img_setting_png_data), + .header.cf = LV_IMG_CF_TRUE_COLOR_ALPHA, + .data = ui_img_setting_png_data}; + diff --git a/examples/indicator_matter/main/ui/ui_img_temp_1_png.c b/examples/indicator_matter/main/ui/ui_img_temp_1_png.c new file mode 100644 index 0000000..d248e84 --- /dev/null +++ b/examples/indicator_matter/main/ui/ui_img_temp_1_png.c @@ -0,0 +1,32 @@ +// SquareLine LVGL GENERATED FILE +// EDITOR VERSION: SquareLine Studio 1.1.1 +// LVGL VERSION: 8.3.3 +// PROJECT: sensecap + +#include "ui.h" + +#ifndef LV_ATTRIBUTE_MEM_ALIGN +#define LV_ATTRIBUTE_MEM_ALIGN +#endif + +// IMAGE DATA: assets/temp_1.png +const LV_ATTRIBUTE_MEM_ALIGN uint8_t ui_img_temp_1_png_data[] = { +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xE8,0xED,0x10,0xE8,0xED,0x30,0xE8,0xED,0x40,0xE8,0xED,0x40,0xE8,0xED,0x30,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xE8,0xED,0x30,0xE8,0xED,0x90,0xE8,0xED,0xDF,0xE8,0xED,0xFF,0xE8,0xED,0xFF,0xE8,0xED,0xFF,0xE8,0xED,0xFF,0xE8,0xED,0xFF,0xE8,0xED,0xEF,0xE8,0xED,0xAF,0xE8,0xED,0x5F,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xE8,0xED,0x10,0xE8,0xED,0xA0,0xE8,0xED,0xFF,0xE8,0xED,0xFF,0xE8,0xED,0xFF,0xE8,0xED,0xFF,0xE8,0xED,0xFF, +0xE8,0xED,0xFF,0xE8,0xED,0xFF,0xE8,0xED,0xFF,0xE8,0xED,0xFF,0xE8,0xED,0xFF,0xE8,0xED,0xFF,0xE8,0xED,0xDF,0xE8,0xED,0x5F,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xE8,0xED,0x40,0xE8,0xED,0xEF,0xE8,0xED,0xFF,0xE8,0xED,0xFF,0xE8,0xED,0xFF,0xE8,0xED,0xFF,0xE8,0xED,0xFF,0xE8,0xED,0xFF,0xE8,0xED,0xFF,0xE8,0xED,0xFF,0xE8,0xED,0xFF,0xE8,0xED,0xFF,0xE8,0xED,0xFF,0xE8,0xED,0xFF,0xE8,0xED,0xFF,0xE8,0xED,0xFF,0xE8,0xED,0x7F,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xE8,0xED,0x50,0xE8,0xED,0xFF,0xE8,0xED,0xFF,0xE8,0xED,0xFF,0xE8,0xED,0xFF,0xE8,0xED,0xFF,0xE8,0xED,0xFF,0xE8,0xED,0xFF,0xE8,0xED,0xFF,0xE8,0xED,0xFF,0xE8,0xED,0xFF,0xE8,0xED,0xFF,0xE8,0xED,0xFF,0xE8,0xED,0xFF,0xE8,0xED,0xFF,0xE8,0xED,0xFF,0xE8,0xED,0xFF,0xE8,0xED,0xFF,0xE8,0xED,0x9F,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xE8,0xED,0x20,0xE8,0xED,0xEF,0xE8,0xED,0xFF,0xE8,0xED,0xFF,0xE8,0xED,0xFF,0xE8,0xED,0xFF,0xE8,0xED,0xFF,0xE8,0xED,0xFF,0xE8,0xED,0xFF,0x66,0xAC,0xFF,0x06,0x9C,0xFF,0x47,0xD5,0xFF,0xE8,0xED,0xFF,0xE8,0xED,0xFF,0xE8,0xED,0xFF,0xE8,0xED,0xFF,0xE8,0xED,0xFF,0xE8,0xED,0xFF,0xE8,0xED,0xFF,0xE8,0xED,0xFF,0xE8,0xED,0x8F,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xE8,0xED,0xDF,0xE8,0xED,0xFF,0xE8,0xED,0xFF,0xE8,0xED,0xFF,0xE8,0xED,0xFF,0xE8,0xED,0xFF,0xE8,0xED,0xFF,0xE8,0xED,0xFF,0x25,0x7B,0xFF,0xE3,0x18,0xFF,0xE3,0x18,0xFF,0x84,0x31,0xFF,0xA7,0xE5,0xFF,0xE8,0xED,0xFF,0xE8,0xED,0xFF,0xE8,0xED,0xFF,0xE8,0xED,0xFF,0xE8,0xED,0xFF,0xE8,0xED,0xFF,0xE8,0xED,0xFF,0xE8,0xED,0xFF,0xE8,0xED,0x40,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xE8,0xED,0x60,0xE8,0xED,0xFF,0xE8,0xED,0xFF,0xE8,0xED,0xFF,0xE8,0xED,0xFF,0xE8,0xED,0xFF,0xE8,0xED,0xFF,0xE8,0xED,0xFF,0xE8,0xED,0xFF, +0xE3,0x18,0xFF,0xE3,0x18,0xFF,0xE3,0x18,0xFF,0xE3,0x18,0xFF,0x06,0x9C,0xFF,0x07,0xC5,0xFF,0x06,0x9C,0xFF,0x47,0xD5,0xFF,0xE8,0xED,0xFF,0xE8,0xED,0xFF,0xE8,0xED,0xFF,0xE8,0xED,0xFF,0xE8,0xED,0xFF,0xE8,0xED,0xDF,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xE8,0xED,0xDF,0xE8,0xED,0xFF,0xE8,0xED,0xFF,0xE8,0xED,0xFF,0xE8,0xED,0xFF,0xE8,0xED,0xFF,0xE8,0xED,0xFF,0xE8,0xED,0xFF,0xE8,0xED,0xFF,0xE3,0x18,0xFF,0xE3,0x18,0xFF,0xE3,0x18,0xFF,0xE3,0x18,0xFF,0x06,0x9C,0xFF,0x07,0xC5,0xFF,0xC5,0x6A,0xFF,0x66,0xAC,0xFF,0xE8,0xED,0xFF,0xE8,0xED,0xFF,0xE8,0xED,0xFF,0xE8,0xED,0xFF,0xE8,0xED,0xFF,0xE8,0xED,0xFF,0xE8,0xED,0x4F,0x00,0x00,0x00,0xE8,0xED,0x40,0xE8,0xED,0xFF,0xE8,0xED,0xFF,0xE8,0xED,0xFF,0xE8,0xED,0xFF,0xE8,0xED,0xFF,0xE8,0xED,0xFF,0xE8,0xED,0xFF,0xE8,0xED,0xFF,0xE8,0xED,0xFF,0xE3,0x18,0xFF,0xE3,0x18,0xFF,0xE3,0x18,0xFF,0xE3,0x18,0xFF,0x06,0x9C,0xFF,0xA7,0xBC,0xFF,0x65,0x83,0xFF,0xA7,0xBC,0xFF,0xE8,0xED,0xFF,0xE8,0xED,0xFF,0xE8,0xED,0xFF,0xE8,0xED,0xFF, +0xE8,0xED,0xFF,0xE8,0xED,0xFF,0xE8,0xED,0xBF,0x00,0x00,0x00,0xE8,0xED,0x90,0xE8,0xED,0xFF,0xE8,0xED,0xFF,0xE8,0xED,0xFF,0xE8,0xED,0xFF,0xE8,0xED,0xFF,0xE8,0xED,0xFF,0xE8,0xED,0xFF,0xE8,0xED,0xFF,0xE8,0xED,0xFF,0xE3,0x18,0xFF,0xE3,0x18,0xFF,0xE3,0x18,0xFF,0xE3,0x18,0xFF,0x06,0x9C,0xFF,0x06,0x9C,0xFF,0x24,0x52,0xFF,0x66,0xAC,0xFF,0xE8,0xED,0xFF,0xE8,0xED,0xFF,0xE8,0xED,0xFF,0xE8,0xED,0xFF,0xE8,0xED,0xFF,0xE8,0xED,0xFF,0xE8,0xED,0xEF,0x00,0x00,0x00,0xE8,0xED,0xBF,0xE8,0xED,0xFF,0xE8,0xED,0xFF,0xE8,0xED,0xFF,0xE8,0xED,0xFF,0xE8,0xED,0xFF,0xE8,0xED,0xFF,0xE8,0xED,0xFF,0xE8,0xED,0xFF,0xE8,0xED,0xFF,0xE3,0x18,0xFF,0xE3,0x18,0xFF,0xE3,0x18,0xFF,0xE3,0x18,0xFF,0x06,0x9C,0xFF,0xE8,0xED,0xFF,0xE8,0xED,0xFF,0xE8,0xED,0xFF,0xE8,0xED,0xFF,0xE8,0xED,0xFF,0xE8,0xED,0xFF,0xE8,0xED,0xFF,0xE8,0xED,0xFF,0xE8,0xED,0xFF,0xE8,0xED,0xFF,0xE8,0xED,0x20,0xE8,0xED,0xCF,0xE8,0xED,0xFF,0xE8,0xED,0xFF,0xE8,0xED,0xFF,0xE8,0xED,0xFF,0xE8,0xED,0xFF,0xE8,0xED,0xFF,0xE8,0xED,0xFF, +0xE8,0xED,0xFF,0xE8,0xED,0xFF,0xE3,0x18,0xFF,0xE3,0x18,0xFF,0xE3,0x18,0xFF,0xE3,0x18,0xFF,0x06,0x9C,0xFF,0xE8,0xED,0xFF,0xE8,0xED,0xFF,0xE8,0xED,0xFF,0xE8,0xED,0xFF,0xE8,0xED,0xFF,0xE8,0xED,0xFF,0xE8,0xED,0xFF,0xE8,0xED,0xFF,0xE8,0xED,0xFF,0xE8,0xED,0xFF,0xE8,0xED,0x40,0xE8,0xED,0xDF,0xE8,0xED,0xFF,0xE8,0xED,0xFF,0xE8,0xED,0xFF,0xE8,0xED,0xFF,0xE8,0xED,0xFF,0xE8,0xED,0xFF,0xE8,0xED,0xFF,0xE8,0xED,0xFF,0xE8,0xED,0xFF,0xE3,0x18,0xFF,0xE3,0x18,0xFF,0xE3,0x18,0xFF,0xE3,0x18,0xFF,0x06,0x9C,0xFF,0xE8,0xED,0xFF,0xE8,0xED,0xFF,0xE8,0xED,0xFF,0xE8,0xED,0xFF,0xE8,0xED,0xFF,0xE8,0xED,0xFF,0xE8,0xED,0xFF,0xE8,0xED,0xFF,0xE8,0xED,0xFF,0xE8,0xED,0xFF,0xE8,0xED,0x40,0xE8,0xED,0xCF,0xE8,0xED,0xFF,0xE8,0xED,0xFF,0xE8,0xED,0xFF,0xE8,0xED,0xFF,0xE8,0xED,0xFF,0xE8,0xED,0xFF,0xE8,0xED,0xFF,0xE8,0xED,0xFF,0xE8,0xED,0xFF,0xE3,0x18,0xFF,0xC5,0x6A,0xFF,0x66,0xAC,0xFF,0xE3,0x18,0xFF,0x06,0x9C,0xFF,0xE8,0xED,0xFF,0xE8,0xED,0xFF,0xE8,0xED,0xFF,0xE8,0xED,0xFF,0xE8,0xED,0xFF, +0xE8,0xED,0xFF,0xE8,0xED,0xFF,0xE8,0xED,0xFF,0xE8,0xED,0xFF,0xE8,0xED,0xFF,0xE8,0xED,0x40,0xE8,0xED,0xA0,0xE8,0xED,0xFF,0xE8,0xED,0xFF,0xE8,0xED,0xFF,0xE8,0xED,0xFF,0xE8,0xED,0xFF,0xE8,0xED,0xFF,0xE8,0xED,0xFF,0xE8,0xED,0xFF,0xE8,0xED,0xFF,0xE3,0x18,0xFF,0x65,0x83,0xFF,0x47,0xD5,0xFF,0xE3,0x18,0xFF,0x06,0x9C,0xFF,0xE8,0xED,0xFF,0xE8,0xED,0xFF,0xE8,0xED,0xFF,0xE8,0xED,0xFF,0xE8,0xED,0xFF,0xE8,0xED,0xFF,0xE8,0xED,0xFF,0xE8,0xED,0xFF,0xE8,0xED,0xFF,0xE8,0xED,0xFF,0xE8,0xED,0x10,0xE8,0xED,0x70,0xE8,0xED,0xFF,0xE8,0xED,0xFF,0xE8,0xED,0xFF,0xE8,0xED,0xFF,0xE8,0xED,0xFF,0xE8,0xED,0xFF,0xE8,0xED,0xFF,0xE8,0xED,0xFF,0x65,0x83,0xFF,0xE3,0x18,0xFF,0xC6,0x93,0xFF,0x47,0xD5,0xFF,0xE3,0x18,0xFF,0x24,0x52,0xFF,0xE8,0xED,0xFF,0xE8,0xED,0xFF,0xE8,0xED,0xFF,0xE8,0xED,0xFF,0xE8,0xED,0xFF,0xE8,0xED,0xFF,0xE8,0xED,0xFF,0xE8,0xED,0xFF,0xE8,0xED,0xFF,0xE8,0xED,0xDF,0x00,0x00,0x00,0xE8,0xED,0x20,0xE8,0xED,0xFF,0xE8,0xED,0xFF,0xE8,0xED,0xFF,0xE8,0xED,0xFF,0xE8,0xED,0xFF, +0xE8,0xED,0xFF,0xE8,0xED,0xFF,0xE8,0xED,0xFF,0x84,0x31,0xFF,0xC5,0x6A,0xFF,0xE8,0xED,0xFF,0xE8,0xED,0xFF,0x65,0x83,0xFF,0xE3,0x18,0xFF,0xA7,0xBC,0xFF,0xE8,0xED,0xFF,0xE8,0xED,0xFF,0xE8,0xED,0xFF,0xE8,0xED,0xFF,0xE8,0xED,0xFF,0xE8,0xED,0xFF,0xE8,0xED,0xFF,0xE8,0xED,0xFF,0xE8,0xED,0x9F,0x00,0x00,0x00,0x00,0x00,0x00,0xE8,0xED,0xBF,0xE8,0xED,0xFF,0xE8,0xED,0xFF,0xE8,0xED,0xFF,0xE8,0xED,0xFF,0xE8,0xED,0xFF,0xE8,0xED,0xFF,0x47,0xD5,0xFF,0xE3,0x18,0xFF,0x65,0x83,0xFF,0xE8,0xED,0xFF,0xE8,0xED,0xFF,0x07,0xC5,0xFF,0xE3,0x18,0xFF,0x65,0x83,0xFF,0xE8,0xED,0xFF,0xE8,0xED,0xFF,0xE8,0xED,0xFF,0xE8,0xED,0xFF,0xE8,0xED,0xFF,0xE8,0xED,0xFF,0xE8,0xED,0xFF,0xE8,0xED,0xFF,0xE8,0xED,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0xE8,0xED,0x40,0xE8,0xED,0xFF,0xE8,0xED,0xFF,0xE8,0xED,0xFF,0xE8,0xED,0xFF,0xE8,0xED,0xFF,0xE8,0xED,0xFF,0xA7,0xE5,0xFF,0x23,0x29,0xFF,0xC4,0x41,0xFF,0x47,0xD5,0xFF,0xE8,0xED,0xFF,0x65,0x83,0xFF,0xE3,0x18,0xFF,0x66,0xAC,0xFF,0xE8,0xED,0xFF,0xE8,0xED,0xFF, +0xE8,0xED,0xFF,0xE8,0xED,0xFF,0xE8,0xED,0xFF,0xE8,0xED,0xFF,0xE8,0xED,0xFF,0xE8,0xED,0x9F,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xE8,0xED,0x90,0xE8,0xED,0xFF,0xE8,0xED,0xFF,0xE8,0xED,0xFF,0xE8,0xED,0xFF,0xE8,0xED,0xFF,0xE8,0xED,0xFF,0x05,0x7B,0xFF,0xE3,0x18,0xFF,0x23,0x29,0xFF,0x23,0x29,0xFF,0xE3,0x18,0xFF,0x84,0x31,0xFF,0xE8,0xED,0xFF,0xE8,0xED,0xFF,0xE8,0xED,0xFF,0xE8,0xED,0xFF,0xE8,0xED,0xFF,0xE8,0xED,0xFF,0xE8,0xED,0xFF,0xE8,0xED,0xDE,0xE8,0xED,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xE8,0xED,0x10,0xE8,0xED,0xCF,0xE8,0xED,0xFF,0xE8,0xED,0xFF,0xE8,0xED,0xFF,0xE8,0xED,0xFF,0xE8,0xED,0xFF,0xE8,0xED,0xFF,0x65,0x83,0xFF,0x84,0x31,0xFF,0x23,0x29,0xFF,0x24,0x52,0xFF,0x47,0xD5,0xFF,0xE8,0xED,0xFF,0xE8,0xED,0xFF,0xE8,0xED,0xFF,0xE8,0xED,0xFF,0xE8,0xED,0xFF,0xE8,0xED,0xFF,0xE8,0xED,0xFE,0xE8,0xED,0x30,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xE8,0xED,0x10, +0xE8,0xED,0xCF,0xE8,0xED,0xFF,0xE8,0xED,0xFF,0xE8,0xED,0xFF,0xE8,0xED,0xFF,0xE8,0xED,0xFF,0xE8,0xED,0xFF,0xE8,0xED,0xFF,0xE8,0xED,0xFF,0xE8,0xED,0xFF,0xE8,0xED,0xFF,0xE8,0xED,0xFF,0xE8,0xED,0xFF,0xE8,0xED,0xFF,0xE8,0xED,0xFF,0xE8,0xED,0xFF,0xE8,0xED,0xEE,0xE8,0xED,0x60,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xE8,0xED,0x90,0xE8,0xED,0xFF,0xE8,0xED,0xFF,0xE8,0xED,0xFF,0xE8,0xED,0xFF,0xE8,0xED,0xFF,0xE8,0xED,0xFF,0xE8,0xED,0xFF,0xE8,0xED,0xFF,0xE8,0xED,0xFF,0xE8,0xED,0xFF,0xE8,0xED,0xFF,0xE8,0xED,0xFF,0xE8,0xED,0xFF,0xE8,0xED,0xDE,0xE8,0xED,0x30,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xE8,0xED,0x20,0xE8,0xED,0xBF,0xE8,0xED,0xFF,0xE8,0xED,0xFF,0xE8,0xED,0xFF,0xE8,0xED,0xFF,0xE8,0xED,0xFF,0xE8,0xED,0xFF,0xE8,0xED,0xFF,0xE8,0xED,0xFF, +0xE8,0xED,0xFE,0xE8,0xED,0xEE,0xE8,0xED,0x80,0xE8,0xED,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xE8,0xED,0x20,0x08,0xEE,0x6F,0xE8,0xED,0xAF,0xE8,0xED,0xBF,0xE8,0xED,0xDF,0xE8,0xED,0xDF,0xE8,0xED,0xAE,0xE8,0xED,0x8F,0xE8,0xED,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,}; +const lv_img_dsc_t ui_img_temp_1_png = { + .header.always_zero = 0, + .header.w = 26, + .header.h = 26, + .data_size = sizeof(ui_img_temp_1_png_data), + .header.cf = LV_IMG_CF_TRUE_COLOR_ALPHA, + .data = ui_img_temp_1_png_data}; + diff --git a/examples/indicator_matter/main/ui/ui_img_temp_2_png.c b/examples/indicator_matter/main/ui/ui_img_temp_2_png.c new file mode 100644 index 0000000..1bd0e1b --- /dev/null +++ b/examples/indicator_matter/main/ui/ui_img_temp_2_png.c @@ -0,0 +1,36 @@ +// SquareLine LVGL GENERATED FILE +// EDITOR VERSION: SquareLine Studio 1.1.1 +// LVGL VERSION: 8.3.3 +// PROJECT: sensecap + +#include "ui.h" + +#ifndef LV_ATTRIBUTE_MEM_ALIGN +#define LV_ATTRIBUTE_MEM_ALIGN +#endif + +// IMAGE DATA: assets/temp_2.png +const LV_ATTRIBUTE_MEM_ALIGN uint8_t ui_img_temp_2_png_data[] = { +0x00,0x00,0x00,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,0x10,0xFF,0xFF,0x60,0xFF,0xFF,0x9F,0xFF,0xFF,0xCF,0xFF,0xFF,0xEF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xEF,0xFF,0xFF,0xBF,0xFF,0xFF,0x90,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,0xFF,0xFF,0x10,0xFF,0xFF,0x7F,0xFF,0xFF,0xEF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xDE,0xFF,0xFF,0x5F,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,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,0x6F,0xFF,0xFF,0xEF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xDE,0xFF,0xFF,0x30,0x00,0x00,0x00,0x00,0x00,0x00,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,0x10,0xFF,0xFF,0x9F,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFE,0xFF,0xFF,0x7F,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,0x10,0xFF,0xFF,0xCF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, +0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFE,0xFF,0xFF,0x7F,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0xA0,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFE,0xFF,0xFF,0x70,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x6F,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, +0x15,0xFF,0xFF,0x09,0xEE,0xFF,0x2B,0xF6,0xFF,0x15,0xF7,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xEE,0xFF,0xFF,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x20,0xFF,0xFF,0xEF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x37,0xFF,0xFF,0xE8,0xED,0xFF,0xE8,0xED,0xFF,0xE8,0xED,0xFF,0xE8,0xED,0xFF,0x79,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xBE,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0xA0,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x8F,0xF6,0xFF,0xE8,0xED,0xFF,0xE8,0xED,0xFF,0xE8,0xED,0xFF,0xE8,0xED,0xFF, +0xF4,0xF6,0xFF,0xDE,0xFF,0xFF,0xB1,0xF6,0xFF,0xB1,0xF6,0xFF,0xDE,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFE,0xFF,0xFF,0x40,0x00,0x00,0x00,0xFF,0xFF,0x10,0xFF,0xFF,0xEF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x6E,0xF6,0xFF,0xE8,0xED,0xFF,0xE8,0xED,0xFF,0xE8,0xED,0xFF,0xE8,0xED,0xFF,0xF4,0xF6,0xFF,0xFF,0xFF,0xFF,0x15,0xFF,0xFF,0xF4,0xF6,0xFF,0xDE,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xBE,0x00,0x00,0x00,0xFF,0xFF,0x60,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x6E,0xF6,0xFF,0xE8,0xED,0xFF,0xE8,0xED,0xFF,0xE8,0xED,0xFF,0xE8,0xED,0xFF,0xF4,0xF6,0xFF,0xDE,0xFF,0xFF,0x6E,0xF6,0xFF,0x6E,0xF6,0xFF, +0x9B,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFE,0xFF,0xFF,0x10,0xFF,0xFF,0xA0,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x6E,0xF6,0xFF,0xE8,0xED,0xFF,0xE8,0xED,0xFF,0xE8,0xED,0xFF,0xE8,0xED,0xFF,0xF4,0xF6,0xFF,0xDE,0xFF,0xFF,0x8F,0xF6,0xFF,0x6E,0xF6,0xFF,0x9B,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFE,0xFF,0xFF,0x60,0xFF,0xFF,0xCF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x6E,0xF6,0xFF,0xE8,0xED,0xFF,0xE8,0xED,0xFF,0xE8,0xED,0xFF,0xE8,0xED,0xFF,0xF4,0xF6,0xFF,0xFF,0xFF,0xFF,0xBC,0xFF,0xFF,0xBC,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, +0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x8F,0xFF,0xFF,0xEF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x6E,0xF6,0xFF,0xE8,0xED,0xFF,0xE8,0xED,0xFF,0xE8,0xED,0xFF,0xE8,0xED,0xFF,0xF4,0xF6,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x9E,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x6E,0xF6,0xFF,0xE8,0xED,0xFF,0xE8,0xED,0xFF,0xE8,0xED,0xFF,0xE8,0xED,0xFF,0xF4,0xF6,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, +0xFF,0xFF,0xFF,0xFF,0xFF,0xBE,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x6E,0xF6,0xFF,0xE8,0xED,0xFF,0xE8,0xED,0xFF,0xE8,0xED,0xFF,0xE8,0xED,0xFF,0xF4,0xF6,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xBE,0xFF,0xFF,0xDF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x6E,0xF6,0xFF,0xE8,0xED,0xFF,0x58,0xFF,0xFF,0xD2,0xF6,0xFF,0xE8,0xED,0xFF,0xF4,0xF6,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x9E,0xFF,0xFF,0xBF,0xFF,0xFF,0xFF, +0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x6E,0xF6,0xFF,0xE8,0xED,0xFF,0xBC,0xFF,0xFF,0x79,0xFF,0xFF,0xE8,0xED,0xFF,0xF4,0xF6,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x80,0xFF,0xFF,0x90,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x2B,0xF6,0xFF,0xE8,0xED,0xFF,0xBC,0xFF,0xFF,0x79,0xFF,0xFF,0xE8,0xED,0xFF,0xB1,0xF6,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFE,0xFF,0xFF,0x40,0xFF,0xFF,0x40,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, +0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xF4,0xF6,0xFF,0xE8,0xED,0xFF,0xB1,0xF6,0xFF,0xFF,0xFF,0xFF,0xDE,0xFF,0xFF,0x2B,0xF6,0xFF,0xE8,0xED,0xFF,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,0xEE,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0xEF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x2B,0xF6,0xFF,0xE8,0xED,0xFF,0xBC,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x79,0xFF,0xFF,0xE8,0xED,0xFF,0x8F,0xF6,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x9E,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x80,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, +0xE8,0xED,0xFF,0x09,0xEE,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x9B,0xFF,0xFF,0xE8,0xED,0xFF,0x4C,0xF6,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFE,0xFF,0xFF,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x10,0xFF,0xFF,0xDE,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x2B,0xF6,0xFF,0xE8,0xED,0xFF,0xF4,0xF6,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xF4,0xF6,0xFF,0xE8,0xED,0xFF,0x8F,0xF6,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x9E,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x40,0xFF,0xFF,0xFE,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x15,0xFF,0xFF,0xE8,0xED,0xFF,0xE8,0xED,0xFF,0x4C,0xF6,0xFF, +0x2B,0xF6,0xFF,0xE8,0xED,0xFF,0xE8,0xED,0xFF,0x9B,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xDE,0xFF,0xFF,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x70,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xF4,0xF6,0xFF,0xE8,0xED,0xFF,0xE8,0xED,0xFF,0xE8,0xED,0xFF,0x09,0xEE,0xFF,0x15,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xEE,0xFF,0xFF,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x80,0xFF,0xFF,0xFE,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xBC,0xFF,0xFF,0x36,0xFF,0xFF,0x36,0xFF,0xFF,0xDE,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, +0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xEE,0xFF,0xFF,0x30,0x00,0x00,0x00,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,0x70,0xFF,0xFF,0xFE,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xDE,0xFF,0xFF,0x30,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,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,0x20,0xFF,0xFF,0xCE,0xFF,0xFF,0xFE,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, +0xFF,0xFF,0x8F,0xFF,0xFF,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,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,0x50,0xFF,0xFF,0xBE,0xFF,0xFF,0xFE,0xFF,0xFF,0xFE,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xEF,0xFF,0xFF,0x90,0xFF,0xFF,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,0xFF,0xFF,0x20,0xFF,0xFF,0x50,0xFF,0xFF,0x80,0xFF,0xFF,0x9E,0xFF,0xFF,0xBE,0xFF,0xFF,0xAF,0xFF,0xFF,0x9F,0xFF,0xFF,0x6F,0xFF,0xFF,0x40,0xFF,0xFF,0x10,0x00,0x00,0x00,0x00,0x00,0x00,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 ui_img_temp_2_png = { + .header.always_zero = 0, + .header.w = 30, + .header.h = 30, + .data_size = sizeof(ui_img_temp_2_png_data), + .header.cf = LV_IMG_CF_TRUE_COLOR_ALPHA, + .data = ui_img_temp_2_png_data}; + diff --git a/examples/indicator_matter/main/ui/ui_img_time_png.c b/examples/indicator_matter/main/ui/ui_img_time_png.c new file mode 100644 index 0000000..79dae73 --- /dev/null +++ b/examples/indicator_matter/main/ui/ui_img_time_png.c @@ -0,0 +1,71 @@ +// SquareLine LVGL GENERATED FILE +// EDITOR VERSION: SquareLine Studio 1.1.1 +// LVGL VERSION: 8.3.3 +// PROJECT: sensecap + +#include "ui.h" + +#ifndef LV_ATTRIBUTE_MEM_ALIGN +#define LV_ATTRIBUTE_MEM_ALIGN +#endif + +// IMAGE DATA: assets/time.png +const LV_ATTRIBUTE_MEM_ALIGN uint8_t ui_img_time_png_data[] = { +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,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,0x20,0xFF,0xFF,0x40,0xFF,0xFF,0x60,0xFF,0xFF,0x60,0xFF,0xFF,0x60,0xFF,0xFF,0x50,0xFF,0xFF,0x40,0xFF,0xFF,0x30,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,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,0x10,0xFF,0xFF,0x60,0xFF,0xFF,0x90,0xFF,0xFF,0xCF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xCF,0xFF,0xFF,0x90,0xFF,0xFF,0x50,0xFF,0xFF,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,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,0x40,0xFF,0xFF,0xBF,0xFF,0xFF,0xEF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x9F,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,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,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,0x60,0xFF,0xFF,0xDF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, +0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xDE,0xFF,0xFF,0x5F,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,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,0x40,0xFF,0xFF,0xCF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, +0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xDE,0xFF,0xFF,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,0xFF,0xFF,0x10,0xFF,0xFF,0x8F,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, +0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFE,0xFF,0xFF,0x7F,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,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,0x20,0xFF,0xFF,0xDF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xDE,0xFF,0xFF,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,0xFF,0xFF,0x30,0xFF,0xFF,0xEF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xDE,0xFF,0xFF,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,0xFF,0xFF,0x5F,0xFF,0xFF,0xEF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xEE,0xFF,0xFF,0x30,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,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,0x30, +0xFF,0xFF,0xEF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xEE,0xFF,0xFF,0x30,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,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,0x20,0xFF,0xFF,0xEF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, +0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xDE,0xFF,0xFF,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,0xFF,0xFF,0x10,0xFF,0xFF,0xDF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, +0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xCE,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,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,0x8F,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xA0,0xFF,0xFF,0x10,0xFF,0xFF,0x10,0xFF,0xFF,0x80,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, +0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,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,0xFF,0xFF,0x50,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0xBF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, +0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFE,0xFF,0xFF,0x30,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,0xDF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xDF,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0xA0,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, +0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xBE,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x60,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xDF,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0xA0,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFE,0xFF,0xFF,0x40,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0xDF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xDF,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0xA0,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xBE,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x60,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, +0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xDF,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0xA0,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFE,0xFF,0xFF,0x40,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0xBF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, +0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xDF,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0xA0,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x9E,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x20,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, +0xFF,0xFF,0xDF,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0xA0,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xEE,0xFF,0xFF,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x60,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xDF,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0xA0,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, +0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFE,0xFF,0xFF,0x40,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0xAF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xDF,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0xA0,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, +0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x8F,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0xCF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xDF,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0xA0,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, +0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xCE,0x00,0x00,0x00,0xFF,0xFF,0x10,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xDF,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0xA0,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xEE,0x00,0x00,0x00, +0xFF,0xFF,0x40,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xDF,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0xA0,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFE,0xFF,0xFF,0x20,0xFF,0xFF,0x50,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, +0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xDF,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0xA0,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFE,0xFF,0xFF,0x30,0xFF,0xFF,0x60,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, +0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xDF,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x50,0xFF,0xFF,0x80,0xFF,0xFF,0x80,0xFF,0xFF,0x80,0xFF,0xFF,0x80,0xFF,0xFF,0x80,0xFF,0xFF,0x80,0xFF,0xFF,0x80,0xFF,0xFF,0x80,0xFF,0xFF,0x80,0xFF,0xFF,0x80,0xFF,0xFF,0x80,0xFF,0xFF,0x80,0xFF,0xFF,0xBF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFE,0xFF,0xFF,0x4F,0xFF,0xFF,0x60,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, +0xFF,0xFF,0xDF,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,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,0x01,0xFF,0xFF,0x90,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFE,0xFF,0xFF,0x60,0xFF,0xFF,0x60,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xDF,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x00,0xFF,0xFF,0x21,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFE,0xFF,0xFF,0x60,0xFF,0xFF,0x60,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xEF,0xFF,0xFF,0x11,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,0xFF,0xFF,0x00,0xFF,0xFF,0x41,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFE,0xFF,0xFF,0x40,0xFF,0xFF,0x60,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x9F,0xFF,0xFF,0x21,0xFF,0xFF,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,0xFF,0xFF,0x00,0xFF,0xFF,0x21,0xFF,0xFF,0xDF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, +0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFE,0xFF,0xFF,0x40,0xFF,0xFF,0x30,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFE,0xFF,0xFF,0x20, +0xFF,0xFF,0x10,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFE,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0xDF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, +0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xBE,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0xA0,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, +0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x8F,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x70,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, +0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFE,0xFF,0xFF,0x4F,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x10,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, +0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xEE,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0xBF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, +0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x9E,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x50,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, +0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFE,0xFF,0xFF,0x40,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0xEF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xDE,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x80,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFE,0xFF,0xFF,0x5F,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0xDE,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, +0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,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,0xFF,0xFF,0x40,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, +0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFE,0xFF,0xFF,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,0xFF,0xFF,0x8F,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, +0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,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,0x00,0x00,0xFF,0xFF,0x10,0xFF,0xFF,0xDE,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, +0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,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,0xFF,0xFF,0x20,0xFF,0xFF,0xEE,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, +0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xDE,0xFF,0xFF,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,0xFF,0xFF,0x40,0xFF,0xFF,0xFE,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xEE, +0xFF,0xFF,0x30,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,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,0x60,0xFF,0xFF,0xFE,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xEE,0xFF,0xFF,0x30,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,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,0x40,0xFF,0xFF,0xEE,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xDE,0xFF,0xFF,0x30,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,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,0x20,0xFF,0xFF,0xDE,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xCE,0xFF,0xFF,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,0xFF,0xFF,0x10,0xFF,0xFF,0x9F,0xFF,0xFF,0xFE,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, +0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x8F,0xFF,0xFF,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,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,0x60,0xFF,0xFF,0xDE,0xFF,0xFF,0xFE,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, +0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xBF,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,0x00,0x00,0x00,0x00,0x00,0x00,0x00,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,0x60,0xFF,0xFF,0xDE,0xFF,0xFF,0xFE,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, +0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xDE,0xFF,0xFF,0x5F,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,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,0x60,0xFF,0xFF,0xBE,0xFF,0xFF,0xFE,0xFF,0xFF,0xFE,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xEF,0xFF,0xFF,0xBF,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,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,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,0x20,0xFF,0xFF,0x60,0xFF,0xFF,0x9F,0xFF,0xFF,0xCE,0xFF,0xFF,0xFE,0xFF,0xFF,0xFE,0xFF,0xFF,0xFE,0xFF,0xFF,0xFE,0xFF,0xFF,0xFE,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xDF,0xFF,0xFF,0x9F,0xFF,0xFF,0x60,0xFF,0xFF,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,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,0x10,0xFF,0xFF,0x30,0xFF,0xFF,0x40,0xFF,0xFF,0x60,0xFF,0xFF,0x60,0xFF,0xFF,0x60,0xFF,0xFF,0x60,0xFF,0xFF,0x50,0xFF,0xFF,0x20,0xFF,0xFF,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,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 ui_img_time_png = { + .header.always_zero = 0, + .header.w = 56, + .header.h = 56, + .data_size = sizeof(ui_img_time_png_data), + .header.cf = LV_IMG_CF_TRUE_COLOR_ALPHA, + .data = ui_img_time_png_data}; + diff --git a/examples/indicator_matter/main/ui/ui_img_tvoc_png.c b/examples/indicator_matter/main/ui/ui_img_tvoc_png.c new file mode 100644 index 0000000..2592653 --- /dev/null +++ b/examples/indicator_matter/main/ui/ui_img_tvoc_png.c @@ -0,0 +1,36 @@ +// SquareLine LVGL GENERATED FILE +// EDITOR VERSION: SquareLine Studio 1.1.1 +// LVGL VERSION: 8.3.3 +// PROJECT: sensecap + +#include "ui.h" + +#ifndef LV_ATTRIBUTE_MEM_ALIGN +#define LV_ATTRIBUTE_MEM_ALIGN +#endif + +// IMAGE DATA: assets/tvoc.png +const LV_ATTRIBUTE_MEM_ALIGN uint8_t ui_img_tvoc_png_data[] = { +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,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,0x30,0xFF,0xFF,0x60,0xFF,0xFF,0x80,0xFF,0xFF,0x9F,0xFF,0xFF,0x90,0xFF,0xFF,0x80,0xFF,0xFF,0x50,0xFF,0xFF,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,0xFF,0xFF,0x20,0xFF,0xFF,0x90,0xFF,0xFF,0xEF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xCE,0xFF,0xFF,0x5F,0xFF,0xFF,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,0xFF,0xFF,0x10,0xFF,0xFF,0xA0,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xDF,0xFF,0xFF,0x7F,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,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,0x40,0xFF,0xFF,0xEF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xDE,0xFF,0xFF,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,0xFF,0xFF,0x5F,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, +0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xDE,0xFF,0xFF,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x5F,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xDE,0xFF,0xFF,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x20,0xFF,0xFF,0xEF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, +0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xCE,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0xDF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xF5,0xF5,0xFF,0xCF,0xEC,0xFF,0x7C,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x72,0xED,0xFF,0x72,0xED,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x7C,0xFF,0xFF,0xCF,0xEC,0xFF,0x98,0xF6,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x80,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x60,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xCF,0xEC,0xFF,0x67,0xE3,0xFF,0x8D,0xEC,0xFF,0xFF,0xFF,0xFF,0xBE,0xFF,0xFF,0xA9,0xE3,0xFF,0x67,0xE3,0xFF, +0x56,0xF6,0xFF,0xFF,0xFF,0xFF,0xF5,0xF5,0xFF,0x67,0xE3,0xFF,0xA9,0xE3,0xFF,0xBE,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xEE,0xFF,0xFF,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0xDF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xD9,0xF6,0xFF,0x67,0xE3,0xFF,0x67,0xE3,0xFF,0x7C,0xFF,0xFF,0xFF,0xFF,0xFF,0x72,0xED,0xFF,0x67,0xE3,0xFF,0x8D,0xEC,0xFF,0xFF,0xFF,0xFF,0xBE,0xFF,0xFF,0xA9,0xE3,0xFF,0x67,0xE3,0xFF,0xF5,0xF5,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x80,0x00,0x00,0x00,0xFF,0xFF,0x40,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xEA,0xE3,0xFF,0x67,0xE3,0xFF,0x56,0xF6,0xFF,0xFF,0xFF,0xFF,0x98,0xF6,0xFF,0x67,0xE3,0xFF,0x67,0xE3,0xFF,0xBE,0xFF,0xFF,0xFF,0xFF,0xFF,0x30,0xED,0xFF, +0x67,0xE3,0xFF,0x30,0xED,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xEE,0x00,0x00,0x00,0xFF,0xFF,0x80,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x4C,0xE4,0xFF,0x67,0xE3,0xFF,0xF5,0xF5,0xFF,0xFF,0xFF,0xFF,0xD9,0xF6,0xFF,0x67,0xE3,0xFF,0x67,0xE3,0xFF,0xBE,0xFF,0xFF,0xFF,0xFF,0xFF,0x72,0xED,0xFF,0x67,0xE3,0xFF,0x8D,0xEC,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFE,0xFF,0xFF,0x40,0xFF,0xFF,0xBF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xBE,0xFF,0xFF,0x67,0xE3,0xFF,0x67,0xE3,0xFF,0xD9,0xF6,0xFF,0xFF,0xFF,0xFF,0x56,0xF6,0xFF,0x67,0xE3,0xFF,0x0A,0xE4,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x8D,0xEC,0xFF,0x67,0xE3,0xFF,0x72,0xED,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, +0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFE,0xFF,0xFF,0x70,0xFF,0xFF,0xDF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x56,0xF6,0xFF,0x67,0xE3,0xFF,0xEA,0xE3,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x8D,0xEC,0xFF,0x67,0xE3,0xFF,0x30,0xED,0xFF,0xFF,0xFF,0xFF,0x7C,0xFF,0xFF,0x67,0xE3,0xFF,0x67,0xE3,0xFF,0xD9,0xF6,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x9E,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xEA,0xE3,0xFF,0x67,0xE3,0xFF,0x30,0xED,0xFF,0xFF,0xFF,0xFF,0xD9,0xF6,0xFF,0x67,0xE3,0xFF,0x67,0xE3,0xFF,0x7C,0xFF,0xFF,0xFF,0xFF,0xFF,0x10,0xED,0xFF,0x67,0xE3,0xFF,0x0A,0xE4,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, +0xFF,0xFF,0xFF,0xFF,0xFF,0xAF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xD9,0xF6,0xFF,0x67,0xE3,0xFF,0x67,0xE3,0xFF,0x7C,0xFF,0xFF,0xFF,0xFF,0xFF,0x10,0xED,0xFF,0x67,0xE3,0xFF,0x8D,0xEC,0xFF,0xFF,0xFF,0xFF,0x7C,0xFF,0xFF,0x67,0xE3,0xFF,0x67,0xE3,0xFF,0x56,0xF6,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xBE,0xFF,0xFF,0xEF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x10,0xED,0xFF,0x67,0xE3,0xFF,0xCF,0xEC,0xFF,0xFF,0xFF,0xFF,0xBE,0xFF,0xFF,0x67,0xE3,0xFF,0x67,0xE3,0xFF,0x56,0xF6,0xFF,0xFF,0xFF,0xFF,0x56,0xF6,0xFF,0x67,0xE3,0xFF,0x0A,0xE4,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xAF,0xFF,0xFF,0xDF,0xFF,0xFF,0xFF, +0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xEA,0xE3,0xFF,0x67,0xE3,0xFF,0xF5,0xF5,0xFF,0xFF,0xFF,0xFF,0xD9,0xF6,0xFF,0x67,0xE3,0xFF,0x67,0xE3,0xFF,0xBE,0xFF,0xFF,0xFF,0xFF,0xFF,0xCF,0xEC,0xFF,0x67,0xE3,0xFF,0xCF,0xEC,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x8F,0xFF,0xFF,0xA0,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x67,0xE3,0xFF,0x67,0xE3,0xFF,0xD9,0xF6,0xFF,0xFF,0xFF,0xFF,0x56,0xF6,0xFF,0x67,0xE3,0xFF,0xEA,0xE3,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x8D,0xEC,0xFF,0x67,0xE3,0xFF,0xB3,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,0xFE,0xFF,0xFF,0x4F,0xFF,0xFF,0x70,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, +0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xA9,0xE3,0xFF,0x67,0xE3,0xFF,0x98,0xF6,0xFF,0xFF,0xFF,0xFF,0x56,0xF6,0xFF,0x67,0xE3,0xFF,0xA9,0xE3,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xCF,0xEC,0xFF,0x67,0xE3,0xFF,0x72,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,0xFE,0xFF,0xFF,0x20,0xFF,0xFF,0x10,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x8D,0xEC,0xFF,0x67,0xE3,0xFF,0x72,0xED,0xFF,0xFF,0xFF,0xFF,0x7C,0xFF,0xFF,0x67,0xE3,0xFF,0x67,0xE3,0xFF,0xD9,0xF6,0xFF,0xFF,0xFF,0xFF,0xB3,0xED,0xFF,0x67,0xE3,0xFF,0x4C,0xE4,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xBE,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0xA0,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xF5,0xF5,0xFF,0x67,0xE3,0xFF, +0xA9,0xE3,0xFF,0x7C,0xFF,0xFF,0xFF,0xFF,0xFF,0x8D,0xEC,0xFF,0x67,0xE3,0xFF,0xCF,0xEC,0xFF,0xFF,0xFF,0xFF,0x1B,0xFF,0xFF,0x67,0xE3,0xFF,0x67,0xE3,0xFF,0xD9,0xF6,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFE,0xFF,0xFF,0x5E,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x20,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xBE,0xFF,0xFF,0xEA,0xE3,0xFF,0x67,0xE3,0xFF,0x56,0xF6,0xFF,0xFF,0xFF,0xFF,0xD9,0xF6,0xFF,0x67,0xE3,0xFF,0x67,0xE3,0xFF,0xBE,0xFF,0xFF,0xFF,0xFF,0xFF,0x72,0xED,0xFF,0x67,0xE3,0xFF,0xCF,0xEC,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xDE,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x80,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x7C,0xFF,0xFF,0x1B,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, +0x7C,0xFF,0xFF,0x1B,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xD9,0xF6,0xFF,0xBE,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFE,0xFF,0xFF,0x3F,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0xCF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFE,0xFF,0xFF,0x7F,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x20,0xFF,0xFF,0xDF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, +0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFE,0xFF,0xFF,0x8F,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,0x20,0xFF,0xFF,0xDF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFE,0xFF,0xFF,0x8F,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,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,0x90,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFE, +0xFF,0xFF,0xEE,0xFF,0xFF,0x6F,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,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,0x20,0xFF,0xFF,0xBF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFE,0xFF,0xFF,0xEE,0xFF,0xFF,0x7F,0xFF,0xFF,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,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,0x20,0xFF,0xFF,0x6F,0xFF,0xFF,0xBF,0xFF,0xFF,0xEF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xEE,0xFF,0xFF,0xAE,0xFF,0xFF,0x6E,0xFF,0xFF,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,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,0x10,0xFF,0xFF,0x20,0xFF,0xFF,0x20,0xFF,0xFF,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,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 ui_img_tvoc_png = { + .header.always_zero = 0, + .header.w = 30, + .header.h = 31, + .data_size = sizeof(ui_img_tvoc_png_data), + .header.cf = LV_IMG_CF_TRUE_COLOR_ALPHA, + .data = ui_img_tvoc_png_data}; + diff --git a/examples/indicator_matter/main/ui/ui_img_wifi_1_png.c b/examples/indicator_matter/main/ui/ui_img_wifi_1_png.c new file mode 100644 index 0000000..fb35c6e --- /dev/null +++ b/examples/indicator_matter/main/ui/ui_img_wifi_1_png.c @@ -0,0 +1,29 @@ +// SquareLine LVGL GENERATED FILE +// EDITOR VERSION: SquareLine Studio 1.1.1 +// LVGL VERSION: 8.3.3 +// PROJECT: sensecap + +#include "ui.h" + +#ifndef LV_ATTRIBUTE_MEM_ALIGN +#define LV_ATTRIBUTE_MEM_ALIGN +#endif + +// IMAGE DATA: assets/wifi_1.png +const LV_ATTRIBUTE_MEM_ALIGN uint8_t ui_img_wifi_1_png_data[] = { +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x49,0x4A,0x40,0x28,0x42,0x7F,0x28,0x42,0xAF,0x28,0x42,0xDF,0x28,0x42,0xFF,0x28,0x42,0xFF,0x28,0x42,0xFF,0x28,0x42,0xDF,0x28,0x42,0xBF,0x28,0x42,0x90,0x49,0x4A,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,0x08,0x42,0x10,0x28,0x42,0x7F,0x28,0x42,0xEF,0x28,0x42,0xFF,0x28,0x42,0xFF,0x28,0x42,0xFF,0x28,0x42,0xFF,0x28,0x42,0xFF,0x28,0x42,0xFF,0x28,0x42,0xFF,0x28,0x42,0xFF,0x28,0x42,0xFF,0x28,0x42,0xFF,0x28,0x42,0xFF,0x28,0x42,0xDF,0x28,0x42,0x8F,0x49,0x4A,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,0x28,0x42,0x60,0x28,0x42,0xEF,0x28,0x42,0xFF,0x28,0x42,0xFF,0x28,0x42,0xFF,0x28,0x42,0xFF,0x28,0x42,0xFF,0x28,0x42,0xFF,0x28,0x42,0xFF, +0x28,0x42,0xFF,0x28,0x42,0xFF,0x28,0x42,0xFF,0x28,0x42,0xFF,0x28,0x42,0xFF,0x28,0x42,0xFF,0x28,0x42,0xFF,0x28,0x42,0xFF,0x28,0x42,0xDF,0x28,0x42,0x7F,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x42,0x10,0x28,0x42,0xAF,0x28,0x42,0xFF,0x28,0x42,0xFF,0x28,0x42,0xFF,0x28,0x42,0xFF,0x28,0x42,0xFF,0x28,0x42,0xFF,0x28,0x42,0xBF,0x28,0x42,0x90,0x28,0x42,0x80,0x28,0x42,0x60,0x28,0x42,0x80,0x28,0x42,0x90,0x28,0x42,0xBF,0x28,0x42,0xFF,0x28,0x42,0xFF,0x28,0x42,0xFF,0x28,0x42,0xFF,0x28,0x42,0xFF,0x28,0x42,0xFF,0x28,0x42,0xDF,0x49,0x4A,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x49,0x4A,0x20,0x28,0x42,0xDF,0x28,0x42,0xFF,0x28,0x42,0xFF,0x28,0x42,0xFF,0x28,0x42,0xFF,0x28,0x42,0xBF,0x28,0x42,0x6F,0x08,0x42,0x10,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,0x42,0x60,0x28,0x42,0xBF,0x28,0x42,0xFF,0x28,0x42,0xFF,0x28,0x42,0xFF,0x28,0x42,0xFF,0x28,0x42,0xDF, +0x49,0x4A,0x20,0x00,0x00,0x00,0x28,0x42,0xBF,0x28,0x42,0xFF,0x28,0x42,0xFF,0x28,0x42,0xFF,0x28,0x42,0xEF,0x28,0x42,0x5F,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,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,0x42,0x60,0x28,0x42,0xDF,0x28,0x42,0xFF,0x28,0x42,0xFF,0x28,0x42,0xFF,0x28,0x42,0xDF,0x00,0x00,0x00,0x49,0x4A,0x20,0x28,0x42,0xDF,0x28,0x42,0xFF,0x28,0x42,0xCF,0x49,0x4A,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x49,0x4A,0x20,0x49,0x4A,0x20,0x49,0x4A,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x42,0x10,0x28,0x42,0xAF,0x28,0x42,0xFF,0x28,0x42,0xEF,0x28,0x42,0x30,0x00,0x00,0x00,0x00,0x00,0x00,0x28,0x42,0x30,0x28,0x42,0x90,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x49,0x4A,0x40,0x28,0x42,0xAF, +0x28,0x42,0xEF,0x28,0x42,0xFF,0x28,0x42,0xFF,0x28,0x42,0xFF,0x28,0x42,0xEF,0x28,0x42,0xBF,0x28,0x42,0x5F,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x28,0x42,0x80,0x28,0x42,0x50,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x49,0x4A,0x40,0x28,0x42,0xDF,0x28,0x42,0xFF,0x28,0x42,0xFF,0x28,0x42,0xFF,0x28,0x42,0xFF,0x28,0x42,0xFF,0x28,0x42,0xFF,0x28,0x42,0xFF,0x28,0x42,0xFF,0x28,0x42,0xFF,0x28,0x42,0xDF,0x28,0x42,0x5F,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,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,0x42,0x7F,0x28,0x42,0xFF,0x28,0x42,0xFF,0x28,0x42,0xFF,0x28,0x42,0xFF,0x28,0x42,0xFF,0x28,0x42,0xFF,0x28,0x42,0xFF,0x28,0x42,0xFF,0x28,0x42,0xFF,0x28,0x42,0xFF,0x28,0x42,0xFF,0x28,0x42,0xFF,0x28,0x42,0xFF,0x28,0x42,0x8F,0x00,0x00,0x00,0x00,0x00,0x00, +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,0x42,0x30,0x28,0x42,0xFF,0x28,0x42,0xFF,0x28,0x42,0xFF,0x28,0x42,0xFF,0x28,0x42,0xEF,0x28,0x42,0x90,0x28,0x42,0x60,0x28,0x42,0x40,0x08,0x42,0x50,0x28,0x42,0x90,0x28,0x42,0xDF,0x28,0x42,0xFF,0x28,0x42,0xFF,0x28,0x42,0xFF,0x28,0x42,0xFF,0x28,0x42,0x4F,0x00,0x00,0x00,0x00,0x00,0x00,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,0x42,0x60,0x28,0x42,0xFF,0x28,0x42,0xEF,0x28,0x42,0x80,0x08,0x42,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x28,0x42,0x60,0x28,0x42,0xDF,0x28,0x42,0xFF,0x28,0x42,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,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x28,0x42,0x80,0x28,0x42,0x30, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x49,0x4A,0x20,0x28,0x42,0x70,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,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,0x20,0xFF,0xFF,0x40,0xFF,0xFF,0x30,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,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,0x20,0xFF,0xFF,0xBF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xDF,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,0x00,0x00,0x00,0x00,0xFF,0xFF,0x70,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,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,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0xA0,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xCF,0xFF,0xFF,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,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,0xA0,0xFF,0xFF,0xFF,0xFF,0xFF,0xCF,0xFF,0xFF,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,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,0xAF,0xFF,0xFF,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,}; +const lv_img_dsc_t ui_img_wifi_1_png = { + .header.always_zero = 0, + .header.w = 26, + .header.h = 19, + .data_size = sizeof(ui_img_wifi_1_png_data), + .header.cf = LV_IMG_CF_TRUE_COLOR_ALPHA, + .data = ui_img_wifi_1_png_data}; + diff --git a/examples/indicator_matter/main/ui/ui_img_wifi_2_png.c b/examples/indicator_matter/main/ui/ui_img_wifi_2_png.c new file mode 100644 index 0000000..3d57f79 --- /dev/null +++ b/examples/indicator_matter/main/ui/ui_img_wifi_2_png.c @@ -0,0 +1,29 @@ +// SquareLine LVGL GENERATED FILE +// EDITOR VERSION: SquareLine Studio 1.1.1 +// LVGL VERSION: 8.3.3 +// PROJECT: sensecap + +#include "ui.h" + +#ifndef LV_ATTRIBUTE_MEM_ALIGN +#define LV_ATTRIBUTE_MEM_ALIGN +#endif + +// IMAGE DATA: assets/wifi_2.png +const LV_ATTRIBUTE_MEM_ALIGN uint8_t ui_img_wifi_2_png_data[] = { +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x49,0x4A,0x40,0x28,0x42,0x7F,0x28,0x42,0xAF,0x28,0x42,0xDF,0x28,0x42,0xFF,0x28,0x42,0xFF,0x28,0x42,0xFF,0x28,0x42,0xDF,0x28,0x42,0xBF,0x28,0x42,0x90,0x49,0x4A,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,0x08,0x42,0x10,0x28,0x42,0x7F,0x28,0x42,0xEF,0x28,0x42,0xFF,0x28,0x42,0xFF,0x28,0x42,0xFF,0x28,0x42,0xFF,0x28,0x42,0xFF,0x28,0x42,0xFF,0x28,0x42,0xFF,0x28,0x42,0xFF,0x28,0x42,0xFF,0x28,0x42,0xFF,0x28,0x42,0xFF,0x28,0x42,0xDF,0x28,0x42,0x8F,0x49,0x4A,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,0x28,0x42,0x60,0x28,0x42,0xEF,0x28,0x42,0xFF,0x28,0x42,0xFF,0x28,0x42,0xFF,0x28,0x42,0xFF,0x28,0x42,0xFF,0x28,0x42,0xFF,0x28,0x42,0xFF, +0x28,0x42,0xFF,0x28,0x42,0xFF,0x28,0x42,0xFF,0x28,0x42,0xFF,0x28,0x42,0xFF,0x28,0x42,0xFF,0x28,0x42,0xFF,0x28,0x42,0xFF,0x28,0x42,0xDF,0x28,0x42,0x7F,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x42,0x10,0x28,0x42,0xAF,0x28,0x42,0xFF,0x28,0x42,0xFF,0x28,0x42,0xFF,0x28,0x42,0xFF,0x28,0x42,0xFF,0x28,0x42,0xFF,0x28,0x42,0xBF,0x28,0x42,0x90,0x28,0x42,0x80,0x28,0x42,0x60,0x28,0x42,0x80,0x28,0x42,0x90,0x28,0x42,0xBF,0x28,0x42,0xFF,0x28,0x42,0xFF,0x28,0x42,0xFF,0x28,0x42,0xFF,0x28,0x42,0xFF,0x28,0x42,0xFF,0x28,0x42,0xDF,0x49,0x4A,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x49,0x4A,0x20,0x28,0x42,0xDF,0x28,0x42,0xFF,0x28,0x42,0xFF,0x28,0x42,0xFF,0x28,0x42,0xFF,0x28,0x42,0xBF,0x28,0x42,0x6F,0x08,0x42,0x10,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,0x42,0x60,0x28,0x42,0xBF,0x28,0x42,0xFF,0x28,0x42,0xFF,0x28,0x42,0xFF,0x28,0x42,0xFF,0x28,0x42,0xDF, +0x49,0x4A,0x20,0x00,0x00,0x00,0x28,0x42,0xBF,0x28,0x42,0xFF,0x28,0x42,0xFF,0x28,0x42,0xFF,0x28,0x42,0xEF,0x28,0x42,0x5F,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,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,0x42,0x60,0x28,0x42,0xDF,0x28,0x42,0xFF,0x28,0x42,0xFF,0x28,0x42,0xFF,0x28,0x42,0xDF,0x00,0x00,0x00,0x49,0x4A,0x20,0x28,0x42,0xDF,0x28,0x42,0xFF,0x28,0x42,0xCF,0x49,0x4A,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x20,0xFF,0xFF,0x20,0xFF,0xFF,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x42,0x10,0x28,0x42,0xAF,0x28,0x42,0xFF,0x28,0x42,0xEF,0x28,0x42,0x30,0x00,0x00,0x00,0x00,0x00,0x00,0x28,0x42,0x30,0x28,0x42,0x90,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x40,0xFF,0xFF,0xAF, +0xFF,0xFF,0xEF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xEF,0xFF,0xFF,0xBF,0xFF,0xFF,0x5F,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x28,0x42,0x80,0x28,0x42,0x50,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,0x40,0xFF,0xFF,0xDF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xDF,0xFF,0xFF,0x5F,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,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,0x7F,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x8F,0x00,0x00,0x00,0x00,0x00,0x00, +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,0x30,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xEF,0xFF,0xFF,0x90,0xFF,0xFF,0x60,0xFF,0xFF,0x40,0xFF,0xFF,0x50,0xFF,0xFF,0x90,0xFF,0xFF,0xDF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x4F,0x00,0x00,0x00,0x00,0x00,0x00,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,0x60,0xFF,0xFF,0xFF,0xFF,0xFF,0xEF,0xFF,0xFF,0x80,0xFF,0xFF,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x60,0xFF,0xFF,0xDF,0xFF,0xFF,0xFF,0xFF,0xFF,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,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x80,0xFF,0xFF,0x30, +0x00,0x00,0x00,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,0x20,0xFF,0xFF,0x70,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,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,0x20,0xFF,0xFF,0x40,0xFF,0xFF,0x30,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,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,0x20,0xFF,0xFF,0xBF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xDF,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,0x00,0x00,0x00,0x00,0xFF,0xFF,0x70,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,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,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0xA0,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xCF,0xFF,0xFF,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,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,0xA0,0xFF,0xFF,0xFF,0xFF,0xFF,0xCF,0xFF,0xFF,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,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,0xAF,0xFF,0xFF,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,}; +const lv_img_dsc_t ui_img_wifi_2_png = { + .header.always_zero = 0, + .header.w = 26, + .header.h = 19, + .data_size = sizeof(ui_img_wifi_2_png_data), + .header.cf = LV_IMG_CF_TRUE_COLOR_ALPHA, + .data = ui_img_wifi_2_png_data}; + diff --git a/examples/indicator_matter/main/ui/ui_img_wifi_3_png.c b/examples/indicator_matter/main/ui/ui_img_wifi_3_png.c new file mode 100644 index 0000000..6278011 --- /dev/null +++ b/examples/indicator_matter/main/ui/ui_img_wifi_3_png.c @@ -0,0 +1,30 @@ +// SquareLine LVGL GENERATED FILE +// EDITOR VERSION: SquareLine Studio 1.1.1 +// LVGL VERSION: 8.3.3 +// PROJECT: sensecap + +#include "ui.h" + +#ifndef LV_ATTRIBUTE_MEM_ALIGN +#define LV_ATTRIBUTE_MEM_ALIGN +#endif + +// IMAGE DATA: assets/wifi_3.png +const LV_ATTRIBUTE_MEM_ALIGN uint8_t ui_img_wifi_3_png_data[] = { +0x00,0x00,0x00,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,0x30,0xFF,0xFF,0x60,0xFF,0xFF,0x80,0xFF,0xFF,0x90,0xFF,0xFF,0x90,0xFF,0xFF,0x80,0xFF,0xFF,0x50,0xFF,0xFF,0x30,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,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,0x40,0xFF,0xFF,0x90,0xFF,0xFF,0xEF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xDF,0xFF,0xFF,0x9F,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,0xFF,0xFF,0x40,0xFF,0xFF,0xBF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, +0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xBF,0xFF,0xFF,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x10,0xFF,0xFF,0x8F,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x8F,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x20,0xFF,0xFF,0xCF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xBF,0xFF,0xFF,0x6F,0xFF,0xFF,0x30,0xFF,0xFF,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x10,0xFF,0xFF,0x30,0xFF,0xFF,0x60,0xFF,0xFF,0xBF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xDF, +0xFF,0xFF,0x20,0x00,0x00,0x00,0xFF,0xFF,0x20,0xFF,0xFF,0xDF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x9F,0xFF,0xFF,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,0xFF,0xFF,0x20,0xFF,0xFF,0xA0,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xDF,0xFF,0xFF,0x20,0xFF,0xFF,0x30,0xFF,0xFF,0xEF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xDF,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,0xFF,0xFF,0x40,0xFF,0xFF,0xDF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x30,0x00,0x00,0x00,0xFF,0xFF,0x60,0xFF,0xFF,0xFF,0xFF,0xFF,0xCF,0xFF,0xFF,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0xFF,0xFF,0x30,0xFF,0xFF,0x60,0xFF,0xFF,0x80,0xFF,0xFF,0x80,0xFF,0xFF,0x60,0xFF,0xFF,0x30,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x20,0xFF,0xFF,0xCF,0xFF,0xFF,0xFF,0xFF,0xFF,0x60,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x60,0xFF,0xFF,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x10,0xFF,0xFF,0x7F,0xFF,0xFF,0xEF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xDF,0xFF,0xFF,0x6F,0xFF,0xFF,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x10,0xFF,0xFF,0x50,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,0x40,0xFF,0xFF,0xDF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xDF,0xFF,0xFF,0x50,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,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,0x6F,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x7F,0x00,0x00,0x00,0x00,0x00,0x00,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,0xA0,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xDF,0xFF,0xFF,0x80,0xFF,0xFF,0x30,0xFF,0xFF,0x10,0x00,0x00,0x00,0xFF,0xFF,0x30,0xFF,0xFF,0x6F,0xFF,0xFF,0xDF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,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,0xFF,0xFF,0xAF,0xFF,0xFF,0xFF, +0xFF,0xFF,0x90,0xFF,0xFF,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x80,0xFF,0xFF,0xFF,0xFF,0xFF,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,0xFF,0xFF,0x10,0xFF,0xFF,0x5F,0x00,0x00,0x00,0x00,0x00,0x00,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,0x70,0xFF,0xFF,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,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,0x40,0xFF,0xFF,0x60,0xFF,0xFF,0x6F,0xFF,0xFF,0x30,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,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,0x10,0xFF,0xFF,0xAF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x9F,0xFF,0xFF,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,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,0x20,0xFF,0xFF,0xDF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xDF,0xFF,0xFF,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,0xFF,0xFF,0x30,0xFF,0xFF,0xEF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xEF,0xFF,0xFF,0x30,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,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,0x40,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x30,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,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,0x60,0xFF,0xFF,0x60,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +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 ui_img_wifi_3_png = { + .header.always_zero = 0, + .header.w = 26, + .header.h = 20, + .data_size = sizeof(ui_img_wifi_3_png_data), + .header.cf = LV_IMG_CF_TRUE_COLOR_ALPHA, + .data = ui_img_wifi_3_png_data}; + diff --git a/examples/indicator_matter/main/ui/ui_img_wifi_disconet_png.c b/examples/indicator_matter/main/ui/ui_img_wifi_disconet_png.c new file mode 100644 index 0000000..a284283 --- /dev/null +++ b/examples/indicator_matter/main/ui/ui_img_wifi_disconet_png.c @@ -0,0 +1,31 @@ +// SquareLine LVGL GENERATED FILE +// EDITOR VERSION: SquareLine Studio 1.1.1 +// LVGL VERSION: 8.3.3 +// PROJECT: sensecap + +#include "ui.h" + +#ifndef LV_ATTRIBUTE_MEM_ALIGN +#define LV_ATTRIBUTE_MEM_ALIGN +#endif + +// IMAGE DATA: assets/wifi_disconet.png +const LV_ATTRIBUTE_MEM_ALIGN uint8_t ui_img_wifi_disconet_png_data[] = { +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,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,0xE2,0x9F,0x08,0xE2,0x5F,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,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,0xE2,0x9F,0x08,0xE2,0xFF,0x08,0xE2,0xFF,0x08,0xE2,0x5F,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +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,0xE2,0x9F,0x08,0xE2,0xFF,0x08,0xE2,0xFF,0x08,0xE2,0xFF,0x08,0xE2,0xEF,0x08,0xDA,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x10,0xFF,0xFF,0x60,0xFF,0xFF,0x90,0xFF,0xFF,0xAF,0xFF,0xFF,0xDF,0xFF,0xFF,0xDF,0xFF,0xFF,0xCF,0xFF,0xFF,0xBF,0xFF,0xFF,0x90,0xFF,0xFF,0x5F,0xFF,0xFF,0x20,0x00,0x00,0x00,0x08,0xE2,0x9F,0x08,0xE2,0xFF,0x08,0xE2,0xFF,0x08,0xE2,0xFF,0x08,0xE2,0xEF,0x08,0xDA,0x30,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x40,0xFF,0xFF,0xBF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x6D,0xEB,0xCF,0x08,0xE2,0xFF,0x08,0xE2,0xFF,0x08,0xE2,0xFF,0x08,0xE2,0xEF,0x08,0xDA,0x30, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x40,0xFF,0xFF,0xBF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x51,0xEC,0xFF,0x08,0xE2,0xFF,0x08,0xE2,0xFF,0x08,0xE2,0xFF,0x69,0xE2,0xFF,0x08,0xDA,0x30,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x8F,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xEF,0xFF,0xFF,0xAF,0xFF,0xFF,0x9F,0xFF,0xFF,0x9F,0xFF,0xFF,0x9F,0xFF,0xFF,0xBF,0xFF,0xFF,0xDF,0x51,0xEC,0xFF,0x08,0xE2,0xFF,0x08,0xE2,0xFF,0x08,0xE2,0xFF,0x69,0xE2,0xFF,0xDB,0xFE,0xFF,0xFF,0xFF,0x9F,0xFF,0xFF,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x10,0xFF,0xFF,0xBF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xEF,0xFF,0xFF,0x80,0xFF,0xFF,0x40,0x00,0x00,0x00, +0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0xE2,0x9F,0x08,0xE2,0xFF,0x08,0xE2,0xFF,0x08,0xE2,0xFF,0x69,0xE2,0xFF,0xDB,0xFE,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xDF,0xFF,0xFF,0x20,0x00,0x00,0x00,0xFF,0xFF,0xBF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x80,0xFF,0xFF,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0xE2,0x9F,0x08,0xE2,0xFF,0x08,0xE2,0xFF,0x08,0xE2,0xFF,0x08,0xE2,0xEF,0xD7,0xF5,0x7F,0xFF,0xFF,0xDF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xDF,0x00,0x00,0x00,0xFF,0xFF,0x30,0xFF,0xFF,0xEF,0xFF,0xFF,0xFF,0xFF,0xFF,0xDF,0xFF,0xFF,0x30,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,0xE2,0x9F,0x08,0xE2,0xFF,0x08,0xE2,0xFF,0x08,0xE2,0xFF,0x08,0xE2,0xEF,0x08,0xDA,0x30,0x00,0x00,0x00,0xFF,0xFF,0x20,0xFF,0xFF,0xDF, +0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x60,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x60,0xFF,0xFF,0xCF,0xFF,0xFF,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x40,0xFF,0xFF,0x90,0xFF,0xFF,0xCF,0xFF,0xFF,0xEF,0x51,0xEC,0xFF,0x08,0xE2,0xFF,0x08,0xE2,0xFF,0x08,0xE2,0xFF,0x69,0xE2,0xFF,0x08,0xDA,0x30,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x10,0xFF,0xFF,0xA0,0xFF,0xFF,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,0xFF,0xFF,0x20,0xFF,0xFF,0xBF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x51,0xEC,0xFF,0x08,0xE2,0xFF,0x08,0xE2,0xFF,0x08,0xE2,0xFF,0x69,0xE2,0xFF,0xDB,0xFE,0xFF,0xFF,0xFF,0xDF,0xFF,0xFF,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,0xFF,0xFF,0x6F,0xFF,0xFF,0xEF,0xFF,0xFF,0xFF, +0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x51,0xEC,0xFF,0x08,0xE2,0xFF,0x08,0xE2,0xFF,0x08,0xE2,0xFF,0x69,0xE2,0xFF,0xDB,0xFE,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x7F,0x00,0x00,0x00,0x00,0x00,0x00,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,0x40,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x51,0xEC,0xFF,0x08,0xE2,0xFF,0x08,0xE2,0xFF,0x08,0xE2,0xFF,0x08,0xE2,0xEF,0x79,0xFE,0xAF,0xFF,0xFF,0xEF,0xFF,0xFF,0xFF,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,0xFF,0xFF,0x80,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x51,0xEC,0xFF,0x08,0xE2,0xFF,0x08,0xE2,0xFF,0x08,0xE2,0xFF,0x08,0xE2,0xEF,0x08,0xDA,0x30,0x00,0x00,0x00,0xFF,0xFF,0x20,0xFF,0xFF,0x80,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,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,0xFF,0xFF,0x80,0x51,0xEC,0xFF,0x08,0xE2,0xFF,0x08,0xE2,0xFF,0x08,0xE2,0xFF,0x08,0xE2,0xEF,0x08,0xDA,0x30,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x30,0xFF,0xFF,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,0x08,0xE2,0x9F,0x08,0xE2,0xFF,0x08,0xE2,0xFF,0x08,0xE2,0xFF,0x08,0xE2,0xEF,0x8E,0xE3,0x40,0xFF,0xFF,0x20,0xFF,0xFF,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,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,0xE2,0x9F, +0x08,0xE2,0xFF,0x08,0xE2,0xFF,0x08,0xE2,0xFF,0x69,0xE2,0xFF,0xBA,0xFE,0xCF,0xFF,0xFF,0xEF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xBF,0xFF,0xFF,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,0x08,0xE2,0x9F,0x08,0xE2,0xFF,0x08,0xE2,0xFF,0x08,0xE2,0xFF,0x08,0xE2,0xEF,0x79,0xFE,0xAF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xCF,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,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,0xE2,0x9F,0x08,0xE2,0xFF,0x08,0xE2,0xFF,0x08,0xE2,0xFF,0x08,0xE2,0xEF,0x08,0xDA,0x30,0xFF,0xFF,0x10,0xFF,0xFF,0xCF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xDF,0xFF,0xFF,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,0x28,0xE2,0x7F,0x08,0xE2,0xFF,0x08,0xE2,0xFF,0x08,0xE2,0xFF,0x08,0xE2,0xEF,0x08,0xDA,0x30,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x10,0xFF,0xFF,0xCF,0xFF,0xFF,0xFF,0xFF,0xFF,0xDF,0xFF,0xFF,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,0x08,0xDA,0x10,0x08,0xE2,0xCF,0x08,0xE2,0xFF,0x08,0xE2,0xEF,0x08,0xDA,0x30,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x10,0xFF,0xFF,0xBF,0xFF,0xFF,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,0x08,0xDA,0x10, +0x08,0xE2,0xBF,0x08,0xDA,0x30,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,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 ui_img_wifi_disconet_png = { + .header.always_zero = 0, + .header.w = 26, + .header.h = 23, + .data_size = sizeof(ui_img_wifi_disconet_png_data), + .header.cf = LV_IMG_CF_TRUE_COLOR_ALPHA, + .data = ui_img_wifi_disconet_png_data}; + diff --git a/examples/indicator_matter/main/util/cobs.c b/examples/indicator_matter/main/util/cobs.c new file mode 100644 index 0000000..3d00b7f --- /dev/null +++ b/examples/indicator_matter/main/util/cobs.c @@ -0,0 +1,220 @@ +/* + * cobs.c + * + * Consistent Overhead Byte Stuffing + */ + +#include +#include "cobs.h" + + +/***************************************************************************** + * Defines + ****************************************************************************/ + +#ifndef FALSE +#define FALSE (0) +#endif + +#ifndef TRUE +#define TRUE (!FALSE) +#endif + + +/***************************************************************************** + * Functions + ****************************************************************************/ + +/* COBS-encode a string of input bytes. + * + * dst_buf_ptr: The buffer into which the result will be written + * dst_buf_len: Length of the buffer into which the result will be written + * src_ptr: The byte string to be encoded + * src_len Length of the byte string to be encoded + * + * returns: A struct containing the success status of the encoding + * operation and the length of the result (that was written to + * dst_buf_ptr) + */ +cobs_encode_result cobs_encode(void * dst_buf_ptr, size_t dst_buf_len, + const void * src_ptr, size_t src_len) +{ + cobs_encode_result result = { 0, COBS_ENCODE_OK }; + const uint8_t * src_read_ptr = src_ptr; + const uint8_t * src_end_ptr = src_read_ptr + src_len; + uint8_t * dst_buf_start_ptr = dst_buf_ptr; + uint8_t * dst_buf_end_ptr = dst_buf_start_ptr + dst_buf_len; + uint8_t * dst_code_write_ptr = dst_buf_ptr; + uint8_t * dst_write_ptr = dst_code_write_ptr + 1; + uint8_t src_byte = 0; + uint8_t search_len = 1; + + + /* First, do a NULL pointer check and return immediately if it fails. */ + if ((dst_buf_ptr == NULL) || (src_ptr == NULL)) + { + result.status = COBS_ENCODE_NULL_POINTER; + return result; + } + + if (src_len != 0) + { + /* Iterate over the source bytes */ + for (;;) + { + /* Check for running out of output buffer space */ + if (dst_write_ptr >= dst_buf_end_ptr) + { + result.status |= COBS_ENCODE_OUT_BUFFER_OVERFLOW; + break; + } + + src_byte = *src_read_ptr++; + if (src_byte == 0) + { + /* We found a zero byte */ + *dst_code_write_ptr = search_len; + dst_code_write_ptr = dst_write_ptr++; + search_len = 1; + if (src_read_ptr >= src_end_ptr) + { + break; + } + } + else + { + /* Copy the non-zero byte to the destination buffer */ + *dst_write_ptr++ = src_byte; + search_len++; + if (src_read_ptr >= src_end_ptr) + { + break; + } + if (search_len == 0xFF) + { + /* We have a long string of non-zero bytes, so we need + * to write out a length code of 0xFF. */ + *dst_code_write_ptr = search_len; + dst_code_write_ptr = dst_write_ptr++; + search_len = 1; + } + } + } + } + + /* We've reached the end of the source data (or possibly run out of output buffer) + * Finalise the remaining output. In particular, write the code (length) byte. + * Update the pointer to calculate the final output length. + */ + if (dst_code_write_ptr >= dst_buf_end_ptr) + { + /* We've run out of output buffer to write the code byte. */ + result.status |= COBS_ENCODE_OUT_BUFFER_OVERFLOW; + dst_write_ptr = dst_buf_end_ptr; + } + else + { + /* Write the last code (length) byte. */ + *dst_code_write_ptr = search_len; + } + + /* Calculate the output length, from the value of dst_code_write_ptr */ + result.out_len = dst_write_ptr - dst_buf_start_ptr; + + return result; +} + + +/* Decode a COBS byte string. + * + * dst_buf_ptr: The buffer into which the result will be written + * dst_buf_len: Length of the buffer into which the result will be written + * src_ptr: The byte string to be decoded + * src_len Length of the byte string to be decoded + * + * returns: A struct containing the success status of the decoding + * operation and the length of the result (that was written to + * dst_buf_ptr) + */ +cobs_decode_result cobs_decode(void * dst_buf_ptr, size_t dst_buf_len, + const void * src_ptr, size_t src_len) +{ + cobs_decode_result result = { 0, COBS_DECODE_OK }; + const uint8_t * src_read_ptr = src_ptr; + const uint8_t * src_end_ptr = src_read_ptr + src_len; + uint8_t * dst_buf_start_ptr = dst_buf_ptr; + uint8_t * dst_buf_end_ptr = dst_buf_start_ptr + dst_buf_len; + uint8_t * dst_write_ptr = dst_buf_ptr; + size_t remaining_bytes; + uint8_t src_byte; + uint8_t i; + uint8_t len_code; + + + /* First, do a NULL pointer check and return immediately if it fails. */ + if ((dst_buf_ptr == NULL) || (src_ptr == NULL)) + { + result.status = COBS_DECODE_NULL_POINTER; + return result; + } + + if (src_len != 0) + { + for (;;) + { + len_code = *src_read_ptr++; + if (len_code == 0) + { + result.status |= COBS_DECODE_ZERO_BYTE_IN_INPUT; + break; + } + len_code--; + + /* Check length code against remaining input bytes */ + remaining_bytes = src_end_ptr - src_read_ptr; + if (len_code > remaining_bytes) + { + result.status |= COBS_DECODE_INPUT_TOO_SHORT; + len_code = remaining_bytes; + } + + /* Check length code against remaining output buffer space */ + remaining_bytes = dst_buf_end_ptr - dst_write_ptr; + if (len_code > remaining_bytes) + { + result.status |= COBS_DECODE_OUT_BUFFER_OVERFLOW; + len_code = remaining_bytes; + } + + for (i = len_code; i != 0; i--) + { + src_byte = *src_read_ptr++; + if (src_byte == 0) + { + result.status |= COBS_DECODE_ZERO_BYTE_IN_INPUT; + } + *dst_write_ptr++ = src_byte; + } + + if (src_read_ptr >= src_end_ptr) + { + break; + } + + /* Add a zero to the end */ + if (len_code != 0xFE) + { + if (dst_write_ptr >= dst_buf_end_ptr) + { + result.status |= COBS_DECODE_OUT_BUFFER_OVERFLOW; + break; + } + *dst_write_ptr++ = 0; + } + } + } + + result.out_len = dst_write_ptr - dst_buf_start_ptr; + + return result; +} diff --git a/examples/indicator_matter/main/util/cobs.h b/examples/indicator_matter/main/util/cobs.h new file mode 100644 index 0000000..a53e698 --- /dev/null +++ b/examples/indicator_matter/main/util/cobs.h @@ -0,0 +1,110 @@ +/***************************************************************************** + * + * cobs.h + * + * Consistent Overhead Byte Stuffing + * + ****************************************************************************/ + +#ifndef COBS_H_ +#define COBS_H_ + + +/***************************************************************************** + * Includes + ****************************************************************************/ + +#include +#include + + +/***************************************************************************** + * Defines + ****************************************************************************/ + +#define COBS_ENCODE_DST_BUF_LEN_MAX(SRC_LEN) ((SRC_LEN) + (((SRC_LEN) + 253u)/254u)) +#define COBS_DECODE_DST_BUF_LEN_MAX(SRC_LEN) (((SRC_LEN) == 0) ? 0u : ((SRC_LEN) - 1u)) + +/* + * For in-place encoding, the source data must be offset in the buffer by + * the following amount (or more). + */ +#define COBS_ENCODE_SRC_OFFSET(SRC_LEN) (((SRC_LEN) + 253u)/254u) + + +/***************************************************************************** + * Typedefs + ****************************************************************************/ + +typedef enum +{ + COBS_ENCODE_OK = 0x00, + COBS_ENCODE_NULL_POINTER = 0x01, + COBS_ENCODE_OUT_BUFFER_OVERFLOW = 0x02 +} cobs_encode_status; + +typedef struct +{ + size_t out_len; + cobs_encode_status status; +} cobs_encode_result; + + +typedef enum +{ + COBS_DECODE_OK = 0x00, + COBS_DECODE_NULL_POINTER = 0x01, + COBS_DECODE_OUT_BUFFER_OVERFLOW = 0x02, + COBS_DECODE_ZERO_BYTE_IN_INPUT = 0x04, + COBS_DECODE_INPUT_TOO_SHORT = 0x08 +} cobs_decode_status; + +typedef struct +{ + size_t out_len; + cobs_decode_status status; +} cobs_decode_result; + + +/***************************************************************************** + * Function prototypes + ****************************************************************************/ + +#ifdef __cplusplus +extern "C" { +#endif + +/* COBS-encode a string of input bytes. + * + * dst_buf_ptr: The buffer into which the result will be written + * dst_buf_len: Length of the buffer into which the result will be written + * src_ptr: The byte string to be encoded + * src_len Length of the byte string to be encoded + * + * returns: A struct containing the success status of the encoding + * operation and the length of the result (that was written to + * dst_buf_ptr) + */ +cobs_encode_result cobs_encode(void * dst_buf_ptr, size_t dst_buf_len, + const void * src_ptr, size_t src_len); + +/* Decode a COBS byte string. + * + * dst_buf_ptr: The buffer into which the result will be written + * dst_buf_len: Length of the buffer into which the result will be written + * src_ptr: The byte string to be decoded + * src_len Length of the byte string to be decoded + * + * returns: A struct containing the success status of the decoding + * operation and the length of the result (that was written to + * dst_buf_ptr) + */ +cobs_decode_result cobs_decode(void * dst_buf_ptr, size_t dst_buf_len, + const void * src_ptr, size_t src_len); + +#ifdef __cplusplus +} /* extern "C" */ +#endif + + +#endif /* COBS_H_ */ diff --git a/examples/indicator_matter/main/util/indicator_util.c b/examples/indicator_matter/main/util/indicator_util.c new file mode 100644 index 0000000..058fb60 --- /dev/null +++ b/examples/indicator_matter/main/util/indicator_util.c @@ -0,0 +1,17 @@ +#include "indicator_util.h" + +int wifi_rssi_level_get(int rssi) +{ + // 0 rssi<=-100 + // 1 (-100, -88] + // 2 (-88, -77] + // 3 (-66, -55] + // 4 rssi>=-55 + if( rssi > -66 ) { + return 3; + } else if( rssi > -88) { + return 2; + } else { + return 1; + } +} \ No newline at end of file diff --git a/examples/indicator_matter/main/util/indicator_util.h b/examples/indicator_matter/main/util/indicator_util.h new file mode 100644 index 0000000..c6329c3 --- /dev/null +++ b/examples/indicator_matter/main/util/indicator_util.h @@ -0,0 +1,21 @@ + + + +#ifndef INDICATOR_UTIL_H +#define INDICATOR_UTIL_H + +#include "config.h" + + +#ifdef __cplusplus +extern "C" { +#endif + +int wifi_rssi_level_get(int rssi); + + +#ifdef __cplusplus +} +#endif + +#endif diff --git a/examples/indicator_matter/main/view/indicator_view.c b/examples/indicator_matter/main/view/indicator_view.c new file mode 100644 index 0000000..3b720c9 --- /dev/null +++ b/examples/indicator_matter/main/view/indicator_view.c @@ -0,0 +1,621 @@ +#include "indicator_view.h" + +#include "ui.h" +#include "ui_helpers.h" +#include "indicator_util.h" + +#include "esp_wifi.h" +#include + +static const char *TAG = "view"; + +/*****************************************************************/ +// sensor chart +/*****************************************************************/ + +typedef struct sensor_chart_display +{ + lv_color_t color; + + char name[32]; + char units[32]; + struct view_data_sensor_history_data *p_info; +} sensor_chart_display_t; + +static char date_hour[24][6] = { }; +static char date_day[7][6] = { }; +static uint16_t sensor_data_resolution = 0; +static uint16_t sensor_data_multiple = 1; + +static void event_chart_week_cb(lv_event_t * e) +{ + lv_event_code_t code = lv_event_get_code(e); + lv_obj_t * obj = lv_event_get_target(e); + if(code == LV_EVENT_PRESSED || code == LV_EVENT_RELEASED) { + lv_obj_invalidate(obj); /*To make the value boxes visible*/ + } + else if(code == LV_EVENT_DRAW_PART_BEGIN) { + lv_obj_draw_part_dsc_t * dsc = lv_event_get_param(e); + /*Set the markers' text*/ + if(dsc->part == LV_PART_TICKS && dsc->id == LV_CHART_AXIS_PRIMARY_X) { + lv_snprintf(dsc->text, dsc->text_length, "%s", (char *)&date_day[dsc->value][0]); + } else if(dsc->part == LV_PART_ITEMS) { + + const lv_chart_series_t * ser = dsc->sub_part_ptr; + + if(lv_chart_get_type(obj) == LV_CHART_TYPE_LINE) { + dsc->rect_dsc->outline_color = lv_color_white(); + dsc->rect_dsc->outline_width = 2; + } + else { + dsc->rect_dsc->shadow_color = ser->color; + dsc->rect_dsc->shadow_width = 15; + dsc->rect_dsc->shadow_spread = 0; + } + + char buf[8]; + snprintf(buf, sizeof(buf), "%.*f", sensor_data_resolution, (float)dsc->value / sensor_data_multiple); + + lv_point_t text_size; + lv_txt_get_size(&text_size, buf, &ui_font_font1, 0, 0, LV_COORD_MAX, LV_TEXT_FLAG_NONE); + + lv_area_t txt_area; + + txt_area.x1 = dsc->draw_area->x1 + lv_area_get_width(dsc->draw_area) / 2 - text_size.x / 2; + txt_area.x2 = txt_area.x1 + text_size.x; + txt_area.y2 = dsc->draw_area->y1 - LV_DPX(15); + if( ser == ui_sensor_chart_week_series_low ) { + txt_area.y2 += LV_DPX(70); + } + txt_area.y1 = txt_area.y2 - text_size.y; + + lv_draw_label_dsc_t label_dsc; + lv_draw_label_dsc_init(&label_dsc); + label_dsc.color = lv_color_white(); + label_dsc.font = &lv_font_montserrat_16; + + if(lv_chart_get_pressed_point(obj) == dsc->id) { + label_dsc.font = &lv_font_montserrat_20; + } else { + label_dsc.font = &lv_font_montserrat_16; + } + lv_draw_label(dsc->draw_ctx, &label_dsc, &txt_area, buf, NULL); + } + } +} + + +static void event_chart_day_cb(lv_event_t * e) +{ + lv_event_code_t code = lv_event_get_code(e); + lv_obj_t * obj = lv_event_get_target(e); + if(code == LV_EVENT_PRESSED || code == LV_EVENT_RELEASED) { + lv_obj_invalidate(obj); /*To make the value boxes visible*/ + } + else if(code == LV_EVENT_DRAW_PART_BEGIN) { + lv_obj_draw_part_dsc_t * dsc = lv_event_get_param(e); + /*Set the markers' text*/ + if(dsc->part == LV_PART_TICKS && dsc->id == LV_CHART_AXIS_PRIMARY_X) { + lv_snprintf(dsc->text, dsc->text_length, "%s", (char *)&date_hour[dsc->value][0]); + } else if(dsc->part == LV_PART_ITEMS) { + + /*Add a line mask that keeps the area below the line*/ + if(dsc->p1 && dsc->p2 ) { + lv_draw_mask_line_param_t line_mask_param; + lv_draw_mask_line_points_init(&line_mask_param, dsc->p1->x, dsc->p1->y, dsc->p2->x, dsc->p2->y, + LV_DRAW_MASK_LINE_SIDE_BOTTOM); + int16_t line_mask_id = lv_draw_mask_add(&line_mask_param, NULL); + + /*Add a fade effect: transparent bottom covering top*/ + lv_coord_t h = lv_obj_get_height(obj); + lv_draw_mask_fade_param_t fade_mask_param; + lv_draw_mask_fade_init(&fade_mask_param, &obj->coords, LV_OPA_COVER, obj->coords.y1 + h / 8, LV_OPA_TRANSP, + obj->coords.y2); + int16_t fade_mask_id = lv_draw_mask_add(&fade_mask_param, NULL); + + /*Draw a rectangle that will be affected by the mask*/ + lv_draw_rect_dsc_t draw_rect_dsc; + lv_draw_rect_dsc_init(&draw_rect_dsc); + draw_rect_dsc.bg_opa = LV_OPA_50; + draw_rect_dsc.bg_color = dsc->line_dsc->color; + + lv_area_t obj_clip_area; + _lv_area_intersect(&obj_clip_area, dsc->draw_ctx->clip_area, &obj->coords); + const lv_area_t * clip_area_ori = dsc->draw_ctx->clip_area; + dsc->draw_ctx->clip_area = &obj_clip_area; + lv_area_t a; + a.x1 = dsc->p1->x; + a.x2 = dsc->p2->x - 1; + a.y1 = LV_MIN(dsc->p1->y, dsc->p2->y); + a.y2 = obj->coords.y2; + lv_draw_rect(dsc->draw_ctx, &draw_rect_dsc, &a); + dsc->draw_ctx->clip_area = clip_area_ori; + /*Remove the masks*/ + lv_draw_mask_remove_id(line_mask_id); + lv_draw_mask_remove_id(fade_mask_id); + } + + + const lv_chart_series_t * ser = dsc->sub_part_ptr; + + if(lv_chart_get_type(obj) == LV_CHART_TYPE_LINE) { + dsc->rect_dsc->outline_color = lv_color_white(); + dsc->rect_dsc->outline_width = 2; + } + else { + dsc->rect_dsc->shadow_color = ser->color; + dsc->rect_dsc->shadow_width = 15; + dsc->rect_dsc->shadow_spread = 0; + } + + char buf[8]; + snprintf(buf, sizeof(buf), "%.*f", sensor_data_resolution, (float)dsc->value / sensor_data_multiple); + + lv_point_t text_size; + lv_txt_get_size(&text_size, buf, &ui_font_font1, 0, 0, LV_COORD_MAX, LV_TEXT_FLAG_NONE); + + lv_area_t txt_area; + + txt_area.x1 = dsc->draw_area->x1 + lv_area_get_width(dsc->draw_area) / 2 - text_size.x / 2; + txt_area.x2 = txt_area.x1 + text_size.x; + txt_area.y2 = dsc->draw_area->y1 - LV_DPX(15); + txt_area.y1 = txt_area.y2 - text_size.y; + + lv_draw_label_dsc_t label_dsc; + lv_draw_label_dsc_init(&label_dsc); + label_dsc.color = lv_color_white(); + label_dsc.font = &lv_font_montserrat_16; + + if(lv_chart_get_pressed_point(obj) == dsc->id) { + label_dsc.font = &lv_font_montserrat_20; + } else { + label_dsc.font = &lv_font_montserrat_16; + } + lv_draw_label(dsc->draw_ctx, &label_dsc, &txt_area, buf, NULL); + } + } +} + +void sensor_chart_update(sensor_chart_display_t *p_display) +{ + int i = 0; + struct view_data_sensor_history_data *p_info = p_display->p_info; + + sensor_data_resolution = p_info->resolution; + sensor_data_multiple = pow(10, p_info->resolution); + + float diff = 0; + float chart_day_min =0; + float chart_day_max =0; + float chart_week_min =0; + float chart_week_max =0; + + diff = p_info->day_max - p_info->day_min; + if( diff <= 2 ) { + diff = 4; + } + chart_day_min = (p_info->day_min - diff / 2.0); // sub quad + chart_day_max = (p_info->day_max + diff / 2.0); //add quad + + ESP_LOGI(TAG, "data max:%.1f, min:%.1f, char max:%.1f, min:%.1f ", p_info->day_max, p_info->day_min,chart_day_max,chart_day_min); + + diff = p_info->week_max - p_info->week_min; + if( diff <= 2) { + diff = 4; + } + chart_week_min = (p_info->week_min - diff / 2.0); // sub quad + chart_week_max = (p_info->week_max + diff / 2.0); //add quad + + lv_label_set_text(ui_sensor_data_title,p_display->name); + + lv_chart_set_series_color(ui_sensor_chart_day, ui_sensor_chart_day_series, p_display->color); + lv_chart_set_range(ui_sensor_chart_day, LV_CHART_AXIS_PRIMARY_Y, (lv_coord_t)chart_day_min * sensor_data_multiple, (lv_coord_t)chart_day_max * sensor_data_multiple); + + + lv_chart_set_range(ui_sensor_chart_week, LV_CHART_AXIS_PRIMARY_Y, (lv_coord_t)chart_week_min * sensor_data_multiple, (lv_coord_t)chart_week_max * sensor_data_multiple); + lv_chart_set_series_color(ui_sensor_chart_week, ui_sensor_chart_week_series_low, p_display->color); + lv_chart_set_series_color(ui_sensor_chart_week, ui_sensor_chart_week_series_hight, p_display->color); + + for(i = 0; i < 24; i++) { + if( p_info->data_day[i].valid ) { + lv_chart_set_value_by_id(ui_sensor_chart_day, ui_sensor_chart_day_series, i, sensor_data_multiple * p_info->data_day[i].data ); + } else { + lv_chart_set_value_by_id(ui_sensor_chart_day, ui_sensor_chart_day_series, i, LV_CHART_POINT_NONE); + } + struct tm timeinfo = { 0 }; + localtime_r(&p_info->data_day[i].timestamp, &timeinfo); + lv_snprintf((char*)&date_hour[i][0], 6, "%02d:00", timeinfo.tm_hour); + } + + for(i = 0; i < 7; i++) { + + if( p_info->data_week[i].valid ) { + lv_chart_set_value_by_id(ui_sensor_chart_week, ui_sensor_chart_week_series_hight, i, sensor_data_multiple * p_info->data_week[i].max ); + lv_chart_set_value_by_id(ui_sensor_chart_week, ui_sensor_chart_week_series_low, i, sensor_data_multiple * p_info->data_week[i].min ); + } else { + lv_chart_set_value_by_id(ui_sensor_chart_week, ui_sensor_chart_week_series_hight, i, LV_CHART_POINT_NONE); + lv_chart_set_value_by_id(ui_sensor_chart_week, ui_sensor_chart_week_series_low, i, LV_CHART_POINT_NONE); + } + + struct tm timeinfo = { 0 }; + localtime_r(&p_info->data_week[i].timestamp, &timeinfo); + + lv_snprintf((char*)&date_day[i][0], 6, "%02d/%02d",timeinfo.tm_mon + 1, timeinfo.tm_mday); + } + + //change type color + lv_disp_t *dispp = lv_disp_get_default(); + lv_theme_t *theme = lv_theme_default_init(dispp, p_display->color, lv_palette_main(LV_PALETTE_RED), true, LV_FONT_DEFAULT); + lv_disp_set_theme(dispp, theme); + + lv_chart_refresh(ui_sensor_chart_day); + lv_chart_refresh(ui_sensor_chart_week); +} + +void sensor_chart_event_init(void) +{ + int i = 0; + struct view_data_sensor_history_data default_sensor_info; + + default_sensor_info.resolution = 1; + + time_t now = 0; + time(&now); + time_t time1 = (time_t)(now / 3600) * 3600; + time_t time2 = (time_t)(now / 3600 / 24) * 3600 * 24; + + float min=90; + float max=10; + + for(i = 0; i < 24; i++) { + default_sensor_info.data_day[i].data = (float)lv_rand(10, 90); + default_sensor_info.data_day[i].timestamp = time1 + i *3600; + default_sensor_info.data_day[i].valid = true; + + if( min > default_sensor_info.data_day[i].data) { + min = default_sensor_info.data_day[i].data; + } + if( max < default_sensor_info.data_day[i].data) { + max = default_sensor_info.data_day[i].data; + } + } + default_sensor_info.day_max = max; + default_sensor_info.day_min = min; + + + min=90; + max=10; + + for(i = 0; i < 7; i++) { + default_sensor_info.data_week[i].max = (float)lv_rand(60, 90); + default_sensor_info.data_week[i].min = (float)lv_rand(10, 40); + default_sensor_info.data_week[i].timestamp = time2 + i * 3600 * 24;; + default_sensor_info.data_week[i].valid = true; + + if( min > default_sensor_info.data_week[i].min) { + min = default_sensor_info.data_week[i].min; + } + if( max < default_sensor_info.data_week[i].max) { + max = default_sensor_info.data_week[i].max; + } + } + default_sensor_info.week_max = max; + default_sensor_info.week_min = min; + + sensor_chart_display_t default_chart = { + .color = lv_palette_main(LV_PALETTE_GREEN), + .p_info = &default_sensor_info, + }; + strcpy(default_chart.name, "TEST"); + strcpy(default_chart.units, "%%"); + + + + sensor_chart_update( &default_chart); + + lv_obj_add_event_cb(ui_sensor_chart_day, event_chart_day_cb, LV_EVENT_ALL, NULL); + lv_obj_add_event_cb(ui_sensor_chart_week, event_chart_week_cb, LV_EVENT_ALL, NULL); +} + +/*****************************************************************/ +// wifi config +/*****************************************************************/ +LV_IMG_DECLARE( ui_img_wifi_1_png); +LV_IMG_DECLARE( ui_img_wifi_2_png); +LV_IMG_DECLARE( ui_img_wifi_3_png); +LV_IMG_DECLARE( ui_img_lock_png); + +/***********************************************************************************************************/ + +static void __view_event_handler(void* handler_args, esp_event_base_t base, int32_t id, void* event_data) +{ + lv_port_sem_take(); + switch (id) + { + case VIEW_EVENT_SCREEN_START: { + uint8_t screen = *( uint8_t *)event_data; + if( screen == SCREEN_MATTER_CONFIG) { + lv_disp_load_scr( ui_screen_matter_setup); + } else if (screen == SCREEN_DASHBOARD) { + lv_disp_load_scr( ui_screen_time ); + } + } + case VIEW_EVENT_TIME: { + ESP_LOGI(TAG, "event: VIEW_EVENT_TIME"); + bool time_format_24 = true; + if( event_data) { + time_format_24 = *( bool *)event_data; + } + + time_t now = 0; + struct tm timeinfo = { 0 }; + char *p_wday_str; + + time(&now); + localtime_r(&now, &timeinfo); + char buf_h[3]; + char buf_m[3]; + char buf[6]; + int hour = timeinfo.tm_hour; + + if( ! time_format_24 ) { + if( hour>=13 && hour<=23) { + hour = hour-12; + } + } + lv_snprintf(buf_h, sizeof(buf_h), "%02d", hour); + lv_label_set_text(ui_hour_dis, buf_h); + lv_snprintf(buf_m, sizeof(buf_m), "%02d", timeinfo.tm_min); + lv_label_set_text(ui_min_dis, buf_m); + + lv_snprintf(buf, sizeof(buf), "%02d:%02d", hour, timeinfo.tm_min); + lv_label_set_text(ui_time2, buf); + lv_label_set_text(ui_time3, buf); + + switch (timeinfo.tm_wday) + { + case 0: p_wday_str="Sunday";break; + case 1: p_wday_str="Monday";break; + case 2: p_wday_str="Tuesday";break; + case 3: p_wday_str="Wednesday";break; + case 4: p_wday_str="Thursday";break; + case 5: p_wday_str="Friday";break; + case 6: p_wday_str="Sunday";break; + default: p_wday_str="";break; + } + char buf1[32]; + lv_snprintf(buf1, sizeof(buf1), "%s, %02d / %02d / %04d", p_wday_str, timeinfo.tm_mday, timeinfo.tm_mon+1, timeinfo.tm_year+1900); + lv_label_set_text(ui_date, buf1); + break; + } + + case VIEW_EVENT_TIME_CFG_UPDATE: { + ESP_LOGI(TAG, "event: VIEW_EVENT_TIME_CFG_UPDATE"); + struct view_data_time_cfg *p_cfg = ( struct view_data_time_cfg *)event_data; + + if( p_cfg->time_format_24 ) { + lv_dropdown_set_selected(ui_time_format_cfg, 0); + } else { + lv_dropdown_set_selected(ui_time_format_cfg, 1); + } + + if( p_cfg->auto_update ) { + lv_obj_add_state( ui_auto_update_cfg, LV_STATE_CHECKED); + lv_obj_add_flag( ui_date_time, LV_OBJ_FLAG_HIDDEN ); + } else { + lv_obj_clear_state( ui_auto_update_cfg, LV_STATE_CHECKED); + lv_obj_clear_flag( ui_date_time, LV_OBJ_FLAG_HIDDEN ); + } + + + struct tm *p_tm = localtime(&p_cfg->time); + char buf[32]; + if( p_tm->tm_year+1900 > 1970 ) { + lv_snprintf(buf, sizeof(buf), "%02d/%02d/%d", p_tm->tm_mday, p_tm->tm_mon +1, p_tm->tm_year+1900); + lv_textarea_set_text(ui_date_cfg, buf); + } + + lv_roller_set_selected(ui_hour_cfg, p_tm->tm_hour,LV_ANIM_OFF); + lv_roller_set_selected(ui_min_cfg, p_tm->tm_min,LV_ANIM_OFF); + lv_roller_set_selected(ui_sec_cfg, p_tm->tm_sec,LV_ANIM_OFF); + + if( p_cfg->auto_update_zone ) { + lv_obj_add_state( ui_zone_auto_update_cfg, LV_STATE_CHECKED); + lv_obj_add_flag( ui_time_zone, LV_OBJ_FLAG_HIDDEN ); + } else { + lv_obj_clear_state( ui_zone_auto_update_cfg, LV_STATE_CHECKED); + lv_obj_clear_flag( ui_time_zone, LV_OBJ_FLAG_HIDDEN ); + } + + if( p_cfg->zone >= 0) { + lv_dropdown_set_selected(ui_time_zone_sign_cfg_, 0); + lv_dropdown_set_selected(ui_time_zone_num_cfg, p_cfg->zone); + } else { + lv_dropdown_set_selected(ui_time_zone_sign_cfg_, 1); + lv_dropdown_set_selected(ui_time_zone_num_cfg, 0 - p_cfg->zone); + } + + if( p_cfg->daylight ) { + lv_obj_add_state( ui_daylight_cfg, LV_STATE_CHECKED); + } else { + lv_obj_clear_state( ui_daylight_cfg, LV_STATE_CHECKED); + } + break; + } + + case VIEW_EVENT_CITY: { + ESP_LOGI(TAG, "event: VIEW_EVENT_CITY"); + char *p_data = ( char *)event_data; + lv_label_set_text(ui_city, p_data); + break; + } + + case VIEW_EVENT_DISPLAY_CFG: { + ESP_LOGI(TAG, "event: VIEW_EVENT_DISPLAY_CFG"); + struct view_data_display *p_cfg = ( struct view_data_display *)event_data; + + // lv_slider_set_value(ui_brighness_cfg, p_cfg->brightness, LV_ANIM_OFF); + // if( p_cfg->sleep_mode_en ) { + // lv_obj_clear_state( ui_screen_always_on_cfg, LV_STATE_CHECKED); + // lv_obj_clear_flag( ui_turn_off_after_time, LV_OBJ_FLAG_HIDDEN ); + // char buf[32]; + // lv_snprintf(buf, sizeof(buf), "%d", p_cfg->sleep_mode_time_min); + // lv_textarea_set_text(ui_turn_off_after_time_cfg, buf); + // //lv_label_set_text_fmt(ui_turn_off_after_time_cfg, "%"LV_PRIu32, p_cfg->sleep_mode_time_min); + // } else { + // lv_obj_add_state( ui_screen_always_on_cfg, LV_STATE_CHECKED); + // lv_obj_add_flag( ui_turn_off_after_time, LV_OBJ_FLAG_HIDDEN ); + // } + + break; + } + + case VIEW_EVENT_WIFI_ST: { + ESP_LOGI(TAG, "event: VIEW_EVENT_WIFI_ST"); + struct view_data_wifi_st *p_st = ( struct view_data_wifi_st *)event_data; + + uint8_t *p_src =NULL; + if ( p_st->is_connected ) { + switch (wifi_rssi_level_get( p_st->rssi )) { + case 1: + p_src = &ui_img_wifi_1_png; + break; + case 2: + p_src = &ui_img_wifi_2_png; + break; + case 3: + p_src = &ui_img_wifi_3_png; + break; + default: + break; + } + + } else { + p_src = &ui_img_wifi_disconet_png; + } + + lv_img_set_src(ui_wifi_st_1 , (void *)p_src); + lv_img_set_src(ui_wifi_st_2 , (void *)p_src); + lv_img_set_src(ui_wifi_st_3 , (void *)p_src); + lv_img_set_src(ui_wifi_st_4 , (void *)p_src); + lv_img_set_src(ui_wifi_st_5 , (void *)p_src); + lv_img_set_src(ui_wifi_st_6 , (void *)p_src); + lv_img_set_src(ui_wifi_st_7 , (void *)p_src); + break; + } + case VIEW_EVENT_SENSOR_DATA: { + ESP_LOGI(TAG, "event: VIEW_EVENT_SENSOR_DATA"); + + struct view_data_sensor_data *p_data = (struct view_data_sensor_data *) event_data; + char data_buf[32]; + + memset(data_buf, 0, sizeof(data_buf)); + switch (p_data->sensor_type) + { + case SENSOR_DATA_CO2: { + snprintf(data_buf, sizeof(data_buf), "%d", (int)p_data->value); + ESP_LOGI(TAG, "update co2:%s", data_buf); + lv_label_set_text(ui_co2_data, data_buf); + break; + } + case SENSOR_DATA_TVOC: { + snprintf(data_buf, sizeof(data_buf), "%d", (int)p_data->value); + ESP_LOGI(TAG, "update tvoc:%s", data_buf); + lv_label_set_text(ui_tvoc_data, data_buf); + break; + } + case SENSOR_DATA_TEMP: { + snprintf(data_buf, sizeof(data_buf), "%.1f", p_data->value); + ESP_LOGI(TAG, "update temp:%s", data_buf); + lv_label_set_text(ui_temp_data_2, data_buf); + break; + } + case SENSOR_DATA_HUMIDITY: { + snprintf(data_buf, sizeof(data_buf), "%d",(int) p_data->value); + ESP_LOGI(TAG, "update humidity:%s", data_buf); + lv_label_set_text(ui_humidity_data_2, data_buf); + break; + } + default: + break; + } + break; + } + case VIEW_EVENT_SENSOR_DATA_HISTORY: { + ESP_LOGI(TAG, "event: VIEW_EVENT_SENSOR_DATA_HISTORY"); + struct view_data_sensor_history_data *p_data = (struct view_data_sensor_history_data *) event_data; + sensor_chart_display_t sensor_chart; + + switch (p_data->sensor_type) + { + case SENSOR_DATA_CO2: { + sensor_chart.color = lv_color_hex(0x529D53); + sensor_chart.p_info = p_data; + strcpy(sensor_chart.name, "CO2"); + break; + } + case SENSOR_DATA_TVOC: { + sensor_chart.color = lv_color_hex(0xE06D3D); + sensor_chart.p_info = p_data; + strcpy(sensor_chart.name, "tVOC"); + break; + } + case SENSOR_DATA_TEMP: { + sensor_chart.color = lv_color_hex(0xEEBF41); + sensor_chart.p_info = p_data; + strcpy(sensor_chart.name, "Temp"); + break; + } + case SENSOR_DATA_HUMIDITY: { + sensor_chart.color = lv_color_hex(0x4EACE4); + sensor_chart.p_info = p_data; + strcpy(sensor_chart.name, "Humidity"); + break; + } + default: + break; + } + sensor_chart_update( &sensor_chart); + + break; + } + case VIEW_EVENT_SCREEN_CTRL: { + bool *p_st = (bool *) event_data; + + if ( *p_st == 1) { + lv_obj_clear_flag(lv_layer_top(), LV_OBJ_FLAG_CLICKABLE); + lv_obj_set_style_bg_opa(lv_layer_top(), LV_OPA_TRANSP, 0); + } else { + lv_obj_add_flag(lv_layer_top(), LV_OBJ_FLAG_CLICKABLE); + lv_obj_set_style_bg_opa(lv_layer_top(), LV_OPA_COVER, 0); + lv_obj_set_style_bg_color(lv_layer_top(), lv_color_black(), 0); + } + break; + } + case VIEW_EVENT_FACTORY_RESET: { + ESP_LOGI(TAG, "event: VIEW_EVENT_FACTORY_RESET"); + lv_disp_load_scr(ui_screen_factory); + break; + } + + default: + break; + } + lv_port_sem_give(); +} + + + +int indicator_view_init(void) +{ + ui_init(); + + sensor_chart_event_init(); + + int i = 0; + for( i = 0; i < VIEW_EVENT_ALL; i++ ) { + ESP_ERROR_CHECK(esp_event_handler_instance_register_with(view_event_handle, + VIEW_EVENT_BASE, i, + __view_event_handler, NULL, NULL)); + } +} \ No newline at end of file diff --git a/examples/indicator_matter/main/view/indicator_view.h b/examples/indicator_matter/main/view/indicator_view.h new file mode 100644 index 0000000..90a5b9a --- /dev/null +++ b/examples/indicator_matter/main/view/indicator_view.h @@ -0,0 +1,17 @@ +#ifndef INDICATOR_VIEW_H +#define INDICATOR_VIEW_H + +#include "view_data.h" +#include "lvgl.h" + +#ifdef __cplusplus +extern "C" { +#endif + +int indicator_view_init(void); + +#ifdef __cplusplus +} +#endif + +#endif diff --git a/examples/indicator_matter/main/view_data.h b/examples/indicator_matter/main/view_data.h new file mode 100644 index 0000000..7381735 --- /dev/null +++ b/examples/indicator_matter/main/view_data.h @@ -0,0 +1,152 @@ +#ifndef VIEW_DATA_H +#define VIEW_DATA_H + +#include "config.h" + +#ifdef __cplusplus +extern "C" { +#endif + +enum start_screen{ + SCREEN_SENSECAP_LOG, //todo + SCREEN_MATTER_CONFIG, + SCREEN_DASHBOARD, +}; + +struct view_data_wifi_st +{ + bool is_connected; + int8_t rssi; +}; + +struct view_data_wifi_connet_ret_msg +{ + uint8_t ret; //0:successfull , 1: failure + char msg[64]; +}; + +struct view_data_display +{ + int brightness; //0~100 + bool sleep_mode_en; //Turn Off Screen + int sleep_mode_time_min; +}; + +struct view_data_time_cfg +{ + bool time_format_24; + + bool auto_update; //time auto update + time_t time; // use when auto_update is true + bool set_time; + + bool auto_update_zone; // use when auto_update is true + int8_t zone; // use when auto_update_zone is true + + bool daylight; // use when auto_update is true +}__attribute__((packed)); + + +enum dashboard_data_type{ + DASHBOARD_DATA_ARC, + DASHBOARD_DATA_SWITCH, + DASHBOARD_DATA_SLIDER, + DASHBOARD_DATA_BUTTON1, + DASHBOARD_DATA_BUTTON2, +}; + +struct view_data_matter_dashboard_data +{ + enum dashboard_data_type dashboard_data_type; + int value; +}; + + +struct sensor_data_average +{ + float data; //Average over the past hour + time_t timestamp; + bool valid; +}; + +struct sensor_data_minmax +{ + float max; + float min; + time_t timestamp; + bool valid; +}; + +enum sensor_data_type{ + SENSOR_DATA_CO2, + SENSOR_DATA_TVOC, + SENSOR_DATA_TEMP, + SENSOR_DATA_HUMIDITY, +}; + +struct view_data_sensor_data +{ + enum sensor_data_type sensor_type; + float value; +}; + +struct view_data_sensor_history_data +{ + enum sensor_data_type sensor_type; + struct sensor_data_average data_day[24]; + struct sensor_data_minmax data_week[7]; + uint8_t resolution; + + float day_min; + float day_max; + + float week_min; + float week_max; +}; + +enum { + VIEW_EVENT_SCREEN_START = 0, // uint8_t, enum start_screen, which screen when start + + VIEW_EVENT_TIME, // bool time_format_24 + + VIEW_EVENT_WIFI_ST, //view_data_wifi_st_t + VIEW_EVENT_CITY, // char city[32], max display 24 char + + VIEW_EVENT_MATTER_SET_DASHBOARD_DATA, // struct view_data_matter_dashboard_data + VIEW_EVENT_MATTER_DASHBOARD_DATA, // struct view_data_matter_dashboard_data + VIEW_EVENT_SENSOR_DATA, // struct view_data_sensor_data + + VIEW_EVENT_SENSOR_TEMP, + VIEW_EVENT_SENSOR_HUMIDITY, + VIEW_EVENT_SENSOR_TVOC, + VIEW_EVENT_SENSOR_CO2, + + VIEW_EVENT_SENSOR_TEMP_HISTORY, + VIEW_EVENT_SENSOR_HUMIDITY_HISTORY, + VIEW_EVENT_SENSOR_TVOC_HISTORY, + VIEW_EVENT_SENSOR_CO2_HISTORY, + + VIEW_EVENT_SENSOR_DATA_HISTORY, //struct view_data_sensor_history_data + + VIEW_EVENT_TIME_CFG_UPDATE, // struct view_data_time_cfg + VIEW_EVENT_TIME_CFG_APPLY, // struct view_data_time_cfg + + VIEW_EVENT_DISPLAY_CFG, // struct view_data_display + VIEW_EVENT_BRIGHTNESS_UPDATE, // uint8_t brightness + VIEW_EVENT_DISPLAY_CFG_APPLY, // struct view_data_display. will save + + + VIEW_EVENT_SHUTDOWN, //NULL + VIEW_EVENT_FACTORY_RESET, //NULL + VIEW_EVENT_SCREEN_CTRL, // bool 0:disable , 1:enable + + VIEW_EVENT_ALL, +}; + + + +#ifdef __cplusplus +} +#endif + +#endif diff --git a/examples/indicator_matter/partitions.csv b/examples/indicator_matter/partitions.csv new file mode 100644 index 0000000..8db4f2b --- /dev/null +++ b/examples/indicator_matter/partitions.csv @@ -0,0 +1,8 @@ +# Name, Type, SubType, Offset, Size, Flags +# Note: Firmware partition offset needs to be 64K aligned, initial 36K (9 sectors) are reserved for bootloader and partition table +esp_secure_cert, 0x3F, ,0xd000, 0x2000, encrypted +nvs, data, nvs, 0x10000, 0xC000, +nvs_keys, data, nvs_keys,, 0x1000, encrypted +otadata, data, ota, , 0x2000 +phy_init, data, phy, , 0x1000, +factory, app, factory, , 4M, diff --git a/examples/indicator_matter/partitions_thread.csv b/examples/indicator_matter/partitions_thread.csv new file mode 100644 index 0000000..b41b35c --- /dev/null +++ b/examples/indicator_matter/partitions_thread.csv @@ -0,0 +1,9 @@ +# Name, Type, SubType, Offset, Size, Flags +# Note: Firmware partition offset needs to be 64K aligned, initial 36K (9 sectors) are reserved for bootloader and partition table +esp_secure_cert, 0x3F, ,0xd000, 0x2000, encrypted +nvs, data, nvs, 0x10000, 0xC000, +nvs_keys, data, nvs_keys,, 0x1000, encrypted +otadata, data, ota, , 0x2000 +phy_init, data, phy, , 0x1000, +factory, app, factory, , 4M, +ot_storage,data, fat, , 0x2000, diff --git a/examples/indicator_matter/sdkconfig.defaults b/examples/indicator_matter/sdkconfig.defaults new file mode 100644 index 0000000..3b8824c --- /dev/null +++ b/examples/indicator_matter/sdkconfig.defaults @@ -0,0 +1,151 @@ +# This file was generated using idf.py save-defconfig. It can be edited manually. +# Espressif IoT Development Framework (ESP-IDF) Project Minimal Configuration +# +CONFIG_SPI_FLASH_32BIT_ADDRESS=y +CONFIG_IDF_TARGET="esp32s3" +CONFIG_ESPTOOLPY_FLASHMODE_QIO=y +CONFIG_ESPTOOLPY_FLASHFREQ_120M=y +CONFIG_ESPTOOLPY_FLASHSIZE_8MB=y +CONFIG_LCD_AVOID_TEAR=y +CONFIG_LCD_LVGL_DIRECT_MODE=y +CONFIG_LCD_TASK_REFRESH_TIME=5 +CONFIG_COMPILER_OPTIMIZATION_PERF=y +CONFIG_COMPILER_OPTIMIZATION_SIZE=y +# CONFIG_ESP_SLEEP_PSRAM_LEAKAGE_WORKAROUND is not set +# CONFIG_ESP_SLEEP_FLASH_LEAKAGE_WORKAROUND is not set +CONFIG_SPIRAM=y +CONFIG_SPIRAM_MODE_OCT=y +CONFIG_SPIRAM_FETCH_INSTRUCTIONS=y +CONFIG_SPIRAM_RODATA=y +CONFIG_SPIRAM_SPEED_120M=y +CONFIG_ESP_DEFAULT_CPU_FREQ_MHZ_240=y +CONFIG_ESP32S3_DATA_CACHE_64KB=y +CONFIG_ESP32S3_DATA_CACHE_LINE_64B=y +CONFIG_ESP_SYSTEM_PANIC_PRINT_HALT=y +CONFIG_ESP_IPC_TASK_STACK_SIZE=4096 +# CONFIG_ESP_WIFI_STA_DISCONNECTED_PM_ENABLE is not set +CONFIG_FREERTOS_HZ=1000 +CONFIG_FREERTOS_GENERATE_RUN_TIME_STATS=y +CONFIG_MBEDTLS_EXTERNAL_MEM_ALLOC=y +CONFIG_MBEDTLS_SSL_IN_CONTENT_LEN=5120 +CONFIG_WIFI_PROV_BLE_FORCE_ENCRYPTION=y +CONFIG_LV_MEM_BUF_MAX_NUM=16 +CONFIG_LV_CONF_MINIMAL=y +CONFIG_LV_MEM_CUSTOM=y +CONFIG_LV_MEMCPY_MEMSET_STD=y +CONFIG_LV_USE_ASSERT_NULL=y +CONFIG_LV_USE_ASSERT_MALLOC=y +CONFIG_LV_FONT_MONTSERRAT_8=n +CONFIG_LV_FONT_MONTSERRAT_10=n +CONFIG_LV_FONT_MONTSERRAT_12=n +CONFIG_LV_FONT_MONTSERRAT_16=y +CONFIG_LV_FONT_MONTSERRAT_18=n +CONFIG_LV_FONT_MONTSERRAT_20=y +CONFIG_LV_FONT_MONTSERRAT_22=n +CONFIG_LV_FONT_MONTSERRAT_24=n +CONFIG_LV_FONT_MONTSERRAT_26=n +CONFIG_LV_FONT_MONTSERRAT_28=n +CONFIG_LV_FONT_MONTSERRAT_30=y +CONFIG_LV_FONT_MONTSERRAT_32=n +CONFIG_LV_FONT_MONTSERRAT_34=n +CONFIG_LV_FONT_MONTSERRAT_36=n +CONFIG_LV_FONT_MONTSERRAT_38=n +CONFIG_LV_FONT_MONTSERRAT_40=n +# CONFIG_LV_FONT_UNSCII_8 is not set +CONFIG_LV_FONT_DEFAULT_MONTSERRAT_14=y +CONFIG_LV_TXT_ENC_UTF8=y +CONFIG_LV_USE_ARC=y +CONFIG_LV_USE_BTN=y +CONFIG_LV_USE_BTNMATRIX=y +CONFIG_LV_USE_CANVAS=n +CONFIG_LV_USE_CHECKBOX=y +CONFIG_LV_USE_DROPDOWN=y +CONFIG_LV_USE_LINE=n +CONFIG_LV_USE_ROLLER=n +CONFIG_LV_USE_SLIDER=y +CONFIG_LV_USE_SWITCH=y +CONFIG_LV_USE_TEXTAREA=y +CONFIG_LV_USE_TABLE=y +CONFIG_LV_USE_ANIMIMG=n +CONFIG_LV_USE_CALENDAR=y +CONFIG_LV_USE_CHART=y +CONFIG_LV_USE_COLORWHEEL=n +CONFIG_LV_USE_IMGBTN=y +CONFIG_LV_USE_IMG=y +CONFIG_LV_USE_KEYBOARD=y +CONFIG_LV_USE_LED=n +CONFIG_LV_USE_LIST=y +CONFIG_LV_USE_MENU=y +CONFIG_LV_USE_METER=n +CONFIG_LV_USE_MSGBOX=y +CONFIG_LV_USE_ROLLER=y +CONFIG_LV_USE_SPAN=n +CONFIG_LV_USE_SPINBOX=n +CONFIG_LV_USE_SPINNER=y +CONFIG_LV_USE_TABVIEW=y +CONFIG_LV_USE_TILEVIEW=n +CONFIG_LV_USE_WIN=n +CONFIG_LV_USE_THEME_DEFAULT=y +CONFIG_LV_USE_THEME_BASIC=n +CONFIG_LV_USE_FLEX=y +CONFIG_LV_USE_GRID=n +CONFIG_LV_USE_SNAPSHOT=n +CONFIG_LV_BUILD_EXAMPLES=n +CONFIG_LV_USE_DEMO_WIDGETS=n +CONFIG_LV_DEMO_WIDGETS_SLIDESHOW=n +CONFIG_LV_USE_DEMO_BENCHMARK=n +CONFIG_LV_USE_DEMO_STRESS=n +CONFIG_LV_USE_DEMO_MUSIC=n +CONFIG_LV_DEMO_MUSIC_AUTO_PLAY=n +CONFIG_COMPILER_OPTIMIZATION_ASSERTIONS_DISABLE=y + +# Enable chip shell +CONFIG_ENABLE_CHIP_SHELL=y + +# Use a custom partition table +CONFIG_PARTITION_TABLE_CUSTOM=y +CONFIG_PARTITION_TABLE_FILENAME="partitions.csv" +CONFIG_PARTITION_TABLE_OFFSET=0xC000 + +#enable BT +CONFIG_BT_ENABLED=y +CONFIG_BT_NIMBLE_ENABLED=y + +#disable BT connection reattempt +CONFIG_BT_NIMBLE_ENABLE_CONN_REATTEMPT=n + +#enable lwip ipv6 autoconfig +CONFIG_LWIP_IPV6_AUTOCONFIG=y + +#enable lwIP route hooks +CONFIG_LWIP_HOOK_IP6_ROUTE_DEFAULT=y +CONFIG_LWIP_HOOK_ND6_GET_GW_DEFAULT=y + +# disable softap by default +CONFIG_ESP_WIFI_SOFTAP_SUPPORT=n + +# Disable DS Peripheral +CONFIG_ESP_SECURE_CERT_DS_PERIPHERAL=n + +# Use compact attribute storage mode +CONFIG_ESP_MATTER_NVS_USE_COMPACT_ATTR_STORAGE=y + +# Enable HKDF in mbedtls +CONFIG_MBEDTLS_HKDF_C=y + +# Increase LwIP IPv6 address number to 6 (MAX_FABRIC + 1) +# unique local addresses for fabrics(MAX_FABRIC), a link local address(1) +CONFIG_LWIP_IPV6_NUM_ADDRESSES=6 + +# Memory optimizations +CONFIG_ESP_MATTER_MEM_ALLOC_MODE_EXTERNAL=y +CONFIG_BT_NIMBLE_MEM_ALLOC_MODE_EXTERNAL=y +CONFIG_BT_NIMBLE_MAX_CONNECTIONS=1 +CONFIG_COMPILER_OPTIMIZATION_ASSERTIONS_DISABLE=y +CONFIG_ESP32_WIFI_CACHE_TX_BUFFER_NUM=16 +CONFIG_LV_ATTRIBUTE_FAST_MEM_USE_IRAM=y +CONFIG_SPIRAM_TRY_ALLOCATE_WIFI_LWIP=n +CONFIG_SPIRAM_MALLOC_ALWAYSINTERNAL=256 +CONFIG_SPIRAM_MALLOC_RESERVE_INTERNAL=0 +CONFIG_SPIRAM_ALLOW_BSS_SEG_EXTERNAL_MEMORY=y +CONFIG_CHIP_PROJECT_CONFIG="main/matter_config.h" \ No newline at end of file From d444689884179f93e898bd5debba73c551015b36 Mon Sep 17 00:00:00 2001 From: Tim Lovett Date: Tue, 29 Aug 2023 06:58:02 -0400 Subject: [PATCH 02/11] Cleanup, some additional docs modifications / removing outdated indicator_basis image --- examples/indicator_matter/README.md | 2 +- examples/indicator_matter/docs/page3.png | Bin 76207 -> 46028 bytes examples/indicator_matter/docs/page4.png | Bin 46028 -> 0 bytes examples/indicator_matter/sdkconfig.defaults | 1 + 4 files changed, 2 insertions(+), 1 deletion(-) delete mode 100644 examples/indicator_matter/docs/page4.png diff --git a/examples/indicator_matter/README.md b/examples/indicator_matter/README.md index ead85ad..b2bdea3 100644 --- a/examples/indicator_matter/README.md +++ b/examples/indicator_matter/README.md @@ -8,7 +8,7 @@ This demo mainly implements time, sensor data display, and some configuration fu

- +
## Function diff --git a/examples/indicator_matter/docs/page3.png b/examples/indicator_matter/docs/page3.png index 5e5f43b34984a23e421aedc6740ee618718761d2..0799534d8b624874224ee4d7c61a1667dc820218 100644 GIT binary patch literal 46028 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 V1^GuTzlVi+sVHhH)W}(V{vSqot8M@Q literal 76207 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 V1^GuTzlVi+sVHhH)W}(V{vSqot8M@Q diff --git a/examples/indicator_matter/sdkconfig.defaults b/examples/indicator_matter/sdkconfig.defaults index 3b8824c..7cd28e2 100644 --- a/examples/indicator_matter/sdkconfig.defaults +++ b/examples/indicator_matter/sdkconfig.defaults @@ -148,4 +148,5 @@ CONFIG_SPIRAM_TRY_ALLOCATE_WIFI_LWIP=n CONFIG_SPIRAM_MALLOC_ALWAYSINTERNAL=256 CONFIG_SPIRAM_MALLOC_RESERVE_INTERNAL=0 CONFIG_SPIRAM_ALLOW_BSS_SEG_EXTERNAL_MEMORY=y + CONFIG_CHIP_PROJECT_CONFIG="main/matter_config.h" \ No newline at end of file From 5f2743d58b08d4b62c3ade63f723e5c4b402aeb9 Mon Sep 17 00:00:00 2001 From: Tim Lovett Date: Tue, 29 Aug 2023 17:25:33 -0400 Subject: [PATCH 03/11] Additional cleanup --- .../indicator_virtual_dashboard_controller.c | 57 ------------------- .../main/model/indicator_matter.cpp | 56 ++---------------- .../main/model/indicator_virtual_dashboard.c | 1 - .../main/model/indicator_virtual_dashboard.h | 1 - examples/indicator_matter/main/ui/ui.h | 2 +- .../main/view/indicator_view.c | 44 ++++++++++++++ 6 files changed, 49 insertions(+), 112 deletions(-) diff --git a/examples/indicator_matter/main/controller/indicator_virtual_dashboard_controller.c b/examples/indicator_matter/main/controller/indicator_virtual_dashboard_controller.c index 357031b..75224b9 100644 --- a/examples/indicator_matter/main/controller/indicator_virtual_dashboard_controller.c +++ b/examples/indicator_matter/main/controller/indicator_virtual_dashboard_controller.c @@ -12,59 +12,6 @@ static const char *TAG = "indicator_virtual_dashboard_controller"; -static void __view_event_handler(void* handler_args, esp_event_base_t base, int32_t id, void* event_data) -{ - switch (id) - { - case VIEW_EVENT_MATTER_SET_DASHBOARD_DATA: { - struct view_data_matter_dashboard_data *p_data = (struct view_data_matter_dashboard_data *) event_data; - ESP_LOGI(TAG, "event: VIEW_EVENT_MATTER_SET_DASHBOARD_DATA %d", p_data->value); - - switch (p_data->dashboard_data_type) - { - case DASHBOARD_DATA_ARC: { - lv_arc_set_value( ui_arc, p_data->value ); - lv_event_send(ui_arc, LV_EVENT_VALUE_CHANGED, NULL); - break; - } - case DASHBOARD_DATA_SWITCH: { - if ((bool)p_data->value) { - lv_obj_add_state(ui_switch1, LV_STATE_CHECKED); - } else { - lv_obj_clear_state(ui_switch1, LV_STATE_CHECKED); - } - break; - } - case DASHBOARD_DATA_SLIDER: { - lv_slider_set_value( ui_slider1, p_data->value, LV_ANIM_OFF ); - break; - } - case DASHBOARD_DATA_BUTTON1: { - if ((bool)p_data->value) { - lv_obj_add_state(ui_toggle_button1, LV_STATE_CHECKED); - } else { - lv_obj_clear_state(ui_toggle_button1, LV_STATE_CHECKED); - } - break; - } - case DASHBOARD_DATA_BUTTON2: { - if ((bool)p_data->value) { - lv_obj_add_state(ui_toggle_button2, LV_STATE_CHECKED); - } else { - lv_obj_clear_state(ui_toggle_button2, LV_STATE_CHECKED); - } - break; - } - default: - break; - } - break; - } - default: - break; - } -} - static void __dashboard_arc_update_cb(lv_event_t * e) { lv_arc_t * arc = (lv_arc_t *)lv_event_get_target(e); @@ -133,9 +80,5 @@ int indicator_virtual_dashboard_controller_init(void) { __virtual_dashboard_event_init(); - ESP_ERROR_CHECK(esp_event_handler_instance_register_with(view_event_handle, - VIEW_EVENT_BASE, VIEW_EVENT_MATTER_SET_DASHBOARD_DATA, - __view_event_handler, NULL, NULL)); - return 0; } \ No newline at end of file diff --git a/examples/indicator_matter/main/model/indicator_matter.cpp b/examples/indicator_matter/main/model/indicator_matter.cpp index 8f24a2f..23ecada 100644 --- a/examples/indicator_matter/main/model/indicator_matter.cpp +++ b/examples/indicator_matter/main/model/indicator_matter.cpp @@ -21,13 +21,11 @@ uint16_t humidity_endpoint_id = 0; uint16_t dimmable_plugin_unit_endpoint_id = 0; uint16_t door_lock_endpoint_id = 0; uint16_t dimmable_plugin_unit_endpoint2_id = 0; - static bool __g_matter_connected_flag = false; static bool __g_ip_connected_flag = false; - static int __g_humidity = 0; static int __g_temperature = 0; -static struct view_data_wifi_st __g_wifi_st; +constexpr auto k_timeout_seconds = 300; static SemaphoreHandle_t __g_matter_mutex; static esp_timer_handle_t matter_humidity_timer_handle; static esp_timer_handle_t matter_temperature_timer_handle; @@ -38,21 +36,7 @@ using namespace esp_matter::endpoint; using namespace chip::app::Clusters; using namespace esp_matter::cluster::basic_information::attribute; -constexpr auto k_timeout_seconds = 300; - -static void __wifi_st_set( struct view_data_wifi_st *p_st ) -{ - xSemaphoreTake(__g_matter_mutex, portMAX_DELAY); - memcpy( &__g_wifi_st, p_st, sizeof(struct view_data_wifi_st)); - xSemaphoreGive(__g_matter_mutex); -} -static void __wifi_st_get(struct view_data_wifi_st *p_st ) -{ - xSemaphoreTake(__g_matter_mutex, portMAX_DELAY); - memcpy(p_st, &__g_wifi_st, sizeof(struct view_data_wifi_st)); - xSemaphoreGive(__g_matter_mutex); -} static void __humidity_value_set( int h ) { @@ -93,11 +77,8 @@ static void app_event_cb(const ChipDeviceEvent *event, intptr_t arg) __g_matter_connected_flag = true; if (__g_matter_connected_flag) { struct view_data_wifi_st st; - __wifi_st_get(&st); st.rssi = -50; st.is_connected = true; - - __wifi_st_set(&st); esp_event_post_to(view_event_handle, VIEW_EVENT_BASE, VIEW_EVENT_WIFI_ST, &st, sizeof(struct view_data_wifi_st ), portMAX_DELAY); uint8_t screen = SCREEN_DASHBOARD; @@ -252,9 +233,7 @@ static void __matter_temperature_reporter(void* arg) { attribute::get_val(attribute, &val); val.val.i16 = (int16_t) __temperature_value_get(); - ESP_LOGI(TAG, "Temperature: esp_matter_attr_val_t value is %d", val.val.i16); - - + ESP_LOGI(TAG, "Temperature: esp_matter_attr_val_t value is %d", val.val.i16); attribute::update(endpoint_id, cluster_id, attribute_id, &val); } else { @@ -277,9 +256,7 @@ static void __matter_humidity_reporter(void* arg) { val.val.i16 = (int16_t) __humidity_value_get(); ESP_LOGI(TAG, "Humidity: esp_matter_attr_val_t value is %d", val.val.i); - attribute::update(endpoint_id, cluster_id, attribute_id, &val); - } else { int value = (int)(__humidity_value_get() / 1000.0); ESP_LOGI(TAG, "Matter humidity not logging: esp_matter_attr_val_t value is %d", value); @@ -296,7 +273,6 @@ static void __view_event_handler(void* handler_args, esp_event_base_t base, int3 } case VIEW_EVENT_MATTER_DASHBOARD_DATA: { ESP_LOGI(TAG, "event: VIEW_EVENT_MATTER_DASHBOARD_DATA"); - if (!__g_matter_connected_flag) { return; } @@ -333,10 +309,8 @@ static void __view_event_handler(void* handler_args, esp_event_base_t base, int3 esp_matter_attr_val_t val = esp_matter_invalid(NULL); attribute::get_val(attribute, &val); val.val.b = (bool)p_data->value; - ESP_LOGI(TAG, "Door lock: esp_matter_attr_val_t value is %d", (int)val.val.b); - + ESP_LOGI(TAG, "Door lock: esp_matter_attr_val_t value is %d", (int)val.val.b); attribute::update(endpoint_id, cluster_id, attribute_id, &val); - break; } case DASHBOARD_DATA_SLIDER: { @@ -353,10 +327,8 @@ static void __view_event_handler(void* handler_args, esp_event_base_t base, int3 attribute::get_val(attribute, &val); val.val.i = p_data->value; - ESP_LOGI(TAG, "Dimmer switch: esp_matter_attr_val_t value is %d", val.val.i); - + ESP_LOGI(TAG, "Dimmer switch: esp_matter_attr_val_t value is %d", val.val.i); attribute::update(endpoint_id, cluster_id, attribute_id, &val); - break; } case DASHBOARD_DATA_BUTTON1: { @@ -374,9 +346,7 @@ static void __view_event_handler(void* handler_args, esp_event_base_t base, int3 val.val.b = (bool)p_data->value; ESP_LOGI(TAG, "Dimmer switch: esp_matter_attr_val_t value is %d", (int)val.val.b); - attribute::update(endpoint_id, cluster_id, attribute_id, &val); - break; } case DASHBOARD_DATA_BUTTON2: { @@ -394,9 +364,7 @@ static void __view_event_handler(void* handler_args, esp_event_base_t base, int3 val.val.b = (bool)p_data->value; ESP_LOGI(TAG, "Dimmer on/off: esp_matter_attr_val_t value is %d", (int)val.val.b); - attribute::update(endpoint_id, cluster_id, attribute_id, &val); - break; } default: @@ -440,7 +408,6 @@ static void __view_event_handler(void* handler_args, esp_event_base_t base, int3 int indicator_matter_setup(void) { esp_err_t err = ESP_OK; __g_matter_connected_flag = chip::DeviceLayer::Internal::ESP32Utils::IsStationProvisioned(); - memset(&__g_wifi_st, 0, sizeof(__g_wifi_st)); __g_matter_mutex = xSemaphoreCreateMutex(); node::config_t node_config; node_t *node = node::create(&node_config, app_attribute_update_cb, app_identification_cb); @@ -448,37 +415,22 @@ int indicator_matter_setup(void) { // Create the temperature endpoint temperature_sensor::config_t temperature_config; endpoint_t *temperature_endpoint = temperature_sensor::create(node, &temperature_config, ENDPOINT_FLAG_NONE, NULL); - char temperature_name[] = "SenseCAP Indicator Temperature"; - cluster_t *temperature_cluster = cluster::get(temperature_endpoint, BasicInformation::Id); - create_product_name(temperature_cluster, temperature_name, strlen(temperature_name)); // Create the humidity endpoint humidity_sensor::config_t humidity_config; endpoint_t *humidity_endpoint = humidity_sensor::create(node, &humidity_config, ENDPOINT_FLAG_NONE, NULL); - char humidity_name[] = "SenseCAP Indicator Humidity"; - cluster_t *humidity_cluster = cluster::get(temperature_endpoint, BasicInformation::Id); - create_product_name(humidity_cluster, humidity_name, strlen(humidity_name)); // Create the dimmable light endpoint dimmable_plugin_unit::config_t dimmable_plugin_unit_config; dimmable_plugin_unit_config.level_control.lighting.min_level = 0; dimmable_plugin_unit_config.level_control.lighting.max_level = 100; endpoint_t *dimmable_plugin_unit_endpoint = dimmable_plugin_unit::create(node, &dimmable_plugin_unit_config, ENDPOINT_FLAG_NONE, NULL); - char dimmable_plugin_1_name[] = "Dimmable Light"; - cluster_t *dimmable_plugin_1_cluster = cluster::get(dimmable_plugin_unit_endpoint, BasicInformation::Id); - create_product_name(dimmable_plugin_1_cluster, dimmable_plugin_1_name, strlen(dimmable_plugin_1_name)); // Create the contact sensor endpoint door_lock::config_t door_lock_config; endpoint_t *door_lock_endpoint = door_lock::create(node, &door_lock_config, ENDPOINT_FLAG_NONE, NULL); - char door_lock_name[] = "Virtual Lockbox"; - cluster_t *door_lock_cluster = cluster::get(door_lock_endpoint, BasicInformation::Id); - create_product_name(door_lock_cluster, door_lock_name, strlen(door_lock_name)); dimmable_plugin_unit::config_t dimmable_plugin_unit_config2; - char dimmable_plugin_2_name[] = "Dimmable Light 2"; - cluster_t *dimmable_plugin_2_cluster = cluster::get(door_lock_endpoint, BasicInformation::Id); - create_product_name(dimmable_plugin_2_cluster, dimmable_plugin_2_name, strlen(dimmable_plugin_2_name)); dimmable_plugin_unit_config2.level_control.lighting.min_level = 0; dimmable_plugin_unit_config2.level_control.lighting.max_level = 100; endpoint_t *dimmable_plugin_unit_endpoint2 = dimmable_plugin_unit::create(node, &dimmable_plugin_unit_config2, ENDPOINT_FLAG_NONE, NULL); diff --git a/examples/indicator_matter/main/model/indicator_virtual_dashboard.c b/examples/indicator_matter/main/model/indicator_virtual_dashboard.c index 4fb4f46..6af3409 100644 --- a/examples/indicator_matter/main/model/indicator_virtual_dashboard.c +++ b/examples/indicator_matter/main/model/indicator_virtual_dashboard.c @@ -4,7 +4,6 @@ #include "freertos/semphr.h" #define MATTER_DASHBOARD_STORAGE "md" - static const char *TAG = "virtual_dashboard"; static SemaphoreHandle_t __g_matter_virtual_dashboard_mutex; diff --git a/examples/indicator_matter/main/model/indicator_virtual_dashboard.h b/examples/indicator_matter/main/model/indicator_virtual_dashboard.h index 10cd36e..d1b624d 100644 --- a/examples/indicator_matter/main/model/indicator_virtual_dashboard.h +++ b/examples/indicator_matter/main/model/indicator_virtual_dashboard.h @@ -4,7 +4,6 @@ #include "config.h" #include "view_data.h" - #ifdef __cplusplus extern "C" { #endif diff --git a/examples/indicator_matter/main/ui/ui.h b/examples/indicator_matter/main/ui/ui.h index cd2e730..6a53085 100644 --- a/examples/indicator_matter/main/ui/ui.h +++ b/examples/indicator_matter/main/ui/ui.h @@ -10,7 +10,7 @@ extern "C" { #endif - #include "lvgl/lvgl.h" +#include "lvgl/lvgl.h" void up_Animation( lv_obj_t *TargetObject, int delay); void ui_event_screen_time( lv_event_t * e); diff --git a/examples/indicator_matter/main/view/indicator_view.c b/examples/indicator_matter/main/view/indicator_view.c index 3b720c9..c35ec31 100644 --- a/examples/indicator_matter/main/view/indicator_view.c +++ b/examples/indicator_matter/main/view/indicator_view.c @@ -332,6 +332,50 @@ static void __view_event_handler(void* handler_args, esp_event_base_t base, int3 lv_port_sem_take(); switch (id) { + case VIEW_EVENT_MATTER_SET_DASHBOARD_DATA: { + struct view_data_matter_dashboard_data *p_data = (struct view_data_matter_dashboard_data *) event_data; + ESP_LOGI(TAG, "event: VIEW_EVENT_MATTER_SET_DASHBOARD_DATA %d", p_data->value); + + switch (p_data->dashboard_data_type) + { + case DASHBOARD_DATA_ARC: { + lv_arc_set_value( ui_arc, p_data->value ); + lv_event_send(ui_arc, LV_EVENT_VALUE_CHANGED, NULL); + break; + } + case DASHBOARD_DATA_SWITCH: { + if ((bool)p_data->value) { + lv_obj_add_state(ui_switch1, LV_STATE_CHECKED); + } else { + lv_obj_clear_state(ui_switch1, LV_STATE_CHECKED); + } + break; + } + case DASHBOARD_DATA_SLIDER: { + lv_slider_set_value( ui_slider1, p_data->value, LV_ANIM_OFF ); + break; + } + case DASHBOARD_DATA_BUTTON1: { + if ((bool)p_data->value) { + lv_obj_add_state(ui_toggle_button1, LV_STATE_CHECKED); + } else { + lv_obj_clear_state(ui_toggle_button1, LV_STATE_CHECKED); + } + break; + } + case DASHBOARD_DATA_BUTTON2: { + if ((bool)p_data->value) { + lv_obj_add_state(ui_toggle_button2, LV_STATE_CHECKED); + } else { + lv_obj_clear_state(ui_toggle_button2, LV_STATE_CHECKED); + } + break; + } + default: + break; + } + break; + } case VIEW_EVENT_SCREEN_START: { uint8_t screen = *( uint8_t *)event_data; if( screen == SCREEN_MATTER_CONFIG) { From e69cdcf5eb4a02c6b5f896e20529aafaa6808dd0 Mon Sep 17 00:00:00 2001 From: Tim Lovett Date: Tue, 29 Aug 2023 23:07:03 -0400 Subject: [PATCH 04/11] Adding explicit min and max values for the dimmer levels, adjusting min to 1 --- examples/indicator_matter/main/model/indicator_matter.cpp | 4 ++-- .../main/model/indicator_virtual_dashboard.c | 5 ++--- examples/indicator_matter/main/ui/ui.c | 4 +++- 3 files changed, 7 insertions(+), 6 deletions(-) diff --git a/examples/indicator_matter/main/model/indicator_matter.cpp b/examples/indicator_matter/main/model/indicator_matter.cpp index 23ecada..4449c02 100644 --- a/examples/indicator_matter/main/model/indicator_matter.cpp +++ b/examples/indicator_matter/main/model/indicator_matter.cpp @@ -422,7 +422,7 @@ int indicator_matter_setup(void) { // Create the dimmable light endpoint dimmable_plugin_unit::config_t dimmable_plugin_unit_config; - dimmable_plugin_unit_config.level_control.lighting.min_level = 0; + dimmable_plugin_unit_config.level_control.lighting.min_level = 1; dimmable_plugin_unit_config.level_control.lighting.max_level = 100; endpoint_t *dimmable_plugin_unit_endpoint = dimmable_plugin_unit::create(node, &dimmable_plugin_unit_config, ENDPOINT_FLAG_NONE, NULL); @@ -431,7 +431,7 @@ int indicator_matter_setup(void) { endpoint_t *door_lock_endpoint = door_lock::create(node, &door_lock_config, ENDPOINT_FLAG_NONE, NULL); dimmable_plugin_unit::config_t dimmable_plugin_unit_config2; - dimmable_plugin_unit_config2.level_control.lighting.min_level = 0; + dimmable_plugin_unit_config2.level_control.lighting.min_level = 1; dimmable_plugin_unit_config2.level_control.lighting.max_level = 100; endpoint_t *dimmable_plugin_unit_endpoint2 = dimmable_plugin_unit::create(node, &dimmable_plugin_unit_config2, ENDPOINT_FLAG_NONE, NULL); diff --git a/examples/indicator_matter/main/model/indicator_virtual_dashboard.c b/examples/indicator_matter/main/model/indicator_virtual_dashboard.c index 6af3409..4ad7ce8 100644 --- a/examples/indicator_matter/main/model/indicator_virtual_dashboard.c +++ b/examples/indicator_matter/main/model/indicator_virtual_dashboard.c @@ -110,11 +110,11 @@ static void __dashboard_data_restore() ESP_LOGI(TAG, "matter dashboard storage read err:%d", ret); } - dashboard_data.arc_value = 0; + dashboard_data.arc_value = 1; dashboard_data.switch_state = false; dashboard_data.button1 = false; dashboard_data.button2 = false; - dashboard_data.slider_value = 0; + dashboard_data.slider_value = 1; __dashboard_data_set(&dashboard_data); } } @@ -125,7 +125,6 @@ int indicator_virtual_dashboard_init(void) memset(&__g_virtual_dashboard, 0, sizeof(__g_virtual_dashboard)); __dashboard_data_restore(); - ESP_LOGI(TAG, "Dimmer switch: esp_matter_attr_val_t value is %d", (int)__g_virtual_dashboard.button1); ESP_ERROR_CHECK(esp_event_handler_instance_register_with(view_event_handle, VIEW_EVENT_BASE, VIEW_EVENT_MATTER_DASHBOARD_DATA, __view_event_handler, NULL, NULL)); diff --git a/examples/indicator_matter/main/ui/ui.c b/examples/indicator_matter/main/ui/ui.c index 2fb4297..dff009a 100644 --- a/examples/indicator_matter/main/ui/ui.c +++ b/examples/indicator_matter/main/ui/ui.c @@ -1445,12 +1445,14 @@ void ui_screen_matter_screen_init() lv_obj_set_style_bg_opa(ui_slider_with_value_panel, 255, LV_PART_MAIN| LV_STATE_DEFAULT); ui_arc = lv_arc_create(ui_slider_with_value_panel); + lv_obj_set_width( ui_arc, 100); lv_obj_set_height( ui_arc, 100); lv_obj_set_y( ui_arc, 3 ); lv_obj_set_x( ui_arc, lv_pct(1) ); lv_arc_set_value( ui_arc, dashboard_data.arc_value ); lv_obj_set_align( ui_arc, LV_ALIGN_CENTER ); + lv_arc_set_range(ui_arc, 1, 100); lv_obj_set_style_arc_color(ui_arc, lv_color_hex(0x529D53), LV_PART_INDICATOR | LV_STATE_DEFAULT ); lv_obj_set_style_arc_opa(ui_arc, 255, LV_PART_INDICATOR| LV_STATE_DEFAULT); lv_obj_set_style_bg_color(ui_arc, lv_color_hex(0xFFFFFF), LV_PART_KNOB | LV_STATE_DEFAULT ); @@ -1554,10 +1556,10 @@ void ui_screen_matter_screen_init() lv_obj_set_style_bg_opa(ui_slider_panel, 255, LV_PART_MAIN| LV_STATE_DEFAULT); ui_slider1 = lv_slider_create(ui_slider_panel); - lv_slider_set_range(ui_slider1, 0, 100); if (lv_slider_get_mode(ui_slider1)==LV_SLIDER_MODE_RANGE ) lv_slider_set_left_value( ui_slider1, 0, LV_ANIM_OFF); lv_obj_set_width( ui_slider1, 391); lv_obj_set_height( ui_slider1, 10); + lv_slider_set_range(ui_slider1, 1, 100); lv_obj_set_x( ui_slider1, 1 ); lv_obj_set_y( ui_slider1, -5 ); lv_obj_set_align( ui_slider1, LV_ALIGN_CENTER ); From 0a2e49a481f5867306c6175c12de522df120da6d Mon Sep 17 00:00:00 2001 From: Tim Lovett Date: Wed, 30 Aug 2023 07:05:33 -0400 Subject: [PATCH 05/11] Adjust logic to use color_temperature_light in place of dimmable_plugin_unit for compatibility --- .../main/model/indicator_matter.cpp | 44 +++++++++---------- 1 file changed, 22 insertions(+), 22 deletions(-) diff --git a/examples/indicator_matter/main/model/indicator_matter.cpp b/examples/indicator_matter/main/model/indicator_matter.cpp index 4449c02..75107db 100644 --- a/examples/indicator_matter/main/model/indicator_matter.cpp +++ b/examples/indicator_matter/main/model/indicator_matter.cpp @@ -18,9 +18,9 @@ static const char *TAG = "matter"; uint16_t temperature_endpoint_id = 0; uint16_t humidity_endpoint_id = 0; -uint16_t dimmable_plugin_unit_endpoint_id = 0; +uint16_t color_temperature_light_endpoint_id = 0; uint16_t door_lock_endpoint_id = 0; -uint16_t dimmable_plugin_unit_endpoint2_id = 0; +uint16_t color_temperature_light_endpoint2_id = 0; static bool __g_matter_connected_flag = false; static bool __g_ip_connected_flag = false; static int __g_humidity = 0; @@ -166,7 +166,7 @@ static esp_err_t app_attribute_update_cb(attribute::callback_type_t type, uint16 esp_err_t err = ESP_OK; if (type == PRE_UPDATE) { esp_err_t err = ESP_OK; - if (endpoint_id == dimmable_plugin_unit_endpoint_id) { + if (endpoint_id == color_temperature_light_endpoint_id) { if (cluster_id == OnOff::Id) { if (attribute_id == OnOff::Attributes::OnOff::Id) { struct view_data_matter_dashboard_data data; @@ -184,7 +184,7 @@ static esp_err_t app_attribute_update_cb(attribute::callback_type_t type, uint16 &data, sizeof(struct view_data_matter_dashboard_data ), portMAX_DELAY); } } - } else if (endpoint_id == dimmable_plugin_unit_endpoint2_id) { + } else if (endpoint_id == color_temperature_light_endpoint2_id) { if (cluster_id == OnOff::Id) { if (attribute_id == OnOff::Attributes::OnOff::Id) { struct view_data_matter_dashboard_data data; @@ -281,7 +281,7 @@ static void __view_event_handler(void* handler_args, esp_event_base_t base, int3 switch (p_data->dashboard_data_type) { case DASHBOARD_DATA_ARC: { - uint16_t endpoint_id = dimmable_plugin_unit_endpoint_id; + uint16_t endpoint_id = color_temperature_light_endpoint_id; uint32_t cluster_id = LevelControl::Id; uint32_t attribute_id = LevelControl::Attributes::CurrentLevel::Id; @@ -314,7 +314,7 @@ static void __view_event_handler(void* handler_args, esp_event_base_t base, int3 break; } case DASHBOARD_DATA_SLIDER: { - uint16_t endpoint_id = dimmable_plugin_unit_endpoint2_id; + uint16_t endpoint_id = color_temperature_light_endpoint2_id; uint32_t cluster_id = LevelControl::Id; uint32_t attribute_id = LevelControl::Attributes::CurrentLevel::Id; @@ -332,7 +332,7 @@ static void __view_event_handler(void* handler_args, esp_event_base_t base, int3 break; } case DASHBOARD_DATA_BUTTON1: { - uint16_t endpoint_id = dimmable_plugin_unit_endpoint_id; + uint16_t endpoint_id = color_temperature_light_endpoint_id; uint32_t cluster_id = OnOff::Id; uint32_t attribute_id = OnOff::Attributes::OnOff::Id; @@ -350,7 +350,7 @@ static void __view_event_handler(void* handler_args, esp_event_base_t base, int3 break; } case DASHBOARD_DATA_BUTTON2: { - uint16_t endpoint_id = dimmable_plugin_unit_endpoint2_id; + uint16_t endpoint_id = color_temperature_light_endpoint2_id; uint32_t cluster_id = OnOff::Id; uint32_t attribute_id = OnOff::Attributes::OnOff::Id; @@ -421,26 +421,26 @@ int indicator_matter_setup(void) { endpoint_t *humidity_endpoint = humidity_sensor::create(node, &humidity_config, ENDPOINT_FLAG_NONE, NULL); // Create the dimmable light endpoint - dimmable_plugin_unit::config_t dimmable_plugin_unit_config; - dimmable_plugin_unit_config.level_control.lighting.min_level = 1; - dimmable_plugin_unit_config.level_control.lighting.max_level = 100; - endpoint_t *dimmable_plugin_unit_endpoint = dimmable_plugin_unit::create(node, &dimmable_plugin_unit_config, ENDPOINT_FLAG_NONE, NULL); + color_temperature_light::config_t color_temperature_light_config; + color_temperature_light_config.level_control.lighting.min_level = 1; + color_temperature_light_config.level_control.lighting.max_level = 100; + endpoint_t *color_temperature_light_endpoint = color_temperature_light::create(node, &color_temperature_light_config, ENDPOINT_FLAG_NONE, NULL); // Create the contact sensor endpoint door_lock::config_t door_lock_config; endpoint_t *door_lock_endpoint = door_lock::create(node, &door_lock_config, ENDPOINT_FLAG_NONE, NULL); - dimmable_plugin_unit::config_t dimmable_plugin_unit_config2; - dimmable_plugin_unit_config2.level_control.lighting.min_level = 1; - dimmable_plugin_unit_config2.level_control.lighting.max_level = 100; - endpoint_t *dimmable_plugin_unit_endpoint2 = dimmable_plugin_unit::create(node, &dimmable_plugin_unit_config2, ENDPOINT_FLAG_NONE, NULL); + color_temperature_light::config_t color_temperature_light_config2; + color_temperature_light_config2.level_control.lighting.min_level = 1; + color_temperature_light_config2.level_control.lighting.max_level = 100; + endpoint_t *color_temperature_light_endpoint2 = color_temperature_light::create(node, &color_temperature_light_config2, ENDPOINT_FLAG_NONE, NULL); if (!node || !temperature_endpoint || !humidity_endpoint || - !dimmable_plugin_unit_endpoint || + !color_temperature_light_endpoint || !door_lock_endpoint || - !dimmable_plugin_unit_endpoint2 + !color_temperature_light_endpoint2 ) { ESP_LOGE(TAG, "Matter node creation failed"); } @@ -451,14 +451,14 @@ int indicator_matter_setup(void) { humidity_endpoint_id = endpoint::get_id(humidity_endpoint); ESP_LOGI(TAG, "Humidity sensor created with endpoint_id %d", humidity_endpoint_id); - dimmable_plugin_unit_endpoint_id = endpoint::get_id(dimmable_plugin_unit_endpoint); - ESP_LOGI(TAG, "Dimmable light created with endpoint_id %d", dimmable_plugin_unit_endpoint_id); + color_temperature_light_endpoint_id = endpoint::get_id(color_temperature_light_endpoint); + ESP_LOGI(TAG, "Dimmable light created with endpoint_id %d", color_temperature_light_endpoint_id); door_lock_endpoint_id = endpoint::get_id(door_lock_endpoint); ESP_LOGI(TAG, "Door lock created with endpoint_id %d", door_lock_endpoint_id); - dimmable_plugin_unit_endpoint2_id = endpoint::get_id(dimmable_plugin_unit_endpoint2); - ESP_LOGI(TAG, "Dimmable plugin 2 unit created with endpoint_id %d", dimmable_plugin_unit_endpoint2_id); + color_temperature_light_endpoint2_id = endpoint::get_id(color_temperature_light_endpoint2); + ESP_LOGI(TAG, "Dimmable plugin 2 unit created with endpoint_id %d", color_temperature_light_endpoint2_id); #if CHIP_DEVICE_CONFIG_ENABLE_THREAD /* Set OpenThread platform config */ From 6bc7968e39a223c11a4c0eff3e6660859c14e0dd Mon Sep 17 00:00:00 2001 From: Tim Lovett Date: Wed, 30 Aug 2023 17:16:53 -0400 Subject: [PATCH 06/11] Adjustments, explicitly set vid, pid, handle decomission --- .../indicator_matter/main/matter_config.h | 2 + .../main/model/indicator_matter.cpp | 46 +++++++++---------- examples/indicator_matter/sdkconfig.defaults | 2 - 3 files changed, 25 insertions(+), 25 deletions(-) diff --git a/examples/indicator_matter/main/matter_config.h b/examples/indicator_matter/main/matter_config.h index 69bf8d8..e8a6795 100644 --- a/examples/indicator_matter/main/matter_config.h +++ b/examples/indicator_matter/main/matter_config.h @@ -10,6 +10,8 @@ extern "C" { #endif #define MATTER_UPDATE_INTERVAL_IN_SECONDS 10 +#define CHIP_DEVICE_CONFIG_DEVICE_VENDOR_ID 0xFFF1 +#define CHIP_DEVICE_CONFIG_DEVICE_PRODUCT_ID 0x8001 #define CHIP_DEVICE_CONFIG_PRODUCT_NAME "SenseCAP Indicator" #define CHIP_DEVICE_CONFIG_DEVICE_VENDOR_NAME "Seeed Studio" #define CHIP_DEVICE_CONFIG_DEVICE_HARDWARE_VERSION_STRING "v1.0" diff --git a/examples/indicator_matter/main/model/indicator_matter.cpp b/examples/indicator_matter/main/model/indicator_matter.cpp index 75107db..519ee2f 100644 --- a/examples/indicator_matter/main/model/indicator_matter.cpp +++ b/examples/indicator_matter/main/model/indicator_matter.cpp @@ -72,19 +72,6 @@ static int __temperature_value_get(void) static void app_event_cb(const ChipDeviceEvent *event, intptr_t arg) { switch (event->Type) { - case chip::DeviceLayer::DeviceEventType::kServerReady: - ESP_LOGI(TAG, "Server Ready"); - __g_matter_connected_flag = true; - if (__g_matter_connected_flag) { - struct view_data_wifi_st st; - st.rssi = -50; - st.is_connected = true; - esp_event_post_to(view_event_handle, VIEW_EVENT_BASE, VIEW_EVENT_WIFI_ST, &st, sizeof(struct view_data_wifi_st ), portMAX_DELAY); - - uint8_t screen = SCREEN_DASHBOARD; - ESP_ERROR_CHECK(esp_event_post_to(view_event_handle, VIEW_EVENT_BASE, VIEW_EVENT_SCREEN_START, &screen, sizeof(screen), portMAX_DELAY)); - } - break; case chip::DeviceLayer::DeviceEventType::kInterfaceIpAddressChanged: ESP_LOGI(TAG, "IP Interface Address Changed"); if (event->InterfaceIpAddressChanged.Type == chip::DeviceLayer::InterfaceIpChangeType::kIpV6_Assigned || @@ -121,19 +108,21 @@ static void app_event_cb(const ChipDeviceEvent *event, intptr_t arg) case chip::DeviceLayer::DeviceEventType::kFabricRemoved: { ESP_LOGI(TAG, "Fabric removed successfully"); - if (chip::Server::GetInstance().GetFabricTable().FabricCount() == 0) + __g_matter_connected_flag = false; + chip::CommissioningWindowManager & commissionMgr = chip::Server::GetInstance().GetCommissioningWindowManager(); + constexpr auto kTimeoutSeconds = chip::System::Clock::Seconds16(k_timeout_seconds); + if (!commissionMgr.IsCommissioningWindowOpen()) { - chip::CommissioningWindowManager & commissionMgr = chip::Server::GetInstance().GetCommissioningWindowManager(); - constexpr auto kTimeoutSeconds = chip::System::Clock::Seconds16(k_timeout_seconds); - if (!commissionMgr.IsCommissioningWindowOpen()) + CHIP_ERROR err = commissionMgr.OpenBasicCommissioningWindow(kTimeoutSeconds, + chip::CommissioningWindowAdvertisement::kDnssdOnly); + if (err != CHIP_NO_ERROR) { - CHIP_ERROR err = commissionMgr.OpenBasicCommissioningWindow(kTimeoutSeconds, - chip::CommissioningWindowAdvertisement::kDnssdOnly); - if (err != CHIP_NO_ERROR) - { - ESP_LOGE(TAG, "Failed to open commissioning window, err:%" CHIP_ERROR_FORMAT, err.Format()); - } + ESP_LOGE(TAG, "Failed to open commissioning window, err:%" CHIP_ERROR_FORMAT, err.Format()); } + + ESP_LOGI(TAG, "Beginning Matter Provisioning"); + uint8_t screen = SCREEN_MATTER_CONFIG; + ESP_ERROR_CHECK(esp_event_post_to(view_event_handle, VIEW_EVENT_BASE, VIEW_EVENT_SCREEN_START, &screen, sizeof(screen), portMAX_DELAY)); } break; } @@ -147,6 +136,17 @@ static void app_event_cb(const ChipDeviceEvent *event, intptr_t arg) case chip::DeviceLayer::DeviceEventType::kFabricCommitted: ESP_LOGI(TAG, "Fabric is committed"); + + __g_matter_connected_flag = true; + if (__g_matter_connected_flag) { + struct view_data_wifi_st st; + st.rssi = -50; + st.is_connected = true; + esp_event_post_to(view_event_handle, VIEW_EVENT_BASE, VIEW_EVENT_WIFI_ST, &st, sizeof(struct view_data_wifi_st ), portMAX_DELAY); + + uint8_t screen = SCREEN_DASHBOARD; + ESP_ERROR_CHECK(esp_event_post_to(view_event_handle, VIEW_EVENT_BASE, VIEW_EVENT_SCREEN_START, &screen, sizeof(screen), portMAX_DELAY)); + } break; default: break; diff --git a/examples/indicator_matter/sdkconfig.defaults b/examples/indicator_matter/sdkconfig.defaults index 7cd28e2..e30f90c 100644 --- a/examples/indicator_matter/sdkconfig.defaults +++ b/examples/indicator_matter/sdkconfig.defaults @@ -142,9 +142,7 @@ CONFIG_ESP_MATTER_MEM_ALLOC_MODE_EXTERNAL=y CONFIG_BT_NIMBLE_MEM_ALLOC_MODE_EXTERNAL=y CONFIG_BT_NIMBLE_MAX_CONNECTIONS=1 CONFIG_COMPILER_OPTIMIZATION_ASSERTIONS_DISABLE=y -CONFIG_ESP32_WIFI_CACHE_TX_BUFFER_NUM=16 CONFIG_LV_ATTRIBUTE_FAST_MEM_USE_IRAM=y -CONFIG_SPIRAM_TRY_ALLOCATE_WIFI_LWIP=n CONFIG_SPIRAM_MALLOC_ALWAYSINTERNAL=256 CONFIG_SPIRAM_MALLOC_RESERVE_INTERNAL=0 CONFIG_SPIRAM_ALLOW_BSS_SEG_EXTERNAL_MEMORY=y From c61703ad1e378f99aee89ad6014ac3ac28e206fa Mon Sep 17 00:00:00 2001 From: Tim Lovett Date: Thu, 31 Aug 2023 20:16:13 -0400 Subject: [PATCH 07/11] Adjustments to provision callback flows --- .../main/model/indicator_matter.cpp | 78 +++++++++---------- examples/indicator_matter/sdkconfig.defaults | 3 +- 2 files changed, 40 insertions(+), 41 deletions(-) diff --git a/examples/indicator_matter/main/model/indicator_matter.cpp b/examples/indicator_matter/main/model/indicator_matter.cpp index 519ee2f..b858f55 100644 --- a/examples/indicator_matter/main/model/indicator_matter.cpp +++ b/examples/indicator_matter/main/model/indicator_matter.cpp @@ -19,7 +19,7 @@ static const char *TAG = "matter"; uint16_t temperature_endpoint_id = 0; uint16_t humidity_endpoint_id = 0; uint16_t color_temperature_light_endpoint_id = 0; -uint16_t door_lock_endpoint_id = 0; +uint16_t on_off_light_endpoint_id = 0; uint16_t color_temperature_light_endpoint2_id = 0; static bool __g_matter_connected_flag = false; static bool __g_ip_connected_flag = false; @@ -77,6 +77,11 @@ static void app_event_cb(const ChipDeviceEvent *event, intptr_t arg) if (event->InterfaceIpAddressChanged.Type == chip::DeviceLayer::InterfaceIpChangeType::kIpV6_Assigned || event->InterfaceIpAddressChanged.Type == chip::DeviceLayer::InterfaceIpChangeType::kIpV4_Assigned) { __g_ip_connected_flag = true; + + struct view_data_wifi_st st; + st.rssi = -50; + st.is_connected = true; + esp_event_post_to(view_event_handle, VIEW_EVENT_BASE, VIEW_EVENT_WIFI_ST, &st, sizeof(struct view_data_wifi_st ), portMAX_DELAY); } break; case chip::DeviceLayer::DeviceEventType::kCommissioningComplete: { @@ -107,23 +112,23 @@ static void app_event_cb(const ChipDeviceEvent *event, intptr_t arg) } case chip::DeviceLayer::DeviceEventType::kFabricRemoved: { - ESP_LOGI(TAG, "Fabric removed successfully"); - __g_matter_connected_flag = false; - chip::CommissioningWindowManager & commissionMgr = chip::Server::GetInstance().GetCommissioningWindowManager(); - constexpr auto kTimeoutSeconds = chip::System::Clock::Seconds16(k_timeout_seconds); - if (!commissionMgr.IsCommissioningWindowOpen()) + ESP_LOGI(TAG, "Fabric removed successfully"); + __g_matter_connected_flag = false; + chip::CommissioningWindowManager & commissionMgr = chip::Server::GetInstance().GetCommissioningWindowManager(); + constexpr auto kTimeoutSeconds = chip::System::Clock::Seconds16(k_timeout_seconds); + if (!commissionMgr.IsCommissioningWindowOpen()) + { + CHIP_ERROR err = commissionMgr.OpenBasicCommissioningWindow(kTimeoutSeconds, + chip::CommissioningWindowAdvertisement::kDnssdOnly); + if (err != CHIP_NO_ERROR) { - CHIP_ERROR err = commissionMgr.OpenBasicCommissioningWindow(kTimeoutSeconds, - chip::CommissioningWindowAdvertisement::kDnssdOnly); - if (err != CHIP_NO_ERROR) - { - ESP_LOGE(TAG, "Failed to open commissioning window, err:%" CHIP_ERROR_FORMAT, err.Format()); - } - - ESP_LOGI(TAG, "Beginning Matter Provisioning"); - uint8_t screen = SCREEN_MATTER_CONFIG; - ESP_ERROR_CHECK(esp_event_post_to(view_event_handle, VIEW_EVENT_BASE, VIEW_EVENT_SCREEN_START, &screen, sizeof(screen), portMAX_DELAY)); + ESP_LOGE(TAG, "Failed to open commissioning window, err:%" CHIP_ERROR_FORMAT, err.Format()); } + } + + ESP_LOGI(TAG, "Beginning Matter Provisioning"); + uint8_t screen = SCREEN_MATTER_CONFIG; + ESP_ERROR_CHECK(esp_event_post_to(view_event_handle, VIEW_EVENT_BASE, VIEW_EVENT_SCREEN_START, &screen, sizeof(screen), portMAX_DELAY)); break; } case chip::DeviceLayer::DeviceEventType::kFabricWillBeRemoved: @@ -135,19 +140,14 @@ static void app_event_cb(const ChipDeviceEvent *event, intptr_t arg) break; case chip::DeviceLayer::DeviceEventType::kFabricCommitted: + { ESP_LOGI(TAG, "Fabric is committed"); __g_matter_connected_flag = true; - if (__g_matter_connected_flag) { - struct view_data_wifi_st st; - st.rssi = -50; - st.is_connected = true; - esp_event_post_to(view_event_handle, VIEW_EVENT_BASE, VIEW_EVENT_WIFI_ST, &st, sizeof(struct view_data_wifi_st ), portMAX_DELAY); - - uint8_t screen = SCREEN_DASHBOARD; - ESP_ERROR_CHECK(esp_event_post_to(view_event_handle, VIEW_EVENT_BASE, VIEW_EVENT_SCREEN_START, &screen, sizeof(screen), portMAX_DELAY)); - } + uint8_t screen = SCREEN_DASHBOARD; + ESP_ERROR_CHECK(esp_event_post_to(view_event_handle, VIEW_EVENT_BASE, VIEW_EVENT_SCREEN_START, &screen, sizeof(screen), portMAX_DELAY)); break; + } default: break; } @@ -203,9 +203,9 @@ static esp_err_t app_attribute_update_cb(attribute::callback_type_t type, uint16 &data, sizeof(struct view_data_matter_dashboard_data ), portMAX_DELAY); } } - } else if (endpoint_id == door_lock_endpoint_id) { - if (cluster_id == DoorLock::Id) { - if (attribute_id == DoorLock::Attributes::LockState::Id) { + } else if (endpoint_id == on_off_light_endpoint_id) { + if (cluster_id == OnOff::Id) { + if (attribute_id == OnOff::Attributes::OnOff::Id) { struct view_data_matter_dashboard_data data; data.dashboard_data_type = DASHBOARD_DATA_SWITCH; data.value = (int)val->val.b; @@ -221,7 +221,7 @@ static esp_err_t app_attribute_update_cb(attribute::callback_type_t type, uint16 } static void __matter_temperature_reporter(void* arg) { - if (__g_matter_connected_flag && __g_ip_connected_flag) { + if (__g_matter_connected_flag) { uint16_t endpoint_id = temperature_endpoint_id; uint32_t cluster_id = TemperatureMeasurement::Id; uint32_t attribute_id = TemperatureMeasurement::Attributes::MeasuredValue::Id; @@ -243,7 +243,7 @@ static void __matter_temperature_reporter(void* arg) { } static void __matter_humidity_reporter(void* arg) { - if (__g_matter_connected_flag && __g_ip_connected_flag) { + if (__g_matter_connected_flag) { uint16_t endpoint_id = humidity_endpoint_id; uint32_t cluster_id = RelativeHumidityMeasurement::Id; uint32_t attribute_id = RelativeHumidityMeasurement::Attributes::MeasuredValue::Id; @@ -298,9 +298,9 @@ static void __view_event_handler(void* handler_args, esp_event_base_t base, int3 break; } case DASHBOARD_DATA_SWITCH: { - uint16_t endpoint_id = door_lock_endpoint_id; - uint32_t cluster_id = DoorLock::Id; - uint32_t attribute_id = DoorLock::Attributes::LockState::Id; + uint16_t endpoint_id = on_off_light_endpoint_id; + uint32_t cluster_id = OnOff::Id; + uint32_t attribute_id = OnOff::Attributes::OnOff::Id; node_t *node = node::get(); endpoint_t *endpoint = endpoint::get(node, endpoint_id); cluster_t *cluster = cluster::get(endpoint, cluster_id); @@ -407,7 +407,7 @@ static void __view_event_handler(void* handler_args, esp_event_base_t base, int3 int indicator_matter_setup(void) { esp_err_t err = ESP_OK; - __g_matter_connected_flag = chip::DeviceLayer::Internal::ESP32Utils::IsStationProvisioned(); + __g_matter_connected_flag = chip::Server::GetInstance().GetFabricTable().FabricCount() > 0; __g_matter_mutex = xSemaphoreCreateMutex(); node::config_t node_config; node_t *node = node::create(&node_config, app_attribute_update_cb, app_identification_cb); @@ -427,8 +427,8 @@ int indicator_matter_setup(void) { endpoint_t *color_temperature_light_endpoint = color_temperature_light::create(node, &color_temperature_light_config, ENDPOINT_FLAG_NONE, NULL); // Create the contact sensor endpoint - door_lock::config_t door_lock_config; - endpoint_t *door_lock_endpoint = door_lock::create(node, &door_lock_config, ENDPOINT_FLAG_NONE, NULL); + on_off_light::config_t on_off_light_config; + endpoint_t *on_off_light_endpoint = on_off_light::create(node, &on_off_light_config, ENDPOINT_FLAG_NONE, NULL); color_temperature_light::config_t color_temperature_light_config2; color_temperature_light_config2.level_control.lighting.min_level = 1; @@ -439,7 +439,7 @@ int indicator_matter_setup(void) { !temperature_endpoint || !humidity_endpoint || !color_temperature_light_endpoint || - !door_lock_endpoint || + !on_off_light_endpoint || !color_temperature_light_endpoint2 ) { ESP_LOGE(TAG, "Matter node creation failed"); @@ -454,8 +454,8 @@ int indicator_matter_setup(void) { color_temperature_light_endpoint_id = endpoint::get_id(color_temperature_light_endpoint); ESP_LOGI(TAG, "Dimmable light created with endpoint_id %d", color_temperature_light_endpoint_id); - door_lock_endpoint_id = endpoint::get_id(door_lock_endpoint); - ESP_LOGI(TAG, "Door lock created with endpoint_id %d", door_lock_endpoint_id); + on_off_light_endpoint_id = endpoint::get_id(on_off_light_endpoint); + ESP_LOGI(TAG, "Door lock created with endpoint_id %d", on_off_light_endpoint_id); color_temperature_light_endpoint2_id = endpoint::get_id(color_temperature_light_endpoint2); ESP_LOGI(TAG, "Dimmable plugin 2 unit created with endpoint_id %d", color_temperature_light_endpoint2_id); diff --git a/examples/indicator_matter/sdkconfig.defaults b/examples/indicator_matter/sdkconfig.defaults index e30f90c..4af7b2d 100644 --- a/examples/indicator_matter/sdkconfig.defaults +++ b/examples/indicator_matter/sdkconfig.defaults @@ -143,8 +143,7 @@ CONFIG_BT_NIMBLE_MEM_ALLOC_MODE_EXTERNAL=y CONFIG_BT_NIMBLE_MAX_CONNECTIONS=1 CONFIG_COMPILER_OPTIMIZATION_ASSERTIONS_DISABLE=y CONFIG_LV_ATTRIBUTE_FAST_MEM_USE_IRAM=y -CONFIG_SPIRAM_MALLOC_ALWAYSINTERNAL=256 +CONFIG_SPIRAM_MALLOC_ALWAYSINTERNAL=1024 CONFIG_SPIRAM_MALLOC_RESERVE_INTERNAL=0 -CONFIG_SPIRAM_ALLOW_BSS_SEG_EXTERNAL_MEMORY=y CONFIG_CHIP_PROJECT_CONFIG="main/matter_config.h" \ No newline at end of file From 05b6e9d3eb3f4b9d632ab9fbf11960a813063a9c Mon Sep 17 00:00:00 2001 From: Tim Lovett Date: Thu, 31 Aug 2023 21:13:50 -0400 Subject: [PATCH 08/11] Final adjustments to configuration --- examples/indicator_matter/sdkconfig.defaults | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/examples/indicator_matter/sdkconfig.defaults b/examples/indicator_matter/sdkconfig.defaults index 4af7b2d..125d842 100644 --- a/examples/indicator_matter/sdkconfig.defaults +++ b/examples/indicator_matter/sdkconfig.defaults @@ -142,8 +142,8 @@ CONFIG_ESP_MATTER_MEM_ALLOC_MODE_EXTERNAL=y CONFIG_BT_NIMBLE_MEM_ALLOC_MODE_EXTERNAL=y CONFIG_BT_NIMBLE_MAX_CONNECTIONS=1 CONFIG_COMPILER_OPTIMIZATION_ASSERTIONS_DISABLE=y -CONFIG_LV_ATTRIBUTE_FAST_MEM_USE_IRAM=y -CONFIG_SPIRAM_MALLOC_ALWAYSINTERNAL=1024 +CONFIG_LV_ATTRIBUTE_FAST_MEM_USE_IRAM=n +CONFIG_SPIRAM_MALLOC_ALWAYSINTERNAL=256 CONFIG_SPIRAM_MALLOC_RESERVE_INTERNAL=0 CONFIG_CHIP_PROJECT_CONFIG="main/matter_config.h" \ No newline at end of file From 7901e52367e600d6fdcf7a4c0df7a2973280e8f2 Mon Sep 17 00:00:00 2001 From: Tim Lovett Date: Thu, 31 Aug 2023 21:45:01 -0400 Subject: [PATCH 09/11] Increase CONFIG_MAX_EVENT_QUEUE_SIZE --- examples/indicator_matter/sdkconfig.defaults | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/examples/indicator_matter/sdkconfig.defaults b/examples/indicator_matter/sdkconfig.defaults index 125d842..5c36de2 100644 --- a/examples/indicator_matter/sdkconfig.defaults +++ b/examples/indicator_matter/sdkconfig.defaults @@ -143,7 +143,8 @@ CONFIG_BT_NIMBLE_MEM_ALLOC_MODE_EXTERNAL=y CONFIG_BT_NIMBLE_MAX_CONNECTIONS=1 CONFIG_COMPILER_OPTIMIZATION_ASSERTIONS_DISABLE=y CONFIG_LV_ATTRIBUTE_FAST_MEM_USE_IRAM=n -CONFIG_SPIRAM_MALLOC_ALWAYSINTERNAL=256 +CONFIG_SPIRAM_MALLOC_ALWAYSINTERNAL=1000 CONFIG_SPIRAM_MALLOC_RESERVE_INTERNAL=0 +CONFIG_MAX_EVENT_QUEUE_SIZE=32 CONFIG_CHIP_PROJECT_CONFIG="main/matter_config.h" \ No newline at end of file From b2ed538822657a6f9516041a72854103a675f6b2 Mon Sep 17 00:00:00 2001 From: Tim Lovett Date: Sat, 2 Sep 2023 00:24:42 -0400 Subject: [PATCH 10/11] Reduce memory usage by removing history section --- .../main/controller/indicator_controller.c | 47 -- .../indicator_matter/main/matter_config.h | 3 +- .../main/model/indicator_matter.cpp | 227 ++++-- .../main/model/indicator_matter.h | 2 + .../main/model/indicator_sensor.c | 765 ------------------ examples/indicator_matter/main/ui/ui.c | 127 --- examples/indicator_matter/main/ui/ui.h | 11 - .../main/view/indicator_view.c | 336 -------- examples/indicator_matter/main/view_data.h | 22 - examples/indicator_matter/sdkconfig.defaults | 4 +- 10 files changed, 146 insertions(+), 1398 deletions(-) diff --git a/examples/indicator_matter/main/controller/indicator_controller.c b/examples/indicator_matter/main/controller/indicator_controller.c index 1291f87..eab4ba1 100644 --- a/examples/indicator_matter/main/controller/indicator_controller.c +++ b/examples/indicator_matter/main/controller/indicator_controller.c @@ -251,57 +251,10 @@ static void __display_cfg_event_init(void) lv_obj_add_event_cb(ui_back1, __display_cfg_apply_event_cb, LV_EVENT_PRESSED, NULL); } - -/********************** sensor chart **********************/ - -static void ui_event_sensor_co2_chart( lv_event_t * e) { - lv_event_code_t event_code = lv_event_get_code(e);lv_obj_t * target = lv_event_get_target(e); - lv_obj_t * cur_screen = lv_scr_act(); -if ( event_code == LV_EVENT_CLICKED && cur_screen == ui_screen_sensor ) { - esp_event_post_to(view_event_handle, VIEW_EVENT_BASE, VIEW_EVENT_SENSOR_CO2_HISTORY, NULL, 0, portMAX_DELAY); - - _ui_screen_change( ui_screen_sensor_chart, LV_SCR_LOAD_ANIM_OVER_LEFT, 200, 0); -} -} - -static void ui_event_sensor_tvoc_chart( lv_event_t * e) { - lv_event_code_t event_code = lv_event_get_code(e);lv_obj_t * target = lv_event_get_target(e); - lv_obj_t * cur_screen = lv_scr_act(); -if ( event_code == LV_EVENT_CLICKED && cur_screen == ui_screen_sensor ) { - esp_event_post_to(view_event_handle, VIEW_EVENT_BASE, VIEW_EVENT_SENSOR_TVOC_HISTORY, NULL, 0, portMAX_DELAY); - _ui_screen_change( ui_screen_sensor_chart, LV_SCR_LOAD_ANIM_OVER_LEFT, 200, 0); -} -} -static void ui_event_sensor_temp_chart( lv_event_t * e) { - lv_event_code_t event_code = lv_event_get_code(e);lv_obj_t * target = lv_event_get_target(e); - lv_obj_t * cur_screen = lv_scr_act(); -if ( event_code == LV_EVENT_CLICKED && cur_screen == ui_screen_sensor ) { - esp_event_post_to(view_event_handle, VIEW_EVENT_BASE, VIEW_EVENT_SENSOR_TEMP_HISTORY, NULL, 0, portMAX_DELAY); - _ui_screen_change( ui_screen_sensor_chart, LV_SCR_LOAD_ANIM_OVER_LEFT, 200, 0); -} -} -static void ui_event_sensor_humidity_chart( lv_event_t * e) { - lv_event_code_t event_code = lv_event_get_code(e);lv_obj_t * target = lv_event_get_target(e); - lv_obj_t * cur_screen = lv_scr_act(); -if ( event_code == LV_EVENT_CLICKED && cur_screen == ui_screen_sensor ) { - esp_event_post_to(view_event_handle, VIEW_EVENT_BASE, VIEW_EVENT_SENSOR_HUMIDITY_HISTORY, NULL, 0, portMAX_DELAY); - _ui_screen_change( ui_screen_sensor_chart, LV_SCR_LOAD_ANIM_OVER_LEFT, 200, 0); -} -} - -static void __sensor_chart_event_init(void) -{ - lv_obj_add_event_cb(ui_co2, ui_event_sensor_co2_chart, LV_EVENT_ALL, NULL); - lv_obj_add_event_cb(ui_tvoc_2, ui_event_sensor_tvoc_chart, LV_EVENT_ALL, NULL); - lv_obj_add_event_cb(ui_temp2, ui_event_sensor_temp_chart, LV_EVENT_ALL, NULL); - lv_obj_add_event_cb(ui_humidity2, ui_event_sensor_humidity_chart, LV_EVENT_ALL, NULL); -} - int indicator_controller_init(void) { __time_cfg_event_init(); __display_cfg_event_init(); - __sensor_chart_event_init(); return 0; } \ No newline at end of file diff --git a/examples/indicator_matter/main/matter_config.h b/examples/indicator_matter/main/matter_config.h index e8a6795..2094025 100644 --- a/examples/indicator_matter/main/matter_config.h +++ b/examples/indicator_matter/main/matter_config.h @@ -9,10 +9,9 @@ extern "C" { #endif -#define MATTER_UPDATE_INTERVAL_IN_SECONDS 10 +#define MATTER_UPDATE_INTERVAL_IN_SECONDS 10 #define CHIP_DEVICE_CONFIG_DEVICE_VENDOR_ID 0xFFF1 #define CHIP_DEVICE_CONFIG_DEVICE_PRODUCT_ID 0x8001 -#define CHIP_DEVICE_CONFIG_PRODUCT_NAME "SenseCAP Indicator" #define CHIP_DEVICE_CONFIG_DEVICE_VENDOR_NAME "Seeed Studio" #define CHIP_DEVICE_CONFIG_DEVICE_HARDWARE_VERSION_STRING "v1.0" #define CHIP_DEVICE_CONFIG_USE_TEST_SETUP_PIN_CODE 20202021 diff --git a/examples/indicator_matter/main/model/indicator_matter.cpp b/examples/indicator_matter/main/model/indicator_matter.cpp index b858f55..b234c61 100644 --- a/examples/indicator_matter/main/model/indicator_matter.cpp +++ b/examples/indicator_matter/main/model/indicator_matter.cpp @@ -18,15 +18,16 @@ static const char *TAG = "matter"; uint16_t temperature_endpoint_id = 0; uint16_t humidity_endpoint_id = 0; -uint16_t color_temperature_light_endpoint_id = 0; -uint16_t on_off_light_endpoint_id = 0; -uint16_t color_temperature_light_endpoint2_id = 0; +uint16_t extended_color_light_endpoint_id = 0; +uint16_t door_lock_endpoint_id = 0; +uint16_t extended_color_light_endpoint2_id = 0; static bool __g_matter_connected_flag = false; static bool __g_ip_connected_flag = false; static int __g_humidity = 0; static int __g_temperature = 0; constexpr auto k_timeout_seconds = 300; static SemaphoreHandle_t __g_matter_mutex; +static SemaphoreHandle_t __g_matter_data_mutex; static esp_timer_handle_t matter_humidity_timer_handle; static esp_timer_handle_t matter_temperature_timer_handle; @@ -36,39 +37,52 @@ using namespace esp_matter::endpoint; using namespace chip::app::Clusters; using namespace esp_matter::cluster::basic_information::attribute; - - static void __humidity_value_set( int h ) { - xSemaphoreTake(__g_matter_mutex, portMAX_DELAY); + xSemaphoreTake(__g_matter_data_mutex, portMAX_DELAY); __g_humidity = h; - xSemaphoreGive(__g_matter_mutex); + xSemaphoreGive(__g_matter_data_mutex); } static int __humidity_value_get(void) { - xSemaphoreTake(__g_matter_mutex, portMAX_DELAY); + xSemaphoreTake(__g_matter_data_mutex, portMAX_DELAY); int h = __g_humidity; - xSemaphoreGive(__g_matter_mutex); + xSemaphoreGive(__g_matter_data_mutex); return h; } static void __temperature_value_set( int t ) { - xSemaphoreTake(__g_matter_mutex, portMAX_DELAY); + xSemaphoreTake(__g_matter_data_mutex, portMAX_DELAY); int value = t; __g_temperature = value; - xSemaphoreGive(__g_matter_mutex); + xSemaphoreGive(__g_matter_data_mutex); } static int __temperature_value_get(void) { - xSemaphoreTake(__g_matter_mutex, portMAX_DELAY); + xSemaphoreTake(__g_matter_data_mutex, portMAX_DELAY); int t = __g_temperature; - xSemaphoreGive(__g_matter_mutex); + xSemaphoreGive(__g_matter_data_mutex); return t; } +static void __g_matter_connected_flag_set( bool s ) +{ + xSemaphoreTake(__g_matter_mutex, portMAX_DELAY); + __g_matter_connected_flag = s; + xSemaphoreGive(__g_matter_mutex); +} + +static bool __g_matter_connected_flag_get( void ) +{ + xSemaphoreTake(__g_matter_mutex, portMAX_DELAY); + bool s = __g_matter_connected_flag; + xSemaphoreGive(__g_matter_mutex); + return s; +} + static void app_event_cb(const ChipDeviceEvent *event, intptr_t arg) { switch (event->Type) { @@ -86,7 +100,7 @@ static void app_event_cb(const ChipDeviceEvent *event, intptr_t arg) break; case chip::DeviceLayer::DeviceEventType::kCommissioningComplete: { ESP_LOGI(TAG, "Connected"); - __g_matter_connected_flag = true; + __g_matter_connected_flag_set(true); break; } case chip::DeviceLayer::DeviceEventType::kFailSafeTimerExpired: @@ -113,7 +127,7 @@ static void app_event_cb(const ChipDeviceEvent *event, intptr_t arg) case chip::DeviceLayer::DeviceEventType::kFabricRemoved: { ESP_LOGI(TAG, "Fabric removed successfully"); - __g_matter_connected_flag = false; + __g_matter_connected_flag_set(false); chip::CommissioningWindowManager & commissionMgr = chip::Server::GetInstance().GetCommissioningWindowManager(); constexpr auto kTimeoutSeconds = chip::System::Clock::Seconds16(k_timeout_seconds); if (!commissionMgr.IsCommissioningWindowOpen()) @@ -143,7 +157,7 @@ static void app_event_cb(const ChipDeviceEvent *event, intptr_t arg) { ESP_LOGI(TAG, "Fabric is committed"); - __g_matter_connected_flag = true; + __g_matter_connected_flag_set(true); uint8_t screen = SCREEN_DASHBOARD; ESP_ERROR_CHECK(esp_event_post_to(view_event_handle, VIEW_EVENT_BASE, VIEW_EVENT_SCREEN_START, &screen, sizeof(screen), portMAX_DELAY)); break; @@ -166,7 +180,7 @@ static esp_err_t app_attribute_update_cb(attribute::callback_type_t type, uint16 esp_err_t err = ESP_OK; if (type == PRE_UPDATE) { esp_err_t err = ESP_OK; - if (endpoint_id == color_temperature_light_endpoint_id) { + if (endpoint_id == extended_color_light_endpoint_id) { if (cluster_id == OnOff::Id) { if (attribute_id == OnOff::Attributes::OnOff::Id) { struct view_data_matter_dashboard_data data; @@ -179,12 +193,22 @@ static esp_err_t app_attribute_update_cb(attribute::callback_type_t type, uint16 if (attribute_id == LevelControl::Attributes::CurrentLevel::Id) { struct view_data_matter_dashboard_data data; data.dashboard_data_type = DASHBOARD_DATA_ARC; - data.value = val->val.i; + data.value = REMAP_TO_RANGE(val->val.u8, MATTER_BRIGHTNESS, STANDARD_BRIGHTNESS); esp_event_post_to(view_event_handle, VIEW_EVENT_BASE, VIEW_EVENT_MATTER_SET_DASHBOARD_DATA, \ &data, sizeof(struct view_data_matter_dashboard_data ), portMAX_DELAY); + + struct view_data_matter_dashboard_data on_data; + on_data.dashboard_data_type = DASHBOARD_DATA_BUTTON1; + if (val->val.u8 > 0) { + on_data.value = 1; + } else { + on_data.value = 0; + } + esp_event_post_to(view_event_handle, VIEW_EVENT_BASE, VIEW_EVENT_MATTER_SET_DASHBOARD_DATA, \ + &on_data, sizeof(struct view_data_matter_dashboard_data ), portMAX_DELAY); } } - } else if (endpoint_id == color_temperature_light_endpoint2_id) { + } else if (endpoint_id == extended_color_light_endpoint2_id) { if (cluster_id == OnOff::Id) { if (attribute_id == OnOff::Attributes::OnOff::Id) { struct view_data_matter_dashboard_data data; @@ -198,14 +222,24 @@ static esp_err_t app_attribute_update_cb(attribute::callback_type_t type, uint16 if (attribute_id == LevelControl::Attributes::CurrentLevel::Id) { struct view_data_matter_dashboard_data data; data.dashboard_data_type = DASHBOARD_DATA_SLIDER; - data.value = val->val.i; + data.value = REMAP_TO_RANGE(val->val.u8, MATTER_BRIGHTNESS, STANDARD_BRIGHTNESS); esp_event_post_to(view_event_handle, VIEW_EVENT_BASE, VIEW_EVENT_MATTER_SET_DASHBOARD_DATA, \ - &data, sizeof(struct view_data_matter_dashboard_data ), portMAX_DELAY); + &data, sizeof(struct view_data_matter_dashboard_data ), portMAX_DELAY); + + struct view_data_matter_dashboard_data on_data; + on_data.dashboard_data_type = DASHBOARD_DATA_BUTTON2; + if (val->val.u8 > 0) { + on_data.value = 1; + } else { + on_data.value = 0; + } + esp_event_post_to(view_event_handle, VIEW_EVENT_BASE, VIEW_EVENT_MATTER_SET_DASHBOARD_DATA, \ + &on_data, sizeof(struct view_data_matter_dashboard_data ), portMAX_DELAY); } } - } else if (endpoint_id == on_off_light_endpoint_id) { - if (cluster_id == OnOff::Id) { - if (attribute_id == OnOff::Attributes::OnOff::Id) { + } else if (endpoint_id == door_lock_endpoint_id) { + if (cluster_id == DoorLock::Id) { + if (attribute_id == DoorLock::Attributes::LockState::Id) { struct view_data_matter_dashboard_data data; data.dashboard_data_type = DASHBOARD_DATA_SWITCH; data.value = (int)val->val.b; @@ -221,7 +255,7 @@ static esp_err_t app_attribute_update_cb(attribute::callback_type_t type, uint16 } static void __matter_temperature_reporter(void* arg) { - if (__g_matter_connected_flag) { + if (__g_matter_connected_flag_get()) { uint16_t endpoint_id = temperature_endpoint_id; uint32_t cluster_id = TemperatureMeasurement::Id; uint32_t attribute_id = TemperatureMeasurement::Attributes::MeasuredValue::Id; @@ -243,7 +277,7 @@ static void __matter_temperature_reporter(void* arg) { } static void __matter_humidity_reporter(void* arg) { - if (__g_matter_connected_flag) { + if (__g_matter_connected_flag_get()) { uint16_t endpoint_id = humidity_endpoint_id; uint32_t cluster_id = RelativeHumidityMeasurement::Id; uint32_t attribute_id = RelativeHumidityMeasurement::Attributes::MeasuredValue::Id; @@ -263,6 +297,42 @@ static void __matter_humidity_reporter(void* arg) { } } +static void __button2_callback(bool state) { + uint16_t endpoint_id = extended_color_light_endpoint2_id; + uint32_t cluster_id = OnOff::Id; + uint32_t attribute_id = OnOff::Attributes::OnOff::Id; + + node_t *node = node::get(); + endpoint_t *endpoint = endpoint::get(node, endpoint_id); + cluster_t *cluster = cluster::get(endpoint, cluster_id); + attribute_t *attribute = attribute::get(cluster, attribute_id); + + esp_matter_attr_val_t val = esp_matter_invalid(NULL); + attribute::get_val(attribute, &val); + val.val.b = state; + + ESP_LOGI(TAG, "Dimmer on/off: esp_matter_attr_val_t value is %d", (int)val.val.b); + attribute::update(endpoint_id, cluster_id, attribute_id, &val); +} + +static void __button1_callback(bool state) { + uint16_t endpoint_id = extended_color_light_endpoint_id; + uint32_t cluster_id = OnOff::Id; + uint32_t attribute_id = OnOff::Attributes::OnOff::Id; + + node_t *node = node::get(); + endpoint_t *endpoint = endpoint::get(node, endpoint_id); + cluster_t *cluster = cluster::get(endpoint, cluster_id); + attribute_t *attribute = attribute::get(cluster, attribute_id); + + esp_matter_attr_val_t val = esp_matter_invalid(NULL); + attribute::get_val(attribute, &val); + val.val.b = state; + + ESP_LOGI(TAG, "Dimmer switch: esp_matter_attr_val_t value is %d", (int)val.val.b); + attribute::update(endpoint_id, cluster_id, attribute_id, &val); +} + static void __view_event_handler(void* handler_args, esp_event_base_t base, int32_t id, void* event_data) { switch (id) @@ -273,7 +343,7 @@ static void __view_event_handler(void* handler_args, esp_event_base_t base, int3 } case VIEW_EVENT_MATTER_DASHBOARD_DATA: { ESP_LOGI(TAG, "event: VIEW_EVENT_MATTER_DASHBOARD_DATA"); - if (!__g_matter_connected_flag) { + if (!__g_matter_connected_flag_get()) { return; } struct view_data_matter_dashboard_data *p_data = (struct view_data_matter_dashboard_data *) event_data; @@ -281,7 +351,7 @@ static void __view_event_handler(void* handler_args, esp_event_base_t base, int3 switch (p_data->dashboard_data_type) { case DASHBOARD_DATA_ARC: { - uint16_t endpoint_id = color_temperature_light_endpoint_id; + uint16_t endpoint_id = extended_color_light_endpoint_id; uint32_t cluster_id = LevelControl::Id; uint32_t attribute_id = LevelControl::Attributes::CurrentLevel::Id; @@ -292,15 +362,21 @@ static void __view_event_handler(void* handler_args, esp_event_base_t base, int3 esp_matter_attr_val_t val = esp_matter_invalid(NULL); attribute::get_val(attribute, &val); - val.val.i = p_data->value; + val.val.u8 = REMAP_TO_RANGE(p_data->value, STANDARD_BRIGHTNESS, MATTER_BRIGHTNESS); + if (p_data->value > 0) { + __button1_callback(true); + } else { + __button1_callback(false); + } + ESP_LOGI(TAG, "Dimmer switch: esp_matter_attr_val_t value is %d", val.val.i); attribute::update(endpoint_id, cluster_id, attribute_id, &val); break; } case DASHBOARD_DATA_SWITCH: { - uint16_t endpoint_id = on_off_light_endpoint_id; - uint32_t cluster_id = OnOff::Id; - uint32_t attribute_id = OnOff::Attributes::OnOff::Id; + uint16_t endpoint_id = door_lock_endpoint_id; + uint32_t cluster_id = DoorLock::Id; + uint32_t attribute_id = DoorLock::Attributes::LockState::Id; node_t *node = node::get(); endpoint_t *endpoint = endpoint::get(node, endpoint_id); cluster_t *cluster = cluster::get(endpoint, cluster_id); @@ -314,7 +390,7 @@ static void __view_event_handler(void* handler_args, esp_event_base_t base, int3 break; } case DASHBOARD_DATA_SLIDER: { - uint16_t endpoint_id = color_temperature_light_endpoint2_id; + uint16_t endpoint_id = extended_color_light_endpoint2_id; uint32_t cluster_id = LevelControl::Id; uint32_t attribute_id = LevelControl::Attributes::CurrentLevel::Id; @@ -325,46 +401,23 @@ static void __view_event_handler(void* handler_args, esp_event_base_t base, int3 esp_matter_attr_val_t val = esp_matter_invalid(NULL); attribute::get_val(attribute, &val); - val.val.i = p_data->value; + val.val.u8 = REMAP_TO_RANGE(p_data->value, STANDARD_BRIGHTNESS, MATTER_BRIGHTNESS); + if (p_data->value > 0) { + __button2_callback(true); + } else { + __button2_callback(false); + } ESP_LOGI(TAG, "Dimmer switch: esp_matter_attr_val_t value is %d", val.val.i); attribute::update(endpoint_id, cluster_id, attribute_id, &val); break; } case DASHBOARD_DATA_BUTTON1: { - uint16_t endpoint_id = color_temperature_light_endpoint_id; - uint32_t cluster_id = OnOff::Id; - uint32_t attribute_id = OnOff::Attributes::OnOff::Id; - - node_t *node = node::get(); - endpoint_t *endpoint = endpoint::get(node, endpoint_id); - cluster_t *cluster = cluster::get(endpoint, cluster_id); - attribute_t *attribute = attribute::get(cluster, attribute_id); - - esp_matter_attr_val_t val = esp_matter_invalid(NULL); - attribute::get_val(attribute, &val); - val.val.b = (bool)p_data->value; - - ESP_LOGI(TAG, "Dimmer switch: esp_matter_attr_val_t value is %d", (int)val.val.b); - attribute::update(endpoint_id, cluster_id, attribute_id, &val); + __button1_callback((bool)p_data->value); break; } case DASHBOARD_DATA_BUTTON2: { - uint16_t endpoint_id = color_temperature_light_endpoint2_id; - uint32_t cluster_id = OnOff::Id; - uint32_t attribute_id = OnOff::Attributes::OnOff::Id; - - node_t *node = node::get(); - endpoint_t *endpoint = endpoint::get(node, endpoint_id); - cluster_t *cluster = cluster::get(endpoint, cluster_id); - attribute_t *attribute = attribute::get(cluster, attribute_id); - - esp_matter_attr_val_t val = esp_matter_invalid(NULL); - attribute::get_val(attribute, &val); - val.val.b = (bool)p_data->value; - - ESP_LOGI(TAG, "Dimmer on/off: esp_matter_attr_val_t value is %d", (int)val.val.b); - attribute::update(endpoint_id, cluster_id, attribute_id, &val); + __button2_callback((bool)p_data->value); break; } default: @@ -407,8 +460,9 @@ static void __view_event_handler(void* handler_args, esp_event_base_t base, int3 int indicator_matter_setup(void) { esp_err_t err = ESP_OK; - __g_matter_connected_flag = chip::Server::GetInstance().GetFabricTable().FabricCount() > 0; __g_matter_mutex = xSemaphoreCreateMutex(); + __g_matter_data_mutex = xSemaphoreCreateMutex(); + __g_matter_connected_flag_set(chip::Server::GetInstance().GetFabricTable().FabricCount() > 0); node::config_t node_config; node_t *node = node::create(&node_config, app_attribute_update_cb, app_identification_cb); @@ -421,26 +475,28 @@ int indicator_matter_setup(void) { endpoint_t *humidity_endpoint = humidity_sensor::create(node, &humidity_config, ENDPOINT_FLAG_NONE, NULL); // Create the dimmable light endpoint - color_temperature_light::config_t color_temperature_light_config; - color_temperature_light_config.level_control.lighting.min_level = 1; - color_temperature_light_config.level_control.lighting.max_level = 100; - endpoint_t *color_temperature_light_endpoint = color_temperature_light::create(node, &color_temperature_light_config, ENDPOINT_FLAG_NONE, NULL); + extended_color_light::config_t extended_color_light_config; + extended_color_light_config.on_off.on_off = false; + extended_color_light_config.level_control.current_level = 1; + extended_color_light_config.level_control.lighting.start_up_current_level = 1; + endpoint_t *extended_color_light_endpoint = extended_color_light::create(node, &extended_color_light_config, ENDPOINT_FLAG_NONE, NULL); // Create the contact sensor endpoint - on_off_light::config_t on_off_light_config; - endpoint_t *on_off_light_endpoint = on_off_light::create(node, &on_off_light_config, ENDPOINT_FLAG_NONE, NULL); + door_lock::config_t door_lock_config; + endpoint_t *door_lock_endpoint = door_lock::create(node, &door_lock_config, ENDPOINT_FLAG_NONE, NULL); - color_temperature_light::config_t color_temperature_light_config2; - color_temperature_light_config2.level_control.lighting.min_level = 1; - color_temperature_light_config2.level_control.lighting.max_level = 100; - endpoint_t *color_temperature_light_endpoint2 = color_temperature_light::create(node, &color_temperature_light_config2, ENDPOINT_FLAG_NONE, NULL); + extended_color_light::config_t extended_color_light_config2; + extended_color_light_config2.on_off.on_off = false; + extended_color_light_config2.level_control.current_level = 1; + extended_color_light_config2.level_control.lighting.start_up_current_level = 1; + endpoint_t *extended_color_light_endpoint2 = extended_color_light::create(node, &extended_color_light_config2, ENDPOINT_FLAG_NONE, NULL); if (!node || !temperature_endpoint || !humidity_endpoint || - !color_temperature_light_endpoint || - !on_off_light_endpoint || - !color_temperature_light_endpoint2 + !extended_color_light_endpoint || + !door_lock_endpoint || + !extended_color_light_endpoint2 ) { ESP_LOGE(TAG, "Matter node creation failed"); } @@ -451,14 +507,14 @@ int indicator_matter_setup(void) { humidity_endpoint_id = endpoint::get_id(humidity_endpoint); ESP_LOGI(TAG, "Humidity sensor created with endpoint_id %d", humidity_endpoint_id); - color_temperature_light_endpoint_id = endpoint::get_id(color_temperature_light_endpoint); - ESP_LOGI(TAG, "Dimmable light created with endpoint_id %d", color_temperature_light_endpoint_id); + extended_color_light_endpoint_id = endpoint::get_id(extended_color_light_endpoint); + ESP_LOGI(TAG, "Dimmable light created with endpoint_id %d", extended_color_light_endpoint_id); - on_off_light_endpoint_id = endpoint::get_id(on_off_light_endpoint); - ESP_LOGI(TAG, "Door lock created with endpoint_id %d", on_off_light_endpoint_id); + door_lock_endpoint_id = endpoint::get_id(door_lock_endpoint); + ESP_LOGI(TAG, "Door lock created with endpoint_id %d", door_lock_endpoint_id); - color_temperature_light_endpoint2_id = endpoint::get_id(color_temperature_light_endpoint2); - ESP_LOGI(TAG, "Dimmable plugin 2 unit created with endpoint_id %d", color_temperature_light_endpoint2_id); + extended_color_light_endpoint2_id = endpoint::get_id(extended_color_light_endpoint2); + ESP_LOGI(TAG, "Dimmable plugin 2 unit created with endpoint_id %d", extended_color_light_endpoint2_id); #if CHIP_DEVICE_CONFIG_ENABLE_THREAD /* Set OpenThread platform config */ @@ -480,8 +536,7 @@ int indicator_matter_setup(void) { } int indicator_matter_init(void) { - __g_matter_connected_flag = chip::DeviceLayer::Internal::ESP32Utils::IsStationProvisioned(); - if (!__g_matter_connected_flag) { + if (!__g_matter_connected_flag_get()) { ESP_LOGI(TAG, "Beginning Matter Provisioning"); uint8_t screen = SCREEN_MATTER_CONFIG; ESP_ERROR_CHECK(esp_event_post_to(view_event_handle, VIEW_EVENT_BASE, VIEW_EVENT_SCREEN_START, &screen, sizeof(screen), portMAX_DELAY)); diff --git a/examples/indicator_matter/main/model/indicator_matter.h b/examples/indicator_matter/main/model/indicator_matter.h index 798ef13..f1ec78a 100644 --- a/examples/indicator_matter/main/model/indicator_matter.h +++ b/examples/indicator_matter/main/model/indicator_matter.h @@ -8,6 +8,8 @@ extern "C" { #endif +#define STANDARD_BRIGHTNESS 100 +#define MATTER_BRIGHTNESS 254 int indicator_matter_setup(void); int indicator_matter_init(void); diff --git a/examples/indicator_matter/main/model/indicator_sensor.c b/examples/indicator_matter/main/model/indicator_sensor.c index 0fb3b83..35fc6cd 100644 --- a/examples/indicator_matter/main/model/indicator_sensor.c +++ b/examples/indicator_matter/main/model/indicator_sensor.c @@ -6,7 +6,6 @@ #include #include "time.h" -#define SENSOR_HISTORY_DATA_DEBUG 0 #define SENSOR_COMM_DEBUG 0 @@ -56,11 +55,6 @@ struct sensor_present_data //time_t day_timestamp; int per_day_cnt; }; -struct sensor_history_data -{ - struct sensor_data_average data_day[24]; - struct sensor_data_minmax data_week[7]; -}; struct indicator_sensor_present_data { @@ -70,511 +64,11 @@ struct indicator_sensor_present_data struct sensor_present_data tvoc; }; - -struct indicator_sensor_history_data -{ - struct sensor_history_data temp; - struct sensor_history_data humidity; - struct sensor_history_data co2; - struct sensor_history_data tvoc; -}; - -struct updata_queue_msg -{ - uint8_t flag; //1 day data, 2 week data - time_t time; -}; - -#define SENSOR_HISTORY_DATA_STORAGE "sensor-data" - static const char *TAG = "sensor-model"; static SemaphoreHandle_t __g_data_mutex; - -static struct indicator_sensor_history_data __g_sensor_history_data; static struct indicator_sensor_present_data __g_sensor_present_data; -static esp_timer_handle_t sensor_history_data_timer_handle; - -static QueueHandle_t updata_queue_handle = NULL; - -static void __sensor_history_data_get( struct sensor_history_data *p_history, struct view_data_sensor_history_data *p_data) -{ - xSemaphoreTake(__g_data_mutex, portMAX_DELAY); - - struct sensor_data_average *p_data_day = &p_history->data_day[0]; - struct sensor_data_minmax *p_data_week = &p_history->data_week[0]; - - memcpy(p_data->data_day, (uint8_t *)p_data_day, sizeof( struct sensor_data_average) * 24); - memcpy(p_data->data_week, (uint8_t *)p_data_week, sizeof( struct sensor_data_minmax) * 7); - - - //calculate max and min - float min=10000; - float max=-10000; - - for(int i =0; i < 24; i++ ) { - struct sensor_data_average *p_item = p_data_day + i; - if( p_item->valid ) { - if( min > p_item->data ){ - min = p_item->data; - } - if( max < p_item->data ){ - max = p_item->data; - } - } - } - p_data->day_max = max; - p_data->day_min = min; - - min=10000; - max=-10000; - - for(int i =0; i < 7; i++ ) { - struct sensor_data_minmax *p_item = p_data_week + i; - if( p_item->valid ) { - if( min > p_item->min ){ - min = p_item->min; - } - if( max < p_item->max ){ - max = p_item->max; - } - } - } - - if ( max < min) { - max=4; - min=0; - } - - p_data->week_max = max; - p_data->week_min = min; - - xSemaphoreGive(__g_data_mutex); -} - -static void __sensor_history_data_save(void) -{ - xSemaphoreTake(__g_data_mutex, portMAX_DELAY); - esp_err_t ret = 0; - ret = indicator_storage_write(SENSOR_HISTORY_DATA_STORAGE, (void *)&__g_sensor_history_data, sizeof(struct indicator_sensor_history_data)); - xSemaphoreGive(__g_data_mutex); - - if( ret != ESP_OK ) { - ESP_LOGI(TAG, "sensor history data save err:%d", ret); - } else { - ESP_LOGI(TAG, "sensor history data save successful"); - } -} - -static void __sensor_history_data_day_check(struct sensor_data_average p_data_day[], const char *p_sensor_name, time_t now) -{ - //check history data day - int history_hour =0; - int cur_hour = 0; - - history_hour =p_data_day[23].timestamp/3600; - cur_hour = now/3600; - - for( int i =0; i < 24; i++) { - if( p_data_day[i].valid) { - ESP_LOGI(TAG, "%s index:%d, data:%.0f, time:%d", p_sensor_name, i, p_data_day[i].data, p_data_day[i].timestamp); - } - } - - if( history_hour > cur_hour) { - ESP_LOGI(TAG, "%s History day data pull ahead, clear data", p_sensor_name); - memset(p_data_day, 0, sizeof(struct sensor_data_average)*24); - return; - } - - for(int i =0; i < 23; i++ ) { - int hour1 =p_data_day[i].timestamp/3600; - int hour2 =p_data_day[i+1].timestamp/3600; - if( (hour2-hour1) != 1) { - ESP_LOGI(TAG, "%s History day data error, clear data", p_sensor_name); - memset(p_data_day, 0, sizeof(struct sensor_data_average)*24); - return; - } - } - - if( history_hour == cur_hour) { - ESP_LOGI(TAG, "%s History day data valid", p_sensor_name); - return; - } - - if( history_hour < ( cur_hour -23) ) { - ESP_LOGI(TAG, "%s History day data expired, clear data!", p_sensor_name); - memset(p_data_day, 0, sizeof(struct sensor_data_average)*24); - } else { - - int overlap_cnt = history_hour - ( cur_hour -23)+1; - - ESP_LOGI(TAG, "%s History day data %d overlap !", p_sensor_name, overlap_cnt); - - for(int i =0; i < 24; i++ ) { - if( i < overlap_cnt) { - p_data_day[i].data = p_data_day[24-overlap_cnt+i].data; - p_data_day[i].valid = p_data_day[24-overlap_cnt+i].valid; - p_data_day[i].timestamp = p_data_day[24-overlap_cnt+i].timestamp; - } else { - p_data_day[i].data = 0; - p_data_day[i].valid = false; - p_data_day[i].timestamp = now - (23 -i) * 3600;; - } - } - } -} -static void __sensor_history_data_week_check(struct sensor_data_minmax p_data_week[], const char *p_sensor_name, time_t now) -{ - //check history data week - int history_day =0; - int cur_day = 0; - - history_day =p_data_week[6].timestamp/ (3600 * 24); - cur_day = now/ (3600 * 24); - - for( int i =0; i < 7; i++) { - if( p_data_week[i].valid) { - ESP_LOGI(TAG, "%s, index:%d, min:%.0f, max:%.0f, time:%d", p_sensor_name, i, p_data_week[i].min, p_data_week[i].max , p_data_week[i].timestamp); - } - } - - if( history_day > cur_day){ - ESP_LOGI(TAG, "%s History week data pull ahead, clear data", p_sensor_name); - memset(p_data_week, 0, sizeof(struct sensor_data_minmax)*7); - return; - } - - - for(int i =0; i < 6; i++ ) { - int day1 =p_data_week[i].timestamp/ (3600 * 24); - int day2 =p_data_week[i+1].timestamp/ (3600 * 24); - if( (day2-day1) != 1) { - ESP_LOGI(TAG, "%s History week data error, clear data", p_sensor_name); - memset(p_data_week, 0, sizeof(struct sensor_data_minmax)*7); - return; - } - } - - if( history_day == cur_day){ - ESP_LOGI(TAG, "%s History week data valid", p_sensor_name); - return; - } - - if( history_day < ( cur_day -6) ) { - ESP_LOGI(TAG, "%s History week data expired, clear data!", p_sensor_name); - memset(p_data_week, 0, sizeof(struct sensor_data_minmax)*7); - - } else { - - int overlap_cnt = history_day - ( cur_day -6)+1; - - ESP_LOGI(TAG, "%s History week data , %d overlap!", p_sensor_name, overlap_cnt); - - for(int i =0; i < 7; i++ ) { - if( i < overlap_cnt) { - p_data_week[i].max = p_data_week[7-overlap_cnt+i].max; - p_data_week[i].min = p_data_week[7-overlap_cnt+i].min; - p_data_week[i].timestamp = p_data_week[7-overlap_cnt+i].timestamp; - p_data_week[i].valid = p_data_week[7-overlap_cnt+i].valid; - } else { - - p_data_week[i].max = 0; - p_data_week[i].min = 0; - p_data_week[i].timestamp = now - (6 -i) * 3600 * 24; - p_data_week[i].valid = false; - } - } - } -} - - - -static void __sensor_history_data_day_insert(struct sensor_data_average p_data_day[], struct sensor_present_data *p_cur, time_t now) -{ - int history_hour =0; - int cur_hour = 0; - struct tm timeinfo; - - localtime_r( &now, &timeinfo); - cur_hour = timeinfo.tm_hour; - - localtime_r( &(p_data_day[23].timestamp), &timeinfo); - history_hour = timeinfo.tm_hour; - - if( cur_hour == history_hour) { - return; - } - - for( int i =0; i < 23; i++) { - p_data_day[i].data = p_data_day[i+1].data; - p_data_day[i].valid = p_data_day[i+1].valid; - p_data_day[i].timestamp = p_data_day[i+1].timestamp; - - if( !p_data_day[i].valid) { - p_data_day[i].timestamp = now - (23 -i) * 3600; - } - } - if( p_cur->per_hour_cnt >=1) { - p_data_day[23].valid = true; - p_data_day[23].data = p_cur->average; - - //clear present data - p_cur->per_hour_cnt = 0; - p_cur->sum = 0.0; - - } else { - p_data_day[23].valid = false; - } - p_data_day[23].timestamp = now; - -#if SENSOR_HISTORY_DATA_DEBUG - for( int i =0; i < 24; i++) { - if( p_data_day[i].valid) { - ESP_LOGI(TAG, "index:%d, data:%.0f, time:%d", i, p_data_day[i].data, p_data_day[i].timestamp); - } - } -#endif - -} - -static void __sensor_history_data_week_insert(struct sensor_data_minmax p_data_week[], struct sensor_present_data *p_cur, time_t now) -{ - int history_mday =0; - int cur_mday = 0; - struct tm timeinfo; - - localtime_r( &now, &timeinfo); - cur_mday = timeinfo.tm_mday; - - localtime_r( &(p_data_week[6].timestamp), &timeinfo); - history_mday= timeinfo.tm_mday; - - if( history_mday == cur_mday) { - return; - } - - for( int i =0; i < 6; i++) { - p_data_week[i].max = p_data_week[i+1].max; - p_data_week[i].min = p_data_week[i+1].min; - p_data_week[i].timestamp = p_data_week[i+1].timestamp; - p_data_week[i].valid = p_data_week[i+1].valid; - - if( !p_data_week[i].valid) { - p_data_week[i].timestamp = now - (6 -i) * 3600 * 24; - } - } - if( p_cur->per_day_cnt >=1) { - p_data_week[6].valid = true; - p_data_week[6].max = p_cur->day_max; - p_data_week[6].min = p_cur->day_min; - - //clear present data - p_cur->day_max = 0.0; - p_cur->day_min = 0.0; - p_cur->per_day_cnt = 0; - - } else { - p_data_week[6].valid = false; - } - p_data_week[6].timestamp = now; - -#if SENSOR_HISTORY_DATA_DEBUG - for( int i =0; i < 7; i++) { - if( p_data_week[i].valid) { - ESP_LOGI(TAG, "index:%d, min:%.0f, max:%.0f, time:%d", i, p_data_week[i].min, p_data_week[i].max , p_data_week[i].timestamp); - } - } -#endif -} - - -static void __sensor_history_data_check(time_t now) -{ - static bool check_flag = false; - if(check_flag) { - return; - } - check_flag = true; - - xSemaphoreTake(__g_data_mutex, portMAX_DELAY); - __sensor_history_data_day_check(__g_sensor_history_data.temp.data_day, "Temp", now - 3600); - __sensor_history_data_week_check(__g_sensor_history_data.temp.data_week, "Temp", now - 3600 * 24); - - __sensor_history_data_day_check(__g_sensor_history_data.humidity.data_day, "Humidity", now - 3600); - __sensor_history_data_week_check(__g_sensor_history_data.humidity.data_week, "Humidity", now - 3600 * 24); - - __sensor_history_data_day_check(__g_sensor_history_data.co2.data_day, "CO2", now - 3600); - __sensor_history_data_week_check(__g_sensor_history_data.co2.data_week, "CO2", now - 3600 * 24); - - - __sensor_history_data_day_check(__g_sensor_history_data.tvoc.data_day, "TVOC", now - 3600); - __sensor_history_data_week_check(__g_sensor_history_data.tvoc.data_week, "TVOC", now - 3600 * 24); - - xSemaphoreGive(__g_data_mutex); -} - -static void __sensor_history_data_day_update(time_t now) -{ - xSemaphoreTake(__g_data_mutex, portMAX_DELAY); - - __sensor_history_data_day_insert( __g_sensor_history_data.temp.data_day, &__g_sensor_present_data.temp, now); - - __sensor_history_data_day_insert( __g_sensor_history_data.humidity.data_day, &__g_sensor_present_data.humidity, now); - - __sensor_history_data_day_insert( __g_sensor_history_data.co2.data_day, &__g_sensor_present_data.co2, now); - - __sensor_history_data_day_insert( __g_sensor_history_data.tvoc.data_day, &__g_sensor_present_data.tvoc, now); - - xSemaphoreGive(__g_data_mutex); - - __sensor_history_data_save(); -} - -static void __sensor_history_data_week_update(time_t now) -{ - xSemaphoreTake(__g_data_mutex, portMAX_DELAY); - - __sensor_history_data_week_insert(__g_sensor_history_data.temp.data_week, &__g_sensor_present_data.temp, now); - - __sensor_history_data_week_insert(__g_sensor_history_data.humidity.data_week, &__g_sensor_present_data.humidity, now); - - __sensor_history_data_week_insert(__g_sensor_history_data.co2.data_week, &__g_sensor_present_data.co2, now); - - __sensor_history_data_week_insert(__g_sensor_history_data.tvoc.data_week, &__g_sensor_present_data.tvoc, now); - - xSemaphoreGive(__g_data_mutex); - - __sensor_history_data_save(); - -} - - -static void __sensor_history_data_update_callback(void* arg) -{ - static int last_hour = 25; - static int last_day = 32; - static time_t last_timestamp1 = 0; - static time_t last_timestamp2 = 0; - time_t now = 0; - - now = time(NULL); - - // todo test - // static int time_cnt = 1; - // now += time_cnt * 3600; - // time_cnt++; - - struct tm timeinfo = { 0 }; - localtime_r( &now, &timeinfo); - - char strftime_buf[64]; - strftime(strftime_buf, sizeof(strftime_buf), "%c", &timeinfo); - - int cur_hour = timeinfo.tm_hour; - int cur_day = timeinfo.tm_mday; - - ESP_LOGI(TAG, "__sensor_history_data_update_callback: %s", strftime_buf); - - //if greater than 2020 year mean time is right - if( timeinfo.tm_year < 120) { - ESP_LOGI(TAG, "The time is not right!!!"); - return; - } - - __sensor_history_data_check( now); - - // Hour change and the duration is greater than 1 hour (to prevent hour change during time zone synchronization) - // 小时变化并且 时长大于1h (防止在时区同步时, 小时变化的情况) - if( cur_hour != last_hour && ((now - last_timestamp1) > 3600) ) { - last_hour = cur_hour; - - if( last_timestamp1 == 0) { - last_timestamp1 = ((now - 3600)/3600) * 3600; - } - - struct updata_queue_msg msg = { - .flag = 1, - .time = last_timestamp1, - }; - - xQueueSendFromISR(updata_queue_handle, &msg, NULL); - //__sensor_history_data_day_update(last_timestamp1); - - last_timestamp1 = ((now)/3600) * 3600; // Sample at the hour - } - - if( cur_day != last_day && ((now - last_timestamp2) > (3600*24))) { - last_day = cur_day; - if( last_timestamp2 == 0) { - last_timestamp2 = ((now - 3600 * 24) / (3600 * 24)) * (3600 * 24); - } - - struct updata_queue_msg msg = { - .flag = 2, - .time = last_timestamp2, - }; - - xQueueSendFromISR(updata_queue_handle, &msg, NULL); - - //__sensor_history_data_week_update(last_timestamp2); - - last_timestamp2 = ((now) / (3600 * 24)) * (3600 * 24); //Sample at the day - } -} - -static __sensor_history_data_update_init(void) -{ - const esp_timer_create_args_t timer_args = { - .callback = &__sensor_history_data_update_callback, - /* argument specified here will be passed to timer callback function */ - .arg = (void*) sensor_history_data_timer_handle, - .name = "sensor data update" - }; - ESP_ERROR_CHECK( esp_timer_create(&timer_args, &sensor_history_data_timer_handle)); - ESP_ERROR_CHECK(esp_timer_start_periodic(sensor_history_data_timer_handle, 1000000 * 10)); //10s - -} - -static void sensor_history_data_updata_task(void *arg) -{ - struct updata_queue_msg msg = {}; - while(1) { - if(xQueueReceive(updata_queue_handle, &msg, portMAX_DELAY)) { - if( msg.flag == 1) { - ESP_LOGI(TAG, "update day history data"); - __sensor_history_data_day_update(msg.time); - } else if( msg.flag == 2) { - ESP_LOGI(TAG, "update week history data"); - __sensor_history_data_week_update(msg.time); - } - } - - } -} - -static void __sensor_history_data_restore(void) -{ - esp_err_t ret = 0; - - size_t len = sizeof(__g_sensor_history_data); - - ret = indicator_storage_read(SENSOR_HISTORY_DATA_STORAGE, (void *)&__g_sensor_history_data, &len); - if( ret == ESP_OK && len== (sizeof(__g_sensor_history_data)) ) { - ESP_LOGI(TAG, "sensor history data read successful"); - } else { - // err or not find - if( ret == ESP_ERR_NVS_NOT_FOUND) { - ESP_LOGI(TAG, "sensor history data not found"); - } else { - ESP_LOGI(TAG, "sensor history data read err:%d", ret); - } - memset(&__g_sensor_history_data, 0 ,sizeof(__g_sensor_history_data)); - } -} - - static void __sensor_present_data_update(struct sensor_present_data *p_data, float value) { xSemaphoreTake(__g_data_mutex, portMAX_DELAY); @@ -781,251 +275,12 @@ static void __view_event_handler(void* handler_args, esp_event_base_t base, int3 int i; switch (id) { - case VIEW_EVENT_SENSOR_TEMP_HISTORY: { - ESP_LOGI(TAG, "event: VIEW_EVENT_SENSOR_TEMP_HISTORY"); - struct view_data_sensor_history_data data; - __sensor_history_data_get( &__g_sensor_history_data.temp, &data); - data.sensor_type = SENSOR_DATA_TEMP; - data.resolution = 1; - esp_event_post_to(view_event_handle, VIEW_EVENT_BASE, VIEW_EVENT_SENSOR_DATA_HISTORY, &data, sizeof(struct view_data_sensor_history_data ), portMAX_DELAY); - break; - } - - case VIEW_EVENT_SENSOR_HUMIDITY_HISTORY: { - ESP_LOGI(TAG, "event: VIEW_EVENT_SENSOR_HUMIDITY_HISTORY"); - struct view_data_sensor_history_data data; - __sensor_history_data_get( &__g_sensor_history_data.humidity, &data); - data.sensor_type = SENSOR_DATA_HUMIDITY; - data.resolution = 0; - esp_event_post_to(view_event_handle, VIEW_EVENT_BASE, VIEW_EVENT_SENSOR_DATA_HISTORY, &data, sizeof(struct view_data_sensor_history_data ), portMAX_DELAY); - break; - } - case VIEW_EVENT_SENSOR_CO2_HISTORY: { - ESP_LOGI(TAG, "event: VIEW_EVENT_SENSOR_CO2_HISTORY"); - struct view_data_sensor_history_data data; - __sensor_history_data_get( &__g_sensor_history_data.co2, &data); - data.sensor_type = SENSOR_DATA_CO2; - data.resolution = 0; - esp_event_post_to(view_event_handle, VIEW_EVENT_BASE, VIEW_EVENT_SENSOR_DATA_HISTORY, &data, sizeof(struct view_data_sensor_history_data ), portMAX_DELAY); - break; - } - case VIEW_EVENT_SENSOR_TVOC_HISTORY: { - ESP_LOGI(TAG, "event: VIEW_EVENT_SENSOR_TVOC_HISTORY"); - struct view_data_sensor_history_data data; - __sensor_history_data_get( &__g_sensor_history_data.tvoc, &data); - data.sensor_type = SENSOR_DATA_TVOC; - data.resolution = 0; - esp_event_post_to(view_event_handle, VIEW_EVENT_BASE, VIEW_EVENT_SENSOR_DATA_HISTORY, &data, sizeof(struct view_data_sensor_history_data ), portMAX_DELAY); - break; - } case VIEW_EVENT_SHUTDOWN: { ESP_LOGI(TAG, "event: VIEW_EVENT_SHUTDOWN"); __sensor_shutdown(); break; } -//debug ui -#if 0 - case VIEW_EVENT_SENSOR_TEMP_HISTORY: { - ESP_LOGI(TAG, "event: VIEW_EVENT_SENSOR_TEMP_HISTORY"); - struct view_data_sensor_history_data data; - data.sensor_type = SENSOR_DATA_TEMP; - data.resolution = 1; - - //test - float min=100; - float max=0; - - time_t now = 0; - time(&now); - time_t time1 = (time_t)(now / 3600) * 3600; - time_t time2 = (time_t)(now / 3600 / 24) * 3600 * 24; - - for(i = 0; i < 24; i++) { - data.data_day[i].data = (float)lv_rand(10, 40); - data.data_day[i].timestamp = time1 + i *3600; - data.data_day[i].valid = true; - - if( min > data.data_day[i].data) { - min = data.data_day[i].data; - } - if( max < data.data_day[i].data) { - max = data.data_day[i].data; - } - } - data.day_max = max; - data.day_min = min; - - min=100; - max=0; - - for(i = 0; i < 7; i++) { - data.data_week[i].min = (float)lv_rand(10, 20); - data.data_week[i].max = (float)lv_rand(20, 40); - data.data_week[i].timestamp = time2 + i * 3600 * 24;; - data.data_week[i].valid = true; - - if( min > data.data_week[i].min) { - min = data.data_week[i].min; - } - if( max < data.data_week[i].max) { - max = data.data_week[i].max; - } - } - data.week_max = max; - data.week_min = min; - - esp_event_post_to(view_event_handle, VIEW_EVENT_BASE, VIEW_EVENT_SENSOR_DATA_HISTORY, &data, sizeof(struct view_data_sensor_history_data ), portMAX_DELAY); - break; - } - case VIEW_EVENT_SENSOR_HUMIDITY_HISTORY: { - ESP_LOGI(TAG, "event: VIEW_EVENT_SENSOR_HUMIDITY_HISTORY"); - struct view_data_sensor_history_data data; - data.sensor_type = SENSOR_DATA_HUMIDITY; - data.resolution = 0; - - //test - float min=100; - float max=0; - - time_t now = 0; - time(&now); - time_t time1 = (time_t)(now / 3600) * 3600; - time_t time2 = (time_t)(now / 3600 / 24) * 3600 * 24; - - for(i = 0; i < 24; i++) { - data.data_day[i].data = (float)lv_rand(30, 50); - data.data_day[i].timestamp = time1 + i *3600; - data.data_day[i].valid = true; - if( min > data.data_day[i].data) { - min = data.data_day[i].data; - } - if( max < data.data_day[i].data) { - max = data.data_day[i].data; - } - } - data.day_max = max; - data.day_min = min; - - min=100; - max=0; - for(i = 0; i < 7; i++) { - data.data_week[i].max = (float)lv_rand(40, 50); - data.data_week[i].min = (float)lv_rand(30, 40); - data.data_week[i].timestamp = time2 + i * 3600 * 24;; - data.data_week[i].valid = true; - if( min > data.data_week[i].min) { - min = data.data_week[i].min; - } - if( max < data.data_week[i].max) { - max = data.data_week[i].max; - } - } - data.week_max = max; - data.week_min = min; - esp_event_post_to(view_event_handle, VIEW_EVENT_BASE, VIEW_EVENT_SENSOR_DATA_HISTORY, &data, sizeof(struct view_data_sensor_history_data ), portMAX_DELAY); - break; - } - case VIEW_EVENT_SENSOR_TVOC_HISTORY: { - ESP_LOGI(TAG, "event: VIEW_EVENT_SENSOR_TVOC_HISTORY"); - struct view_data_sensor_history_data data; - data.sensor_type = SENSOR_DATA_TVOC; - data.resolution = 0; - - //test - float min=120; - float max=0; - - time_t now = 0; - time(&now); - time_t time1 = (time_t)(now / 3600) * 3600; - time_t time2 = (time_t)(now / 3600 / 24) * 3600 * 24; - - for(i = 0; i < 24; i++) { - data.data_day[i].data = (float)lv_rand(100, 120); - data.data_day[i].timestamp = time1 + i *3600; - data.data_day[i].valid = true; - if( min > data.data_day[i].data) { - min = data.data_day[i].data; - } - if( max < data.data_day[i].data) { - max = data.data_day[i].data; - } - } - data.day_max = max; - data.day_min = min; - - min=120; - max=0; - for(i = 0; i < 7; i++) { - data.data_week[i].max = (float)lv_rand(100, 120); - data.data_week[i].min = (float)lv_rand(0, 100); - data.data_week[i].timestamp = time2 + i * 3600 * 24;; - data.data_week[i].valid = true; - if( min > data.data_week[i].min) { - min = data.data_week[i].min; - } - if( max < data.data_week[i].max) { - max = data.data_week[i].max; - } - } - data.week_max = max; - data.week_min = min; - esp_event_post_to(view_event_handle, VIEW_EVENT_BASE, VIEW_EVENT_SENSOR_DATA_HISTORY, &data, sizeof(struct view_data_sensor_history_data ), portMAX_DELAY); - break; - } - case VIEW_EVENT_SENSOR_CO2_HISTORY: { - ESP_LOGI(TAG, "event: VIEW_EVENT_SENSOR_CO2_HISTORY"); - struct view_data_sensor_history_data data; - data.sensor_type = SENSOR_DATA_CO2; - data.resolution = 0; - - //test - float min=700; - float max=0; - - time_t now = 0; - time(&now); - time_t time1 = (time_t)(now / 3600) * 3600; - time_t time2 = (time_t)(now / 3600 / 24) * 3600 * 24; - - for(i = 0; i < 24; i++) { - data.data_day[i].data = (float)lv_rand(500, 600); - data.data_day[i].timestamp = time1 + i *3600; - data.data_day[i].valid = true; - if( min > data.data_day[i].data) { - min = data.data_day[i].data; - } - if( max < data.data_day[i].data) { - max = data.data_day[i].data; - } - } - data.day_max = max; - data.day_min = min; - - min=700; - max=0; - for(i = 0; i < 7; i++) { - data.data_week[i].min = (float)lv_rand(500, 600); - data.data_week[i].max = (float)lv_rand(600, 700); - data.data_week[i].timestamp = time2 + i * 3600 * 24;; - data.data_week[i].valid = true; - if( min > data.data_week[i].min) { - min = data.data_week[i].min; - } - if( max < data.data_week[i].max) { - max = data.data_week[i].max; - } - } - data.week_max = max; - data.week_min = min; - esp_event_post_to(view_event_handle, VIEW_EVENT_BASE, VIEW_EVENT_SENSOR_DATA_HISTORY, &data, sizeof(struct view_data_sensor_history_data ), portMAX_DELAY); - break; - } -#endif - - default: - break; } } @@ -1033,28 +288,8 @@ int indicator_sensor_init(void) { __g_data_mutex = xSemaphoreCreateMutex(); - updata_queue_handle = xQueueCreate(4, sizeof( struct updata_queue_msg)); - - __sensor_history_data_restore(); - - __sensor_history_data_update_init(); - xTaskCreate(esp32_rp2040_comm_task, "esp32_rp2040_comm_task", ESP32_RP2040_COMM_TASK_STACK_SIZE, NULL, 2, NULL); - xTaskCreate(sensor_history_data_updata_task, "sensor_history_data_updata_task", 1024*4, NULL, 6, NULL); - - ESP_ERROR_CHECK(esp_event_handler_instance_register_with(view_event_handle, - VIEW_EVENT_BASE, VIEW_EVENT_SENSOR_TEMP_HISTORY, - __view_event_handler, NULL, NULL)); - ESP_ERROR_CHECK(esp_event_handler_instance_register_with(view_event_handle, - VIEW_EVENT_BASE, VIEW_EVENT_SENSOR_HUMIDITY_HISTORY, - __view_event_handler, NULL, NULL)); - ESP_ERROR_CHECK(esp_event_handler_instance_register_with(view_event_handle, - VIEW_EVENT_BASE, VIEW_EVENT_SENSOR_TVOC_HISTORY, - __view_event_handler, NULL, NULL)); - ESP_ERROR_CHECK(esp_event_handler_instance_register_with(view_event_handle, - VIEW_EVENT_BASE, VIEW_EVENT_SENSOR_CO2_HISTORY, - __view_event_handler, NULL, NULL)); ESP_ERROR_CHECK(esp_event_handler_instance_register_with(view_event_handle, VIEW_EVENT_BASE, VIEW_EVENT_SHUTDOWN, __view_event_handler, NULL, NULL)); diff --git a/examples/indicator_matter/main/ui/ui.c b/examples/indicator_matter/main/ui/ui.c index dff009a..47a70bd 100644 --- a/examples/indicator_matter/main/ui/ui.c +++ b/examples/indicator_matter/main/ui/ui.c @@ -133,17 +133,6 @@ lv_obj_t *ui_back3; lv_obj_t *ui_screen_factory; lv_obj_t *ui_factory_resetting_title; -lv_obj_t *ui_screen_sensor_chart; -lv_obj_t *ui_wifi_st_7; -lv_obj_t *ui_back4; -lv_obj_t *ui_sensor_data_title; -lv_obj_t * ui_sensor_chart_day; -lv_chart_series_t * ui_sensor_chart_day_series; - -lv_obj_t * ui_sensor_chart_week; -lv_chart_series_t * ui_sensor_chart_week_series_hight; -lv_chart_series_t * ui_sensor_chart_week_series_low; - lv_obj_t *ui_screen_matter; lv_obj_t *ui_screen_matter_setup; lv_obj_t *ui_button_panel1; @@ -1633,121 +1622,6 @@ lv_obj_set_style_text_font(ui_factory_resetting_title, &ui_font_font2, LV_PART_M lv_obj_set_style_text_color(ui_factory_resetting_title, lv_color_hex(0xCD3700), LV_PART_MAIN | LV_STATE_DEFAULT ); } - -void ui_screen_sensor_chart_screen_init() -{ - ui_screen_sensor_chart = lv_obj_create(NULL); - //lv_obj_clear_flag( ui_screen_sensor_chart, LV_OBJ_FLAG_SCROLLABLE ); - - ui_wifi_st_7 = lv_img_create(ui_screen_sensor_chart); - lv_img_set_src(ui_wifi_st_7, &ui_img_wifi_disconet_png); - lv_obj_set_width( ui_wifi_st_7, LV_SIZE_CONTENT); /// 1 - lv_obj_set_height( ui_wifi_st_7, LV_SIZE_CONTENT); /// 1 - lv_obj_set_x( ui_wifi_st_7, -20 ); - lv_obj_set_y( ui_wifi_st_7, 20 ); - lv_obj_set_align( ui_wifi_st_7, LV_ALIGN_TOP_RIGHT ); - lv_obj_add_flag( ui_wifi_st_7, LV_OBJ_FLAG_ADV_HITTEST ); /// Flags - lv_obj_clear_flag( ui_wifi_st_7, LV_OBJ_FLAG_SCROLLABLE ); /// Flags - - ui_back4 = lv_btn_create(ui_screen_sensor_chart); - lv_obj_set_width( ui_back4, 100); - lv_obj_set_height( ui_back4, 50); - lv_obj_set_x( ui_back4, 10 ); - lv_obj_set_y( ui_back4, 30 ); - lv_obj_add_flag( ui_back4, LV_OBJ_FLAG_SCROLL_ON_FOCUS ); /// Flags - lv_obj_clear_flag( ui_back4, LV_OBJ_FLAG_SCROLLABLE ); /// Flags - lv_obj_set_style_bg_color(ui_back4, lv_color_hex(0x101418), LV_PART_MAIN | LV_STATE_DEFAULT ); - lv_obj_set_style_bg_opa(ui_back4, 255, LV_PART_MAIN| LV_STATE_DEFAULT); - lv_obj_set_style_bg_img_src( ui_back4, &ui_img_back_png, LV_PART_MAIN | LV_STATE_DEFAULT ); - - lv_obj_add_event_cb(ui_back4, ui_event_back4, LV_EVENT_ALL, NULL); - - ui_sensor_data_title = lv_label_create(ui_screen_sensor_chart); - lv_obj_set_width( ui_sensor_data_title, LV_SIZE_CONTENT); /// 1 - lv_obj_set_height( ui_sensor_data_title, LV_SIZE_CONTENT); /// 1 - lv_obj_set_x( ui_sensor_data_title, 0 ); - lv_obj_set_y( ui_sensor_data_title, 50 ); - lv_obj_set_align( ui_sensor_data_title, LV_ALIGN_TOP_MID ); - lv_label_set_text(ui_sensor_data_title,"Temp"); //modify - lv_obj_set_style_text_font(ui_sensor_data_title, &ui_font_font1, LV_PART_MAIN| LV_STATE_DEFAULT); - - - lv_obj_t * sensor_chat_panel = lv_obj_create(ui_screen_sensor_chart); - lv_obj_set_align( sensor_chat_panel, LV_ALIGN_TOP_MID ); - lv_obj_set_width( sensor_chat_panel, 480); - lv_obj_set_height( sensor_chat_panel, 400); - lv_obj_set_x( sensor_chat_panel, 0 ); - lv_obj_set_y( sensor_chat_panel, 75 ); - - lv_obj_set_style_bg_color( sensor_chat_panel, lv_color_hex(0x101418), LV_PART_MAIN | LV_STATE_DEFAULT ); - lv_obj_set_style_bg_grad_color( sensor_chat_panel, lv_color_hex(0x101418), LV_PART_MAIN | LV_STATE_DEFAULT ); - lv_obj_set_style_border_color( sensor_chat_panel, lv_color_hex(0x101418), LV_PART_MAIN | LV_STATE_DEFAULT ); - - - lv_obj_t * tabview = lv_tabview_create( sensor_chat_panel, LV_DIR_TOP, 40); - lv_obj_t * ui_tab_day = lv_tabview_add_tab(tabview, "Day"); - lv_obj_t * ui_tab_week = lv_tabview_add_tab(tabview, "Week"); - - lv_obj_set_style_bg_color(tabview, lv_color_hex(0x101418), LV_PART_MAIN | LV_STATE_DEFAULT ); - lv_obj_set_style_bg_grad_color(tabview, lv_color_hex(0x101418), LV_PART_MAIN | LV_STATE_DEFAULT ); - lv_obj_set_style_border_color(tabview, lv_color_hex(0x101418), LV_PART_MAIN | LV_STATE_DEFAULT ); - - - lv_obj_set_style_bg_color(ui_tab_day, lv_color_hex(0x101418), LV_PART_MAIN | LV_STATE_DEFAULT ); - lv_obj_set_style_bg_grad_color(ui_tab_day, lv_color_hex(0x101418), LV_PART_MAIN | LV_STATE_DEFAULT ); - lv_obj_set_style_border_color(ui_tab_day, lv_color_hex(0x101418), LV_PART_MAIN | LV_STATE_DEFAULT ); - - lv_obj_set_style_bg_color(ui_tab_week, lv_color_hex(0x101418), LV_PART_MAIN | LV_STATE_DEFAULT ); - lv_obj_set_style_bg_grad_color(ui_tab_week, lv_color_hex(0x101418), LV_PART_MAIN | LV_STATE_DEFAULT ); - lv_obj_set_style_border_color(ui_tab_week, lv_color_hex(0x101418), LV_PART_MAIN | LV_STATE_DEFAULT ); - - - // day chart - ui_sensor_chart_day = lv_chart_create( ui_tab_day ); - - lv_obj_set_style_bg_color(ui_sensor_chart_day, lv_color_hex(0x101418), LV_PART_MAIN | LV_STATE_DEFAULT ); - lv_obj_set_style_bg_grad_color(ui_sensor_chart_day, lv_color_hex(0x101418), LV_PART_MAIN | LV_STATE_DEFAULT ); - lv_obj_set_style_border_color(ui_sensor_chart_day, lv_color_hex(0x101418), LV_PART_MAIN | LV_STATE_DEFAULT ); - - lv_obj_refresh_ext_draw_size(ui_sensor_chart_day); - lv_chart_set_zoom_x(ui_sensor_chart_day, 800); - - //lv_chart_set_axis_tick(ui_sensor_chart_day, LV_CHART_AXIS_PRIMARY_Y, 0, 0, 5, 1, true, 80); - lv_chart_set_axis_tick(ui_sensor_chart_day, LV_CHART_AXIS_PRIMARY_X, 0, 0, 24, 1, true, 50); - //lv_chart_set_range(ui_sensor_chart_day, LV_CHART_AXIS_PRIMARY_X, 0, 200); - lv_chart_set_range(ui_sensor_chart_day, LV_CHART_AXIS_PRIMARY_Y, -200, 600); //modify - - lv_chart_set_div_line_count(ui_sensor_chart_day, 0, 24); - lv_chart_set_point_count(ui_sensor_chart_day, 24); - - lv_obj_set_style_border_side(ui_sensor_chart_day, LV_BORDER_SIDE_RIGHT | LV_BORDER_SIDE_BOTTOM, 0); - - ui_sensor_chart_day_series = lv_chart_add_series(ui_sensor_chart_day, lv_palette_main(LV_PALETTE_YELLOW), LV_CHART_AXIS_PRIMARY_Y); - lv_chart_set_series_color(ui_sensor_chart_day, ui_sensor_chart_day_series, lv_palette_main(LV_PALETTE_GREEN)); //modify - - // week chart - ui_sensor_chart_week = lv_chart_create( ui_tab_week ); - - lv_obj_set_style_bg_color(ui_sensor_chart_week, lv_color_hex(0x101418), LV_PART_MAIN | LV_STATE_DEFAULT ); - lv_obj_set_style_bg_grad_color(ui_sensor_chart_week, lv_color_hex(0x101418), LV_PART_MAIN | LV_STATE_DEFAULT ); - lv_obj_set_style_border_color(ui_sensor_chart_week, lv_color_hex(0x101418), LV_PART_MAIN | LV_STATE_DEFAULT ); - - lv_obj_refresh_ext_draw_size(ui_sensor_chart_week); - lv_chart_set_zoom_x(ui_sensor_chart_week, 256); - - //lv_chart_set_axis_tick(ui_sensor_chart_week, LV_CHART_AXIS_PRIMARY_Y, 0, 0, 5, 1, true, 80); - lv_chart_set_axis_tick(ui_sensor_chart_week, LV_CHART_AXIS_PRIMARY_X, 0, 0, 7, 1, true, 50); - //lv_chart_set_range(ui_sensor_chart_week, LV_CHART_AXIS_PRIMARY_X, 0, 200); - lv_chart_set_range(ui_sensor_chart_week, LV_CHART_AXIS_PRIMARY_Y, -200, 600); - - lv_chart_set_div_line_count(ui_sensor_chart_week, 0, 7); - lv_chart_set_point_count(ui_sensor_chart_week, 7); - - ui_sensor_chart_week_series_hight = lv_chart_add_series(ui_sensor_chart_week, lv_palette_main(LV_PALETTE_YELLOW), LV_CHART_AXIS_PRIMARY_Y); - ui_sensor_chart_week_series_low = lv_chart_add_series(ui_sensor_chart_week, lv_palette_main(LV_PALETTE_YELLOW), LV_CHART_AXIS_PRIMARY_Y); - -} - void ui_init( void ) { lv_disp_t *dispp = lv_disp_get_default(); @@ -1761,6 +1635,5 @@ ui_screen_date_time_screen_init(); ui_screen_matter_setup_screen_init(); ui_screen_matter_screen_init(); ui_screen_factory_screen_init(); -ui_screen_sensor_chart_screen_init(); lv_disp_load_scr( ui_screen_time); } diff --git a/examples/indicator_matter/main/ui/ui.h b/examples/indicator_matter/main/ui/ui.h index 6a53085..fcb14d1 100644 --- a/examples/indicator_matter/main/ui/ui.h +++ b/examples/indicator_matter/main/ui/ui.h @@ -135,17 +135,6 @@ extern lv_obj_t *ui_back3; extern lv_obj_t *ui_screen_factory; extern lv_obj_t *ui_factory_resetting_title; -extern lv_obj_t *ui_screen_sensor_chart; -extern lv_obj_t *ui_wifi_st_7; -extern lv_obj_t *ui_back4; -extern lv_obj_t *ui_sensor_data_title; -extern lv_obj_t * ui_sensor_chart_day; -extern lv_chart_series_t * ui_sensor_chart_day_series; - -extern lv_obj_t * ui_sensor_chart_week; -extern lv_chart_series_t * ui_sensor_chart_week_series_hight; -extern lv_chart_series_t * ui_sensor_chart_week_series_low; - extern lv_obj_t *ui_screen_matter_setup; extern lv_obj_t *ui_screen_matter_settings; extern lv_obj_t *ui_screen_matter; diff --git a/examples/indicator_matter/main/view/indicator_view.c b/examples/indicator_matter/main/view/indicator_view.c index c35ec31..31e27ee 100644 --- a/examples/indicator_matter/main/view/indicator_view.c +++ b/examples/indicator_matter/main/view/indicator_view.c @@ -19,303 +19,8 @@ typedef struct sensor_chart_display char name[32]; char units[32]; - struct view_data_sensor_history_data *p_info; } sensor_chart_display_t; -static char date_hour[24][6] = { }; -static char date_day[7][6] = { }; -static uint16_t sensor_data_resolution = 0; -static uint16_t sensor_data_multiple = 1; - -static void event_chart_week_cb(lv_event_t * e) -{ - lv_event_code_t code = lv_event_get_code(e); - lv_obj_t * obj = lv_event_get_target(e); - if(code == LV_EVENT_PRESSED || code == LV_EVENT_RELEASED) { - lv_obj_invalidate(obj); /*To make the value boxes visible*/ - } - else if(code == LV_EVENT_DRAW_PART_BEGIN) { - lv_obj_draw_part_dsc_t * dsc = lv_event_get_param(e); - /*Set the markers' text*/ - if(dsc->part == LV_PART_TICKS && dsc->id == LV_CHART_AXIS_PRIMARY_X) { - lv_snprintf(dsc->text, dsc->text_length, "%s", (char *)&date_day[dsc->value][0]); - } else if(dsc->part == LV_PART_ITEMS) { - - const lv_chart_series_t * ser = dsc->sub_part_ptr; - - if(lv_chart_get_type(obj) == LV_CHART_TYPE_LINE) { - dsc->rect_dsc->outline_color = lv_color_white(); - dsc->rect_dsc->outline_width = 2; - } - else { - dsc->rect_dsc->shadow_color = ser->color; - dsc->rect_dsc->shadow_width = 15; - dsc->rect_dsc->shadow_spread = 0; - } - - char buf[8]; - snprintf(buf, sizeof(buf), "%.*f", sensor_data_resolution, (float)dsc->value / sensor_data_multiple); - - lv_point_t text_size; - lv_txt_get_size(&text_size, buf, &ui_font_font1, 0, 0, LV_COORD_MAX, LV_TEXT_FLAG_NONE); - - lv_area_t txt_area; - - txt_area.x1 = dsc->draw_area->x1 + lv_area_get_width(dsc->draw_area) / 2 - text_size.x / 2; - txt_area.x2 = txt_area.x1 + text_size.x; - txt_area.y2 = dsc->draw_area->y1 - LV_DPX(15); - if( ser == ui_sensor_chart_week_series_low ) { - txt_area.y2 += LV_DPX(70); - } - txt_area.y1 = txt_area.y2 - text_size.y; - - lv_draw_label_dsc_t label_dsc; - lv_draw_label_dsc_init(&label_dsc); - label_dsc.color = lv_color_white(); - label_dsc.font = &lv_font_montserrat_16; - - if(lv_chart_get_pressed_point(obj) == dsc->id) { - label_dsc.font = &lv_font_montserrat_20; - } else { - label_dsc.font = &lv_font_montserrat_16; - } - lv_draw_label(dsc->draw_ctx, &label_dsc, &txt_area, buf, NULL); - } - } -} - - -static void event_chart_day_cb(lv_event_t * e) -{ - lv_event_code_t code = lv_event_get_code(e); - lv_obj_t * obj = lv_event_get_target(e); - if(code == LV_EVENT_PRESSED || code == LV_EVENT_RELEASED) { - lv_obj_invalidate(obj); /*To make the value boxes visible*/ - } - else if(code == LV_EVENT_DRAW_PART_BEGIN) { - lv_obj_draw_part_dsc_t * dsc = lv_event_get_param(e); - /*Set the markers' text*/ - if(dsc->part == LV_PART_TICKS && dsc->id == LV_CHART_AXIS_PRIMARY_X) { - lv_snprintf(dsc->text, dsc->text_length, "%s", (char *)&date_hour[dsc->value][0]); - } else if(dsc->part == LV_PART_ITEMS) { - - /*Add a line mask that keeps the area below the line*/ - if(dsc->p1 && dsc->p2 ) { - lv_draw_mask_line_param_t line_mask_param; - lv_draw_mask_line_points_init(&line_mask_param, dsc->p1->x, dsc->p1->y, dsc->p2->x, dsc->p2->y, - LV_DRAW_MASK_LINE_SIDE_BOTTOM); - int16_t line_mask_id = lv_draw_mask_add(&line_mask_param, NULL); - - /*Add a fade effect: transparent bottom covering top*/ - lv_coord_t h = lv_obj_get_height(obj); - lv_draw_mask_fade_param_t fade_mask_param; - lv_draw_mask_fade_init(&fade_mask_param, &obj->coords, LV_OPA_COVER, obj->coords.y1 + h / 8, LV_OPA_TRANSP, - obj->coords.y2); - int16_t fade_mask_id = lv_draw_mask_add(&fade_mask_param, NULL); - - /*Draw a rectangle that will be affected by the mask*/ - lv_draw_rect_dsc_t draw_rect_dsc; - lv_draw_rect_dsc_init(&draw_rect_dsc); - draw_rect_dsc.bg_opa = LV_OPA_50; - draw_rect_dsc.bg_color = dsc->line_dsc->color; - - lv_area_t obj_clip_area; - _lv_area_intersect(&obj_clip_area, dsc->draw_ctx->clip_area, &obj->coords); - const lv_area_t * clip_area_ori = dsc->draw_ctx->clip_area; - dsc->draw_ctx->clip_area = &obj_clip_area; - lv_area_t a; - a.x1 = dsc->p1->x; - a.x2 = dsc->p2->x - 1; - a.y1 = LV_MIN(dsc->p1->y, dsc->p2->y); - a.y2 = obj->coords.y2; - lv_draw_rect(dsc->draw_ctx, &draw_rect_dsc, &a); - dsc->draw_ctx->clip_area = clip_area_ori; - /*Remove the masks*/ - lv_draw_mask_remove_id(line_mask_id); - lv_draw_mask_remove_id(fade_mask_id); - } - - - const lv_chart_series_t * ser = dsc->sub_part_ptr; - - if(lv_chart_get_type(obj) == LV_CHART_TYPE_LINE) { - dsc->rect_dsc->outline_color = lv_color_white(); - dsc->rect_dsc->outline_width = 2; - } - else { - dsc->rect_dsc->shadow_color = ser->color; - dsc->rect_dsc->shadow_width = 15; - dsc->rect_dsc->shadow_spread = 0; - } - - char buf[8]; - snprintf(buf, sizeof(buf), "%.*f", sensor_data_resolution, (float)dsc->value / sensor_data_multiple); - - lv_point_t text_size; - lv_txt_get_size(&text_size, buf, &ui_font_font1, 0, 0, LV_COORD_MAX, LV_TEXT_FLAG_NONE); - - lv_area_t txt_area; - - txt_area.x1 = dsc->draw_area->x1 + lv_area_get_width(dsc->draw_area) / 2 - text_size.x / 2; - txt_area.x2 = txt_area.x1 + text_size.x; - txt_area.y2 = dsc->draw_area->y1 - LV_DPX(15); - txt_area.y1 = txt_area.y2 - text_size.y; - - lv_draw_label_dsc_t label_dsc; - lv_draw_label_dsc_init(&label_dsc); - label_dsc.color = lv_color_white(); - label_dsc.font = &lv_font_montserrat_16; - - if(lv_chart_get_pressed_point(obj) == dsc->id) { - label_dsc.font = &lv_font_montserrat_20; - } else { - label_dsc.font = &lv_font_montserrat_16; - } - lv_draw_label(dsc->draw_ctx, &label_dsc, &txt_area, buf, NULL); - } - } -} - -void sensor_chart_update(sensor_chart_display_t *p_display) -{ - int i = 0; - struct view_data_sensor_history_data *p_info = p_display->p_info; - - sensor_data_resolution = p_info->resolution; - sensor_data_multiple = pow(10, p_info->resolution); - - float diff = 0; - float chart_day_min =0; - float chart_day_max =0; - float chart_week_min =0; - float chart_week_max =0; - - diff = p_info->day_max - p_info->day_min; - if( diff <= 2 ) { - diff = 4; - } - chart_day_min = (p_info->day_min - diff / 2.0); // sub quad - chart_day_max = (p_info->day_max + diff / 2.0); //add quad - - ESP_LOGI(TAG, "data max:%.1f, min:%.1f, char max:%.1f, min:%.1f ", p_info->day_max, p_info->day_min,chart_day_max,chart_day_min); - - diff = p_info->week_max - p_info->week_min; - if( diff <= 2) { - diff = 4; - } - chart_week_min = (p_info->week_min - diff / 2.0); // sub quad - chart_week_max = (p_info->week_max + diff / 2.0); //add quad - - lv_label_set_text(ui_sensor_data_title,p_display->name); - - lv_chart_set_series_color(ui_sensor_chart_day, ui_sensor_chart_day_series, p_display->color); - lv_chart_set_range(ui_sensor_chart_day, LV_CHART_AXIS_PRIMARY_Y, (lv_coord_t)chart_day_min * sensor_data_multiple, (lv_coord_t)chart_day_max * sensor_data_multiple); - - - lv_chart_set_range(ui_sensor_chart_week, LV_CHART_AXIS_PRIMARY_Y, (lv_coord_t)chart_week_min * sensor_data_multiple, (lv_coord_t)chart_week_max * sensor_data_multiple); - lv_chart_set_series_color(ui_sensor_chart_week, ui_sensor_chart_week_series_low, p_display->color); - lv_chart_set_series_color(ui_sensor_chart_week, ui_sensor_chart_week_series_hight, p_display->color); - - for(i = 0; i < 24; i++) { - if( p_info->data_day[i].valid ) { - lv_chart_set_value_by_id(ui_sensor_chart_day, ui_sensor_chart_day_series, i, sensor_data_multiple * p_info->data_day[i].data ); - } else { - lv_chart_set_value_by_id(ui_sensor_chart_day, ui_sensor_chart_day_series, i, LV_CHART_POINT_NONE); - } - struct tm timeinfo = { 0 }; - localtime_r(&p_info->data_day[i].timestamp, &timeinfo); - lv_snprintf((char*)&date_hour[i][0], 6, "%02d:00", timeinfo.tm_hour); - } - - for(i = 0; i < 7; i++) { - - if( p_info->data_week[i].valid ) { - lv_chart_set_value_by_id(ui_sensor_chart_week, ui_sensor_chart_week_series_hight, i, sensor_data_multiple * p_info->data_week[i].max ); - lv_chart_set_value_by_id(ui_sensor_chart_week, ui_sensor_chart_week_series_low, i, sensor_data_multiple * p_info->data_week[i].min ); - } else { - lv_chart_set_value_by_id(ui_sensor_chart_week, ui_sensor_chart_week_series_hight, i, LV_CHART_POINT_NONE); - lv_chart_set_value_by_id(ui_sensor_chart_week, ui_sensor_chart_week_series_low, i, LV_CHART_POINT_NONE); - } - - struct tm timeinfo = { 0 }; - localtime_r(&p_info->data_week[i].timestamp, &timeinfo); - - lv_snprintf((char*)&date_day[i][0], 6, "%02d/%02d",timeinfo.tm_mon + 1, timeinfo.tm_mday); - } - - //change type color - lv_disp_t *dispp = lv_disp_get_default(); - lv_theme_t *theme = lv_theme_default_init(dispp, p_display->color, lv_palette_main(LV_PALETTE_RED), true, LV_FONT_DEFAULT); - lv_disp_set_theme(dispp, theme); - - lv_chart_refresh(ui_sensor_chart_day); - lv_chart_refresh(ui_sensor_chart_week); -} - -void sensor_chart_event_init(void) -{ - int i = 0; - struct view_data_sensor_history_data default_sensor_info; - - default_sensor_info.resolution = 1; - - time_t now = 0; - time(&now); - time_t time1 = (time_t)(now / 3600) * 3600; - time_t time2 = (time_t)(now / 3600 / 24) * 3600 * 24; - - float min=90; - float max=10; - - for(i = 0; i < 24; i++) { - default_sensor_info.data_day[i].data = (float)lv_rand(10, 90); - default_sensor_info.data_day[i].timestamp = time1 + i *3600; - default_sensor_info.data_day[i].valid = true; - - if( min > default_sensor_info.data_day[i].data) { - min = default_sensor_info.data_day[i].data; - } - if( max < default_sensor_info.data_day[i].data) { - max = default_sensor_info.data_day[i].data; - } - } - default_sensor_info.day_max = max; - default_sensor_info.day_min = min; - - - min=90; - max=10; - - for(i = 0; i < 7; i++) { - default_sensor_info.data_week[i].max = (float)lv_rand(60, 90); - default_sensor_info.data_week[i].min = (float)lv_rand(10, 40); - default_sensor_info.data_week[i].timestamp = time2 + i * 3600 * 24;; - default_sensor_info.data_week[i].valid = true; - - if( min > default_sensor_info.data_week[i].min) { - min = default_sensor_info.data_week[i].min; - } - if( max < default_sensor_info.data_week[i].max) { - max = default_sensor_info.data_week[i].max; - } - } - default_sensor_info.week_max = max; - default_sensor_info.week_min = min; - - sensor_chart_display_t default_chart = { - .color = lv_palette_main(LV_PALETTE_GREEN), - .p_info = &default_sensor_info, - }; - strcpy(default_chart.name, "TEST"); - strcpy(default_chart.units, "%%"); - - - - sensor_chart_update( &default_chart); - - lv_obj_add_event_cb(ui_sensor_chart_day, event_chart_day_cb, LV_EVENT_ALL, NULL); - lv_obj_add_event_cb(ui_sensor_chart_week, event_chart_week_cb, LV_EVENT_ALL, NULL); -} /*****************************************************************/ // wifi config @@ -544,7 +249,6 @@ static void __view_event_handler(void* handler_args, esp_event_base_t base, int3 lv_img_set_src(ui_wifi_st_4 , (void *)p_src); lv_img_set_src(ui_wifi_st_5 , (void *)p_src); lv_img_set_src(ui_wifi_st_6 , (void *)p_src); - lv_img_set_src(ui_wifi_st_7 , (void *)p_src); break; } case VIEW_EVENT_SENSOR_DATA: { @@ -585,44 +289,6 @@ static void __view_event_handler(void* handler_args, esp_event_base_t base, int3 } break; } - case VIEW_EVENT_SENSOR_DATA_HISTORY: { - ESP_LOGI(TAG, "event: VIEW_EVENT_SENSOR_DATA_HISTORY"); - struct view_data_sensor_history_data *p_data = (struct view_data_sensor_history_data *) event_data; - sensor_chart_display_t sensor_chart; - - switch (p_data->sensor_type) - { - case SENSOR_DATA_CO2: { - sensor_chart.color = lv_color_hex(0x529D53); - sensor_chart.p_info = p_data; - strcpy(sensor_chart.name, "CO2"); - break; - } - case SENSOR_DATA_TVOC: { - sensor_chart.color = lv_color_hex(0xE06D3D); - sensor_chart.p_info = p_data; - strcpy(sensor_chart.name, "tVOC"); - break; - } - case SENSOR_DATA_TEMP: { - sensor_chart.color = lv_color_hex(0xEEBF41); - sensor_chart.p_info = p_data; - strcpy(sensor_chart.name, "Temp"); - break; - } - case SENSOR_DATA_HUMIDITY: { - sensor_chart.color = lv_color_hex(0x4EACE4); - sensor_chart.p_info = p_data; - strcpy(sensor_chart.name, "Humidity"); - break; - } - default: - break; - } - sensor_chart_update( &sensor_chart); - - break; - } case VIEW_EVENT_SCREEN_CTRL: { bool *p_st = (bool *) event_data; @@ -654,8 +320,6 @@ int indicator_view_init(void) { ui_init(); - sensor_chart_event_init(); - int i = 0; for( i = 0; i < VIEW_EVENT_ALL; i++ ) { ESP_ERROR_CHECK(esp_event_handler_instance_register_with(view_event_handle, diff --git a/examples/indicator_matter/main/view_data.h b/examples/indicator_matter/main/view_data.h index 7381735..2a8a08f 100644 --- a/examples/indicator_matter/main/view_data.h +++ b/examples/indicator_matter/main/view_data.h @@ -90,20 +90,6 @@ struct view_data_sensor_data float value; }; -struct view_data_sensor_history_data -{ - enum sensor_data_type sensor_type; - struct sensor_data_average data_day[24]; - struct sensor_data_minmax data_week[7]; - uint8_t resolution; - - float day_min; - float day_max; - - float week_min; - float week_max; -}; - enum { VIEW_EVENT_SCREEN_START = 0, // uint8_t, enum start_screen, which screen when start @@ -121,13 +107,6 @@ enum { VIEW_EVENT_SENSOR_TVOC, VIEW_EVENT_SENSOR_CO2, - VIEW_EVENT_SENSOR_TEMP_HISTORY, - VIEW_EVENT_SENSOR_HUMIDITY_HISTORY, - VIEW_EVENT_SENSOR_TVOC_HISTORY, - VIEW_EVENT_SENSOR_CO2_HISTORY, - - VIEW_EVENT_SENSOR_DATA_HISTORY, //struct view_data_sensor_history_data - VIEW_EVENT_TIME_CFG_UPDATE, // struct view_data_time_cfg VIEW_EVENT_TIME_CFG_APPLY, // struct view_data_time_cfg @@ -135,7 +114,6 @@ enum { VIEW_EVENT_BRIGHTNESS_UPDATE, // uint8_t brightness VIEW_EVENT_DISPLAY_CFG_APPLY, // struct view_data_display. will save - VIEW_EVENT_SHUTDOWN, //NULL VIEW_EVENT_FACTORY_RESET, //NULL VIEW_EVENT_SCREEN_CTRL, // bool 0:disable , 1:enable diff --git a/examples/indicator_matter/sdkconfig.defaults b/examples/indicator_matter/sdkconfig.defaults index 5c36de2..1928a33 100644 --- a/examples/indicator_matter/sdkconfig.defaults +++ b/examples/indicator_matter/sdkconfig.defaults @@ -142,9 +142,9 @@ CONFIG_ESP_MATTER_MEM_ALLOC_MODE_EXTERNAL=y CONFIG_BT_NIMBLE_MEM_ALLOC_MODE_EXTERNAL=y CONFIG_BT_NIMBLE_MAX_CONNECTIONS=1 CONFIG_COMPILER_OPTIMIZATION_ASSERTIONS_DISABLE=y -CONFIG_LV_ATTRIBUTE_FAST_MEM_USE_IRAM=n CONFIG_SPIRAM_MALLOC_ALWAYSINTERNAL=1000 -CONFIG_SPIRAM_MALLOC_RESERVE_INTERNAL=0 +CONFIG_LV_ATTRIBUTE_FAST_MEM_USE_IRAM=n CONFIG_MAX_EVENT_QUEUE_SIZE=32 +ESP_LOG_WARN=y CONFIG_CHIP_PROJECT_CONFIG="main/matter_config.h" \ No newline at end of file From 7350682eed63c4b8ae82cb5e545988893cef7ae8 Mon Sep 17 00:00:00 2001 From: Cosmic Bee Date: Thu, 11 Apr 2024 17:00:01 -0400 Subject: [PATCH 11/11] Adjust logic for esp-idf 5.1 --- examples/indicator_matter/CMakeLists.txt | 2 +- examples/indicator_matter/main/CMakeLists.txt | 2 +- examples/indicator_matter/main/model/indicator_matter.cpp | 4 ++++ examples/indicator_matter/sdkconfig.defaults | 1 + 4 files changed, 7 insertions(+), 2 deletions(-) diff --git a/examples/indicator_matter/CMakeLists.txt b/examples/indicator_matter/CMakeLists.txt index 20c03ef..37275fd 100644 --- a/examples/indicator_matter/CMakeLists.txt +++ b/examples/indicator_matter/CMakeLists.txt @@ -28,6 +28,6 @@ add_link_options(-Wl,-gc-sections) project(indicator_matter) -idf_build_set_property(CXX_COMPILE_OPTIONS "-std=gnu++14;-Os;-DCHIP_HAVE_CONFIG_H" APPEND) +idf_build_set_property(CXX_COMPILE_OPTIONS "-std=gnu++17;-Os;-DCHIP_HAVE_CONFIG_H;-Wno-overloaded-virtual" APPEND) idf_build_set_property(C_COMPILE_OPTIONS "-Os" APPEND) idf_build_set_property(COMPILE_OPTIONS "-Wno-format-nonliteral;-Wno-format-security" APPEND) \ No newline at end of file diff --git a/examples/indicator_matter/main/CMakeLists.txt b/examples/indicator_matter/main/CMakeLists.txt index 91d19ac..85b61f1 100644 --- a/examples/indicator_matter/main/CMakeLists.txt +++ b/examples/indicator_matter/main/CMakeLists.txt @@ -20,5 +20,5 @@ idf_component_register( PRIV_INCLUDE_DIRS "." EMBED_TXTFILES timeapi_cert.pem) -set_property(TARGET ${COMPONENT_LIB} PROPERTY CXX_STANDARD 14) +set_property(TARGET ${COMPONENT_LIB} PROPERTY CXX_STANDARD 17) target_compile_options(${COMPONENT_LIB} PRIVATE "-DCHIP_HAVE_CONFIG_H") \ No newline at end of file diff --git a/examples/indicator_matter/main/model/indicator_matter.cpp b/examples/indicator_matter/main/model/indicator_matter.cpp index b234c61..cdc2db6 100644 --- a/examples/indicator_matter/main/model/indicator_matter.cpp +++ b/examples/indicator_matter/main/model/indicator_matter.cpp @@ -96,6 +96,10 @@ static void app_event_cb(const ChipDeviceEvent *event, intptr_t arg) st.rssi = -50; st.is_connected = true; esp_event_post_to(view_event_handle, VIEW_EVENT_BASE, VIEW_EVENT_WIFI_ST, &st, sizeof(struct view_data_wifi_st ), portMAX_DELAY); + + __g_matter_connected_flag_set(true); + uint8_t screen = SCREEN_DASHBOARD; + ESP_ERROR_CHECK(esp_event_post_to(view_event_handle, VIEW_EVENT_BASE, VIEW_EVENT_SCREEN_START, &screen, sizeof(screen), portMAX_DELAY)); } break; case chip::DeviceLayer::DeviceEventType::kCommissioningComplete: { diff --git a/examples/indicator_matter/sdkconfig.defaults b/examples/indicator_matter/sdkconfig.defaults index 1928a33..e95d737 100644 --- a/examples/indicator_matter/sdkconfig.defaults +++ b/examples/indicator_matter/sdkconfig.defaults @@ -1,6 +1,7 @@ # This file was generated using idf.py save-defconfig. It can be edited manually. # Espressif IoT Development Framework (ESP-IDF) Project Minimal Configuration # +CONFIG_IDF_EXPERIMENTAL_FEATURES=y CONFIG_SPI_FLASH_32BIT_ADDRESS=y CONFIG_IDF_TARGET="esp32s3" CONFIG_ESPTOOLPY_FLASHMODE_QIO=y