From 08dfc32f890e9ebf4614a9f1ef9337a51ccb749f Mon Sep 17 00:00:00 2001 From: Aloshi Date: Sat, 15 Mar 2014 17:06:16 -0500 Subject: [PATCH] Added the new help images. Still need to redo HelpComponent to be better. Added some more back buttons. Forced text in OptionListComponent to be all capitals. --- CMakeLists.txt | 22 +- data/ResourceUtil.cpp | 36 +- data/Resources.h | 43 +- data/converted/help_a_png.cpp | 520 ++---- data/converted/help_b_png.cpp | 526 ++---- data/converted/help_dpad_all_png.cpp | 1645 +++++++++++++++++++ data/converted/help_dpad_down_png.cpp | 187 +++ data/converted/help_dpad_left_png.cpp | 188 +++ data/converted/help_dpad_left_right_png.cpp | 1637 ++++++++++++++++++ data/converted/help_dpad_png.cpp | 367 ----- data/converted/help_dpad_right_png.cpp | 188 +++ data/converted/help_dpad_up_down_png.cpp | 1638 ++++++++++++++++++ data/converted/help_dpad_up_png.cpp | 188 +++ data/converted/help_l_png.cpp | 154 ++ data/converted/help_left_right_png.cpp | 336 ---- data/converted/help_menu_png.cpp | 351 ---- data/converted/help_r_png.cpp | 157 ++ data/converted/help_select_png.cpp | 155 ++ data/converted/help_start_png.cpp | 152 ++ data/converted/help_up_down_png.cpp | 337 ---- data/converted/help_x_png.cpp | 165 ++ data/converted/help_y_png.cpp | 157 ++ data/converted/star_filled_png.cpp | 545 ++---- data/converted/star_unfilled_png.cpp | 498 ++---- data/resources/help/a.png | Bin 3635 -> 1534 bytes data/resources/help/b.png | Bin 3708 -> 1522 bytes data/resources/help/dpad.png | Bin 3592 -> 0 bytes data/resources/help/dpad_all.png | Bin 0 -> 16375 bytes data/resources/help/dpad_down.png | Bin 0 -> 1797 bytes data/resources/help/dpad_left.png | Bin 0 -> 1805 bytes data/resources/help/dpad_left_right.png | Bin 0 -> 16291 bytes data/resources/help/dpad_right.png | Bin 0 -> 1802 bytes data/resources/help/dpad_up.png | Bin 0 -> 1804 bytes data/resources/help/dpad_up_down.png | Bin 0 -> 16306 bytes data/resources/help/l.png | Bin 0 -> 1464 bytes data/resources/help/left_right.png | Bin 3288 -> 0 bytes data/resources/help/menu.png | Bin 3431 -> 0 bytes data/resources/help/r.png | Bin 0 -> 1495 bytes data/resources/help/select.png | Bin 0 -> 1477 bytes data/resources/help/start.png | Bin 0 -> 1446 bytes data/resources/help/up_down.png | Bin 3292 -> 0 bytes data/resources/help/x.png | Bin 0 -> 1576 bytes data/resources/help/y.png | Bin 0 -> 1498 bytes data/resources/star_filled.png | Bin 3698 -> 1729 bytes data/resources/star_unfilled.png | Bin 3703 -> 1245 bytes src/Util.cpp | 22 + src/Util.h | 23 +- src/components/ButtonComponent.h | 3 + src/components/HelpComponent.cpp | 9 +- src/components/MenuComponent.cpp | 2 +- src/components/OptionListComponent.h | 12 +- src/guis/GuiMsgBox.cpp | 27 + src/guis/GuiMsgBox.h | 3 +- src/guis/GuiScraperStart.cpp | 1 + 54 files changed, 7371 insertions(+), 2923 deletions(-) create mode 100644 data/converted/help_dpad_all_png.cpp create mode 100644 data/converted/help_dpad_down_png.cpp create mode 100644 data/converted/help_dpad_left_png.cpp create mode 100644 data/converted/help_dpad_left_right_png.cpp delete mode 100644 data/converted/help_dpad_png.cpp create mode 100644 data/converted/help_dpad_right_png.cpp create mode 100644 data/converted/help_dpad_up_down_png.cpp create mode 100644 data/converted/help_dpad_up_png.cpp create mode 100644 data/converted/help_l_png.cpp delete mode 100644 data/converted/help_left_right_png.cpp delete mode 100644 data/converted/help_menu_png.cpp create mode 100644 data/converted/help_r_png.cpp create mode 100644 data/converted/help_select_png.cpp create mode 100644 data/converted/help_start_png.cpp delete mode 100644 data/converted/help_up_down_png.cpp create mode 100644 data/converted/help_x_png.cpp create mode 100644 data/converted/help_y_png.cpp delete mode 100644 data/resources/help/dpad.png create mode 100644 data/resources/help/dpad_all.png create mode 100644 data/resources/help/dpad_down.png create mode 100644 data/resources/help/dpad_left.png create mode 100644 data/resources/help/dpad_left_right.png create mode 100644 data/resources/help/dpad_right.png create mode 100644 data/resources/help/dpad_up.png create mode 100644 data/resources/help/dpad_up_down.png create mode 100644 data/resources/help/l.png delete mode 100644 data/resources/help/left_right.png delete mode 100644 data/resources/help/menu.png create mode 100644 data/resources/help/r.png create mode 100644 data/resources/help/select.png create mode 100644 data/resources/help/start.png delete mode 100644 data/resources/help/up_down.png create mode 100644 data/resources/help/x.png create mode 100644 data/resources/help/y.png create mode 100644 src/Util.cpp diff --git a/CMakeLists.txt b/CMakeLists.txt index b5d41510d..95a4e52da 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -239,6 +239,7 @@ set(ES_SOURCES ${CMAKE_CURRENT_SOURCE_DIR}/src/Sound.cpp ${CMAKE_CURRENT_SOURCE_DIR}/src/SystemData.cpp ${CMAKE_CURRENT_SOURCE_DIR}/src/ThemeData.cpp + ${CMAKE_CURRENT_SOURCE_DIR}/src/Util.cpp ${CMAKE_CURRENT_SOURCE_DIR}/src/VolumeControl.cpp ${CMAKE_CURRENT_SOURCE_DIR}/src/Window.cpp ${CMAKE_CURRENT_SOURCE_DIR}/src/XMLReader.cpp @@ -302,12 +303,23 @@ set(ES_SOURCES ${CMAKE_CURRENT_SOURCE_DIR}/data/converted/scroll_gradient_png.cpp ${CMAKE_CURRENT_SOURCE_DIR}/data/converted/star_filled_png.cpp ${CMAKE_CURRENT_SOURCE_DIR}/data/converted/star_unfilled_png.cpp + ${CMAKE_CURRENT_SOURCE_DIR}/data/converted/help_a_png.cpp ${CMAKE_CURRENT_SOURCE_DIR}/data/converted/help_b_png.cpp - ${CMAKE_CURRENT_SOURCE_DIR}/data/converted/help_menu_png.cpp - ${CMAKE_CURRENT_SOURCE_DIR}/data/converted/help_dpad_png.cpp - ${CMAKE_CURRENT_SOURCE_DIR}/data/converted/help_up_down_png.cpp - ${CMAKE_CURRENT_SOURCE_DIR}/data/converted/help_left_right_png.cpp + ${CMAKE_CURRENT_SOURCE_DIR}/data/converted/help_x_png.cpp + ${CMAKE_CURRENT_SOURCE_DIR}/data/converted/help_y_png.cpp + ${CMAKE_CURRENT_SOURCE_DIR}/data/converted/help_l_png.cpp + ${CMAKE_CURRENT_SOURCE_DIR}/data/converted/help_r_png.cpp + ${CMAKE_CURRENT_SOURCE_DIR}/data/converted/help_start_png.cpp + ${CMAKE_CURRENT_SOURCE_DIR}/data/converted/help_select_png.cpp + ${CMAKE_CURRENT_SOURCE_DIR}/data/converted/help_dpad_all_png.cpp + ${CMAKE_CURRENT_SOURCE_DIR}/data/converted/help_dpad_up_png.cpp + ${CMAKE_CURRENT_SOURCE_DIR}/data/converted/help_dpad_down_png.cpp + ${CMAKE_CURRENT_SOURCE_DIR}/data/converted/help_dpad_left_png.cpp + ${CMAKE_CURRENT_SOURCE_DIR}/data/converted/help_dpad_right_png.cpp + ${CMAKE_CURRENT_SOURCE_DIR}/data/converted/help_dpad_up_down_png.cpp + ${CMAKE_CURRENT_SOURCE_DIR}/data/converted/help_dpad_left_right_png.cpp + ${CMAKE_CURRENT_SOURCE_DIR}/data/converted/opensans_hebrew_condensed_regular_ttf.cpp ${CMAKE_CURRENT_SOURCE_DIR}/data/converted/sq_bracket_png.cpp ${CMAKE_CURRENT_SOURCE_DIR}/data/converted/arrow_png.cpp @@ -316,7 +328,7 @@ set(ES_SOURCES ${CMAKE_CURRENT_SOURCE_DIR}/data/converted/slider_knob_png.cpp ) -SOURCE_GROUP(resources FILES ResourceUtil.cpp) +#SOURCE_GROUP(resources FILES ResourceUtil.cpp) #add open gl specific sources #if(${GLSystem} MATCHES "Desktop OpenGL") diff --git a/data/ResourceUtil.cpp b/data/ResourceUtil.cpp index aadd7bb4c..4efa51b30 100644 --- a/data/ResourceUtil.cpp +++ b/data/ResourceUtil.cpp @@ -2,7 +2,7 @@ #include "Resources.h" -const size_t res2hNrOfFiles = 22; +const size_t res2hNrOfFiles = 31; const Res2hEntry res2hFiles[res2hNrOfFiles] = { {":/arrow.png", arrow_png_size, arrow_png_data}, {":/button.png", button_png_size, button_png_data}, @@ -22,10 +22,19 @@ const Res2hEntry res2hFiles[res2hNrOfFiles] = { {":/textbox_glow.png", textbox_glow_png_size, textbox_glow_png_data}, {":/help/a.png", help_a_png_size, help_a_png_data}, {":/help/b.png", help_b_png_size, help_b_png_data}, - {":/help/dpad.png", help_dpad_png_size, help_dpad_png_data}, - {":/help/left_right.png", help_left_right_png_size, help_left_right_png_data}, - {":/help/menu.png", help_menu_png_size, help_menu_png_data}, - {":/help/up_down.png", help_up_down_png_size, help_up_down_png_data} + {":/help/dpad_all.png", help_dpad_all_png_size, help_dpad_all_png_data}, + {":/help/dpad_down.png", help_dpad_down_png_size, help_dpad_down_png_data}, + {":/help/dpad_left.png", help_dpad_left_png_size, help_dpad_left_png_data}, + {":/help/dpad_left_right.png", help_dpad_left_right_png_size, help_dpad_left_right_png_data}, + {":/help/dpad_right.png", help_dpad_right_png_size, help_dpad_right_png_data}, + {":/help/dpad_up.png", help_dpad_up_png_size, help_dpad_up_png_data}, + {":/help/dpad_up_down.png", help_dpad_up_down_png_size, help_dpad_up_down_png_data}, + {":/help/l.png", help_l_png_size, help_l_png_data}, + {":/help/r.png", help_r_png_size, help_r_png_data}, + {":/help/select.png", help_select_png_size, help_select_png_data}, + {":/help/start.png", help_start_png_size, help_start_png_data}, + {":/help/x.png", help_x_png_size, help_x_png_data}, + {":/help/y.png", help_y_png_size, help_y_png_data} }; res2hMapType::value_type mapTemp[] = { @@ -47,10 +56,19 @@ res2hMapType::value_type mapTemp[] = { std::make_pair(":/textbox_glow.png", res2hFiles[15]), std::make_pair(":/help/a.png", res2hFiles[16]), std::make_pair(":/help/b.png", res2hFiles[17]), - std::make_pair(":/help/dpad.png", res2hFiles[18]), - std::make_pair(":/help/left_right.png", res2hFiles[19]), - std::make_pair(":/help/menu.png", res2hFiles[20]), - std::make_pair(":/help/up_down.png", res2hFiles[21]) + std::make_pair(":/help/dpad_all.png", res2hFiles[18]), + std::make_pair(":/help/dpad_down.png", res2hFiles[19]), + std::make_pair(":/help/dpad_left.png", res2hFiles[20]), + std::make_pair(":/help/dpad_left_right.png", res2hFiles[21]), + std::make_pair(":/help/dpad_right.png", res2hFiles[22]), + std::make_pair(":/help/dpad_up.png", res2hFiles[23]), + std::make_pair(":/help/dpad_up_down.png", res2hFiles[24]), + std::make_pair(":/help/l.png", res2hFiles[25]), + std::make_pair(":/help/r.png", res2hFiles[26]), + std::make_pair(":/help/select.png", res2hFiles[27]), + std::make_pair(":/help/start.png", res2hFiles[28]), + std::make_pair(":/help/x.png", res2hFiles[29]), + std::make_pair(":/help/y.png", res2hFiles[30]) }; res2hMapType res2hMap(mapTemp, mapTemp + sizeof mapTemp / sizeof mapTemp[0]); diff --git a/data/Resources.h b/data/Resources.h index 2ca401471..44acf3d05 100644 --- a/data/Resources.h +++ b/data/Resources.h @@ -59,17 +59,44 @@ extern const unsigned char help_a_png_data[]; extern const size_t help_b_png_size; extern const unsigned char help_b_png_data[]; -extern const size_t help_dpad_png_size; -extern const unsigned char help_dpad_png_data[]; +extern const size_t help_dpad_all_png_size; +extern const unsigned char help_dpad_all_png_data[]; -extern const size_t help_left_right_png_size; -extern const unsigned char help_left_right_png_data[]; +extern const size_t help_dpad_down_png_size; +extern const unsigned char help_dpad_down_png_data[]; -extern const size_t help_menu_png_size; -extern const unsigned char help_menu_png_data[]; +extern const size_t help_dpad_left_png_size; +extern const unsigned char help_dpad_left_png_data[]; -extern const size_t help_up_down_png_size; -extern const unsigned char help_up_down_png_data[]; +extern const size_t help_dpad_left_right_png_size; +extern const unsigned char help_dpad_left_right_png_data[]; + +extern const size_t help_dpad_right_png_size; +extern const unsigned char help_dpad_right_png_data[]; + +extern const size_t help_dpad_up_png_size; +extern const unsigned char help_dpad_up_png_data[]; + +extern const size_t help_dpad_up_down_png_size; +extern const unsigned char help_dpad_up_down_png_data[]; + +extern const size_t help_l_png_size; +extern const unsigned char help_l_png_data[]; + +extern const size_t help_r_png_size; +extern const unsigned char help_r_png_data[]; + +extern const size_t help_select_png_size; +extern const unsigned char help_select_png_data[]; + +extern const size_t help_start_png_size; +extern const unsigned char help_start_png_data[]; + +extern const size_t help_x_png_size; +extern const unsigned char help_x_png_data[]; + +extern const size_t help_y_png_size; +extern const unsigned char help_y_png_data[]; struct Res2hEntry { const std::string relativeFileName; diff --git a/data/converted/help_a_png.cpp b/data/converted/help_a_png.cpp index ad62421b4..d62cbae87 100644 --- a/data/converted/help_a_png.cpp +++ b/data/converted/help_a_png.cpp @@ -2,370 +2,160 @@ #include "../Resources.h" -const size_t help_a_png_size = 3635; -const unsigned char help_a_png_data[3635] = { +const size_t help_a_png_size = 1534; +const unsigned char help_a_png_data[1534] = { 0x89,0x50,0x4e,0x47,0x0d,0x0a,0x1a,0x0a,0x00,0x00, - 0x00,0x0d,0x49,0x48,0x44,0x52,0x00,0x00,0x00,0x30, - 0x00,0x00,0x00,0x30,0x08,0x06,0x00,0x00,0x00,0x57, - 0x02,0xf9,0x87,0x00,0x00,0x00,0x09,0x70,0x48,0x59, - 0x73,0x00,0x00,0x0b,0x13,0x00,0x00,0x0b,0x13,0x01, - 0x00,0x9a,0x9c,0x18,0x00,0x00,0x0a,0x4f,0x69,0x43, - 0x43,0x50,0x50,0x68,0x6f,0x74,0x6f,0x73,0x68,0x6f, - 0x70,0x20,0x49,0x43,0x43,0x20,0x70,0x72,0x6f,0x66, - 0x69,0x6c,0x65,0x00,0x00,0x78,0xda,0x9d,0x53,0x67, - 0x54,0x53,0xe9,0x16,0x3d,0xf7,0xde,0xf4,0x42,0x4b, - 0x88,0x80,0x94,0x4b,0x6f,0x52,0x15,0x08,0x20,0x52, - 0x42,0x8b,0x80,0x14,0x91,0x26,0x2a,0x21,0x09,0x10, - 0x4a,0x88,0x21,0xa1,0xd9,0x15,0x51,0xc1,0x11,0x45, - 0x45,0x04,0x1b,0xc8,0xa0,0x88,0x03,0x8e,0x8e,0x80, - 0x8c,0x15,0x51,0x2c,0x0c,0x8a,0x0a,0xd8,0x07,0xe4, - 0x21,0xa2,0x8e,0x83,0xa3,0x88,0x8a,0xca,0xfb,0xe1, - 0x7b,0xa3,0x6b,0xd6,0xbc,0xf7,0xe6,0xcd,0xfe,0xb5, - 0xd7,0x3e,0xe7,0xac,0xf3,0x9d,0xb3,0xcf,0x07,0xc0, - 0x08,0x0c,0x96,0x48,0x33,0x51,0x35,0x80,0x0c,0xa9, - 0x42,0x1e,0x11,0xe0,0x83,0xc7,0xc4,0xc6,0xe1,0xe4, - 0x2e,0x40,0x81,0x0a,0x24,0x70,0x00,0x10,0x08,0xb3, - 0x64,0x21,0x73,0xfd,0x23,0x01,0x00,0xf8,0x7e,0x3c, - 0x3c,0x2b,0x22,0xc0,0x07,0xbe,0x00,0x01,0x78,0xd3, - 0x0b,0x08,0x00,0xc0,0x4d,0x9b,0xc0,0x30,0x1c,0x87, - 0xff,0x0f,0xea,0x42,0x99,0x5c,0x01,0x80,0x84,0x01, - 0xc0,0x74,0x91,0x38,0x4b,0x08,0x80,0x14,0x00,0x40, - 0x7a,0x8e,0x42,0xa6,0x00,0x40,0x46,0x01,0x80,0x9d, - 0x98,0x26,0x53,0x00,0xa0,0x04,0x00,0x60,0xcb,0x63, - 0x62,0xe3,0x00,0x50,0x2d,0x00,0x60,0x27,0x7f,0xe6, - 0xd3,0x00,0x80,0x9d,0xf8,0x99,0x7b,0x01,0x00,0x5b, - 0x94,0x21,0x15,0x01,0xa0,0x91,0x00,0x20,0x13,0x65, - 0x88,0x44,0x00,0x68,0x3b,0x00,0xac,0xcf,0x56,0x8a, - 0x45,0x00,0x58,0x30,0x00,0x14,0x66,0x4b,0xc4,0x39, - 0x00,0xd8,0x2d,0x00,0x30,0x49,0x57,0x66,0x48,0x00, - 0xb0,0xb7,0x00,0xc0,0xce,0x10,0x0b,0xb2,0x00,0x08, - 0x0c,0x00,0x30,0x51,0x88,0x85,0x29,0x00,0x04,0x7b, - 0x00,0x60,0xc8,0x23,0x23,0x78,0x00,0x84,0x99,0x00, - 0x14,0x46,0xf2,0x57,0x3c,0xf1,0x2b,0xae,0x10,0xe7, - 0x2a,0x00,0x00,0x78,0x99,0xb2,0x3c,0xb9,0x24,0x39, - 0x45,0x81,0x5b,0x08,0x2d,0x71,0x07,0x57,0x57,0x2e, - 0x1e,0x28,0xce,0x49,0x17,0x2b,0x14,0x36,0x61,0x02, - 0x61,0x9a,0x40,0x2e,0xc2,0x79,0x99,0x19,0x32,0x81, - 0x34,0x0f,0xe0,0xf3,0xcc,0x00,0x00,0xa0,0x91,0x15, - 0x11,0xe0,0x83,0xf3,0xfd,0x78,0xce,0x0e,0xae,0xce, - 0xce,0x36,0x8e,0xb6,0x0e,0x5f,0x2d,0xea,0xbf,0x06, - 0xff,0x22,0x62,0x62,0xe3,0xfe,0xe5,0xcf,0xab,0x70, - 0x40,0x00,0x00,0xe1,0x74,0x7e,0xd1,0xfe,0x2c,0x2f, - 0xb3,0x1a,0x80,0x3b,0x06,0x80,0x6d,0xfe,0xa2,0x25, - 0xee,0x04,0x68,0x5e,0x0b,0xa0,0x75,0xf7,0x8b,0x66, - 0xb2,0x0f,0x40,0xb5,0x00,0xa0,0xe9,0xda,0x57,0xf3, - 0x70,0xf8,0x7e,0x3c,0x3c,0x45,0xa1,0x90,0xb9,0xd9, - 0xd9,0xe5,0xe4,0xe4,0xd8,0x4a,0xc4,0x42,0x5b,0x61, - 0xca,0x57,0x7d,0xfe,0x67,0xc2,0x5f,0xc0,0x57,0xfd, - 0x6c,0xf9,0x7e,0x3c,0xfc,0xf7,0xf5,0xe0,0xbe,0xe2, - 0x24,0x81,0x32,0x5d,0x81,0x47,0x04,0xf8,0xe0,0xc2, - 0xcc,0xf4,0x4c,0xa5,0x1c,0xcf,0x92,0x09,0x84,0x62, - 0xdc,0xe6,0x8f,0x47,0xfc,0xb7,0x0b,0xff,0xfc,0x1d, - 0xd3,0x22,0xc4,0x49,0x62,0xb9,0x58,0x2a,0x14,0xe3, - 0x51,0x12,0x71,0x8e,0x44,0x9a,0x8c,0xf3,0x32,0xa5, - 0x22,0x89,0x42,0x92,0x29,0xc5,0x25,0xd2,0xff,0x64, - 0xe2,0xdf,0x2c,0xfb,0x03,0x3e,0xdf,0x35,0x00,0xb0, - 0x6a,0x3e,0x01,0x7b,0x91,0x2d,0xa8,0x5d,0x63,0x03, - 0xf6,0x4b,0x27,0x10,0x58,0x74,0xc0,0xe2,0xf7,0x00, - 0x00,0xf2,0xbb,0x6f,0xc1,0xd4,0x28,0x08,0x03,0x80, - 0x68,0x83,0xe1,0xcf,0x77,0xff,0xef,0x3f,0xfd,0x47, - 0xa0,0x25,0x00,0x80,0x66,0x49,0x92,0x71,0x00,0x00, - 0x5e,0x44,0x24,0x2e,0x54,0xca,0xb3,0x3f,0xc7,0x08, - 0x00,0x00,0x44,0xa0,0x81,0x2a,0xb0,0x41,0x1b,0xf4, - 0xc1,0x18,0x2c,0xc0,0x06,0x1c,0xc1,0x05,0xdc,0xc1, - 0x0b,0xfc,0x60,0x36,0x84,0x42,0x24,0xc4,0xc2,0x42, - 0x10,0x42,0x0a,0x64,0x80,0x1c,0x72,0x60,0x29,0xac, - 0x82,0x42,0x28,0x86,0xcd,0xb0,0x1d,0x2a,0x60,0x2f, - 0xd4,0x40,0x1d,0x34,0xc0,0x51,0x68,0x86,0x93,0x70, - 0x0e,0x2e,0xc2,0x55,0xb8,0x0e,0x3d,0x70,0x0f,0xfa, - 0x61,0x08,0x9e,0xc1,0x28,0xbc,0x81,0x09,0x04,0x41, - 0xc8,0x08,0x13,0x61,0x21,0xda,0x88,0x01,0x62,0x8a, - 0x58,0x23,0x8e,0x08,0x17,0x99,0x85,0xf8,0x21,0xc1, - 0x48,0x04,0x12,0x8b,0x24,0x20,0xc9,0x88,0x14,0x51, - 0x22,0x4b,0x91,0x35,0x48,0x31,0x52,0x8a,0x54,0x20, - 0x55,0x48,0x1d,0xf2,0x3d,0x72,0x02,0x39,0x87,0x5c, - 0x46,0xba,0x91,0x3b,0xc8,0x00,0x32,0x82,0xfc,0x86, - 0xbc,0x47,0x31,0x94,0x81,0xb2,0x51,0x3d,0xd4,0x0c, - 0xb5,0x43,0xb9,0xa8,0x37,0x1a,0x84,0x46,0xa2,0x0b, - 0xd0,0x64,0x74,0x31,0x9a,0x8f,0x16,0xa0,0x9b,0xd0, - 0x72,0xb4,0x1a,0x3d,0x8c,0x36,0xa1,0xe7,0xd0,0xab, - 0x68,0x0f,0xda,0x8f,0x3e,0x43,0xc7,0x30,0xc0,0xe8, - 0x18,0x07,0x33,0xc4,0x6c,0x30,0x2e,0xc6,0xc3,0x42, - 0xb1,0x38,0x2c,0x09,0x93,0x63,0xcb,0xb1,0x22,0xac, - 0x0c,0xab,0xc6,0x1a,0xb0,0x56,0xac,0x03,0xbb,0x89, - 0xf5,0x63,0xcf,0xb1,0x77,0x04,0x12,0x81,0x45,0xc0, - 0x09,0x36,0x04,0x77,0x42,0x20,0x61,0x1e,0x41,0x48, - 0x58,0x4c,0x58,0x4e,0xd8,0x48,0xa8,0x20,0x1c,0x24, - 0x34,0x11,0xda,0x09,0x37,0x09,0x03,0x84,0x51,0xc2, - 0x27,0x22,0x93,0xa8,0x4b,0xb4,0x26,0xba,0x11,0xf9, - 0xc4,0x18,0x62,0x32,0x31,0x87,0x58,0x48,0x2c,0x23, - 0xd6,0x12,0x8f,0x13,0x2f,0x10,0x7b,0x88,0x43,0xc4, - 0x37,0x24,0x12,0x89,0x43,0x32,0x27,0xb9,0x90,0x02, - 0x49,0xb1,0xa4,0x54,0xd2,0x12,0xd2,0x46,0xd2,0x6e, - 0x52,0x23,0xe9,0x2c,0xa9,0x9b,0x34,0x48,0x1a,0x23, - 0x93,0xc9,0xda,0x64,0x6b,0xb2,0x07,0x39,0x94,0x2c, - 0x20,0x2b,0xc8,0x85,0xe4,0x9d,0xe4,0xc3,0xe4,0x33, - 0xe4,0x1b,0xe4,0x21,0xf2,0x5b,0x0a,0x9d,0x62,0x40, - 0x71,0xa4,0xf8,0x53,0xe2,0x28,0x52,0xca,0x6a,0x4a, - 0x19,0xe5,0x10,0xe5,0x34,0xe5,0x06,0x65,0x98,0x32, - 0x41,0x55,0xa3,0x9a,0x52,0xdd,0xa8,0xa1,0x54,0x11, - 0x35,0x8f,0x5a,0x42,0xad,0xa1,0xb6,0x52,0xaf,0x51, - 0x87,0xa8,0x13,0x34,0x75,0x9a,0x39,0xcd,0x83,0x16, - 0x49,0x4b,0xa5,0xad,0xa2,0x95,0xd3,0x1a,0x68,0x17, - 0x68,0xf7,0x69,0xaf,0xe8,0x74,0xba,0x11,0xdd,0x95, - 0x1e,0x4e,0x97,0xd0,0x57,0xd2,0xcb,0xe9,0x47,0xe8, - 0x97,0xe8,0x03,0xf4,0x77,0x0c,0x0d,0x86,0x15,0x83, - 0xc7,0x88,0x67,0x28,0x19,0x9b,0x18,0x07,0x18,0x67, - 0x19,0x77,0x18,0xaf,0x98,0x4c,0xa6,0x19,0xd3,0x8b, - 0x19,0xc7,0x54,0x30,0x37,0x31,0xeb,0x98,0xe7,0x99, - 0x0f,0x99,0x6f,0x55,0x58,0x2a,0xb6,0x2a,0x7c,0x15, - 0x91,0xca,0x0a,0x95,0x4a,0x95,0x26,0x95,0x1b,0x2a, - 0x2f,0x54,0xa9,0xaa,0xa6,0xaa,0xde,0xaa,0x0b,0x55, - 0xf3,0x55,0xcb,0x54,0x8f,0xa9,0x5e,0x53,0x7d,0xae, - 0x46,0x55,0x33,0x53,0xe3,0xa9,0x09,0xd4,0x96,0xab, - 0x55,0xaa,0x9d,0x50,0xeb,0x53,0x1b,0x53,0x67,0xa9, - 0x3b,0xa8,0x87,0xaa,0x67,0xa8,0x6f,0x54,0x3f,0xa4, - 0x7e,0x59,0xfd,0x89,0x06,0x59,0xc3,0x4c,0xc3,0x4f, - 0x43,0xa4,0x51,0xa0,0xb1,0x5f,0xe3,0xbc,0xc6,0x20, - 0x0b,0x63,0x19,0xb3,0x78,0x2c,0x21,0x6b,0x0d,0xab, - 0x86,0x75,0x81,0x35,0xc4,0x26,0xb1,0xcd,0xd9,0x7c, - 0x76,0x2a,0xbb,0x98,0xfd,0x1d,0xbb,0x8b,0x3d,0xaa, - 0xa9,0xa1,0x39,0x43,0x33,0x4a,0x33,0x57,0xb3,0x52, - 0xf3,0x94,0x66,0x3f,0x07,0xe3,0x98,0x71,0xf8,0x9c, - 0x74,0x4e,0x09,0xe7,0x28,0xa7,0x97,0xf3,0x7e,0x8a, - 0xde,0x14,0xef,0x29,0xe2,0x29,0x1b,0xa6,0x34,0x4c, - 0xb9,0x31,0x65,0x5c,0x6b,0xaa,0x96,0x97,0x96,0x58, - 0xab,0x48,0xab,0x51,0xab,0x47,0xeb,0xbd,0x36,0xae, - 0xed,0xa7,0x9d,0xa6,0xbd,0x45,0xbb,0x59,0xfb,0x81, - 0x0e,0x41,0xc7,0x4a,0x27,0x5c,0x27,0x47,0x67,0x8f, - 0xce,0x05,0x9d,0xe7,0x53,0xd9,0x53,0xdd,0xa7,0x0a, - 0xa7,0x16,0x4d,0x3d,0x3a,0xf5,0xae,0x2e,0xaa,0x6b, - 0xa5,0x1b,0xa1,0xbb,0x44,0x77,0xbf,0x6e,0xa7,0xee, - 0x98,0x9e,0xbe,0x5e,0x80,0x9e,0x4c,0x6f,0xa7,0xde, - 0x79,0xbd,0xe7,0xfa,0x1c,0x7d,0x2f,0xfd,0x54,0xfd, - 0x6d,0xfa,0xa7,0xf5,0x47,0x0c,0x58,0x06,0xb3,0x0c, - 0x24,0x06,0xdb,0x0c,0xce,0x18,0x3c,0xc5,0x35,0x71, - 0x6f,0x3c,0x1d,0x2f,0xc7,0xdb,0xf1,0x51,0x43,0x5d, - 0xc3,0x40,0x43,0xa5,0x61,0x95,0x61,0x97,0xe1,0x84, - 0x91,0xb9,0xd1,0x3c,0xa3,0xd5,0x46,0x8d,0x46,0x0f, - 0x8c,0x69,0xc6,0x5c,0xe3,0x24,0xe3,0x6d,0xc6,0x6d, - 0xc6,0xa3,0x26,0x06,0x26,0x21,0x26,0x4b,0x4d,0xea, - 0x4d,0xee,0x9a,0x52,0x4d,0xb9,0xa6,0x29,0xa6,0x3b, - 0x4c,0x3b,0x4c,0xc7,0xcd,0xcc,0xcd,0xa2,0xcd,0xd6, - 0x99,0x35,0x9b,0x3d,0x31,0xd7,0x32,0xe7,0x9b,0xe7, - 0x9b,0xd7,0x9b,0xdf,0xb7,0x60,0x5a,0x78,0x5a,0x2c, - 0xb6,0xa8,0xb6,0xb8,0x65,0x49,0xb2,0xe4,0x5a,0xa6, - 0x59,0xee,0xb6,0xbc,0x6e,0x85,0x5a,0x39,0x59,0xa5, - 0x58,0x55,0x5a,0x5d,0xb3,0x46,0xad,0x9d,0xad,0x25, - 0xd6,0xbb,0xad,0xbb,0xa7,0x11,0xa7,0xb9,0x4e,0x93, - 0x4e,0xab,0x9e,0xd6,0x67,0xc3,0xb0,0xf1,0xb6,0xc9, - 0xb6,0xa9,0xb7,0x19,0xb0,0xe5,0xd8,0x06,0xdb,0xae, - 0xb6,0x6d,0xb6,0x7d,0x61,0x67,0x62,0x17,0x67,0xb7, - 0xc5,0xae,0xc3,0xee,0x93,0xbd,0x93,0x7d,0xba,0x7d, - 0x8d,0xfd,0x3d,0x07,0x0d,0x87,0xd9,0x0e,0xab,0x1d, - 0x5a,0x1d,0x7e,0x73,0xb4,0x72,0x14,0x3a,0x56,0x3a, - 0xde,0x9a,0xce,0x9c,0xee,0x3f,0x7d,0xc5,0xf4,0x96, - 0xe9,0x2f,0x67,0x58,0xcf,0x10,0xcf,0xd8,0x33,0xe3, - 0xb6,0x13,0xcb,0x29,0xc4,0x69,0x9d,0x53,0x9b,0xd3, - 0x47,0x67,0x17,0x67,0xb9,0x73,0x83,0xf3,0x88,0x8b, - 0x89,0x4b,0x82,0xcb,0x2e,0x97,0x3e,0x2e,0x9b,0x1b, - 0xc6,0xdd,0xc8,0xbd,0xe4,0x4a,0x74,0xf5,0x71,0x5d, - 0xe1,0x7a,0xd2,0xf5,0x9d,0x9b,0xb3,0x9b,0xc2,0xed, - 0xa8,0xdb,0xaf,0xee,0x36,0xee,0x69,0xee,0x87,0xdc, - 0x9f,0xcc,0x34,0x9f,0x29,0x9e,0x59,0x33,0x73,0xd0, - 0xc3,0xc8,0x43,0xe0,0x51,0xe5,0xd1,0x3f,0x0b,0x9f, - 0x95,0x30,0x6b,0xdf,0xac,0x7e,0x4f,0x43,0x4f,0x81, - 0x67,0xb5,0xe7,0x23,0x2f,0x63,0x2f,0x91,0x57,0xad, - 0xd7,0xb0,0xb7,0xa5,0x77,0xaa,0xf7,0x61,0xef,0x17, - 0x3e,0xf6,0x3e,0x72,0x9f,0xe3,0x3e,0xe3,0x3c,0x37, - 0xde,0x32,0xde,0x59,0x5f,0xcc,0x37,0xc0,0xb7,0xc8, - 0xb7,0xcb,0x4f,0xc3,0x6f,0x9e,0x5f,0x85,0xdf,0x43, - 0x7f,0x23,0xff,0x64,0xff,0x7a,0xff,0xd1,0x00,0xa7, - 0x80,0x25,0x01,0x67,0x03,0x89,0x81,0x41,0x81,0x5b, - 0x02,0xfb,0xf8,0x7a,0x7c,0x21,0xbf,0x8e,0x3f,0x3a, - 0xdb,0x65,0xf6,0xb2,0xd9,0xed,0x41,0x8c,0xa0,0xb9, - 0x41,0x15,0x41,0x8f,0x82,0xad,0x82,0xe5,0xc1,0xad, - 0x21,0x68,0xc8,0xec,0x90,0xad,0x21,0xf7,0xe7,0x98, - 0xce,0x91,0xce,0x69,0x0e,0x85,0x50,0x7e,0xe8,0xd6, - 0xd0,0x07,0x61,0xe6,0x61,0x8b,0xc3,0x7e,0x0c,0x27, - 0x85,0x87,0x85,0x57,0x86,0x3f,0x8e,0x70,0x88,0x58, - 0x1a,0xd1,0x31,0x97,0x35,0x77,0xd1,0xdc,0x43,0x73, - 0xdf,0x44,0xfa,0x44,0x96,0x44,0xde,0x9b,0x67,0x31, - 0x4f,0x39,0xaf,0x2d,0x4a,0x35,0x2a,0x3e,0xaa,0x2e, - 0x6a,0x3c,0xda,0x37,0xba,0x34,0xba,0x3f,0xc6,0x2e, - 0x66,0x59,0xcc,0xd5,0x58,0x9d,0x58,0x49,0x6c,0x4b, - 0x1c,0x39,0x2e,0x2a,0xae,0x36,0x6e,0x6c,0xbe,0xdf, - 0xfc,0xed,0xf3,0x87,0xe2,0x9d,0xe2,0x0b,0xe3,0x7b, - 0x17,0x98,0x2f,0xc8,0x5d,0x70,0x79,0xa1,0xce,0xc2, - 0xf4,0x85,0xa7,0x16,0xa9,0x2e,0x12,0x2c,0x3a,0x96, - 0x40,0x4c,0x88,0x4e,0x38,0x94,0xf0,0x41,0x10,0x2a, - 0xa8,0x16,0x8c,0x25,0xf2,0x13,0x77,0x25,0x8e,0x0a, - 0x79,0xc2,0x1d,0xc2,0x67,0x22,0x2f,0xd1,0x36,0xd1, - 0x88,0xd8,0x43,0x5c,0x2a,0x1e,0x4e,0xf2,0x48,0x2a, - 0x4d,0x7a,0x92,0xec,0x91,0xbc,0x35,0x79,0x24,0xc5, - 0x33,0xa5,0x2c,0xe5,0xb9,0x84,0x27,0xa9,0x90,0xbc, - 0x4c,0x0d,0x4c,0xdd,0x9b,0x3a,0x9e,0x16,0x9a,0x76, - 0x20,0x6d,0x32,0x3d,0x3a,0xbd,0x31,0x83,0x92,0x91, - 0x90,0x71,0x42,0xaa,0x21,0x4d,0x93,0xb6,0x67,0xea, - 0x67,0xe6,0x66,0x76,0xcb,0xac,0x65,0x85,0xb2,0xfe, - 0xc5,0x6e,0x8b,0xb7,0x2f,0x1e,0x95,0x07,0xc9,0x6b, - 0xb3,0x90,0xac,0x05,0x59,0x2d,0x0a,0xb6,0x42,0xa6, - 0xe8,0x54,0x5a,0x28,0xd7,0x2a,0x07,0xb2,0x67,0x65, - 0x57,0x66,0xbf,0xcd,0x89,0xca,0x39,0x96,0xab,0x9e, - 0x2b,0xcd,0xed,0xcc,0xb3,0xca,0xdb,0x90,0x37,0x9c, - 0xef,0x9f,0xff,0xed,0x12,0xc2,0x12,0xe1,0x92,0xb6, - 0xa5,0x86,0x4b,0x57,0x2d,0x1d,0x58,0xe6,0xbd,0xac, - 0x6a,0x39,0xb2,0x3c,0x71,0x79,0xdb,0x0a,0xe3,0x15, - 0x05,0x2b,0x86,0x56,0x06,0xac,0x3c,0xb8,0x8a,0xb6, - 0x2a,0x6d,0xd5,0x4f,0xab,0xed,0x57,0x97,0xae,0x7e, - 0xbd,0x26,0x7a,0x4d,0x6b,0x81,0x5e,0xc1,0xca,0x82, - 0xc1,0xb5,0x01,0x6b,0xeb,0x0b,0x55,0x0a,0xe5,0x85, - 0x7d,0xeb,0xdc,0xd7,0xed,0x5d,0x4f,0x58,0x2f,0x59, - 0xdf,0xb5,0x61,0xfa,0x86,0x9d,0x1b,0x3e,0x15,0x89, - 0x8a,0xae,0x14,0xdb,0x17,0x97,0x15,0x7f,0xd8,0x28, - 0xdc,0x78,0xe5,0x1b,0x87,0x6f,0xca,0xbf,0x99,0xdc, - 0x94,0xb4,0xa9,0xab,0xc4,0xb9,0x64,0xcf,0x66,0xd2, - 0x66,0xe9,0xe6,0xde,0x2d,0x9e,0x5b,0x0e,0x96,0xaa, - 0x97,0xe6,0x97,0x0e,0x6e,0x0d,0xd9,0xda,0xb4,0x0d, - 0xdf,0x56,0xb4,0xed,0xf5,0xf6,0x45,0xdb,0x2f,0x97, - 0xcd,0x28,0xdb,0xbb,0x83,0xb6,0x43,0xb9,0xa3,0xbf, - 0x3c,0xb8,0xbc,0x65,0xa7,0xc9,0xce,0xcd,0x3b,0x3f, - 0x54,0xa4,0x54,0xf4,0x54,0xfa,0x54,0x36,0xee,0xd2, - 0xdd,0xb5,0x61,0xd7,0xf8,0x6e,0xd1,0xee,0x1b,0x7b, - 0xbc,0xf6,0x34,0xec,0xd5,0xdb,0x5b,0xbc,0xf7,0xfd, - 0x3e,0xc9,0xbe,0xdb,0x55,0x01,0x55,0x4d,0xd5,0x66, - 0xd5,0x65,0xfb,0x49,0xfb,0xb3,0xf7,0x3f,0xae,0x89, - 0xaa,0xe9,0xf8,0x96,0xfb,0x6d,0x5d,0xad,0x4e,0x6d, - 0x71,0xed,0xc7,0x03,0xd2,0x03,0xfd,0x07,0x23,0x0e, - 0xb6,0xd7,0xb9,0xd4,0xd5,0x1d,0xd2,0x3d,0x54,0x52, - 0x8f,0xd6,0x2b,0xeb,0x47,0x0e,0xc7,0x1f,0xbe,0xfe, - 0x9d,0xef,0x77,0x2d,0x0d,0x36,0x0d,0x55,0x8d,0x9c, - 0xc6,0xe2,0x23,0x70,0x44,0x79,0xe4,0xe9,0xf7,0x09, - 0xdf,0xf7,0x1e,0x0d,0x3a,0xda,0x76,0x8c,0x7b,0xac, - 0xe1,0x07,0xd3,0x1f,0x76,0x1d,0x67,0x1d,0x2f,0x6a, - 0x42,0x9a,0xf2,0x9a,0x46,0x9b,0x53,0x9a,0xfb,0x5b, - 0x62,0x5b,0xba,0x4f,0xcc,0x3e,0xd1,0xd6,0xea,0xde, - 0x7a,0xfc,0x47,0xdb,0x1f,0x0f,0x9c,0x34,0x3c,0x59, - 0x79,0x4a,0xf3,0x54,0xc9,0x69,0xda,0xe9,0x82,0xd3, - 0x93,0x67,0xf2,0xcf,0x8c,0x9d,0x95,0x9d,0x7d,0x7e, - 0x2e,0xf9,0xdc,0x60,0xdb,0xa2,0xb6,0x7b,0xe7,0x63, - 0xce,0xdf,0x6a,0x0f,0x6f,0xef,0xba,0x10,0x74,0xe1, - 0xd2,0x45,0xff,0x8b,0xe7,0x3b,0xbc,0x3b,0xce,0x5c, - 0xf2,0xb8,0x74,0xf2,0xb2,0xdb,0xe5,0x13,0x57,0xb8, - 0x57,0x9a,0xaf,0x3a,0x5f,0x6d,0xea,0x74,0xea,0x3c, - 0xfe,0x93,0xd3,0x4f,0xc7,0xbb,0x9c,0xbb,0x9a,0xae, - 0xb9,0x5c,0x6b,0xb9,0xee,0x7a,0xbd,0xb5,0x7b,0x66, - 0xf7,0xe9,0x1b,0x9e,0x37,0xce,0xdd,0xf4,0xbd,0x79, - 0xf1,0x16,0xff,0xd6,0xd5,0x9e,0x39,0x3d,0xdd,0xbd, - 0xf3,0x7a,0x6f,0xf7,0xc5,0xf7,0xf5,0xdf,0x16,0xdd, - 0x7e,0x72,0x27,0xfd,0xce,0xcb,0xbb,0xd9,0x77,0x27, - 0xee,0xad,0xbc,0x4f,0xbc,0x5f,0xf4,0x40,0xed,0x41, - 0xd9,0x43,0xdd,0x87,0xd5,0x3f,0x5b,0xfe,0xdc,0xd8, - 0xef,0xdc,0x7f,0x6a,0xc0,0x77,0xa0,0xf3,0xd1,0xdc, - 0x47,0xf7,0x06,0x85,0x83,0xcf,0xfe,0x91,0xf5,0x8f, - 0x0f,0x43,0x05,0x8f,0x99,0x8f,0xcb,0x86,0x0d,0x86, - 0xeb,0x9e,0x38,0x3e,0x39,0x39,0xe2,0x3f,0x72,0xfd, - 0xe9,0xfc,0xa7,0x43,0xcf,0x64,0xcf,0x26,0x9e,0x17, - 0xfe,0xa2,0xfe,0xcb,0xae,0x17,0x16,0x2f,0x7e,0xf8, - 0xd5,0xeb,0xd7,0xce,0xd1,0x98,0xd1,0xa1,0x97,0xf2, - 0x97,0x93,0xbf,0x6d,0x7c,0xa5,0xfd,0xea,0xc0,0xeb, - 0x19,0xaf,0xdb,0xc6,0xc2,0xc6,0x1e,0xbe,0xc9,0x78, - 0x33,0x31,0x5e,0xf4,0x56,0xfb,0xed,0xc1,0x77,0xdc, - 0x77,0x1d,0xef,0xa3,0xdf,0x0f,0x4f,0xe4,0x7c,0x20, - 0x7f,0x28,0xff,0x68,0xf9,0xb1,0xf5,0x53,0xd0,0xa7, - 0xfb,0x93,0x19,0x93,0x93,0xff,0x04,0x03,0x98,0xf3, - 0xfc,0x63,0x33,0x2d,0xdb,0x00,0x00,0x00,0x04,0x67, - 0x41,0x4d,0x41,0x00,0x00,0xb1,0x8e,0x7c,0xfb,0x51, - 0x93,0x00,0x00,0x00,0x20,0x63,0x48,0x52,0x4d,0x00, - 0x00,0x7a,0x25,0x00,0x00,0x80,0x83,0x00,0x00,0xf9, - 0xff,0x00,0x00,0x80,0xe9,0x00,0x00,0x75,0x30,0x00, - 0x00,0xea,0x60,0x00,0x00,0x3a,0x98,0x00,0x00,0x17, - 0x6f,0x92,0x5f,0xc5,0x46,0x00,0x00,0x03,0x4e,0x49, - 0x44,0x41,0x54,0x78,0xda,0xec,0x9a,0xcf,0x67,0x1c, - 0x61,0x18,0xc7,0x3f,0xdb,0x44,0x4e,0xa5,0x26,0xf4, - 0x5a,0x32,0x4a,0x28,0x4b,0x19,0x4a,0x28,0xbd,0x6c, - 0x4f,0xa1,0x94,0xce,0xa5,0x94,0x52,0xe6,0x94,0x53, - 0x2e,0x6f,0xfe,0x80,0x92,0x4d,0x09,0x21,0x94,0xb9, - 0x45,0x29,0xb5,0x4b,0x69,0x95,0x1c,0x46,0x69,0xb5, - 0x4a,0x99,0xd0,0x4b,0xaa,0x95,0xce,0x92,0x6a,0xb5, - 0x4a,0x26,0xa9,0x54,0x48,0xa5,0xde,0x5e,0x76,0xd6, - 0x64,0x7f,0xe5,0xfd,0x31,0xbb,0x11,0xf2,0xf0,0xd8, - 0x35,0x33,0x3b,0xef,0xf7,0x3b,0xef,0xf3,0x6b,0x9e, - 0x67,0x4b,0x52,0x4a,0x4e,0xb2,0x9c,0xe1,0x84,0xcb, - 0x29,0x81,0x53,0x02,0x96,0x32,0xda,0xed,0x60,0xa9, - 0x54,0x32,0xbd,0x5f,0x19,0xb8,0x09,0x78,0xc0,0x05, - 0xe0,0x72,0xee,0xdc,0x1f,0xe0,0x33,0xf0,0x11,0x78, - 0x0b,0x3c,0x07,0x7e,0x9a,0x2c,0x72,0x28,0xf0,0x48, - 0x29,0x3b,0x54,0x53,0x2e,0x02,0x8b,0xc0,0x26,0x20, - 0x35,0xf5,0x1d,0x30,0x0b,0x9c,0xd5,0x25,0xd0,0xc2, - 0x6a,0x41,0x60,0x1c,0x58,0x02,0xf6,0x0d,0x80,0xb7, - 0xeb,0x0f,0x20,0x00,0x46,0x86,0x45,0xe0,0x1e,0xb0, - 0x53,0x00,0xf0,0x76,0x5d,0x6f,0x9a,0xdf,0xc0,0x08, - 0x8c,0x00,0xcb,0x03,0x00,0x9e,0xd7,0x3d,0xe0,0xd6, - 0x20,0x08,0x8c,0x03,0xaf,0x06,0x0c,0x3e,0xaf,0xf3, - 0x45,0x12,0x18,0x03,0x5e,0x0e,0x11,0x7c,0xa6,0x73, - 0x45,0x11,0x30,0x36,0x1b,0x21,0x84,0xf4,0x7d,0xdf, - 0x94,0xc0,0x01,0x70,0xc3,0x96,0x40,0x60,0x0a,0xde, - 0x75,0x5d,0x29,0xa5,0x94,0x49,0x92,0xd8,0xec,0xc2, - 0x0e,0x70,0xc9,0x94,0xc0,0xb8,0x4d,0xb4,0x11,0x42, - 0xc8,0x4c,0x2c,0x76,0x41,0x02,0x6f,0x4c,0x09,0x2c, - 0xd9,0xd8,0x70,0x92,0x24,0x2d,0x02,0xb5,0x5a,0xcd, - 0xd6,0x1f,0x6e,0xeb,0x12,0x98,0xb0,0x49,0x52,0xbe, - 0xef,0xcb,0x76,0x71,0x1c,0xc7,0x86,0xc0,0xa7,0x2c, - 0xd1,0xe5,0xb1,0xf6,0x2b,0xe6,0x66,0x9b,0xd1,0xc7, - 0x48,0x7c,0xdf,0x67,0x6d,0x6d,0xed,0xb0,0x33,0x05, - 0x81,0x4d,0xdd,0x36,0x09,0x4c,0xf7,0x0d,0x49,0xb9, - 0x1d,0x18,0x03,0xb6,0x4c,0x9f,0x96,0xe3,0x38,0x52, - 0x4a,0x29,0x85,0x10,0x32,0x0c,0xc3,0xd6,0x0e,0x58, - 0x3a,0xb3,0x04,0xea,0xaa,0x26,0x74,0xcd,0x66,0xa1, - 0xcc,0x79,0x1d,0xc7,0xe9,0x30,0x25,0xcf,0xf3,0x6c, - 0x08,0xec,0x02,0x23,0x2a,0x04,0xee,0xdb,0x3a,0x6f, - 0x18,0x86,0x5d,0x9d,0x39,0x7f,0xdc,0x50,0xa7,0x54, - 0x08,0x3c,0x33,0x5d,0xc0,0xf3,0xbc,0x8e,0xb0,0x99, - 0x0f,0xa7,0x69,0x9a,0xda,0x3a,0xf3,0x8c,0x0a,0x81, - 0x75,0xd3,0x05,0xc2,0x30,0xec,0xb0,0xf5,0x2c,0xa1, - 0x65,0x12,0x04,0x81,0x0d,0x81,0x65,0x15,0x02,0x5b, - 0xa6,0xce,0x9b,0xa6,0xa9,0xac,0x56,0xab,0x1d,0xe7, - 0xa2,0x28,0x6a,0x11,0x88,0xe3,0xd8,0x86,0xc0,0x63, - 0x15,0x02,0x07,0x26,0x37,0x0f,0x82,0x40,0x4a,0x29, - 0xa5,0xeb,0xba,0x3d,0xcf,0x65,0xd2,0xed,0x1a,0x45, - 0x7d,0xa1,0x42,0x60,0xcf,0xe4,0xe6,0x71,0x1c,0xf7, - 0x7d,0xba,0x69,0x9a,0xb6,0x08,0x74,0xdb,0x25,0x45, - 0x7d,0xaa,0x42,0xe0,0x97,0xa9,0xf3,0xaa,0x4a,0x9a, - 0xa6,0xa6,0x04,0x1e,0xe5,0xb1,0x8e,0xf6,0xc8,0x7a, - 0xdf,0x81,0xf3,0xba,0x99,0x77,0x7b,0x7b,0x9b,0x85, - 0x85,0x85,0x9e,0xd7,0x38,0x8e,0x83,0x10,0xa2,0xf5, - 0xdd,0xf7,0x7d,0xea,0xf5,0xba,0x6e,0x46,0xfe,0xaa, - 0x92,0x89,0x9f,0xe8,0x3e,0x99,0x34,0x4d,0x95,0x62, - 0x7c,0x1c,0xc7,0xb6,0x05,0xde,0x1d,0x15,0x13,0x9a, - 0x31,0x71,0xde,0x4a,0xa5,0xa2,0x55,0x62,0x1b,0x3a, - 0xf3,0xa4,0x0a,0x81,0xb2,0xce,0x4d,0xa3,0x28,0x52, - 0xae,0x73,0xb2,0x3a,0x29,0x13,0x21,0x84,0x0e,0xf8, - 0x4d,0x9d,0x72,0x7a,0x5d,0xe7,0xad,0x4b,0xa7,0x44, - 0xa8,0xd5,0x6a,0xa6,0x05,0xde,0xa2,0x4e,0x39,0xbd, - 0xa2,0xe2,0x51,0x61,0x18,0x02,0xd0,0x68,0x34,0x94, - 0xbd,0x30,0xef,0xb8,0xae,0xeb,0xea,0x94,0xd9,0x2b, - 0xaa,0xe5,0x34,0xc0,0xb9,0x7e,0xaf,0x93,0x95,0x4a, - 0xe5,0x50,0x76,0x4d,0x92,0x44,0x06,0x41,0x70,0xa4, - 0x4d,0x7b,0x9e,0x27,0xab,0xd5,0x6a,0x47,0x58,0x15, - 0x42,0x1c,0xf5,0xdb,0x55,0x93,0x57,0xca,0xb9,0x5e, - 0x36,0xdf,0x4f,0xa2,0x28,0xea,0x0a,0x42,0x45,0x7a, - 0x04,0x82,0x03,0x60,0xca,0x84,0xc0,0x18,0xb0,0x71, - 0x0c,0xfd,0xa0,0x76,0x7d,0x68,0xd3,0x56,0xb9,0x5a, - 0x50,0x03,0xd7,0x54,0x1b,0x4d,0x73,0xb6,0x6a,0x6c, - 0xcd,0x1e,0x13,0xf8,0xbd,0xb6,0x19,0x83,0x55,0x6f, - 0xf4,0xc1,0x90,0xc1,0xef,0x03,0xd7,0x8b,0xee,0x4e, - 0xcf,0x0f,0x09,0xfc,0x6e,0x2f,0xf0,0x45,0xcc,0x07, - 0x02,0xd3,0x72,0x5b,0x51,0x37,0x8e,0x9a,0x11,0x14, - 0x31,0xe0,0x28,0x03,0xef,0x07,0x00,0x3e,0x54,0x19, - 0x37,0x15,0x35,0x62,0x02,0xb8,0xdb,0xec,0x98,0xd9, - 0x02,0x5f,0x05,0xae,0x0c,0x7b,0x46,0x96,0x97,0xe9, - 0x66,0xd3,0x69,0x57,0x03,0xf4,0xb7,0x66,0x6d,0x53, - 0x36,0x99,0x52,0x66,0x5a,0xea,0x06,0xd8,0x62,0xcc, - 0x9a,0x35,0xc5,0x26,0x9b,0x9d,0xed,0x89,0xe6,0xe7, - 0x6f,0xe0,0x1f,0xf0,0x01,0xf8,0x0b,0xbc,0x06,0xbe, - 0x98,0x2e,0x90,0xc7,0x5c,0x3a,0xfd,0xb3,0xc7,0x29, - 0x01,0x3b,0xf9,0x3f,0x00,0x4f,0xc6,0x21,0x9b,0xf7, - 0xe9,0xfd,0x97,0x00,0x00,0x00,0x00,0x49,0x45,0x4e, - 0x44,0xae,0x42,0x60,0x82 + 0x00,0x0d,0x49,0x48,0x44,0x52,0x00,0x00,0x00,0x1f, + 0x00,0x00,0x00,0x1f,0x08,0x06,0x00,0x00,0x00,0x1f, + 0xae,0x16,0x39,0x00,0x00,0x00,0x19,0x74,0x45,0x58, + 0x74,0x53,0x6f,0x66,0x74,0x77,0x61,0x72,0x65,0x00, + 0x41,0x64,0x6f,0x62,0x65,0x20,0x49,0x6d,0x61,0x67, + 0x65,0x52,0x65,0x61,0x64,0x79,0x71,0xc9,0x65,0x3c, + 0x00,0x00,0x03,0x24,0x69,0x54,0x58,0x74,0x58,0x4d, + 0x4c,0x3a,0x63,0x6f,0x6d,0x2e,0x61,0x64,0x6f,0x62, + 0x65,0x2e,0x78,0x6d,0x70,0x00,0x00,0x00,0x00,0x00, + 0x3c,0x3f,0x78,0x70,0x61,0x63,0x6b,0x65,0x74,0x20, + 0x62,0x65,0x67,0x69,0x6e,0x3d,0x22,0xef,0xbb,0xbf, + 0x22,0x20,0x69,0x64,0x3d,0x22,0x57,0x35,0x4d,0x30, + 0x4d,0x70,0x43,0x65,0x68,0x69,0x48,0x7a,0x72,0x65, + 0x53,0x7a,0x4e,0x54,0x63,0x7a,0x6b,0x63,0x39,0x64, + 0x22,0x3f,0x3e,0x20,0x3c,0x78,0x3a,0x78,0x6d,0x70, + 0x6d,0x65,0x74,0x61,0x20,0x78,0x6d,0x6c,0x6e,0x73, + 0x3a,0x78,0x3d,0x22,0x61,0x64,0x6f,0x62,0x65,0x3a, + 0x6e,0x73,0x3a,0x6d,0x65,0x74,0x61,0x2f,0x22,0x20, + 0x78,0x3a,0x78,0x6d,0x70,0x74,0x6b,0x3d,0x22,0x41, + 0x64,0x6f,0x62,0x65,0x20,0x58,0x4d,0x50,0x20,0x43, + 0x6f,0x72,0x65,0x20,0x35,0x2e,0x33,0x2d,0x63,0x30, + 0x31,0x31,0x20,0x36,0x36,0x2e,0x31,0x34,0x35,0x36, + 0x36,0x31,0x2c,0x20,0x32,0x30,0x31,0x32,0x2f,0x30, + 0x32,0x2f,0x30,0x36,0x2d,0x31,0x34,0x3a,0x35,0x36, + 0x3a,0x32,0x37,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x22,0x3e,0x20,0x3c,0x72,0x64,0x66,0x3a,0x52, + 0x44,0x46,0x20,0x78,0x6d,0x6c,0x6e,0x73,0x3a,0x72, + 0x64,0x66,0x3d,0x22,0x68,0x74,0x74,0x70,0x3a,0x2f, + 0x2f,0x77,0x77,0x77,0x2e,0x77,0x33,0x2e,0x6f,0x72, + 0x67,0x2f,0x31,0x39,0x39,0x39,0x2f,0x30,0x32,0x2f, + 0x32,0x32,0x2d,0x72,0x64,0x66,0x2d,0x73,0x79,0x6e, + 0x74,0x61,0x78,0x2d,0x6e,0x73,0x23,0x22,0x3e,0x20, + 0x3c,0x72,0x64,0x66,0x3a,0x44,0x65,0x73,0x63,0x72, + 0x69,0x70,0x74,0x69,0x6f,0x6e,0x20,0x72,0x64,0x66, + 0x3a,0x61,0x62,0x6f,0x75,0x74,0x3d,0x22,0x22,0x20, + 0x78,0x6d,0x6c,0x6e,0x73,0x3a,0x78,0x6d,0x70,0x3d, + 0x22,0x68,0x74,0x74,0x70,0x3a,0x2f,0x2f,0x6e,0x73, + 0x2e,0x61,0x64,0x6f,0x62,0x65,0x2e,0x63,0x6f,0x6d, + 0x2f,0x78,0x61,0x70,0x2f,0x31,0x2e,0x30,0x2f,0x22, + 0x20,0x78,0x6d,0x6c,0x6e,0x73,0x3a,0x78,0x6d,0x70, + 0x4d,0x4d,0x3d,0x22,0x68,0x74,0x74,0x70,0x3a,0x2f, + 0x2f,0x6e,0x73,0x2e,0x61,0x64,0x6f,0x62,0x65,0x2e, + 0x63,0x6f,0x6d,0x2f,0x78,0x61,0x70,0x2f,0x31,0x2e, + 0x30,0x2f,0x6d,0x6d,0x2f,0x22,0x20,0x78,0x6d,0x6c, + 0x6e,0x73,0x3a,0x73,0x74,0x52,0x65,0x66,0x3d,0x22, + 0x68,0x74,0x74,0x70,0x3a,0x2f,0x2f,0x6e,0x73,0x2e, + 0x61,0x64,0x6f,0x62,0x65,0x2e,0x63,0x6f,0x6d,0x2f, + 0x78,0x61,0x70,0x2f,0x31,0x2e,0x30,0x2f,0x73,0x54, + 0x79,0x70,0x65,0x2f,0x52,0x65,0x73,0x6f,0x75,0x72, + 0x63,0x65,0x52,0x65,0x66,0x23,0x22,0x20,0x78,0x6d, + 0x70,0x3a,0x43,0x72,0x65,0x61,0x74,0x6f,0x72,0x54, + 0x6f,0x6f,0x6c,0x3d,0x22,0x41,0x64,0x6f,0x62,0x65, + 0x20,0x50,0x68,0x6f,0x74,0x6f,0x73,0x68,0x6f,0x70, + 0x20,0x43,0x53,0x36,0x20,0x28,0x4d,0x61,0x63,0x69, + 0x6e,0x74,0x6f,0x73,0x68,0x29,0x22,0x20,0x78,0x6d, + 0x70,0x4d,0x4d,0x3a,0x49,0x6e,0x73,0x74,0x61,0x6e, + 0x63,0x65,0x49,0x44,0x3d,0x22,0x78,0x6d,0x70,0x2e, + 0x69,0x69,0x64,0x3a,0x36,0x39,0x44,0x41,0x36,0x46, + 0x46,0x36,0x39,0x44,0x39,0x30,0x31,0x31,0x45,0x33, + 0x41,0x39,0x31,0x44,0x42,0x44,0x46,0x44,0x34,0x30, + 0x39,0x39,0x32,0x45,0x45,0x33,0x22,0x20,0x78,0x6d, + 0x70,0x4d,0x4d,0x3a,0x44,0x6f,0x63,0x75,0x6d,0x65, + 0x6e,0x74,0x49,0x44,0x3d,0x22,0x78,0x6d,0x70,0x2e, + 0x64,0x69,0x64,0x3a,0x36,0x39,0x44,0x41,0x36,0x46, + 0x46,0x37,0x39,0x44,0x39,0x30,0x31,0x31,0x45,0x33, + 0x41,0x39,0x31,0x44,0x42,0x44,0x46,0x44,0x34,0x30, + 0x39,0x39,0x32,0x45,0x45,0x33,0x22,0x3e,0x20,0x3c, + 0x78,0x6d,0x70,0x4d,0x4d,0x3a,0x44,0x65,0x72,0x69, + 0x76,0x65,0x64,0x46,0x72,0x6f,0x6d,0x20,0x73,0x74, + 0x52,0x65,0x66,0x3a,0x69,0x6e,0x73,0x74,0x61,0x6e, + 0x63,0x65,0x49,0x44,0x3d,0x22,0x78,0x6d,0x70,0x2e, + 0x69,0x69,0x64,0x3a,0x36,0x39,0x44,0x41,0x36,0x46, + 0x46,0x34,0x39,0x44,0x39,0x30,0x31,0x31,0x45,0x33, + 0x41,0x39,0x31,0x44,0x42,0x44,0x46,0x44,0x34,0x30, + 0x39,0x39,0x32,0x45,0x45,0x33,0x22,0x20,0x73,0x74, + 0x52,0x65,0x66,0x3a,0x64,0x6f,0x63,0x75,0x6d,0x65, + 0x6e,0x74,0x49,0x44,0x3d,0x22,0x78,0x6d,0x70,0x2e, + 0x64,0x69,0x64,0x3a,0x36,0x39,0x44,0x41,0x36,0x46, + 0x46,0x35,0x39,0x44,0x39,0x30,0x31,0x31,0x45,0x33, + 0x41,0x39,0x31,0x44,0x42,0x44,0x46,0x44,0x34,0x30, + 0x39,0x39,0x32,0x45,0x45,0x33,0x22,0x2f,0x3e,0x20, + 0x3c,0x2f,0x72,0x64,0x66,0x3a,0x44,0x65,0x73,0x63, + 0x72,0x69,0x70,0x74,0x69,0x6f,0x6e,0x3e,0x20,0x3c, + 0x2f,0x72,0x64,0x66,0x3a,0x52,0x44,0x46,0x3e,0x20, + 0x3c,0x2f,0x78,0x3a,0x78,0x6d,0x70,0x6d,0x65,0x74, + 0x61,0x3e,0x20,0x3c,0x3f,0x78,0x70,0x61,0x63,0x6b, + 0x65,0x74,0x20,0x65,0x6e,0x64,0x3d,0x22,0x72,0x22, + 0x3f,0x3e,0x86,0x06,0x19,0x6c,0x00,0x00,0x02,0x70, + 0x49,0x44,0x41,0x54,0x78,0xda,0xbc,0x97,0x4f,0x48, + 0x14,0x61,0x18,0xc6,0x77,0x47,0xbb,0xb8,0x42,0x28, + 0xb1,0x5e,0x63,0x83,0x52,0xf3,0x12,0xe1,0x41,0x2d, + 0x22,0xf6,0x96,0xd5,0xae,0xa1,0x96,0x87,0x2e,0x82, + 0xe6,0x21,0xba,0x04,0xad,0x27,0xaf,0x52,0xc7,0xa0, + 0x43,0xb5,0xd0,0x2d,0xb4,0xd4,0xa8,0xf4,0x50,0x87, + 0x54,0xd4,0x28,0xc2,0x08,0x42,0x0b,0x8d,0xa8,0x8b, + 0x18,0x81,0xf8,0x27,0x02,0xd1,0xb4,0xe7,0x85,0x67, + 0xe0,0x63,0xd8,0x9d,0xf9,0xde,0x71,0xd7,0x07,0x7e, + 0xf8,0xb9,0x33,0xf3,0x3e,0x33,0xdf,0x7c,0xdf,0xfb, + 0xbe,0x13,0xcd,0x64,0x32,0x11,0x4b,0xd5,0x81,0x66, + 0x70,0x0a,0xd4,0x82,0x2a,0x10,0x03,0x7f,0xc1,0x32, + 0xf8,0x0a,0xa6,0xc0,0x18,0xf8,0x6c,0x13,0xb0,0x34, + 0xe0,0x78,0x14,0xb4,0x80,0x5e,0x50,0x9f,0xe7,0x9c, + 0x32,0x90,0x20,0xe7,0x40,0x3f,0xf8,0x00,0xee,0x80, + 0x61,0xb0,0x9b,0x2f,0xb8,0xe3,0x63,0x5c,0x0d,0x26, + 0x19,0xa0,0x3e,0xa2,0x93,0x9c,0xff,0x94,0x33,0x51, + 0xad,0x35,0x6f,0xe3,0xdd,0x9f,0x8e,0xec,0x4d,0x4d, + 0x60,0x16,0x5c,0xb1,0x35,0xef,0x02,0x03,0xa0,0x3c, + 0x52,0x18,0xc9,0x6b,0x79,0x0c,0xae,0x07,0x99,0x5f, + 0x06,0xf7,0x03,0x5e,0x47,0x18,0xc9,0xda,0xb9,0x0b, + 0x3a,0xf2,0x99,0x1f,0x05,0x59,0x9e,0x58,0x0c,0x49, + 0xdc,0x87,0xa0,0xc6,0x6b,0x2e,0x07,0x1e,0x14,0x70, + 0xaa,0xf3,0x29,0x46,0x9f,0xa8,0x69,0x9e,0x02,0x67, + 0x94,0x81,0x64,0x5d,0x5c,0x23,0xe3,0x8a,0xeb,0x24, + 0x4f,0x5c,0x32,0xf7,0xf9,0xad,0x10,0x4f,0xd1,0x07, + 0x16,0x39,0x96,0x24,0x73,0x56,0x71,0xad,0x64,0xb6, + 0x61,0x87,0xfb,0xb0,0x41,0x69,0x3c,0x6b,0x18,0x8b, + 0x5e,0x81,0x55,0x65,0x1e,0x38,0x2e,0xe6,0x17,0x42, + 0x3c,0xf5,0x20,0xff,0x1e,0x02,0x25,0x60,0x13,0x3c, + 0x53,0xc6,0x48,0x3b,0x7c,0x07,0x1a,0x49,0xba,0x7c, + 0xc2,0x71,0xbb,0x91,0x88,0x06,0x94,0x71,0x1a,0x1c, + 0x73,0xe9,0x5b,0xea,0x2d,0xf8,0xc9,0xb1,0xe4,0xfd, + 0x34,0xc7,0x6f,0xc0,0x6f,0x45,0x9c,0x1a,0x31,0x8f, + 0x87,0x9c,0xf2,0x0a,0xee,0x90,0x14,0xff,0xdf,0x06, + 0x43,0x8a,0x38,0x71,0x31,0x3f,0xa8,0xb8,0xe0,0x1f, + 0x0b,0x86,0xe8,0x3c,0x38,0x00,0x0e,0x83,0x13,0x9e, + 0x1b,0xb3,0x51,0xb9,0x98,0xaf,0x29,0x2e,0x98,0xe0, + 0xb6,0x72,0x57,0xec,0x77,0xd2,0xc8,0xdf,0xa4,0x8a, + 0x2d,0x59,0xc6,0xfa,0xe3,0x18,0xc1,0x6c,0x13,0x8b, + 0xab,0x1b,0xe0,0x08,0xb9,0xc7,0xdf,0x76,0x8c,0x99, + 0x09,0xd2,0x2f,0x87,0x1d,0x88,0x8d,0xb6,0xc0,0x88, + 0xf2,0x06,0xfd,0xf4,0xc5,0xe1,0x54,0xd9,0xe8,0x35, + 0x58,0xe1,0xf8,0x11,0xb7,0x9c,0xc9,0x4d,0x1e,0x7b, + 0x0f,0x7e,0x58,0xc4,0x9b,0x12,0xf3,0x97,0xca,0x29, + 0x97,0x94,0x7c,0x31,0xc7,0xf1,0x16,0x23,0x0f,0xd8, + 0x2c,0xbc,0x51,0x31,0x5f,0xe0,0xde,0xf5,0xd3,0x36, + 0x9b,0xc2,0x04,0x8b,0x42,0x65,0xae,0xa4,0xc1,0x55, + 0x9f,0xe0,0xd3,0xfb,0xe9,0x1d,0x98,0x77,0x0b,0x4b, + 0x7f,0xc0,0x0c,0xc8,0x79,0x9f,0x02,0x02,0xca,0x83, + 0x7c,0xb4,0x9c,0xc5,0xdb,0x66,0x49,0x1d,0x65,0x86, + 0xda,0x0f,0x49,0x53,0xfa,0xdc,0xdb,0xc9,0x48,0x5d, + 0x5e,0x2f,0xb2,0xf1,0x06,0xe8,0x76,0xdb,0x69,0xd3, + 0xfc,0x1b,0xb8,0xca,0x2c,0x56,0x0c,0x49,0xdc,0x4e, + 0xae,0xb1,0x9c,0x0d,0xe4,0x0b,0xd0,0xe3,0xd7,0xe8, + 0xef,0xc1,0xb8,0xc7,0x9b,0xfb,0x73,0x75,0xa9,0xd2, + 0x44,0xb6,0x16,0xf0,0x15,0xac,0xb3,0xf4,0x66,0x6d, + 0x3f,0x1a,0x24,0x93,0x9d,0x2c,0xc0,0x22,0x1c,0x67, + 0x9c,0x11,0xed,0xe7,0x92,0xac,0x81,0x24,0x3b,0x9d, + 0x69,0xa5,0xe9,0x0c,0xeb,0x7c,0x92,0x71,0x42,0x7d, + 0x28,0xba,0xdb,0x50,0x38,0xe6,0xf9,0x4a,0x8d,0xb3, + 0x1c,0xaf,0xb1,0x89,0x98,0xa3,0xe9,0x98,0x6d,0xbd, + 0xf8,0x2f,0xc0,0x00,0x7e,0x7d,0x81,0xa8,0x66,0x52, + 0x34,0x4b,0x00,0x00,0x00,0x00,0x49,0x45,0x4e,0x44, + 0xae,0x42,0x60,0x82 }; diff --git a/data/converted/help_b_png.cpp b/data/converted/help_b_png.cpp index 4b768c68b..9a1b2a59b 100644 --- a/data/converted/help_b_png.cpp +++ b/data/converted/help_b_png.cpp @@ -2,377 +2,159 @@ #include "../Resources.h" -const size_t help_b_png_size = 3708; -const unsigned char help_b_png_data[3708] = { +const size_t help_b_png_size = 1522; +const unsigned char help_b_png_data[1522] = { 0x89,0x50,0x4e,0x47,0x0d,0x0a,0x1a,0x0a,0x00,0x00, - 0x00,0x0d,0x49,0x48,0x44,0x52,0x00,0x00,0x00,0x30, - 0x00,0x00,0x00,0x30,0x08,0x06,0x00,0x00,0x00,0x57, - 0x02,0xf9,0x87,0x00,0x00,0x00,0x09,0x70,0x48,0x59, - 0x73,0x00,0x00,0x0b,0x13,0x00,0x00,0x0b,0x13,0x01, - 0x00,0x9a,0x9c,0x18,0x00,0x00,0x0a,0x4f,0x69,0x43, - 0x43,0x50,0x50,0x68,0x6f,0x74,0x6f,0x73,0x68,0x6f, - 0x70,0x20,0x49,0x43,0x43,0x20,0x70,0x72,0x6f,0x66, - 0x69,0x6c,0x65,0x00,0x00,0x78,0xda,0x9d,0x53,0x67, - 0x54,0x53,0xe9,0x16,0x3d,0xf7,0xde,0xf4,0x42,0x4b, - 0x88,0x80,0x94,0x4b,0x6f,0x52,0x15,0x08,0x20,0x52, - 0x42,0x8b,0x80,0x14,0x91,0x26,0x2a,0x21,0x09,0x10, - 0x4a,0x88,0x21,0xa1,0xd9,0x15,0x51,0xc1,0x11,0x45, - 0x45,0x04,0x1b,0xc8,0xa0,0x88,0x03,0x8e,0x8e,0x80, - 0x8c,0x15,0x51,0x2c,0x0c,0x8a,0x0a,0xd8,0x07,0xe4, - 0x21,0xa2,0x8e,0x83,0xa3,0x88,0x8a,0xca,0xfb,0xe1, - 0x7b,0xa3,0x6b,0xd6,0xbc,0xf7,0xe6,0xcd,0xfe,0xb5, - 0xd7,0x3e,0xe7,0xac,0xf3,0x9d,0xb3,0xcf,0x07,0xc0, - 0x08,0x0c,0x96,0x48,0x33,0x51,0x35,0x80,0x0c,0xa9, - 0x42,0x1e,0x11,0xe0,0x83,0xc7,0xc4,0xc6,0xe1,0xe4, - 0x2e,0x40,0x81,0x0a,0x24,0x70,0x00,0x10,0x08,0xb3, - 0x64,0x21,0x73,0xfd,0x23,0x01,0x00,0xf8,0x7e,0x3c, - 0x3c,0x2b,0x22,0xc0,0x07,0xbe,0x00,0x01,0x78,0xd3, - 0x0b,0x08,0x00,0xc0,0x4d,0x9b,0xc0,0x30,0x1c,0x87, - 0xff,0x0f,0xea,0x42,0x99,0x5c,0x01,0x80,0x84,0x01, - 0xc0,0x74,0x91,0x38,0x4b,0x08,0x80,0x14,0x00,0x40, - 0x7a,0x8e,0x42,0xa6,0x00,0x40,0x46,0x01,0x80,0x9d, - 0x98,0x26,0x53,0x00,0xa0,0x04,0x00,0x60,0xcb,0x63, - 0x62,0xe3,0x00,0x50,0x2d,0x00,0x60,0x27,0x7f,0xe6, - 0xd3,0x00,0x80,0x9d,0xf8,0x99,0x7b,0x01,0x00,0x5b, - 0x94,0x21,0x15,0x01,0xa0,0x91,0x00,0x20,0x13,0x65, - 0x88,0x44,0x00,0x68,0x3b,0x00,0xac,0xcf,0x56,0x8a, - 0x45,0x00,0x58,0x30,0x00,0x14,0x66,0x4b,0xc4,0x39, - 0x00,0xd8,0x2d,0x00,0x30,0x49,0x57,0x66,0x48,0x00, - 0xb0,0xb7,0x00,0xc0,0xce,0x10,0x0b,0xb2,0x00,0x08, - 0x0c,0x00,0x30,0x51,0x88,0x85,0x29,0x00,0x04,0x7b, - 0x00,0x60,0xc8,0x23,0x23,0x78,0x00,0x84,0x99,0x00, - 0x14,0x46,0xf2,0x57,0x3c,0xf1,0x2b,0xae,0x10,0xe7, - 0x2a,0x00,0x00,0x78,0x99,0xb2,0x3c,0xb9,0x24,0x39, - 0x45,0x81,0x5b,0x08,0x2d,0x71,0x07,0x57,0x57,0x2e, - 0x1e,0x28,0xce,0x49,0x17,0x2b,0x14,0x36,0x61,0x02, - 0x61,0x9a,0x40,0x2e,0xc2,0x79,0x99,0x19,0x32,0x81, - 0x34,0x0f,0xe0,0xf3,0xcc,0x00,0x00,0xa0,0x91,0x15, - 0x11,0xe0,0x83,0xf3,0xfd,0x78,0xce,0x0e,0xae,0xce, - 0xce,0x36,0x8e,0xb6,0x0e,0x5f,0x2d,0xea,0xbf,0x06, - 0xff,0x22,0x62,0x62,0xe3,0xfe,0xe5,0xcf,0xab,0x70, - 0x40,0x00,0x00,0xe1,0x74,0x7e,0xd1,0xfe,0x2c,0x2f, - 0xb3,0x1a,0x80,0x3b,0x06,0x80,0x6d,0xfe,0xa2,0x25, - 0xee,0x04,0x68,0x5e,0x0b,0xa0,0x75,0xf7,0x8b,0x66, - 0xb2,0x0f,0x40,0xb5,0x00,0xa0,0xe9,0xda,0x57,0xf3, - 0x70,0xf8,0x7e,0x3c,0x3c,0x45,0xa1,0x90,0xb9,0xd9, - 0xd9,0xe5,0xe4,0xe4,0xd8,0x4a,0xc4,0x42,0x5b,0x61, - 0xca,0x57,0x7d,0xfe,0x67,0xc2,0x5f,0xc0,0x57,0xfd, - 0x6c,0xf9,0x7e,0x3c,0xfc,0xf7,0xf5,0xe0,0xbe,0xe2, - 0x24,0x81,0x32,0x5d,0x81,0x47,0x04,0xf8,0xe0,0xc2, - 0xcc,0xf4,0x4c,0xa5,0x1c,0xcf,0x92,0x09,0x84,0x62, - 0xdc,0xe6,0x8f,0x47,0xfc,0xb7,0x0b,0xff,0xfc,0x1d, - 0xd3,0x22,0xc4,0x49,0x62,0xb9,0x58,0x2a,0x14,0xe3, - 0x51,0x12,0x71,0x8e,0x44,0x9a,0x8c,0xf3,0x32,0xa5, - 0x22,0x89,0x42,0x92,0x29,0xc5,0x25,0xd2,0xff,0x64, - 0xe2,0xdf,0x2c,0xfb,0x03,0x3e,0xdf,0x35,0x00,0xb0, - 0x6a,0x3e,0x01,0x7b,0x91,0x2d,0xa8,0x5d,0x63,0x03, - 0xf6,0x4b,0x27,0x10,0x58,0x74,0xc0,0xe2,0xf7,0x00, - 0x00,0xf2,0xbb,0x6f,0xc1,0xd4,0x28,0x08,0x03,0x80, - 0x68,0x83,0xe1,0xcf,0x77,0xff,0xef,0x3f,0xfd,0x47, - 0xa0,0x25,0x00,0x80,0x66,0x49,0x92,0x71,0x00,0x00, - 0x5e,0x44,0x24,0x2e,0x54,0xca,0xb3,0x3f,0xc7,0x08, - 0x00,0x00,0x44,0xa0,0x81,0x2a,0xb0,0x41,0x1b,0xf4, - 0xc1,0x18,0x2c,0xc0,0x06,0x1c,0xc1,0x05,0xdc,0xc1, - 0x0b,0xfc,0x60,0x36,0x84,0x42,0x24,0xc4,0xc2,0x42, - 0x10,0x42,0x0a,0x64,0x80,0x1c,0x72,0x60,0x29,0xac, - 0x82,0x42,0x28,0x86,0xcd,0xb0,0x1d,0x2a,0x60,0x2f, - 0xd4,0x40,0x1d,0x34,0xc0,0x51,0x68,0x86,0x93,0x70, - 0x0e,0x2e,0xc2,0x55,0xb8,0x0e,0x3d,0x70,0x0f,0xfa, - 0x61,0x08,0x9e,0xc1,0x28,0xbc,0x81,0x09,0x04,0x41, - 0xc8,0x08,0x13,0x61,0x21,0xda,0x88,0x01,0x62,0x8a, - 0x58,0x23,0x8e,0x08,0x17,0x99,0x85,0xf8,0x21,0xc1, - 0x48,0x04,0x12,0x8b,0x24,0x20,0xc9,0x88,0x14,0x51, - 0x22,0x4b,0x91,0x35,0x48,0x31,0x52,0x8a,0x54,0x20, - 0x55,0x48,0x1d,0xf2,0x3d,0x72,0x02,0x39,0x87,0x5c, - 0x46,0xba,0x91,0x3b,0xc8,0x00,0x32,0x82,0xfc,0x86, - 0xbc,0x47,0x31,0x94,0x81,0xb2,0x51,0x3d,0xd4,0x0c, - 0xb5,0x43,0xb9,0xa8,0x37,0x1a,0x84,0x46,0xa2,0x0b, - 0xd0,0x64,0x74,0x31,0x9a,0x8f,0x16,0xa0,0x9b,0xd0, - 0x72,0xb4,0x1a,0x3d,0x8c,0x36,0xa1,0xe7,0xd0,0xab, - 0x68,0x0f,0xda,0x8f,0x3e,0x43,0xc7,0x30,0xc0,0xe8, - 0x18,0x07,0x33,0xc4,0x6c,0x30,0x2e,0xc6,0xc3,0x42, - 0xb1,0x38,0x2c,0x09,0x93,0x63,0xcb,0xb1,0x22,0xac, - 0x0c,0xab,0xc6,0x1a,0xb0,0x56,0xac,0x03,0xbb,0x89, - 0xf5,0x63,0xcf,0xb1,0x77,0x04,0x12,0x81,0x45,0xc0, - 0x09,0x36,0x04,0x77,0x42,0x20,0x61,0x1e,0x41,0x48, - 0x58,0x4c,0x58,0x4e,0xd8,0x48,0xa8,0x20,0x1c,0x24, - 0x34,0x11,0xda,0x09,0x37,0x09,0x03,0x84,0x51,0xc2, - 0x27,0x22,0x93,0xa8,0x4b,0xb4,0x26,0xba,0x11,0xf9, - 0xc4,0x18,0x62,0x32,0x31,0x87,0x58,0x48,0x2c,0x23, - 0xd6,0x12,0x8f,0x13,0x2f,0x10,0x7b,0x88,0x43,0xc4, - 0x37,0x24,0x12,0x89,0x43,0x32,0x27,0xb9,0x90,0x02, - 0x49,0xb1,0xa4,0x54,0xd2,0x12,0xd2,0x46,0xd2,0x6e, - 0x52,0x23,0xe9,0x2c,0xa9,0x9b,0x34,0x48,0x1a,0x23, - 0x93,0xc9,0xda,0x64,0x6b,0xb2,0x07,0x39,0x94,0x2c, - 0x20,0x2b,0xc8,0x85,0xe4,0x9d,0xe4,0xc3,0xe4,0x33, - 0xe4,0x1b,0xe4,0x21,0xf2,0x5b,0x0a,0x9d,0x62,0x40, - 0x71,0xa4,0xf8,0x53,0xe2,0x28,0x52,0xca,0x6a,0x4a, - 0x19,0xe5,0x10,0xe5,0x34,0xe5,0x06,0x65,0x98,0x32, - 0x41,0x55,0xa3,0x9a,0x52,0xdd,0xa8,0xa1,0x54,0x11, - 0x35,0x8f,0x5a,0x42,0xad,0xa1,0xb6,0x52,0xaf,0x51, - 0x87,0xa8,0x13,0x34,0x75,0x9a,0x39,0xcd,0x83,0x16, - 0x49,0x4b,0xa5,0xad,0xa2,0x95,0xd3,0x1a,0x68,0x17, - 0x68,0xf7,0x69,0xaf,0xe8,0x74,0xba,0x11,0xdd,0x95, - 0x1e,0x4e,0x97,0xd0,0x57,0xd2,0xcb,0xe9,0x47,0xe8, - 0x97,0xe8,0x03,0xf4,0x77,0x0c,0x0d,0x86,0x15,0x83, - 0xc7,0x88,0x67,0x28,0x19,0x9b,0x18,0x07,0x18,0x67, - 0x19,0x77,0x18,0xaf,0x98,0x4c,0xa6,0x19,0xd3,0x8b, - 0x19,0xc7,0x54,0x30,0x37,0x31,0xeb,0x98,0xe7,0x99, - 0x0f,0x99,0x6f,0x55,0x58,0x2a,0xb6,0x2a,0x7c,0x15, - 0x91,0xca,0x0a,0x95,0x4a,0x95,0x26,0x95,0x1b,0x2a, - 0x2f,0x54,0xa9,0xaa,0xa6,0xaa,0xde,0xaa,0x0b,0x55, - 0xf3,0x55,0xcb,0x54,0x8f,0xa9,0x5e,0x53,0x7d,0xae, - 0x46,0x55,0x33,0x53,0xe3,0xa9,0x09,0xd4,0x96,0xab, - 0x55,0xaa,0x9d,0x50,0xeb,0x53,0x1b,0x53,0x67,0xa9, - 0x3b,0xa8,0x87,0xaa,0x67,0xa8,0x6f,0x54,0x3f,0xa4, - 0x7e,0x59,0xfd,0x89,0x06,0x59,0xc3,0x4c,0xc3,0x4f, - 0x43,0xa4,0x51,0xa0,0xb1,0x5f,0xe3,0xbc,0xc6,0x20, - 0x0b,0x63,0x19,0xb3,0x78,0x2c,0x21,0x6b,0x0d,0xab, - 0x86,0x75,0x81,0x35,0xc4,0x26,0xb1,0xcd,0xd9,0x7c, - 0x76,0x2a,0xbb,0x98,0xfd,0x1d,0xbb,0x8b,0x3d,0xaa, - 0xa9,0xa1,0x39,0x43,0x33,0x4a,0x33,0x57,0xb3,0x52, - 0xf3,0x94,0x66,0x3f,0x07,0xe3,0x98,0x71,0xf8,0x9c, - 0x74,0x4e,0x09,0xe7,0x28,0xa7,0x97,0xf3,0x7e,0x8a, - 0xde,0x14,0xef,0x29,0xe2,0x29,0x1b,0xa6,0x34,0x4c, - 0xb9,0x31,0x65,0x5c,0x6b,0xaa,0x96,0x97,0x96,0x58, - 0xab,0x48,0xab,0x51,0xab,0x47,0xeb,0xbd,0x36,0xae, - 0xed,0xa7,0x9d,0xa6,0xbd,0x45,0xbb,0x59,0xfb,0x81, - 0x0e,0x41,0xc7,0x4a,0x27,0x5c,0x27,0x47,0x67,0x8f, - 0xce,0x05,0x9d,0xe7,0x53,0xd9,0x53,0xdd,0xa7,0x0a, - 0xa7,0x16,0x4d,0x3d,0x3a,0xf5,0xae,0x2e,0xaa,0x6b, - 0xa5,0x1b,0xa1,0xbb,0x44,0x77,0xbf,0x6e,0xa7,0xee, - 0x98,0x9e,0xbe,0x5e,0x80,0x9e,0x4c,0x6f,0xa7,0xde, - 0x79,0xbd,0xe7,0xfa,0x1c,0x7d,0x2f,0xfd,0x54,0xfd, - 0x6d,0xfa,0xa7,0xf5,0x47,0x0c,0x58,0x06,0xb3,0x0c, - 0x24,0x06,0xdb,0x0c,0xce,0x18,0x3c,0xc5,0x35,0x71, - 0x6f,0x3c,0x1d,0x2f,0xc7,0xdb,0xf1,0x51,0x43,0x5d, - 0xc3,0x40,0x43,0xa5,0x61,0x95,0x61,0x97,0xe1,0x84, - 0x91,0xb9,0xd1,0x3c,0xa3,0xd5,0x46,0x8d,0x46,0x0f, - 0x8c,0x69,0xc6,0x5c,0xe3,0x24,0xe3,0x6d,0xc6,0x6d, - 0xc6,0xa3,0x26,0x06,0x26,0x21,0x26,0x4b,0x4d,0xea, - 0x4d,0xee,0x9a,0x52,0x4d,0xb9,0xa6,0x29,0xa6,0x3b, - 0x4c,0x3b,0x4c,0xc7,0xcd,0xcc,0xcd,0xa2,0xcd,0xd6, - 0x99,0x35,0x9b,0x3d,0x31,0xd7,0x32,0xe7,0x9b,0xe7, - 0x9b,0xd7,0x9b,0xdf,0xb7,0x60,0x5a,0x78,0x5a,0x2c, - 0xb6,0xa8,0xb6,0xb8,0x65,0x49,0xb2,0xe4,0x5a,0xa6, - 0x59,0xee,0xb6,0xbc,0x6e,0x85,0x5a,0x39,0x59,0xa5, - 0x58,0x55,0x5a,0x5d,0xb3,0x46,0xad,0x9d,0xad,0x25, - 0xd6,0xbb,0xad,0xbb,0xa7,0x11,0xa7,0xb9,0x4e,0x93, - 0x4e,0xab,0x9e,0xd6,0x67,0xc3,0xb0,0xf1,0xb6,0xc9, - 0xb6,0xa9,0xb7,0x19,0xb0,0xe5,0xd8,0x06,0xdb,0xae, - 0xb6,0x6d,0xb6,0x7d,0x61,0x67,0x62,0x17,0x67,0xb7, - 0xc5,0xae,0xc3,0xee,0x93,0xbd,0x93,0x7d,0xba,0x7d, - 0x8d,0xfd,0x3d,0x07,0x0d,0x87,0xd9,0x0e,0xab,0x1d, - 0x5a,0x1d,0x7e,0x73,0xb4,0x72,0x14,0x3a,0x56,0x3a, - 0xde,0x9a,0xce,0x9c,0xee,0x3f,0x7d,0xc5,0xf4,0x96, - 0xe9,0x2f,0x67,0x58,0xcf,0x10,0xcf,0xd8,0x33,0xe3, - 0xb6,0x13,0xcb,0x29,0xc4,0x69,0x9d,0x53,0x9b,0xd3, - 0x47,0x67,0x17,0x67,0xb9,0x73,0x83,0xf3,0x88,0x8b, - 0x89,0x4b,0x82,0xcb,0x2e,0x97,0x3e,0x2e,0x9b,0x1b, - 0xc6,0xdd,0xc8,0xbd,0xe4,0x4a,0x74,0xf5,0x71,0x5d, - 0xe1,0x7a,0xd2,0xf5,0x9d,0x9b,0xb3,0x9b,0xc2,0xed, - 0xa8,0xdb,0xaf,0xee,0x36,0xee,0x69,0xee,0x87,0xdc, - 0x9f,0xcc,0x34,0x9f,0x29,0x9e,0x59,0x33,0x73,0xd0, - 0xc3,0xc8,0x43,0xe0,0x51,0xe5,0xd1,0x3f,0x0b,0x9f, - 0x95,0x30,0x6b,0xdf,0xac,0x7e,0x4f,0x43,0x4f,0x81, - 0x67,0xb5,0xe7,0x23,0x2f,0x63,0x2f,0x91,0x57,0xad, - 0xd7,0xb0,0xb7,0xa5,0x77,0xaa,0xf7,0x61,0xef,0x17, - 0x3e,0xf6,0x3e,0x72,0x9f,0xe3,0x3e,0xe3,0x3c,0x37, - 0xde,0x32,0xde,0x59,0x5f,0xcc,0x37,0xc0,0xb7,0xc8, - 0xb7,0xcb,0x4f,0xc3,0x6f,0x9e,0x5f,0x85,0xdf,0x43, - 0x7f,0x23,0xff,0x64,0xff,0x7a,0xff,0xd1,0x00,0xa7, - 0x80,0x25,0x01,0x67,0x03,0x89,0x81,0x41,0x81,0x5b, - 0x02,0xfb,0xf8,0x7a,0x7c,0x21,0xbf,0x8e,0x3f,0x3a, - 0xdb,0x65,0xf6,0xb2,0xd9,0xed,0x41,0x8c,0xa0,0xb9, - 0x41,0x15,0x41,0x8f,0x82,0xad,0x82,0xe5,0xc1,0xad, - 0x21,0x68,0xc8,0xec,0x90,0xad,0x21,0xf7,0xe7,0x98, - 0xce,0x91,0xce,0x69,0x0e,0x85,0x50,0x7e,0xe8,0xd6, - 0xd0,0x07,0x61,0xe6,0x61,0x8b,0xc3,0x7e,0x0c,0x27, - 0x85,0x87,0x85,0x57,0x86,0x3f,0x8e,0x70,0x88,0x58, - 0x1a,0xd1,0x31,0x97,0x35,0x77,0xd1,0xdc,0x43,0x73, - 0xdf,0x44,0xfa,0x44,0x96,0x44,0xde,0x9b,0x67,0x31, - 0x4f,0x39,0xaf,0x2d,0x4a,0x35,0x2a,0x3e,0xaa,0x2e, - 0x6a,0x3c,0xda,0x37,0xba,0x34,0xba,0x3f,0xc6,0x2e, - 0x66,0x59,0xcc,0xd5,0x58,0x9d,0x58,0x49,0x6c,0x4b, - 0x1c,0x39,0x2e,0x2a,0xae,0x36,0x6e,0x6c,0xbe,0xdf, - 0xfc,0xed,0xf3,0x87,0xe2,0x9d,0xe2,0x0b,0xe3,0x7b, - 0x17,0x98,0x2f,0xc8,0x5d,0x70,0x79,0xa1,0xce,0xc2, - 0xf4,0x85,0xa7,0x16,0xa9,0x2e,0x12,0x2c,0x3a,0x96, - 0x40,0x4c,0x88,0x4e,0x38,0x94,0xf0,0x41,0x10,0x2a, - 0xa8,0x16,0x8c,0x25,0xf2,0x13,0x77,0x25,0x8e,0x0a, - 0x79,0xc2,0x1d,0xc2,0x67,0x22,0x2f,0xd1,0x36,0xd1, - 0x88,0xd8,0x43,0x5c,0x2a,0x1e,0x4e,0xf2,0x48,0x2a, - 0x4d,0x7a,0x92,0xec,0x91,0xbc,0x35,0x79,0x24,0xc5, - 0x33,0xa5,0x2c,0xe5,0xb9,0x84,0x27,0xa9,0x90,0xbc, - 0x4c,0x0d,0x4c,0xdd,0x9b,0x3a,0x9e,0x16,0x9a,0x76, - 0x20,0x6d,0x32,0x3d,0x3a,0xbd,0x31,0x83,0x92,0x91, - 0x90,0x71,0x42,0xaa,0x21,0x4d,0x93,0xb6,0x67,0xea, - 0x67,0xe6,0x66,0x76,0xcb,0xac,0x65,0x85,0xb2,0xfe, - 0xc5,0x6e,0x8b,0xb7,0x2f,0x1e,0x95,0x07,0xc9,0x6b, - 0xb3,0x90,0xac,0x05,0x59,0x2d,0x0a,0xb6,0x42,0xa6, - 0xe8,0x54,0x5a,0x28,0xd7,0x2a,0x07,0xb2,0x67,0x65, - 0x57,0x66,0xbf,0xcd,0x89,0xca,0x39,0x96,0xab,0x9e, - 0x2b,0xcd,0xed,0xcc,0xb3,0xca,0xdb,0x90,0x37,0x9c, - 0xef,0x9f,0xff,0xed,0x12,0xc2,0x12,0xe1,0x92,0xb6, - 0xa5,0x86,0x4b,0x57,0x2d,0x1d,0x58,0xe6,0xbd,0xac, - 0x6a,0x39,0xb2,0x3c,0x71,0x79,0xdb,0x0a,0xe3,0x15, - 0x05,0x2b,0x86,0x56,0x06,0xac,0x3c,0xb8,0x8a,0xb6, - 0x2a,0x6d,0xd5,0x4f,0xab,0xed,0x57,0x97,0xae,0x7e, - 0xbd,0x26,0x7a,0x4d,0x6b,0x81,0x5e,0xc1,0xca,0x82, - 0xc1,0xb5,0x01,0x6b,0xeb,0x0b,0x55,0x0a,0xe5,0x85, - 0x7d,0xeb,0xdc,0xd7,0xed,0x5d,0x4f,0x58,0x2f,0x59, - 0xdf,0xb5,0x61,0xfa,0x86,0x9d,0x1b,0x3e,0x15,0x89, - 0x8a,0xae,0x14,0xdb,0x17,0x97,0x15,0x7f,0xd8,0x28, - 0xdc,0x78,0xe5,0x1b,0x87,0x6f,0xca,0xbf,0x99,0xdc, - 0x94,0xb4,0xa9,0xab,0xc4,0xb9,0x64,0xcf,0x66,0xd2, - 0x66,0xe9,0xe6,0xde,0x2d,0x9e,0x5b,0x0e,0x96,0xaa, - 0x97,0xe6,0x97,0x0e,0x6e,0x0d,0xd9,0xda,0xb4,0x0d, - 0xdf,0x56,0xb4,0xed,0xf5,0xf6,0x45,0xdb,0x2f,0x97, - 0xcd,0x28,0xdb,0xbb,0x83,0xb6,0x43,0xb9,0xa3,0xbf, - 0x3c,0xb8,0xbc,0x65,0xa7,0xc9,0xce,0xcd,0x3b,0x3f, - 0x54,0xa4,0x54,0xf4,0x54,0xfa,0x54,0x36,0xee,0xd2, - 0xdd,0xb5,0x61,0xd7,0xf8,0x6e,0xd1,0xee,0x1b,0x7b, - 0xbc,0xf6,0x34,0xec,0xd5,0xdb,0x5b,0xbc,0xf7,0xfd, - 0x3e,0xc9,0xbe,0xdb,0x55,0x01,0x55,0x4d,0xd5,0x66, - 0xd5,0x65,0xfb,0x49,0xfb,0xb3,0xf7,0x3f,0xae,0x89, - 0xaa,0xe9,0xf8,0x96,0xfb,0x6d,0x5d,0xad,0x4e,0x6d, - 0x71,0xed,0xc7,0x03,0xd2,0x03,0xfd,0x07,0x23,0x0e, - 0xb6,0xd7,0xb9,0xd4,0xd5,0x1d,0xd2,0x3d,0x54,0x52, - 0x8f,0xd6,0x2b,0xeb,0x47,0x0e,0xc7,0x1f,0xbe,0xfe, - 0x9d,0xef,0x77,0x2d,0x0d,0x36,0x0d,0x55,0x8d,0x9c, - 0xc6,0xe2,0x23,0x70,0x44,0x79,0xe4,0xe9,0xf7,0x09, - 0xdf,0xf7,0x1e,0x0d,0x3a,0xda,0x76,0x8c,0x7b,0xac, - 0xe1,0x07,0xd3,0x1f,0x76,0x1d,0x67,0x1d,0x2f,0x6a, - 0x42,0x9a,0xf2,0x9a,0x46,0x9b,0x53,0x9a,0xfb,0x5b, - 0x62,0x5b,0xba,0x4f,0xcc,0x3e,0xd1,0xd6,0xea,0xde, - 0x7a,0xfc,0x47,0xdb,0x1f,0x0f,0x9c,0x34,0x3c,0x59, - 0x79,0x4a,0xf3,0x54,0xc9,0x69,0xda,0xe9,0x82,0xd3, - 0x93,0x67,0xf2,0xcf,0x8c,0x9d,0x95,0x9d,0x7d,0x7e, - 0x2e,0xf9,0xdc,0x60,0xdb,0xa2,0xb6,0x7b,0xe7,0x63, - 0xce,0xdf,0x6a,0x0f,0x6f,0xef,0xba,0x10,0x74,0xe1, - 0xd2,0x45,0xff,0x8b,0xe7,0x3b,0xbc,0x3b,0xce,0x5c, - 0xf2,0xb8,0x74,0xf2,0xb2,0xdb,0xe5,0x13,0x57,0xb8, - 0x57,0x9a,0xaf,0x3a,0x5f,0x6d,0xea,0x74,0xea,0x3c, - 0xfe,0x93,0xd3,0x4f,0xc7,0xbb,0x9c,0xbb,0x9a,0xae, - 0xb9,0x5c,0x6b,0xb9,0xee,0x7a,0xbd,0xb5,0x7b,0x66, - 0xf7,0xe9,0x1b,0x9e,0x37,0xce,0xdd,0xf4,0xbd,0x79, - 0xf1,0x16,0xff,0xd6,0xd5,0x9e,0x39,0x3d,0xdd,0xbd, - 0xf3,0x7a,0x6f,0xf7,0xc5,0xf7,0xf5,0xdf,0x16,0xdd, - 0x7e,0x72,0x27,0xfd,0xce,0xcb,0xbb,0xd9,0x77,0x27, - 0xee,0xad,0xbc,0x4f,0xbc,0x5f,0xf4,0x40,0xed,0x41, - 0xd9,0x43,0xdd,0x87,0xd5,0x3f,0x5b,0xfe,0xdc,0xd8, - 0xef,0xdc,0x7f,0x6a,0xc0,0x77,0xa0,0xf3,0xd1,0xdc, - 0x47,0xf7,0x06,0x85,0x83,0xcf,0xfe,0x91,0xf5,0x8f, - 0x0f,0x43,0x05,0x8f,0x99,0x8f,0xcb,0x86,0x0d,0x86, - 0xeb,0x9e,0x38,0x3e,0x39,0x39,0xe2,0x3f,0x72,0xfd, - 0xe9,0xfc,0xa7,0x43,0xcf,0x64,0xcf,0x26,0x9e,0x17, - 0xfe,0xa2,0xfe,0xcb,0xae,0x17,0x16,0x2f,0x7e,0xf8, - 0xd5,0xeb,0xd7,0xce,0xd1,0x98,0xd1,0xa1,0x97,0xf2, - 0x97,0x93,0xbf,0x6d,0x7c,0xa5,0xfd,0xea,0xc0,0xeb, - 0x19,0xaf,0xdb,0xc6,0xc2,0xc6,0x1e,0xbe,0xc9,0x78, - 0x33,0x31,0x5e,0xf4,0x56,0xfb,0xed,0xc1,0x77,0xdc, - 0x77,0x1d,0xef,0xa3,0xdf,0x0f,0x4f,0xe4,0x7c,0x20, - 0x7f,0x28,0xff,0x68,0xf9,0xb1,0xf5,0x53,0xd0,0xa7, - 0xfb,0x93,0x19,0x93,0x93,0xff,0x04,0x03,0x98,0xf3, - 0xfc,0x63,0x33,0x2d,0xdb,0x00,0x00,0x00,0x04,0x67, - 0x41,0x4d,0x41,0x00,0x00,0xb1,0x8e,0x7c,0xfb,0x51, - 0x93,0x00,0x00,0x00,0x20,0x63,0x48,0x52,0x4d,0x00, - 0x00,0x7a,0x25,0x00,0x00,0x80,0x83,0x00,0x00,0xf9, - 0xff,0x00,0x00,0x80,0xe9,0x00,0x00,0x75,0x30,0x00, - 0x00,0xea,0x60,0x00,0x00,0x3a,0x98,0x00,0x00,0x17, - 0x6f,0x92,0x5f,0xc5,0x46,0x00,0x00,0x03,0x97,0x49, - 0x44,0x41,0x54,0x78,0xda,0xec,0x9a,0x4f,0x68,0x13, - 0x41,0x14,0xc6,0x7f,0x9b,0x4d,0x37,0x6d,0x48,0x49, - 0xcc,0xc9,0x93,0x10,0x10,0x3c,0x15,0x0c,0x05,0x41, - 0x51,0x84,0x82,0xa0,0x78,0xf2,0xcf,0x49,0x10,0x84, - 0x40,0x41,0xe8,0xa9,0xbd,0x78,0x10,0x4f,0x85,0x82, - 0x58,0x28,0x58,0x85,0x1e,0x02,0xde,0x95,0x1c,0x84, - 0xa2,0x17,0x8b,0x62,0x51,0xf4,0x60,0x05,0x51,0x94, - 0x8a,0x45,0x51,0xea,0xb1,0x62,0x49,0xba,0x9b,0xa4, - 0xe3,0xc1,0x6d,0xba,0xd9,0x24,0x9b,0x99,0xfd,0x93, - 0xb6,0xd0,0x0f,0xde,0x61,0x93,0xd9,0xd9,0xef,0xcb, - 0xbc,0x7d,0xef,0xcd,0x9b,0x68,0x42,0x08,0xf6,0x32, - 0x62,0xec,0x71,0xec,0x0b,0xd8,0x17,0x10,0x10,0xf1, - 0x76,0x1f,0x6a,0x9a,0xe6,0x77,0xbe,0x21,0xe0,0x02, - 0x30,0x0c,0x1c,0x02,0x8e,0x3a,0xbe,0x5b,0x07,0xbe, - 0x00,0x9f,0x80,0x45,0xe0,0x31,0xf0,0xdb,0xcf,0x43, - 0x9a,0x02,0x8f,0x10,0xa2,0xc5,0x14,0x71,0x18,0x98, - 0x06,0xbe,0x03,0x42,0xd1,0x5e,0x01,0xe3,0x40,0x4a, - 0x55,0x40,0x83,0x6b,0x00,0x01,0x59,0x60,0x06,0x30, - 0x7d,0x10,0x77,0xdb,0x2a,0x30,0x0a,0xe8,0xbd,0x12, - 0x50,0x00,0xd6,0x42,0x20,0xee,0xb6,0x8f,0xb6,0xfb, - 0x45,0x26,0x40,0x07,0xee,0x46,0x40,0xdc,0x69,0x65, - 0xe0,0x72,0x14,0x02,0xb2,0xc0,0xf3,0x88,0xc9,0x3b, - 0x6d,0x2a,0x4c,0x01,0x06,0xf0,0xac,0x87,0xe4,0xb7, - 0xec,0x46,0x37,0x01,0x5a,0x3b,0xc2,0x6d,0xc2,0xe8, - 0x5d,0x60,0xcc,0xfd,0x61,0x2e,0x16,0x23,0x17,0x93, - 0x4f,0x25,0x2b,0x9b,0x9b,0xac,0x6c,0x6e,0xaa,0x04, - 0x9c,0x3a,0x70,0xd1,0x0e,0xb9,0x6d,0xc3,0xa8,0x8c, - 0x80,0x51,0x60,0xae,0xed,0x9b,0x6c,0x18,0x4c,0xf4, - 0xf7,0x2b,0x8b,0x28,0x9a,0x26,0x45,0xcb,0x62,0x4d, - 0x2e,0x60,0xfc,0x01,0x4e,0xd8,0xf9,0x43,0x39,0x0f, - 0x64,0x65,0xa2,0xcd,0x48,0x3c,0x2e,0x56,0xd3,0x69, - 0x51,0xc9,0x64,0x44,0x25,0x93,0x11,0xf3,0xa9,0x54, - 0xcb,0x98,0x82,0x61,0x34,0x8d,0x79,0x35,0x38,0x28, - 0x32,0x9a,0x26,0xeb,0x4a,0x2f,0xfd,0xbe,0x03,0x33, - 0xb2,0xfe,0x3a,0x91,0x48,0x78,0x0a,0x00,0x44,0x5e, - 0xd7,0x1b,0x63,0xbc,0xc6,0x75,0xb0,0x2b,0xed,0x04, - 0x78,0xad,0x7d,0x0e,0xb8,0x1e,0x66,0xdd,0xb2,0x54, - 0xaf,0x53,0xaa,0x56,0x1b,0xd7,0x23,0xf1,0xb8,0x8a, - 0xfb,0xdd,0x6a,0x97,0xe8,0xbc,0xee,0x1e,0xb7,0xa3, - 0x4f,0xa8,0x78,0x57,0xab,0xb5,0x04,0x02,0x49,0x1c, - 0x01,0xce,0xcb,0x0a,0x30,0x9c,0x4b,0xb6,0x8b,0x70, - 0x55,0x56,0xc0,0x71,0xfb,0x05,0x0e,0x1d,0x39,0x7d, - 0xdb,0x0b,0xd6,0x84,0x60,0xc1,0xb5,0x22,0x5d,0x70, - 0xd6,0xed,0x46,0x9d,0x04,0x9c,0x89,0x82,0x7c,0x46, - 0xd3,0xb8,0xd4,0xd7,0xd7,0xb8,0xbe,0xb3,0xb1,0xa1, - 0x3a,0x45,0x0a,0x38,0x26,0x23,0x60,0x28,0x0a,0x01, - 0x93,0x03,0x03,0x64,0xec,0x1c,0x33,0x6d,0x9a,0x4c, - 0x9b,0xa6,0x9f,0x69,0x86,0xbb,0x6e,0x68,0xec,0x1a, - 0xdf,0x37,0x0e,0x68,0x1a,0x23,0xf1,0xed,0xa9,0xf3, - 0xba,0x4e,0x21,0x91,0x20,0x17,0x8b,0x51,0xaa,0x56, - 0x29,0x9a,0xa6,0xaa,0xeb,0xb8,0x5f,0xe6,0xae,0x02, - 0x0e,0x06,0x11,0x90,0xd7,0x75,0xe6,0x53,0xad,0x7b, - 0x94,0xa2,0x65,0xb1,0x54,0xab,0xf1,0xae,0x5e,0x0f, - 0x32,0x7d,0x56,0x46,0x40,0x3a,0x68,0xbc,0xbf,0x59, - 0xa9,0xb4,0x88,0xba,0x64,0x18,0x14,0x0c,0x83,0x59, - 0x5b,0xcc,0xcd,0x4a,0x45,0xb6,0x9c,0xe8,0xcc,0xad, - 0x43,0x26,0x2e,0xab,0x56,0x8e,0x32,0x99,0x18,0x10, - 0xb3,0xc9,0x64,0x63,0xdc,0x6a,0x3a,0x2d,0xf2,0xba, - 0xae,0x5a,0xa1,0x96,0x64,0x32,0xf1,0x7a,0x54,0x81, - 0x7c,0xac,0x5c,0x6e,0xf8,0x7f,0x46,0xd3,0xb8,0x97, - 0x4c,0xaa,0x4e,0xb1,0x2e,0x13,0x85,0x7e,0x45,0x99, - 0x8d,0x4a,0x96,0xd5,0xe4,0x5a,0x17,0x1d,0xa1,0x55, - 0x02,0x3f,0x64,0x04,0x7c,0x89,0x52,0x80,0x7b,0x4f, - 0xa0,0x52,0x8e,0xbb,0xb9,0x75,0xba,0x73,0x71,0x17, - 0xf7,0xb2,0xde,0xca,0x08,0x78,0x11,0x25,0x83,0xbc, - 0xae,0x7b,0xae,0x48,0x17,0xf7,0x91,0x5a,0x81,0x0f, - 0xce,0x1d,0x50,0xd8,0x28,0x24,0x12,0x4d,0xe4,0x9d, - 0x25,0x76,0x17,0x3c,0x52,0x29,0xa7,0x1f,0x28,0x65, - 0x5f,0x87,0x1f,0x7b,0xf9,0xf4,0x6c,0x32,0xd9,0xf4, - 0xfd,0x58,0xb9,0xac,0xf2,0x98,0x16,0x4e,0x5e,0x7b, - 0xe2,0xb4,0xdd,0x2e,0xf4,0x4c,0x6a,0xb9,0x58,0x8c, - 0x91,0x78,0xbc,0xa9,0xce,0x01,0x58,0xa8,0xd5,0x28, - 0x59,0x56,0xc3,0x3d,0x9c,0xe5,0xc4,0xd6,0x2f,0xef, - 0x0c,0xa9,0x12,0x78,0x0a,0x9c,0x53,0xdd,0xd4,0xdf, - 0xf0,0xea,0xcf,0x4c,0x24,0x12,0x4c,0x0e,0x0c,0x28, - 0x45,0x9f,0xa5,0x7a,0x9d,0x85,0x6a,0x95,0xa2,0x23, - 0x94,0x4a,0x76,0x27,0x4e,0x01,0xaf,0x55,0x37,0xf5, - 0x06,0xb0,0xbc,0x03,0xfd,0x20,0xb7,0xdd,0x0f,0xd2, - 0xd8,0x3a,0x19,0x52,0x03,0xd7,0xaf,0x7d,0x73,0xbb, - 0xb1,0x9f,0xce,0xdc,0xf8,0x0e,0x91,0x2f,0xbb,0xce, - 0x18,0x02,0xf5,0x46,0x6f,0xf7,0x98,0xbc,0xd9,0x69, - 0x67,0x18,0xa4,0x3b,0x3d,0xd5,0x23,0xf2,0x7f,0xbd, - 0xb6,0xb5,0x41,0xcf,0x07,0x46,0xfd,0x94,0xdb,0x0a, - 0xb6,0xdc,0xed,0x8c,0x20,0x8c,0x03,0x8e,0x21,0xe0, - 0x4d,0x04,0xe4,0xe7,0x90,0x38,0x6e,0x0a,0xeb,0x88, - 0x09,0xe0,0x1a,0xf0,0x39,0x04,0xe2,0x4f,0xdc,0xdd, - 0x86,0x5e,0x09,0xd8,0xc2,0x79,0xe0,0xa1,0xed,0xbb, - 0xb2,0xa4,0x7f,0xf2,0xff,0x70,0x50,0xb9,0x03,0xe2, - 0xe7,0x7c,0x40,0x05,0xa7,0xed,0xce,0x41,0xd6,0xee, - 0xaf,0x66,0xed,0x16,0x79,0x1d,0x78,0x0f,0x58,0x76, - 0xb5,0xfb,0xd5,0xef,0x03,0xba,0x96,0x12,0x7b,0x09, - 0xfb,0x7f,0x35,0xd8,0x69,0xfc,0x1b,0x00,0xb0,0x50, - 0x70,0xaa,0x70,0x6c,0x2e,0x22,0x00,0x00,0x00,0x00, - 0x49,0x45,0x4e,0x44,0xae,0x42,0x60,0x82 + 0x00,0x0d,0x49,0x48,0x44,0x52,0x00,0x00,0x00,0x1f, + 0x00,0x00,0x00,0x1f,0x08,0x06,0x00,0x00,0x00,0x1f, + 0xae,0x16,0x39,0x00,0x00,0x00,0x19,0x74,0x45,0x58, + 0x74,0x53,0x6f,0x66,0x74,0x77,0x61,0x72,0x65,0x00, + 0x41,0x64,0x6f,0x62,0x65,0x20,0x49,0x6d,0x61,0x67, + 0x65,0x52,0x65,0x61,0x64,0x79,0x71,0xc9,0x65,0x3c, + 0x00,0x00,0x03,0x24,0x69,0x54,0x58,0x74,0x58,0x4d, + 0x4c,0x3a,0x63,0x6f,0x6d,0x2e,0x61,0x64,0x6f,0x62, + 0x65,0x2e,0x78,0x6d,0x70,0x00,0x00,0x00,0x00,0x00, + 0x3c,0x3f,0x78,0x70,0x61,0x63,0x6b,0x65,0x74,0x20, + 0x62,0x65,0x67,0x69,0x6e,0x3d,0x22,0xef,0xbb,0xbf, + 0x22,0x20,0x69,0x64,0x3d,0x22,0x57,0x35,0x4d,0x30, + 0x4d,0x70,0x43,0x65,0x68,0x69,0x48,0x7a,0x72,0x65, + 0x53,0x7a,0x4e,0x54,0x63,0x7a,0x6b,0x63,0x39,0x64, + 0x22,0x3f,0x3e,0x20,0x3c,0x78,0x3a,0x78,0x6d,0x70, + 0x6d,0x65,0x74,0x61,0x20,0x78,0x6d,0x6c,0x6e,0x73, + 0x3a,0x78,0x3d,0x22,0x61,0x64,0x6f,0x62,0x65,0x3a, + 0x6e,0x73,0x3a,0x6d,0x65,0x74,0x61,0x2f,0x22,0x20, + 0x78,0x3a,0x78,0x6d,0x70,0x74,0x6b,0x3d,0x22,0x41, + 0x64,0x6f,0x62,0x65,0x20,0x58,0x4d,0x50,0x20,0x43, + 0x6f,0x72,0x65,0x20,0x35,0x2e,0x33,0x2d,0x63,0x30, + 0x31,0x31,0x20,0x36,0x36,0x2e,0x31,0x34,0x35,0x36, + 0x36,0x31,0x2c,0x20,0x32,0x30,0x31,0x32,0x2f,0x30, + 0x32,0x2f,0x30,0x36,0x2d,0x31,0x34,0x3a,0x35,0x36, + 0x3a,0x32,0x37,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x22,0x3e,0x20,0x3c,0x72,0x64,0x66,0x3a,0x52, + 0x44,0x46,0x20,0x78,0x6d,0x6c,0x6e,0x73,0x3a,0x72, + 0x64,0x66,0x3d,0x22,0x68,0x74,0x74,0x70,0x3a,0x2f, + 0x2f,0x77,0x77,0x77,0x2e,0x77,0x33,0x2e,0x6f,0x72, + 0x67,0x2f,0x31,0x39,0x39,0x39,0x2f,0x30,0x32,0x2f, + 0x32,0x32,0x2d,0x72,0x64,0x66,0x2d,0x73,0x79,0x6e, + 0x74,0x61,0x78,0x2d,0x6e,0x73,0x23,0x22,0x3e,0x20, + 0x3c,0x72,0x64,0x66,0x3a,0x44,0x65,0x73,0x63,0x72, + 0x69,0x70,0x74,0x69,0x6f,0x6e,0x20,0x72,0x64,0x66, + 0x3a,0x61,0x62,0x6f,0x75,0x74,0x3d,0x22,0x22,0x20, + 0x78,0x6d,0x6c,0x6e,0x73,0x3a,0x78,0x6d,0x70,0x3d, + 0x22,0x68,0x74,0x74,0x70,0x3a,0x2f,0x2f,0x6e,0x73, + 0x2e,0x61,0x64,0x6f,0x62,0x65,0x2e,0x63,0x6f,0x6d, + 0x2f,0x78,0x61,0x70,0x2f,0x31,0x2e,0x30,0x2f,0x22, + 0x20,0x78,0x6d,0x6c,0x6e,0x73,0x3a,0x78,0x6d,0x70, + 0x4d,0x4d,0x3d,0x22,0x68,0x74,0x74,0x70,0x3a,0x2f, + 0x2f,0x6e,0x73,0x2e,0x61,0x64,0x6f,0x62,0x65,0x2e, + 0x63,0x6f,0x6d,0x2f,0x78,0x61,0x70,0x2f,0x31,0x2e, + 0x30,0x2f,0x6d,0x6d,0x2f,0x22,0x20,0x78,0x6d,0x6c, + 0x6e,0x73,0x3a,0x73,0x74,0x52,0x65,0x66,0x3d,0x22, + 0x68,0x74,0x74,0x70,0x3a,0x2f,0x2f,0x6e,0x73,0x2e, + 0x61,0x64,0x6f,0x62,0x65,0x2e,0x63,0x6f,0x6d,0x2f, + 0x78,0x61,0x70,0x2f,0x31,0x2e,0x30,0x2f,0x73,0x54, + 0x79,0x70,0x65,0x2f,0x52,0x65,0x73,0x6f,0x75,0x72, + 0x63,0x65,0x52,0x65,0x66,0x23,0x22,0x20,0x78,0x6d, + 0x70,0x3a,0x43,0x72,0x65,0x61,0x74,0x6f,0x72,0x54, + 0x6f,0x6f,0x6c,0x3d,0x22,0x41,0x64,0x6f,0x62,0x65, + 0x20,0x50,0x68,0x6f,0x74,0x6f,0x73,0x68,0x6f,0x70, + 0x20,0x43,0x53,0x36,0x20,0x28,0x4d,0x61,0x63,0x69, + 0x6e,0x74,0x6f,0x73,0x68,0x29,0x22,0x20,0x78,0x6d, + 0x70,0x4d,0x4d,0x3a,0x49,0x6e,0x73,0x74,0x61,0x6e, + 0x63,0x65,0x49,0x44,0x3d,0x22,0x78,0x6d,0x70,0x2e, + 0x69,0x69,0x64,0x3a,0x45,0x44,0x36,0x43,0x36,0x42, + 0x37,0x31,0x39,0x44,0x38,0x46,0x31,0x31,0x45,0x33, + 0x41,0x39,0x31,0x44,0x42,0x44,0x46,0x44,0x34,0x30, + 0x39,0x39,0x32,0x45,0x45,0x33,0x22,0x20,0x78,0x6d, + 0x70,0x4d,0x4d,0x3a,0x44,0x6f,0x63,0x75,0x6d,0x65, + 0x6e,0x74,0x49,0x44,0x3d,0x22,0x78,0x6d,0x70,0x2e, + 0x64,0x69,0x64,0x3a,0x45,0x44,0x36,0x43,0x36,0x42, + 0x37,0x32,0x39,0x44,0x38,0x46,0x31,0x31,0x45,0x33, + 0x41,0x39,0x31,0x44,0x42,0x44,0x46,0x44,0x34,0x30, + 0x39,0x39,0x32,0x45,0x45,0x33,0x22,0x3e,0x20,0x3c, + 0x78,0x6d,0x70,0x4d,0x4d,0x3a,0x44,0x65,0x72,0x69, + 0x76,0x65,0x64,0x46,0x72,0x6f,0x6d,0x20,0x73,0x74, + 0x52,0x65,0x66,0x3a,0x69,0x6e,0x73,0x74,0x61,0x6e, + 0x63,0x65,0x49,0x44,0x3d,0x22,0x78,0x6d,0x70,0x2e, + 0x69,0x69,0x64,0x3a,0x45,0x44,0x36,0x43,0x36,0x42, + 0x36,0x46,0x39,0x44,0x38,0x46,0x31,0x31,0x45,0x33, + 0x41,0x39,0x31,0x44,0x42,0x44,0x46,0x44,0x34,0x30, + 0x39,0x39,0x32,0x45,0x45,0x33,0x22,0x20,0x73,0x74, + 0x52,0x65,0x66,0x3a,0x64,0x6f,0x63,0x75,0x6d,0x65, + 0x6e,0x74,0x49,0x44,0x3d,0x22,0x78,0x6d,0x70,0x2e, + 0x64,0x69,0x64,0x3a,0x45,0x44,0x36,0x43,0x36,0x42, + 0x37,0x30,0x39,0x44,0x38,0x46,0x31,0x31,0x45,0x33, + 0x41,0x39,0x31,0x44,0x42,0x44,0x46,0x44,0x34,0x30, + 0x39,0x39,0x32,0x45,0x45,0x33,0x22,0x2f,0x3e,0x20, + 0x3c,0x2f,0x72,0x64,0x66,0x3a,0x44,0x65,0x73,0x63, + 0x72,0x69,0x70,0x74,0x69,0x6f,0x6e,0x3e,0x20,0x3c, + 0x2f,0x72,0x64,0x66,0x3a,0x52,0x44,0x46,0x3e,0x20, + 0x3c,0x2f,0x78,0x3a,0x78,0x6d,0x70,0x6d,0x65,0x74, + 0x61,0x3e,0x20,0x3c,0x3f,0x78,0x70,0x61,0x63,0x6b, + 0x65,0x74,0x20,0x65,0x6e,0x64,0x3d,0x22,0x72,0x22, + 0x3f,0x3e,0x3b,0xe4,0xb0,0xf3,0x00,0x00,0x02,0x64, + 0x49,0x44,0x41,0x54,0x78,0xda,0xbc,0x97,0x4d,0x48, + 0x14,0x61,0x18,0xc7,0x67,0x87,0x3d,0x88,0x2b,0x48, + 0x97,0x15,0xa1,0x43,0x69,0xea,0x6e,0x79,0xb3,0xa5, + 0xb6,0x0f,0x3a,0x04,0x1d,0x4c,0x31,0xb3,0xfc,0x02, + 0x2f,0x42,0x29,0xe1,0xc1,0x4b,0x6e,0xc7,0x20,0x41, + 0x0a,0x0f,0xe1,0x49,0xd3,0x83,0xa7,0x14,0x52,0x41, + 0xdb,0x3d,0xa6,0xc8,0x6e,0x22,0x88,0x20,0xe4,0x47, + 0x84,0x37,0x41,0x8c,0x28,0x2d,0x45,0xbb,0x48,0xfe, + 0x1f,0x78,0x06,0x5e,0x86,0x99,0x9d,0x67,0x66,0x67, + 0xfb,0xc3,0xef,0xb0,0x3b,0xf3,0x3e,0xff,0x77,0xde, + 0x8f,0xe7,0x79,0xdf,0x40,0x22,0x91,0xd0,0x84,0xaa, + 0x06,0xf7,0xc1,0x2d,0x70,0x19,0x94,0x80,0x10,0x38, + 0x06,0x7b,0xe0,0x2b,0x48,0x83,0x14,0xf8,0x22,0x09, + 0x18,0x74,0x78,0x1e,0x00,0x8d,0xe0,0x05,0x88,0xd9, + 0xbc,0x53,0x08,0xca,0x98,0x5a,0x30,0x00,0x56,0xc0, + 0x1b,0x30,0x0d,0xfe,0xd9,0x05,0xd7,0xb3,0x18,0x47, + 0xc0,0x22,0x07,0x88,0x69,0xee,0x44,0xef,0x7f,0xe0, + 0x91,0x88,0xb8,0x35,0x7f,0xcc,0xbd,0xbf,0xad,0xe5, + 0xa6,0x9b,0x60,0x15,0xb4,0x4a,0xcd,0x9f,0x80,0x49, + 0x50,0xa4,0xf9,0x23,0x9a,0x96,0xf7,0xa0,0xc7,0xc9, + 0xbc,0x05,0x8c,0x38,0x4c,0x87,0x17,0xd1,0xda,0x19, + 0x02,0x6d,0x76,0xe6,0x95,0x60,0x8c,0x5f,0xcc,0x87, + 0x28,0xee,0x28,0x88,0x9a,0xcd,0xe9,0xc1,0x3b,0x1f, + 0x87,0xda,0x4e,0x21,0xf6,0x09,0xa8,0x5b,0xad,0x01, + 0xdc,0x11,0x34,0xee,0x05,0x27,0x16,0xdb,0xb5,0x82, + 0x63,0x5c,0x14,0xc4,0xa0,0x3c,0xf1,0x90,0x76,0x91, + 0x61,0xde,0x27,0xec,0xf9,0x38,0xf8,0x6d,0xf3,0xec, + 0x39,0xe7,0x83,0x57,0x82,0x38,0x09,0xc3,0x9c,0xf6, + 0x61,0xdc,0xe5,0xf0,0x5d,0x00,0xdd,0x9c,0x40,0x76, + 0xc0,0x04,0xd8,0x07,0xfd,0xe0,0x1a,0xa8,0x13,0xe4, + 0x81,0x2b,0x64,0x5e,0xef,0x61,0xee,0xce,0x73,0xef, + 0x0d,0xb5,0xf3,0x70,0x92,0x3e,0x0a,0xcc,0x49,0x0f, + 0x74,0xa5,0x51,0x2e,0xaa,0xf0,0xd0,0x26,0xae,0xab, + 0x4b,0xdf,0xa3,0x7e,0x82,0x97,0xca,0xef,0x26,0x61, + 0xbb,0x28,0x0d,0x7b,0xd8,0x83,0x61,0xc6,0x22,0x1f, + 0x14,0x80,0xb7,0xe0,0x9e,0x30,0x46,0x98,0xbe,0xbc, + 0xd8,0x83,0x39,0x75,0xfa,0x1c,0x63,0xb4,0xff,0xcb, + 0x59,0x6c,0x5d,0x18,0xa3,0x48,0xcf,0xb2,0x75,0xb2, + 0xe9,0x3a,0xf8,0xc5,0x1c,0x70,0x2d,0xa7,0x11,0xdc, + 0x34,0xa7,0xd0,0x2c,0x3a,0xd2,0xf9,0x20,0x90,0xab, + 0xaa,0x94,0x5d,0x43,0x5f,0xbe,0x2b,0x68,0xf3,0x5d, + 0xe7,0x5e,0xfb,0xa1,0x3f,0xa6,0x3c,0xee,0xa4,0xad, + 0x20,0x17,0xfc,0x06,0x97,0x46,0x47,0x5c,0xa7,0x35, + 0x4e,0xb7,0x9f,0xc0,0x0c,0xff,0x2e,0x07,0xa5,0x82, + 0x18,0xe9,0x20,0x27,0x85,0x41,0x97,0xe6,0x6b,0xe0, + 0xaa,0xc5,0xff,0xb4,0xe2,0x87,0x85,0x31,0x92,0x64, + 0xfe,0x0d,0x2c,0x81,0x1b,0xc2,0xb4,0x7a,0x68,0xb5, + 0x6d,0x38,0x45,0x3f,0x03,0x97,0x04,0x71,0x96,0x69, + 0x71,0x1a,0x85,0x65,0x80,0x47,0x40,0xf2,0xc5,0x7e, + 0xe8,0xb5,0x5a,0xcf,0x93,0x60,0x5e,0xfb,0x3f,0xa2, + 0x43,0xe9,0xac,0xf9,0x24,0xd3,0x65,0x5a,0xb1,0xf9, + 0x10,0x4d,0xd9,0x53,0xe3,0x38,0xad,0x9a,0x6f,0x83, + 0x0e,0x70,0x9a,0x27,0x63,0x8a,0xdb,0xc9,0x6b,0xcc, + 0xf2,0x00,0x39,0xa7,0xd4,0x69,0xbf,0x8d,0x29,0xee, + 0x94,0xd3,0xd1,0x99,0x0e,0x91,0x8f,0x7c,0x9c,0x02, + 0x8a,0xd3,0xcc,0x71,0x45,0x97,0x06,0x4a,0x18,0x35, + 0x3e,0x2c,0xc2,0x05,0x8e,0x33,0xe3,0xf6,0xba,0x44, + 0x6b,0xe0,0x2e,0xe7,0xec,0x8c,0x4b,0xd3,0xcf,0x74, + 0x52,0xe1,0xf6,0xdb,0x5e,0x2f,0x8a,0xc6,0x36,0x4c, + 0x72,0xf1,0x50,0x6f,0xa9,0x61,0x2e,0xa7,0x54,0x15, + 0x7f,0x80,0x0d,0x36,0x4d,0x49,0xeb,0xc5,0x99,0x00, + 0x03,0x00,0x8d,0x70,0x73,0x99,0xca,0x99,0x33,0x28, + 0x00,0x00,0x00,0x00,0x49,0x45,0x4e,0x44,0xae,0x42, + 0x60,0x82 }; diff --git a/data/converted/help_dpad_all_png.cpp b/data/converted/help_dpad_all_png.cpp new file mode 100644 index 000000000..73bd5cda5 --- /dev/null +++ b/data/converted/help_dpad_all_png.cpp @@ -0,0 +1,1645 @@ +//this file was auto-generated from "dpad_all.png" by res2h + +#include "../Resources.h" + +const size_t help_dpad_all_png_size = 16375; +const unsigned char help_dpad_all_png_data[16375] = { + 0x89,0x50,0x4e,0x47,0x0d,0x0a,0x1a,0x0a,0x00,0x00, + 0x00,0x0d,0x49,0x48,0x44,0x52,0x00,0x00,0x00,0x25, + 0x00,0x00,0x00,0x25,0x08,0x06,0x00,0x00,0x00,0xc5, + 0x9e,0x20,0x03,0x00,0x00,0x00,0x09,0x70,0x48,0x59, + 0x73,0x00,0x00,0x0b,0x13,0x00,0x00,0x0b,0x13,0x01, + 0x00,0x9a,0x9c,0x18,0x00,0x00,0x3c,0xa0,0x69,0x54, + 0x58,0x74,0x58,0x4d,0x4c,0x3a,0x63,0x6f,0x6d,0x2e, + 0x61,0x64,0x6f,0x62,0x65,0x2e,0x78,0x6d,0x70,0x00, + 0x00,0x00,0x00,0x00,0x3c,0x3f,0x78,0x70,0x61,0x63, + 0x6b,0x65,0x74,0x20,0x62,0x65,0x67,0x69,0x6e,0x3d, + 0x22,0xef,0xbb,0xbf,0x22,0x20,0x69,0x64,0x3d,0x22, + 0x57,0x35,0x4d,0x30,0x4d,0x70,0x43,0x65,0x68,0x69, + 0x48,0x7a,0x72,0x65,0x53,0x7a,0x4e,0x54,0x63,0x7a, + 0x6b,0x63,0x39,0x64,0x22,0x3f,0x3e,0x0a,0x3c,0x78, + 0x3a,0x78,0x6d,0x70,0x6d,0x65,0x74,0x61,0x20,0x78, + 0x6d,0x6c,0x6e,0x73,0x3a,0x78,0x3d,0x22,0x61,0x64, + 0x6f,0x62,0x65,0x3a,0x6e,0x73,0x3a,0x6d,0x65,0x74, + 0x61,0x2f,0x22,0x20,0x78,0x3a,0x78,0x6d,0x70,0x74, + 0x6b,0x3d,0x22,0x41,0x64,0x6f,0x62,0x65,0x20,0x58, + 0x4d,0x50,0x20,0x43,0x6f,0x72,0x65,0x20,0x35,0x2e, + 0x35,0x2d,0x63,0x30,0x32,0x31,0x20,0x37,0x39,0x2e, + 0x31,0x35,0x34,0x39,0x31,0x31,0x2c,0x20,0x32,0x30, + 0x31,0x33,0x2f,0x31,0x30,0x2f,0x32,0x39,0x2d,0x31, + 0x31,0x3a,0x34,0x37,0x3a,0x31,0x36,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x22,0x3e,0x0a,0x20,0x20, + 0x20,0x3c,0x72,0x64,0x66,0x3a,0x52,0x44,0x46,0x20, + 0x78,0x6d,0x6c,0x6e,0x73,0x3a,0x72,0x64,0x66,0x3d, + 0x22,0x68,0x74,0x74,0x70,0x3a,0x2f,0x2f,0x77,0x77, + 0x77,0x2e,0x77,0x33,0x2e,0x6f,0x72,0x67,0x2f,0x31, + 0x39,0x39,0x39,0x2f,0x30,0x32,0x2f,0x32,0x32,0x2d, + 0x72,0x64,0x66,0x2d,0x73,0x79,0x6e,0x74,0x61,0x78, + 0x2d,0x6e,0x73,0x23,0x22,0x3e,0x0a,0x20,0x20,0x20, + 0x20,0x20,0x20,0x3c,0x72,0x64,0x66,0x3a,0x44,0x65, + 0x73,0x63,0x72,0x69,0x70,0x74,0x69,0x6f,0x6e,0x20, + 0x72,0x64,0x66,0x3a,0x61,0x62,0x6f,0x75,0x74,0x3d, + 0x22,0x22,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x78,0x6d,0x6c,0x6e,0x73, + 0x3a,0x78,0x6d,0x70,0x4d,0x4d,0x3d,0x22,0x68,0x74, + 0x74,0x70,0x3a,0x2f,0x2f,0x6e,0x73,0x2e,0x61,0x64, + 0x6f,0x62,0x65,0x2e,0x63,0x6f,0x6d,0x2f,0x78,0x61, + 0x70,0x2f,0x31,0x2e,0x30,0x2f,0x6d,0x6d,0x2f,0x22, + 0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x78,0x6d,0x6c,0x6e,0x73,0x3a,0x73, + 0x74,0x52,0x65,0x66,0x3d,0x22,0x68,0x74,0x74,0x70, + 0x3a,0x2f,0x2f,0x6e,0x73,0x2e,0x61,0x64,0x6f,0x62, + 0x65,0x2e,0x63,0x6f,0x6d,0x2f,0x78,0x61,0x70,0x2f, + 0x31,0x2e,0x30,0x2f,0x73,0x54,0x79,0x70,0x65,0x2f, + 0x52,0x65,0x73,0x6f,0x75,0x72,0x63,0x65,0x52,0x65, + 0x66,0x23,0x22,0x0a,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x78,0x6d,0x6c,0x6e, + 0x73,0x3a,0x73,0x74,0x45,0x76,0x74,0x3d,0x22,0x68, + 0x74,0x74,0x70,0x3a,0x2f,0x2f,0x6e,0x73,0x2e,0x61, + 0x64,0x6f,0x62,0x65,0x2e,0x63,0x6f,0x6d,0x2f,0x78, + 0x61,0x70,0x2f,0x31,0x2e,0x30,0x2f,0x73,0x54,0x79, + 0x70,0x65,0x2f,0x52,0x65,0x73,0x6f,0x75,0x72,0x63, + 0x65,0x45,0x76,0x65,0x6e,0x74,0x23,0x22,0x0a,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x78,0x6d,0x6c,0x6e,0x73,0x3a,0x78,0x6d,0x70, + 0x3d,0x22,0x68,0x74,0x74,0x70,0x3a,0x2f,0x2f,0x6e, + 0x73,0x2e,0x61,0x64,0x6f,0x62,0x65,0x2e,0x63,0x6f, + 0x6d,0x2f,0x78,0x61,0x70,0x2f,0x31,0x2e,0x30,0x2f, + 0x22,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x78,0x6d,0x6c,0x6e,0x73,0x3a, + 0x64,0x63,0x3d,0x22,0x68,0x74,0x74,0x70,0x3a,0x2f, + 0x2f,0x70,0x75,0x72,0x6c,0x2e,0x6f,0x72,0x67,0x2f, + 0x64,0x63,0x2f,0x65,0x6c,0x65,0x6d,0x65,0x6e,0x74, + 0x73,0x2f,0x31,0x2e,0x31,0x2f,0x22,0x0a,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x78,0x6d,0x6c,0x6e,0x73,0x3a,0x70,0x68,0x6f,0x74, + 0x6f,0x73,0x68,0x6f,0x70,0x3d,0x22,0x68,0x74,0x74, + 0x70,0x3a,0x2f,0x2f,0x6e,0x73,0x2e,0x61,0x64,0x6f, + 0x62,0x65,0x2e,0x63,0x6f,0x6d,0x2f,0x70,0x68,0x6f, + 0x74,0x6f,0x73,0x68,0x6f,0x70,0x2f,0x31,0x2e,0x30, + 0x2f,0x22,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x78,0x6d,0x6c,0x6e,0x73, + 0x3a,0x74,0x69,0x66,0x66,0x3d,0x22,0x68,0x74,0x74, + 0x70,0x3a,0x2f,0x2f,0x6e,0x73,0x2e,0x61,0x64,0x6f, + 0x62,0x65,0x2e,0x63,0x6f,0x6d,0x2f,0x74,0x69,0x66, + 0x66,0x2f,0x31,0x2e,0x30,0x2f,0x22,0x0a,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x78,0x6d,0x6c,0x6e,0x73,0x3a,0x65,0x78,0x69,0x66, + 0x3d,0x22,0x68,0x74,0x74,0x70,0x3a,0x2f,0x2f,0x6e, + 0x73,0x2e,0x61,0x64,0x6f,0x62,0x65,0x2e,0x63,0x6f, + 0x6d,0x2f,0x65,0x78,0x69,0x66,0x2f,0x31,0x2e,0x30, + 0x2f,0x22,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x3c,0x78,0x6d,0x70,0x4d,0x4d,0x3a, + 0x4f,0x72,0x69,0x67,0x69,0x6e,0x61,0x6c,0x44,0x6f, + 0x63,0x75,0x6d,0x65,0x6e,0x74,0x49,0x44,0x3e,0x78, + 0x6d,0x70,0x2e,0x64,0x69,0x64,0x3a,0x46,0x30,0x31, + 0x35,0x37,0x37,0x33,0x42,0x31,0x31,0x32,0x30,0x36, + 0x38,0x31,0x31,0x38,0x30,0x38,0x33,0x43,0x37,0x45, + 0x33,0x31,0x45,0x41,0x35,0x41,0x37,0x35,0x33,0x3c, + 0x2f,0x78,0x6d,0x70,0x4d,0x4d,0x3a,0x4f,0x72,0x69, + 0x67,0x69,0x6e,0x61,0x6c,0x44,0x6f,0x63,0x75,0x6d, + 0x65,0x6e,0x74,0x49,0x44,0x3e,0x0a,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x78,0x6d,0x70, + 0x4d,0x4d,0x3a,0x44,0x6f,0x63,0x75,0x6d,0x65,0x6e, + 0x74,0x49,0x44,0x3e,0x78,0x6d,0x70,0x2e,0x64,0x69, + 0x64,0x3a,0x30,0x30,0x37,0x39,0x36,0x32,0x32,0x35, + 0x39,0x44,0x38,0x44,0x31,0x31,0x45,0x33,0x41,0x39, + 0x31,0x44,0x42,0x44,0x46,0x44,0x34,0x30,0x39,0x39, + 0x32,0x45,0x45,0x33,0x3c,0x2f,0x78,0x6d,0x70,0x4d, + 0x4d,0x3a,0x44,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74, + 0x49,0x44,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x3c,0x78,0x6d,0x70,0x4d,0x4d,0x3a, + 0x49,0x6e,0x73,0x74,0x61,0x6e,0x63,0x65,0x49,0x44, + 0x3e,0x78,0x6d,0x70,0x2e,0x69,0x69,0x64,0x3a,0x39, + 0x65,0x66,0x63,0x65,0x36,0x35,0x34,0x2d,0x62,0x31, + 0x65,0x31,0x2d,0x31,0x31,0x34,0x39,0x2d,0x38,0x65, + 0x32,0x30,0x2d,0x30,0x33,0x62,0x34,0x31,0x30,0x39, + 0x65,0x66,0x64,0x35,0x37,0x3c,0x2f,0x78,0x6d,0x70, + 0x4d,0x4d,0x3a,0x49,0x6e,0x73,0x74,0x61,0x6e,0x63, + 0x65,0x49,0x44,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x3c,0x78,0x6d,0x70,0x4d,0x4d, + 0x3a,0x44,0x65,0x72,0x69,0x76,0x65,0x64,0x46,0x72, + 0x6f,0x6d,0x20,0x72,0x64,0x66,0x3a,0x70,0x61,0x72, + 0x73,0x65,0x54,0x79,0x70,0x65,0x3d,0x22,0x52,0x65, + 0x73,0x6f,0x75,0x72,0x63,0x65,0x22,0x3e,0x0a,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x3c,0x73,0x74,0x52,0x65,0x66,0x3a,0x69,0x6e, + 0x73,0x74,0x61,0x6e,0x63,0x65,0x49,0x44,0x3e,0x78, + 0x6d,0x70,0x2e,0x69,0x69,0x64,0x3a,0x46,0x30,0x31, + 0x35,0x37,0x37,0x33,0x42,0x31,0x31,0x32,0x30,0x36, + 0x38,0x31,0x31,0x38,0x30,0x38,0x33,0x43,0x37,0x45, + 0x33,0x31,0x45,0x41,0x35,0x41,0x37,0x35,0x33,0x3c, + 0x2f,0x73,0x74,0x52,0x65,0x66,0x3a,0x69,0x6e,0x73, + 0x74,0x61,0x6e,0x63,0x65,0x49,0x44,0x3e,0x0a,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x3c,0x73,0x74,0x52,0x65,0x66,0x3a,0x64,0x6f, + 0x63,0x75,0x6d,0x65,0x6e,0x74,0x49,0x44,0x3e,0x78, + 0x6d,0x70,0x2e,0x64,0x69,0x64,0x3a,0x46,0x30,0x31, + 0x35,0x37,0x37,0x33,0x42,0x31,0x31,0x32,0x30,0x36, + 0x38,0x31,0x31,0x38,0x30,0x38,0x33,0x43,0x37,0x45, + 0x33,0x31,0x45,0x41,0x35,0x41,0x37,0x35,0x33,0x3c, + 0x2f,0x73,0x74,0x52,0x65,0x66,0x3a,0x64,0x6f,0x63, + 0x75,0x6d,0x65,0x6e,0x74,0x49,0x44,0x3e,0x0a,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x2f, + 0x78,0x6d,0x70,0x4d,0x4d,0x3a,0x44,0x65,0x72,0x69, + 0x76,0x65,0x64,0x46,0x72,0x6f,0x6d,0x3e,0x0a,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x78, + 0x6d,0x70,0x4d,0x4d,0x3a,0x48,0x69,0x73,0x74,0x6f, + 0x72,0x79,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x72,0x64,0x66, + 0x3a,0x53,0x65,0x71,0x3e,0x0a,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x3c,0x72,0x64,0x66,0x3a,0x6c,0x69,0x20,0x72, + 0x64,0x66,0x3a,0x70,0x61,0x72,0x73,0x65,0x54,0x79, + 0x70,0x65,0x3d,0x22,0x52,0x65,0x73,0x6f,0x75,0x72, + 0x63,0x65,0x22,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x3c,0x73,0x74,0x45,0x76,0x74,0x3a, + 0x61,0x63,0x74,0x69,0x6f,0x6e,0x3e,0x73,0x61,0x76, + 0x65,0x64,0x3c,0x2f,0x73,0x74,0x45,0x76,0x74,0x3a, + 0x61,0x63,0x74,0x69,0x6f,0x6e,0x3e,0x0a,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x73,0x74,0x45, + 0x76,0x74,0x3a,0x69,0x6e,0x73,0x74,0x61,0x6e,0x63, + 0x65,0x49,0x44,0x3e,0x78,0x6d,0x70,0x2e,0x69,0x69, + 0x64,0x3a,0x39,0x31,0x62,0x61,0x65,0x38,0x36,0x63, + 0x2d,0x38,0x39,0x30,0x38,0x2d,0x34,0x36,0x34,0x37, + 0x2d,0x62,0x30,0x34,0x37,0x2d,0x63,0x37,0x39,0x35, + 0x30,0x63,0x34,0x63,0x62,0x35,0x39,0x64,0x3c,0x2f, + 0x73,0x74,0x45,0x76,0x74,0x3a,0x69,0x6e,0x73,0x74, + 0x61,0x6e,0x63,0x65,0x49,0x44,0x3e,0x0a,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x73,0x74,0x45, + 0x76,0x74,0x3a,0x77,0x68,0x65,0x6e,0x3e,0x32,0x30, + 0x31,0x34,0x2d,0x30,0x33,0x2d,0x31,0x35,0x54,0x31, + 0x36,0x3a,0x32,0x35,0x3a,0x30,0x32,0x2d,0x30,0x35, + 0x3a,0x30,0x30,0x3c,0x2f,0x73,0x74,0x45,0x76,0x74, + 0x3a,0x77,0x68,0x65,0x6e,0x3e,0x0a,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x3c,0x73,0x74,0x45,0x76, + 0x74,0x3a,0x73,0x6f,0x66,0x74,0x77,0x61,0x72,0x65, + 0x41,0x67,0x65,0x6e,0x74,0x3e,0x41,0x64,0x6f,0x62, + 0x65,0x20,0x50,0x68,0x6f,0x74,0x6f,0x73,0x68,0x6f, + 0x70,0x20,0x43,0x43,0x20,0x28,0x57,0x69,0x6e,0x64, + 0x6f,0x77,0x73,0x29,0x3c,0x2f,0x73,0x74,0x45,0x76, + 0x74,0x3a,0x73,0x6f,0x66,0x74,0x77,0x61,0x72,0x65, + 0x41,0x67,0x65,0x6e,0x74,0x3e,0x0a,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x3c,0x73,0x74,0x45,0x76, + 0x74,0x3a,0x63,0x68,0x61,0x6e,0x67,0x65,0x64,0x3e, + 0x2f,0x3c,0x2f,0x73,0x74,0x45,0x76,0x74,0x3a,0x63, + 0x68,0x61,0x6e,0x67,0x65,0x64,0x3e,0x0a,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x3c,0x2f,0x72,0x64,0x66,0x3a,0x6c, + 0x69,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x72, + 0x64,0x66,0x3a,0x6c,0x69,0x20,0x72,0x64,0x66,0x3a, + 0x70,0x61,0x72,0x73,0x65,0x54,0x79,0x70,0x65,0x3d, + 0x22,0x52,0x65,0x73,0x6f,0x75,0x72,0x63,0x65,0x22, + 0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x3c,0x73,0x74,0x45,0x76,0x74,0x3a,0x61,0x63,0x74, + 0x69,0x6f,0x6e,0x3e,0x73,0x61,0x76,0x65,0x64,0x3c, + 0x2f,0x73,0x74,0x45,0x76,0x74,0x3a,0x61,0x63,0x74, + 0x69,0x6f,0x6e,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x3c,0x73,0x74,0x45,0x76,0x74,0x3a, + 0x69,0x6e,0x73,0x74,0x61,0x6e,0x63,0x65,0x49,0x44, + 0x3e,0x78,0x6d,0x70,0x2e,0x69,0x69,0x64,0x3a,0x39, + 0x65,0x66,0x63,0x65,0x36,0x35,0x34,0x2d,0x62,0x31, + 0x65,0x31,0x2d,0x31,0x31,0x34,0x39,0x2d,0x38,0x65, + 0x32,0x30,0x2d,0x30,0x33,0x62,0x34,0x31,0x30,0x39, + 0x65,0x66,0x64,0x35,0x37,0x3c,0x2f,0x73,0x74,0x45, + 0x76,0x74,0x3a,0x69,0x6e,0x73,0x74,0x61,0x6e,0x63, + 0x65,0x49,0x44,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x3c,0x73,0x74,0x45,0x76,0x74,0x3a, + 0x77,0x68,0x65,0x6e,0x3e,0x32,0x30,0x31,0x34,0x2d, + 0x30,0x33,0x2d,0x31,0x35,0x54,0x31,0x36,0x3a,0x32, + 0x35,0x3a,0x34,0x37,0x2d,0x30,0x35,0x3a,0x30,0x30, + 0x3c,0x2f,0x73,0x74,0x45,0x76,0x74,0x3a,0x77,0x68, + 0x65,0x6e,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x3c,0x73,0x74,0x45,0x76,0x74,0x3a,0x73, + 0x6f,0x66,0x74,0x77,0x61,0x72,0x65,0x41,0x67,0x65, + 0x6e,0x74,0x3e,0x41,0x64,0x6f,0x62,0x65,0x20,0x50, + 0x68,0x6f,0x74,0x6f,0x73,0x68,0x6f,0x70,0x20,0x43, + 0x43,0x20,0x28,0x57,0x69,0x6e,0x64,0x6f,0x77,0x73, + 0x29,0x3c,0x2f,0x73,0x74,0x45,0x76,0x74,0x3a,0x73, + 0x6f,0x66,0x74,0x77,0x61,0x72,0x65,0x41,0x67,0x65, + 0x6e,0x74,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x3c,0x73,0x74,0x45,0x76,0x74,0x3a,0x63, + 0x68,0x61,0x6e,0x67,0x65,0x64,0x3e,0x2f,0x3c,0x2f, + 0x73,0x74,0x45,0x76,0x74,0x3a,0x63,0x68,0x61,0x6e, + 0x67,0x65,0x64,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x3c,0x2f,0x72,0x64,0x66,0x3a,0x6c,0x69,0x3e,0x0a, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x3c,0x2f,0x72,0x64,0x66,0x3a,0x53,0x65, + 0x71,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x3c,0x2f,0x78,0x6d,0x70,0x4d,0x4d,0x3a, + 0x48,0x69,0x73,0x74,0x6f,0x72,0x79,0x3e,0x0a,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x78, + 0x6d,0x70,0x3a,0x43,0x72,0x65,0x61,0x74,0x6f,0x72, + 0x54,0x6f,0x6f,0x6c,0x3e,0x41,0x64,0x6f,0x62,0x65, + 0x20,0x50,0x68,0x6f,0x74,0x6f,0x73,0x68,0x6f,0x70, + 0x20,0x43,0x43,0x20,0x28,0x57,0x69,0x6e,0x64,0x6f, + 0x77,0x73,0x29,0x3c,0x2f,0x78,0x6d,0x70,0x3a,0x43, + 0x72,0x65,0x61,0x74,0x6f,0x72,0x54,0x6f,0x6f,0x6c, + 0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x3c,0x78,0x6d,0x70,0x3a,0x43,0x72,0x65,0x61, + 0x74,0x65,0x44,0x61,0x74,0x65,0x3e,0x32,0x30,0x31, + 0x34,0x2d,0x30,0x33,0x2d,0x31,0x35,0x54,0x31,0x36, + 0x3a,0x31,0x36,0x3a,0x30,0x36,0x2d,0x30,0x35,0x3a, + 0x30,0x30,0x3c,0x2f,0x78,0x6d,0x70,0x3a,0x43,0x72, + 0x65,0x61,0x74,0x65,0x44,0x61,0x74,0x65,0x3e,0x0a, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c, + 0x78,0x6d,0x70,0x3a,0x4d,0x6f,0x64,0x69,0x66,0x79, + 0x44,0x61,0x74,0x65,0x3e,0x32,0x30,0x31,0x34,0x2d, + 0x30,0x33,0x2d,0x31,0x35,0x54,0x31,0x36,0x3a,0x32, + 0x35,0x3a,0x34,0x37,0x2d,0x30,0x35,0x3a,0x30,0x30, + 0x3c,0x2f,0x78,0x6d,0x70,0x3a,0x4d,0x6f,0x64,0x69, + 0x66,0x79,0x44,0x61,0x74,0x65,0x3e,0x0a,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x78,0x6d, + 0x70,0x3a,0x4d,0x65,0x74,0x61,0x64,0x61,0x74,0x61, + 0x44,0x61,0x74,0x65,0x3e,0x32,0x30,0x31,0x34,0x2d, + 0x30,0x33,0x2d,0x31,0x35,0x54,0x31,0x36,0x3a,0x32, + 0x35,0x3a,0x34,0x37,0x2d,0x30,0x35,0x3a,0x30,0x30, + 0x3c,0x2f,0x78,0x6d,0x70,0x3a,0x4d,0x65,0x74,0x61, + 0x64,0x61,0x74,0x61,0x44,0x61,0x74,0x65,0x3e,0x0a, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c, + 0x64,0x63,0x3a,0x66,0x6f,0x72,0x6d,0x61,0x74,0x3e, + 0x69,0x6d,0x61,0x67,0x65,0x2f,0x70,0x6e,0x67,0x3c, + 0x2f,0x64,0x63,0x3a,0x66,0x6f,0x72,0x6d,0x61,0x74, + 0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x3c,0x70,0x68,0x6f,0x74,0x6f,0x73,0x68,0x6f, + 0x70,0x3a,0x43,0x6f,0x6c,0x6f,0x72,0x4d,0x6f,0x64, + 0x65,0x3e,0x33,0x3c,0x2f,0x70,0x68,0x6f,0x74,0x6f, + 0x73,0x68,0x6f,0x70,0x3a,0x43,0x6f,0x6c,0x6f,0x72, + 0x4d,0x6f,0x64,0x65,0x3e,0x0a,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x3c,0x70,0x68,0x6f,0x74, + 0x6f,0x73,0x68,0x6f,0x70,0x3a,0x44,0x6f,0x63,0x75, + 0x6d,0x65,0x6e,0x74,0x41,0x6e,0x63,0x65,0x73,0x74, + 0x6f,0x72,0x73,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x72,0x64, + 0x66,0x3a,0x42,0x61,0x67,0x3e,0x0a,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x3c,0x72,0x64,0x66,0x3a,0x6c,0x69,0x3e, + 0x78,0x6d,0x70,0x2e,0x64,0x69,0x64,0x3a,0x30,0x30, + 0x37,0x39,0x36,0x32,0x32,0x31,0x39,0x44,0x38,0x44, + 0x31,0x31,0x45,0x33,0x41,0x39,0x31,0x44,0x42,0x44, + 0x46,0x44,0x34,0x30,0x39,0x39,0x32,0x45,0x45,0x33, + 0x3c,0x2f,0x72,0x64,0x66,0x3a,0x6c,0x69,0x3e,0x0a, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x3c,0x72,0x64,0x66,0x3a, + 0x6c,0x69,0x3e,0x78,0x6d,0x70,0x2e,0x64,0x69,0x64, + 0x3a,0x46,0x43,0x44,0x39,0x31,0x31,0x37,0x41,0x39, + 0x44,0x38,0x41,0x31,0x31,0x45,0x33,0x41,0x39,0x31, + 0x44,0x42,0x44,0x46,0x44,0x34,0x30,0x39,0x39,0x32, + 0x45,0x45,0x33,0x3c,0x2f,0x72,0x64,0x66,0x3a,0x6c, + 0x69,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x72, + 0x64,0x66,0x3a,0x6c,0x69,0x3e,0x78,0x6d,0x70,0x2e, + 0x64,0x69,0x64,0x3a,0x46,0x43,0x44,0x39,0x31,0x31, + 0x37,0x45,0x39,0x44,0x38,0x41,0x31,0x31,0x45,0x33, + 0x41,0x39,0x31,0x44,0x42,0x44,0x46,0x44,0x34,0x30, + 0x39,0x39,0x32,0x45,0x45,0x33,0x3c,0x2f,0x72,0x64, + 0x66,0x3a,0x6c,0x69,0x3e,0x0a,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x2f, + 0x72,0x64,0x66,0x3a,0x42,0x61,0x67,0x3e,0x0a,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x2f, + 0x70,0x68,0x6f,0x74,0x6f,0x73,0x68,0x6f,0x70,0x3a, + 0x44,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x41,0x6e, + 0x63,0x65,0x73,0x74,0x6f,0x72,0x73,0x3e,0x0a,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x74, + 0x69,0x66,0x66,0x3a,0x4f,0x72,0x69,0x65,0x6e,0x74, + 0x61,0x74,0x69,0x6f,0x6e,0x3e,0x31,0x3c,0x2f,0x74, + 0x69,0x66,0x66,0x3a,0x4f,0x72,0x69,0x65,0x6e,0x74, + 0x61,0x74,0x69,0x6f,0x6e,0x3e,0x0a,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x74,0x69,0x66, + 0x66,0x3a,0x58,0x52,0x65,0x73,0x6f,0x6c,0x75,0x74, + 0x69,0x6f,0x6e,0x3e,0x37,0x32,0x30,0x30,0x30,0x30, + 0x2f,0x31,0x30,0x30,0x30,0x30,0x3c,0x2f,0x74,0x69, + 0x66,0x66,0x3a,0x58,0x52,0x65,0x73,0x6f,0x6c,0x75, + 0x74,0x69,0x6f,0x6e,0x3e,0x0a,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x3c,0x74,0x69,0x66,0x66, + 0x3a,0x59,0x52,0x65,0x73,0x6f,0x6c,0x75,0x74,0x69, + 0x6f,0x6e,0x3e,0x37,0x32,0x30,0x30,0x30,0x30,0x2f, + 0x31,0x30,0x30,0x30,0x30,0x3c,0x2f,0x74,0x69,0x66, + 0x66,0x3a,0x59,0x52,0x65,0x73,0x6f,0x6c,0x75,0x74, + 0x69,0x6f,0x6e,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x3c,0x74,0x69,0x66,0x66,0x3a, + 0x52,0x65,0x73,0x6f,0x6c,0x75,0x74,0x69,0x6f,0x6e, + 0x55,0x6e,0x69,0x74,0x3e,0x32,0x3c,0x2f,0x74,0x69, + 0x66,0x66,0x3a,0x52,0x65,0x73,0x6f,0x6c,0x75,0x74, + 0x69,0x6f,0x6e,0x55,0x6e,0x69,0x74,0x3e,0x0a,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x65, + 0x78,0x69,0x66,0x3a,0x43,0x6f,0x6c,0x6f,0x72,0x53, + 0x70,0x61,0x63,0x65,0x3e,0x36,0x35,0x35,0x33,0x35, + 0x3c,0x2f,0x65,0x78,0x69,0x66,0x3a,0x43,0x6f,0x6c, + 0x6f,0x72,0x53,0x70,0x61,0x63,0x65,0x3e,0x0a,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x65, + 0x78,0x69,0x66,0x3a,0x50,0x69,0x78,0x65,0x6c,0x58, + 0x44,0x69,0x6d,0x65,0x6e,0x73,0x69,0x6f,0x6e,0x3e, + 0x33,0x37,0x3c,0x2f,0x65,0x78,0x69,0x66,0x3a,0x50, + 0x69,0x78,0x65,0x6c,0x58,0x44,0x69,0x6d,0x65,0x6e, + 0x73,0x69,0x6f,0x6e,0x3e,0x0a,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x3c,0x65,0x78,0x69,0x66, + 0x3a,0x50,0x69,0x78,0x65,0x6c,0x59,0x44,0x69,0x6d, + 0x65,0x6e,0x73,0x69,0x6f,0x6e,0x3e,0x33,0x37,0x3c, + 0x2f,0x65,0x78,0x69,0x66,0x3a,0x50,0x69,0x78,0x65, + 0x6c,0x59,0x44,0x69,0x6d,0x65,0x6e,0x73,0x69,0x6f, + 0x6e,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x3c, + 0x2f,0x72,0x64,0x66,0x3a,0x44,0x65,0x73,0x63,0x72, + 0x69,0x70,0x74,0x69,0x6f,0x6e,0x3e,0x0a,0x20,0x20, + 0x20,0x3c,0x2f,0x72,0x64,0x66,0x3a,0x52,0x44,0x46, + 0x3e,0x0a,0x3c,0x2f,0x78,0x3a,0x78,0x6d,0x70,0x6d, + 0x65,0x74,0x61,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x0a,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x0a,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x0a,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x0a,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x0a, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x0a,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x0a,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x0a,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x0a,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x0a,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x0a,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x0a, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x0a,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x0a,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x0a,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x0a,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x0a,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x0a,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x0a, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x0a,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x0a,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x0a,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x0a,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x0a,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x0a,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x0a, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x0a,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x0a,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x0a,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x0a,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x0a,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x0a,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x0a, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x0a,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x0a,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x0a,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x0a,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x0a,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x0a,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x0a, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x0a,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x0a,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x0a,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x0a,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x0a,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x0a,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x0a, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x0a,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x0a,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x0a,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x0a,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x0a,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x0a,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x0a, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x0a,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x0a,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x0a,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x0a,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x0a,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x0a,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x0a, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x0a,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x0a,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x0a,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x0a,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x0a,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x0a,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x0a, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x0a,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x0a,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x0a,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x0a,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x0a,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x0a,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x0a, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x0a,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x0a,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x0a,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x0a,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x0a,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x0a,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x0a, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x0a,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x0a,0x3c,0x3f,0x78,0x70,0x61,0x63,0x6b, + 0x65,0x74,0x20,0x65,0x6e,0x64,0x3d,0x22,0x77,0x22, + 0x3f,0x3e,0x4d,0x56,0x3b,0x28,0x00,0x00,0x00,0x20, + 0x63,0x48,0x52,0x4d,0x00,0x00,0x7a,0x25,0x00,0x00, + 0x80,0x83,0x00,0x00,0xf9,0xff,0x00,0x00,0x80,0xe9, + 0x00,0x00,0x75,0x30,0x00,0x00,0xea,0x60,0x00,0x00, + 0x3a,0x98,0x00,0x00,0x17,0x6f,0x92,0x5f,0xc5,0x46, + 0x00,0x00,0x02,0xd1,0x49,0x44,0x41,0x54,0x78,0xda, + 0xdc,0x98,0xcf,0x4b,0x54,0x51,0x14,0xc7,0x3f,0x33, + 0xf3,0x82,0xa9,0x54,0x34,0xa4,0xe9,0x07,0xfd,0x5e, + 0x48,0x51,0x20,0x2d,0xa2,0x7f,0x60,0x2a,0x32,0x2b, + 0x21,0x71,0x11,0x28,0x54,0x44,0x9b,0x0a,0x5a,0x24, + 0xf5,0x0f,0x04,0xed,0xb2,0x45,0x54,0x14,0x84,0x2d, + 0x8a,0x8a,0x04,0x4d,0xfc,0xd1,0xa2,0x65,0xcb,0x36, + 0x11,0x46,0x3f,0xb0,0x1f,0xe8,0x14,0x46,0xe8,0x98, + 0x81,0x33,0xda,0xe6,0x2b,0x3c,0x2e,0xef,0xc7,0xbd, + 0x4e,0xe3,0x44,0x5f,0x18,0xce,0xbb,0xe7,0x9d,0x77, + 0xee,0xf7,0x9d,0x77,0xef,0xb9,0xe7,0x4c,0xa2,0xb3, + 0xb3,0x13,0x47,0xec,0x03,0xfa,0x80,0x65,0x16,0xb6, + 0x45,0xa0,0x05,0xe8,0x75,0x99,0xc0,0xc3,0x1d,0x03, + 0x40,0x02,0x98,0x01,0xf2,0x11,0x76,0x2b,0x81,0x15, + 0x40,0x0f,0x90,0x2a,0x27,0xa9,0x63,0x22,0x94,0x03, + 0xd6,0x58,0xd8,0xff,0x00,0xea,0x80,0x2c,0x30,0x6c, + 0x3b,0x49,0xd2,0x91,0xd4,0x1e,0xc9,0x11,0x43,0x7f, + 0x0f,0x98,0x07,0xee,0x1b,0xfa,0x2f,0x92,0x59,0x97, + 0x49,0x92,0x2c,0x0e,0xf3,0xbe,0xeb,0x5a,0xa0,0x5d, + 0xd7,0xc7,0x35,0x2e,0x09,0x49,0x4a,0xc7,0x1b,0x63, + 0x3c,0x52,0x69,0x52,0x1d,0x01,0x6b,0x6b,0x35,0x70, + 0xa2,0x92,0xa4,0xee,0x84,0xe8,0x6f,0x55,0x92,0x54, + 0xca,0x51,0x5f,0xb6,0x3c,0xe5,0x47,0x82,0x32,0x20, + 0xc9,0x3f,0x08,0x7f,0xa4,0x9a,0x81,0x83,0x31,0xf6, + 0x7b,0x17,0x39,0x4f,0x16,0xb8,0x11,0x63,0x33,0xa8, + 0xec,0x8f,0x27,0x22,0xbd,0x8e,0x51,0xfb,0x60,0x69, + 0xf7,0x1e,0xd8,0x05,0x34,0xea,0x17,0x85,0x33,0xca, + 0x7f,0x07,0x3c,0x1f,0xa1,0x09,0x60,0xd4,0x62,0xa2, + 0x77,0x0e,0x5b,0xbe,0x05,0x78,0x04,0x6c,0xb5,0xb0, + 0x5d,0xa7,0xf4,0xd2,0xe7,0x89,0xd0,0x34,0x50,0x1f, + 0x60,0x58,0x0f,0x5c,0x00,0x2e,0xc7,0x38,0xcc,0x00, + 0x6d,0xc0,0x43,0x9d,0x8b,0x7e,0xb4,0x1a,0xe3,0x34, + 0xf0,0x3b,0xc4,0xcf,0x0c,0x90,0x4e,0xfa,0x06,0x26, + 0x6e,0x03,0xdf,0x81,0x4b,0xc0,0xd1,0x10,0x27,0x55, + 0xc0,0x24,0x30,0x0e,0x5c,0x93,0x9c,0x94,0x9e,0x88, + 0x89,0x8b,0xc0,0xd9,0x80,0x7b,0xf9,0xb0,0xdd,0xb7, + 0x43,0x91,0x3b,0x65,0x44,0x2c,0x08,0x63,0x40,0x35, + 0x50,0xd0,0x3a,0x2b,0x68,0x3c,0x66,0xb1,0xeb,0xbb, + 0xf4,0xd2,0x99,0xb8,0x94,0x30,0x08,0xbc,0x56,0x1d, + 0x14,0x87,0x4d,0x8a,0x48,0x41,0x05,0xdf,0x36,0xc9, + 0x82,0xf4,0xeb,0x2d,0x7c,0xd4,0x2b,0xba,0x0f,0xc2, + 0x48,0xd5,0xaa,0xaa,0xb4,0x45,0x93,0xe4,0x27,0x43, + 0xff,0x59,0xf2,0x90,0x83,0xaf,0xb6,0x30,0x52,0x3f, + 0x81,0x7e,0x07,0x47,0xcf,0x24,0x37,0x1a,0xfa,0x0d, + 0x92,0x7d,0x0e,0xbe,0x1e,0x47,0x7d,0xbe,0x26,0xa0, + 0x01,0xf8,0x65,0xe1,0x68,0x54,0x0b,0xd3,0x03,0x66, + 0x81,0x8f,0x92,0x9e,0xf4,0x5f,0x2d,0x7c,0x4c,0x28, + 0x0d,0xb4,0xc6,0x1d,0x33,0x6f,0x55,0x5f,0xdf,0xf4, + 0xe9,0x72,0x21,0x4e,0xd7,0x02,0x53,0x22,0xb2,0x59, + 0x72,0x4a,0xfa,0x28,0xcc,0x01,0xe7,0xb5,0xa6,0x72, + 0x61,0x0b,0xbd,0x2a,0x24,0xc3,0xd6,0x01,0x57,0x22, + 0xba,0x91,0x3c,0x50,0xa3,0xb7,0x3d,0x27,0x59,0x13, + 0xd3,0x50,0x54,0xab,0x8a,0xe8,0x0a,0xb8,0xb7,0x1c, + 0x5f,0xe8,0xd3,0xda,0x05,0x61,0x21,0xdf,0x6f,0x1c, + 0x31,0x66,0x42,0xcc,0x01,0xd7,0x43,0x9e,0x7d,0xa2, + 0x28,0xc6,0x61,0x8b,0xbe,0x50,0xd1,0xd3,0x2e,0x19, + 0x50,0xbe,0xc8,0x58,0x3c,0xbc,0x5b,0x8d,0x42,0x87, + 0x85,0x6d,0x0f,0x70,0xc4,0x61,0xc1,0xcf,0x01,0x87, + 0x3d,0x60,0x48,0x9f,0xb1,0x59,0x11,0x49,0xc5,0x54, + 0x09,0x8d,0xca,0x51,0x36,0x58,0x38,0xf3,0x5e,0x01, + 0x2f,0x63,0x9a,0xd6,0xfe,0x85,0xdd,0xef,0x2f,0x5d, + 0x7a,0x2d,0x3a,0xd9,0xab,0x16,0xa7,0x7d,0x10,0x86, + 0x81,0x8b,0xff,0x4d,0x91,0x57,0x6a,0xff,0xf7,0xd7, + 0x4a,0xe5,0x52,0x23,0x55,0x74,0xd4,0x2f,0x09,0xa9, + 0xd3,0x21,0xfa,0x93,0x95,0x24,0x75,0x17,0xf8,0x66, + 0xe8,0xc6,0x95,0x32,0x2a,0xda,0xcd,0x34,0x18,0xe3, + 0xed,0x95,0x6a,0xb1,0x12,0x46,0x75,0xd1,0xad,0xeb, + 0x6e,0x8d,0x97,0x94,0xd4,0x73,0xc9,0x9d,0x86,0xbe, + 0x5d,0x44,0xdb,0x0d,0xfd,0xc2,0xff,0x0c,0x2f,0xca, + 0x99,0x12,0x86,0x74,0x14,0xac,0x52,0xc9,0x3c,0x1d, + 0x73,0xf0,0xa6,0x95,0x36,0xfa,0xcb,0x49,0x0a,0x35, + 0x11,0x4f,0x55,0x32,0xc7,0x95,0xcd,0xb3,0xbe,0x0a, + 0xd5,0x1a,0x7f,0x06,0x00,0xcc,0x4c,0x89,0x42,0x23, + 0x86,0xe8,0x9d,0x00,0x00,0x00,0x00,0x49,0x45,0x4e, + 0x44,0xae,0x42,0x60,0x82 +}; diff --git a/data/converted/help_dpad_down_png.cpp b/data/converted/help_dpad_down_png.cpp new file mode 100644 index 000000000..05758d4e7 --- /dev/null +++ b/data/converted/help_dpad_down_png.cpp @@ -0,0 +1,187 @@ +//this file was auto-generated from "dpad_down.png" by res2h + +#include "../Resources.h" + +const size_t help_dpad_down_png_size = 1797; +const unsigned char help_dpad_down_png_data[1797] = { + 0x89,0x50,0x4e,0x47,0x0d,0x0a,0x1a,0x0a,0x00,0x00, + 0x00,0x0d,0x49,0x48,0x44,0x52,0x00,0x00,0x00,0x25, + 0x00,0x00,0x00,0x25,0x08,0x06,0x00,0x00,0x00,0xc5, + 0x9e,0x20,0x03,0x00,0x00,0x00,0x19,0x74,0x45,0x58, + 0x74,0x53,0x6f,0x66,0x74,0x77,0x61,0x72,0x65,0x00, + 0x41,0x64,0x6f,0x62,0x65,0x20,0x49,0x6d,0x61,0x67, + 0x65,0x52,0x65,0x61,0x64,0x79,0x71,0xc9,0x65,0x3c, + 0x00,0x00,0x03,0x68,0x69,0x54,0x58,0x74,0x58,0x4d, + 0x4c,0x3a,0x63,0x6f,0x6d,0x2e,0x61,0x64,0x6f,0x62, + 0x65,0x2e,0x78,0x6d,0x70,0x00,0x00,0x00,0x00,0x00, + 0x3c,0x3f,0x78,0x70,0x61,0x63,0x6b,0x65,0x74,0x20, + 0x62,0x65,0x67,0x69,0x6e,0x3d,0x22,0xef,0xbb,0xbf, + 0x22,0x20,0x69,0x64,0x3d,0x22,0x57,0x35,0x4d,0x30, + 0x4d,0x70,0x43,0x65,0x68,0x69,0x48,0x7a,0x72,0x65, + 0x53,0x7a,0x4e,0x54,0x63,0x7a,0x6b,0x63,0x39,0x64, + 0x22,0x3f,0x3e,0x20,0x3c,0x78,0x3a,0x78,0x6d,0x70, + 0x6d,0x65,0x74,0x61,0x20,0x78,0x6d,0x6c,0x6e,0x73, + 0x3a,0x78,0x3d,0x22,0x61,0x64,0x6f,0x62,0x65,0x3a, + 0x6e,0x73,0x3a,0x6d,0x65,0x74,0x61,0x2f,0x22,0x20, + 0x78,0x3a,0x78,0x6d,0x70,0x74,0x6b,0x3d,0x22,0x41, + 0x64,0x6f,0x62,0x65,0x20,0x58,0x4d,0x50,0x20,0x43, + 0x6f,0x72,0x65,0x20,0x35,0x2e,0x33,0x2d,0x63,0x30, + 0x31,0x31,0x20,0x36,0x36,0x2e,0x31,0x34,0x35,0x36, + 0x36,0x31,0x2c,0x20,0x32,0x30,0x31,0x32,0x2f,0x30, + 0x32,0x2f,0x30,0x36,0x2d,0x31,0x34,0x3a,0x35,0x36, + 0x3a,0x32,0x37,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x22,0x3e,0x20,0x3c,0x72,0x64,0x66,0x3a,0x52, + 0x44,0x46,0x20,0x78,0x6d,0x6c,0x6e,0x73,0x3a,0x72, + 0x64,0x66,0x3d,0x22,0x68,0x74,0x74,0x70,0x3a,0x2f, + 0x2f,0x77,0x77,0x77,0x2e,0x77,0x33,0x2e,0x6f,0x72, + 0x67,0x2f,0x31,0x39,0x39,0x39,0x2f,0x30,0x32,0x2f, + 0x32,0x32,0x2d,0x72,0x64,0x66,0x2d,0x73,0x79,0x6e, + 0x74,0x61,0x78,0x2d,0x6e,0x73,0x23,0x22,0x3e,0x20, + 0x3c,0x72,0x64,0x66,0x3a,0x44,0x65,0x73,0x63,0x72, + 0x69,0x70,0x74,0x69,0x6f,0x6e,0x20,0x72,0x64,0x66, + 0x3a,0x61,0x62,0x6f,0x75,0x74,0x3d,0x22,0x22,0x20, + 0x78,0x6d,0x6c,0x6e,0x73,0x3a,0x78,0x6d,0x70,0x4d, + 0x4d,0x3d,0x22,0x68,0x74,0x74,0x70,0x3a,0x2f,0x2f, + 0x6e,0x73,0x2e,0x61,0x64,0x6f,0x62,0x65,0x2e,0x63, + 0x6f,0x6d,0x2f,0x78,0x61,0x70,0x2f,0x31,0x2e,0x30, + 0x2f,0x6d,0x6d,0x2f,0x22,0x20,0x78,0x6d,0x6c,0x6e, + 0x73,0x3a,0x73,0x74,0x52,0x65,0x66,0x3d,0x22,0x68, + 0x74,0x74,0x70,0x3a,0x2f,0x2f,0x6e,0x73,0x2e,0x61, + 0x64,0x6f,0x62,0x65,0x2e,0x63,0x6f,0x6d,0x2f,0x78, + 0x61,0x70,0x2f,0x31,0x2e,0x30,0x2f,0x73,0x54,0x79, + 0x70,0x65,0x2f,0x52,0x65,0x73,0x6f,0x75,0x72,0x63, + 0x65,0x52,0x65,0x66,0x23,0x22,0x20,0x78,0x6d,0x6c, + 0x6e,0x73,0x3a,0x78,0x6d,0x70,0x3d,0x22,0x68,0x74, + 0x74,0x70,0x3a,0x2f,0x2f,0x6e,0x73,0x2e,0x61,0x64, + 0x6f,0x62,0x65,0x2e,0x63,0x6f,0x6d,0x2f,0x78,0x61, + 0x70,0x2f,0x31,0x2e,0x30,0x2f,0x22,0x20,0x78,0x6d, + 0x70,0x4d,0x4d,0x3a,0x4f,0x72,0x69,0x67,0x69,0x6e, + 0x61,0x6c,0x44,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74, + 0x49,0x44,0x3d,0x22,0x78,0x6d,0x70,0x2e,0x64,0x69, + 0x64,0x3a,0x46,0x30,0x31,0x35,0x37,0x37,0x33,0x42, + 0x31,0x31,0x32,0x30,0x36,0x38,0x31,0x31,0x38,0x30, + 0x38,0x33,0x43,0x37,0x45,0x33,0x31,0x45,0x41,0x35, + 0x41,0x37,0x35,0x33,0x22,0x20,0x78,0x6d,0x70,0x4d, + 0x4d,0x3a,0x44,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74, + 0x49,0x44,0x3d,0x22,0x78,0x6d,0x70,0x2e,0x64,0x69, + 0x64,0x3a,0x46,0x43,0x44,0x39,0x31,0x31,0x37,0x45, + 0x39,0x44,0x38,0x41,0x31,0x31,0x45,0x33,0x41,0x39, + 0x31,0x44,0x42,0x44,0x46,0x44,0x34,0x30,0x39,0x39, + 0x32,0x45,0x45,0x33,0x22,0x20,0x78,0x6d,0x70,0x4d, + 0x4d,0x3a,0x49,0x6e,0x73,0x74,0x61,0x6e,0x63,0x65, + 0x49,0x44,0x3d,0x22,0x78,0x6d,0x70,0x2e,0x69,0x69, + 0x64,0x3a,0x46,0x43,0x44,0x39,0x31,0x31,0x37,0x44, + 0x39,0x44,0x38,0x41,0x31,0x31,0x45,0x33,0x41,0x39, + 0x31,0x44,0x42,0x44,0x46,0x44,0x34,0x30,0x39,0x39, + 0x32,0x45,0x45,0x33,0x22,0x20,0x78,0x6d,0x70,0x3a, + 0x43,0x72,0x65,0x61,0x74,0x6f,0x72,0x54,0x6f,0x6f, + 0x6c,0x3d,0x22,0x41,0x64,0x6f,0x62,0x65,0x20,0x50, + 0x68,0x6f,0x74,0x6f,0x73,0x68,0x6f,0x70,0x20,0x43, + 0x53,0x36,0x20,0x28,0x4d,0x61,0x63,0x69,0x6e,0x74, + 0x6f,0x73,0x68,0x29,0x22,0x3e,0x20,0x3c,0x78,0x6d, + 0x70,0x4d,0x4d,0x3a,0x44,0x65,0x72,0x69,0x76,0x65, + 0x64,0x46,0x72,0x6f,0x6d,0x20,0x73,0x74,0x52,0x65, + 0x66,0x3a,0x69,0x6e,0x73,0x74,0x61,0x6e,0x63,0x65, + 0x49,0x44,0x3d,0x22,0x78,0x6d,0x70,0x2e,0x69,0x69, + 0x64,0x3a,0x46,0x30,0x31,0x35,0x37,0x37,0x33,0x42, + 0x31,0x31,0x32,0x30,0x36,0x38,0x31,0x31,0x38,0x30, + 0x38,0x33,0x43,0x37,0x45,0x33,0x31,0x45,0x41,0x35, + 0x41,0x37,0x35,0x33,0x22,0x20,0x73,0x74,0x52,0x65, + 0x66,0x3a,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74, + 0x49,0x44,0x3d,0x22,0x78,0x6d,0x70,0x2e,0x64,0x69, + 0x64,0x3a,0x46,0x30,0x31,0x35,0x37,0x37,0x33,0x42, + 0x31,0x31,0x32,0x30,0x36,0x38,0x31,0x31,0x38,0x30, + 0x38,0x33,0x43,0x37,0x45,0x33,0x31,0x45,0x41,0x35, + 0x41,0x37,0x35,0x33,0x22,0x2f,0x3e,0x20,0x3c,0x2f, + 0x72,0x64,0x66,0x3a,0x44,0x65,0x73,0x63,0x72,0x69, + 0x70,0x74,0x69,0x6f,0x6e,0x3e,0x20,0x3c,0x2f,0x72, + 0x64,0x66,0x3a,0x52,0x44,0x46,0x3e,0x20,0x3c,0x2f, + 0x78,0x3a,0x78,0x6d,0x70,0x6d,0x65,0x74,0x61,0x3e, + 0x20,0x3c,0x3f,0x78,0x70,0x61,0x63,0x6b,0x65,0x74, + 0x20,0x65,0x6e,0x64,0x3d,0x22,0x72,0x22,0x3f,0x3e, + 0x24,0x4f,0xd7,0x28,0x00,0x00,0x03,0x33,0x49,0x44, + 0x41,0x54,0x78,0xda,0xd4,0x98,0x5b,0x6c,0x4c,0x41, + 0x18,0xc7,0xcf,0xae,0xa3,0x15,0xd4,0x83,0xba,0x94, + 0x56,0x42,0xd2,0x20,0x44,0x56,0x22,0x12,0x44,0x52, + 0xad,0x44,0x08,0x21,0x1e,0xc4,0x7a,0x12,0x7d,0xd0, + 0x96,0x50,0x82,0x6c,0x8b,0x28,0x2a,0x4b,0xe2,0xb2, + 0x22,0x22,0x95,0xf2,0xe0,0x49,0x89,0x27,0x97,0x78, + 0x71,0x8b,0x97,0x25,0xc1,0x43,0xd1,0x20,0x54,0xe2, + 0xd6,0x6a,0x17,0xa1,0x1b,0xea,0xa4,0x2e,0xff,0x49, + 0xfe,0x4d,0x36,0x93,0x73,0x66,0xce,0xd9,0x63,0x1d, + 0xbe,0xe4,0x97,0x93,0xce,0xce,0xe5,0x9b,0x99,0x6f, + 0xbe,0x4b,0x43,0xb1,0x58,0xcc,0xf0,0x28,0x23,0xc0, + 0x61,0xb0,0x1c,0x14,0x28,0xfa,0x7d,0x05,0x57,0xc1, + 0x3a,0xd0,0xe5,0x65,0x01,0xd3,0xf0,0x2e,0x2d,0x60, + 0x36,0x68,0x06,0x1d,0x8a,0x7e,0xa3,0x40,0x35,0x38, + 0x05,0x96,0xe6,0x52,0xa9,0x22,0x30,0x1f,0x6c,0x03, + 0x87,0x5c,0xf4,0xff,0x0c,0x1a,0x40,0x21,0xf8,0xe0, + 0x76,0x91,0xb0,0x47,0xa5,0x46,0xf2,0xfb,0x44,0x6a, + 0x9f,0x05,0x52,0x60,0x8e,0xd4,0xfe,0x9c,0x6b,0x8c, + 0xf5,0xb2,0x48,0xd8,0xc8,0x4e,0x7e,0x49,0xa7,0xdd, + 0xc4,0xd3,0x68,0xca,0xd2,0x24,0xfe,0x88,0x52,0x99, + 0xb2,0x11,0x44,0xc0,0x49,0x30,0x0d,0x6c,0x0e,0x5a, + 0xa9,0x12,0xb0,0x07,0x5c,0xa6,0x51,0x5f,0x04,0xbb, + 0xc0,0xb8,0x20,0x95,0x4a,0x80,0xa1,0xa0,0x07,0x1c, + 0x00,0x69,0xfe,0x9d,0xf0,0x33,0xa9,0xdf,0xfb,0x8f, + 0xf0,0xbb,0x4a,0x6a,0x9f,0x1e,0xa4,0x52,0x13,0x8d, + 0x1c,0x48,0xd8,0xf8,0x07,0xc5,0x94,0x3c,0xb0,0xce, + 0x40,0x4b,0xb3,0x5c,0x67,0x0a,0xc8,0xd3,0xf4,0x79, + 0x03,0xde,0xf7,0x2b,0x25,0x1c,0xe2,0x19,0xb0,0xc8, + 0x83,0x8f,0x4a,0xb9,0xec,0xfb,0x8e,0xfd,0x5b,0x5c, + 0xf6,0xbf,0x0e,0xa2,0x26,0x63,0x53,0x19,0xd8,0x4e, + 0x0f,0xac,0x93,0x4e,0x70,0xd7,0xe5,0x22,0xb7,0xc0, + 0x3c,0x30,0xda,0x45,0x5f,0x71,0x4b,0x8d,0xe0,0xa0, + 0x50,0x6a,0x21,0x38,0x06,0xf6,0xdb,0x74,0x1c,0x48, + 0x63,0x7e,0xac,0x99,0x30,0x8f,0x3e,0x4b,0x5c,0x81, + 0x25,0xfd,0x76,0xdb,0xc6,0x8e,0x7f,0x3a,0xcc,0x33, + 0x01,0xac,0x0e,0x73,0x42,0xbb,0x60,0x39,0x13,0xdc, + 0x03,0x0f,0x15,0x3b,0x1d,0x00,0xe2,0xe0,0x13,0x78, + 0xc1,0x6f,0x9c,0xed,0x4e,0xf2,0x16,0x5c,0xa2,0x02, + 0x76,0xbf,0x15,0xd8,0xbd,0xbe,0x21,0xe0,0x08,0x48, + 0xd2,0x40,0x43,0x20,0xdf,0x61,0x81,0x7d,0xa0,0x9e, + 0x9e,0x7c,0x2d,0xbf,0xf5,0x6c,0x57,0x65,0x1a,0x4b, + 0x78,0xfa,0x75,0x76,0x0f,0x40,0x56,0x6a,0x01,0x4f, + 0xa6,0x96,0xb1,0x6c,0x83,0x62,0xf2,0x41,0x8c,0x7b, + 0x67,0xe9,0x3c,0x9b,0xf9,0x3d,0xc7,0x71,0xf9,0x8a, + 0xb1,0xc7,0xc1,0x15,0x9a,0xcc,0x03,0x30,0xd7,0x49, + 0x29,0x33,0xe3,0x58,0x85,0xd1,0xaf,0x07,0x5f,0x34, + 0x3b,0x1e,0x0c,0x6e,0x4a,0xed,0x37,0x78,0xda,0x45, + 0x9a,0x2b,0x5c,0x01,0x8e,0x82,0xa9,0x5c,0xd7,0x56, + 0xa9,0x3e,0xb0,0x18,0xb4,0x73,0x07,0x27,0xc0,0x30, + 0xcd,0x2b,0x14,0x29,0x6f,0x85,0xd4,0x5e,0xc1,0x18, + 0xd8,0xa9,0x18,0x2b,0xf2,0xab,0xf3,0x60,0x13,0x73, + 0xb3,0x65,0xaa,0x30,0x73,0x8d,0xe9,0x47,0x23,0xaf, + 0x46,0x25,0xbd,0x7c,0xb5,0x75,0xd2,0xf3,0x5f,0xc9, + 0xe0,0xfc,0x5d,0x31,0x56,0x5c,0xef,0x37,0xb0,0x83, + 0x19,0xac,0xa5,0x8b,0x7d,0x62,0xf7,0x5b,0x68,0x2b, + 0xa7,0xa9,0x64,0xaf,0xc3,0xe4,0x3b,0xe9,0x1c,0x85, + 0x0d,0x46,0x79,0x42,0x71,0xa6,0x2f,0x4e,0x22,0xbc, + 0xf6,0x7d,0x2a,0xd6,0xee,0x14,0x66,0xd2,0xf4,0x31, + 0xb2,0x08,0x77,0x30,0x03,0x4c,0x52,0x54,0x23,0x3f, + 0x68,0x7f,0xbb,0x41,0x31,0x6d,0xc5,0xd2,0x9c,0x70, + 0x31,0xc7,0x39,0x55,0x4a,0x96,0x50,0xea,0x02,0x58, + 0x03,0x5e,0x82,0x57,0x8a,0xd8,0x95,0xb9,0x53,0xd9, + 0x21,0x5a,0x1c,0x6f,0x27,0x65,0x8c,0xab,0x3a,0x99, + 0x0c,0x6a,0xc4,0xab,0x34,0x59,0x99,0x8c,0x77,0x59, + 0x9d,0xf4,0xc7,0x3e,0x51,0x20,0xdc,0x71,0xd1,0xb7, + 0x9c,0xf1,0x2c,0xe4,0x72,0x5e,0x51,0x27,0x56,0x99, + 0x0c,0xae,0xe5,0xdc,0x4d,0x89,0x66,0x82,0x52,0x06, + 0xd7,0x42,0x97,0x1b,0x18,0xc3,0xf9,0xa2,0x9a,0xb8, + 0x2a,0x14,0x7a,0x0d,0xba,0x65,0x43,0xef,0x72,0x51, + 0xc9,0x5a,0x46,0x76,0xd2,0x46,0xa7,0xfc,0xff,0x26, + 0x79,0x7e,0x95,0x7a,0xc6,0xa3,0x97,0x79,0x1a,0xa4, + 0x52,0x8f,0x1c,0xda,0x5b,0x83,0x54,0xaa,0x96,0x7e, + 0x2e,0x53,0xd2,0x7e,0x0b,0x52,0xbf,0x4a,0x89,0x17, + 0xb3,0x57,0x6a,0x6b,0x60,0xb2,0x17,0x68,0x35,0x93, + 0xc8,0x78,0x59,0xad,0x8c,0x87,0x81,0x18,0x7a,0x48, + 0xca,0x2e,0xaa,0xc0,0x47,0x96,0xee,0x7d,0x7f,0x5b, + 0xa9,0x0e,0xe6,0xd7,0x11,0xa9,0x3d,0x49,0x87,0x9a, + 0xb4,0xf9,0x5f,0x83,0xa1,0x49,0x63,0x7c,0x57,0xc8, + 0x29,0x86,0x02,0x11,0x84,0x87,0x6b,0x9c,0xad,0xa8, + 0x4e,0x2a,0x99,0x0e,0x75,0xe7,0xba,0x6c,0xaf,0x64, + 0x02,0x58,0xcd,0xcc,0xd3,0x49,0x7a,0x98,0x1a,0x6f, + 0xf5,0xba,0xc0,0x6f,0x01,0x06,0x00,0x9b,0x19,0xb5, + 0xa2,0x6f,0x22,0x26,0x8a,0x00,0x00,0x00,0x00,0x49, + 0x45,0x4e,0x44,0xae,0x42,0x60,0x82 +}; diff --git a/data/converted/help_dpad_left_png.cpp b/data/converted/help_dpad_left_png.cpp new file mode 100644 index 000000000..17b28ac47 --- /dev/null +++ b/data/converted/help_dpad_left_png.cpp @@ -0,0 +1,188 @@ +//this file was auto-generated from "dpad_left.png" by res2h + +#include "../Resources.h" + +const size_t help_dpad_left_png_size = 1805; +const unsigned char help_dpad_left_png_data[1805] = { + 0x89,0x50,0x4e,0x47,0x0d,0x0a,0x1a,0x0a,0x00,0x00, + 0x00,0x0d,0x49,0x48,0x44,0x52,0x00,0x00,0x00,0x25, + 0x00,0x00,0x00,0x25,0x08,0x06,0x00,0x00,0x00,0xc5, + 0x9e,0x20,0x03,0x00,0x00,0x00,0x19,0x74,0x45,0x58, + 0x74,0x53,0x6f,0x66,0x74,0x77,0x61,0x72,0x65,0x00, + 0x41,0x64,0x6f,0x62,0x65,0x20,0x49,0x6d,0x61,0x67, + 0x65,0x52,0x65,0x61,0x64,0x79,0x71,0xc9,0x65,0x3c, + 0x00,0x00,0x03,0x68,0x69,0x54,0x58,0x74,0x58,0x4d, + 0x4c,0x3a,0x63,0x6f,0x6d,0x2e,0x61,0x64,0x6f,0x62, + 0x65,0x2e,0x78,0x6d,0x70,0x00,0x00,0x00,0x00,0x00, + 0x3c,0x3f,0x78,0x70,0x61,0x63,0x6b,0x65,0x74,0x20, + 0x62,0x65,0x67,0x69,0x6e,0x3d,0x22,0xef,0xbb,0xbf, + 0x22,0x20,0x69,0x64,0x3d,0x22,0x57,0x35,0x4d,0x30, + 0x4d,0x70,0x43,0x65,0x68,0x69,0x48,0x7a,0x72,0x65, + 0x53,0x7a,0x4e,0x54,0x63,0x7a,0x6b,0x63,0x39,0x64, + 0x22,0x3f,0x3e,0x20,0x3c,0x78,0x3a,0x78,0x6d,0x70, + 0x6d,0x65,0x74,0x61,0x20,0x78,0x6d,0x6c,0x6e,0x73, + 0x3a,0x78,0x3d,0x22,0x61,0x64,0x6f,0x62,0x65,0x3a, + 0x6e,0x73,0x3a,0x6d,0x65,0x74,0x61,0x2f,0x22,0x20, + 0x78,0x3a,0x78,0x6d,0x70,0x74,0x6b,0x3d,0x22,0x41, + 0x64,0x6f,0x62,0x65,0x20,0x58,0x4d,0x50,0x20,0x43, + 0x6f,0x72,0x65,0x20,0x35,0x2e,0x33,0x2d,0x63,0x30, + 0x31,0x31,0x20,0x36,0x36,0x2e,0x31,0x34,0x35,0x36, + 0x36,0x31,0x2c,0x20,0x32,0x30,0x31,0x32,0x2f,0x30, + 0x32,0x2f,0x30,0x36,0x2d,0x31,0x34,0x3a,0x35,0x36, + 0x3a,0x32,0x37,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x22,0x3e,0x20,0x3c,0x72,0x64,0x66,0x3a,0x52, + 0x44,0x46,0x20,0x78,0x6d,0x6c,0x6e,0x73,0x3a,0x72, + 0x64,0x66,0x3d,0x22,0x68,0x74,0x74,0x70,0x3a,0x2f, + 0x2f,0x77,0x77,0x77,0x2e,0x77,0x33,0x2e,0x6f,0x72, + 0x67,0x2f,0x31,0x39,0x39,0x39,0x2f,0x30,0x32,0x2f, + 0x32,0x32,0x2d,0x72,0x64,0x66,0x2d,0x73,0x79,0x6e, + 0x74,0x61,0x78,0x2d,0x6e,0x73,0x23,0x22,0x3e,0x20, + 0x3c,0x72,0x64,0x66,0x3a,0x44,0x65,0x73,0x63,0x72, + 0x69,0x70,0x74,0x69,0x6f,0x6e,0x20,0x72,0x64,0x66, + 0x3a,0x61,0x62,0x6f,0x75,0x74,0x3d,0x22,0x22,0x20, + 0x78,0x6d,0x6c,0x6e,0x73,0x3a,0x78,0x6d,0x70,0x4d, + 0x4d,0x3d,0x22,0x68,0x74,0x74,0x70,0x3a,0x2f,0x2f, + 0x6e,0x73,0x2e,0x61,0x64,0x6f,0x62,0x65,0x2e,0x63, + 0x6f,0x6d,0x2f,0x78,0x61,0x70,0x2f,0x31,0x2e,0x30, + 0x2f,0x6d,0x6d,0x2f,0x22,0x20,0x78,0x6d,0x6c,0x6e, + 0x73,0x3a,0x73,0x74,0x52,0x65,0x66,0x3d,0x22,0x68, + 0x74,0x74,0x70,0x3a,0x2f,0x2f,0x6e,0x73,0x2e,0x61, + 0x64,0x6f,0x62,0x65,0x2e,0x63,0x6f,0x6d,0x2f,0x78, + 0x61,0x70,0x2f,0x31,0x2e,0x30,0x2f,0x73,0x54,0x79, + 0x70,0x65,0x2f,0x52,0x65,0x73,0x6f,0x75,0x72,0x63, + 0x65,0x52,0x65,0x66,0x23,0x22,0x20,0x78,0x6d,0x6c, + 0x6e,0x73,0x3a,0x78,0x6d,0x70,0x3d,0x22,0x68,0x74, + 0x74,0x70,0x3a,0x2f,0x2f,0x6e,0x73,0x2e,0x61,0x64, + 0x6f,0x62,0x65,0x2e,0x63,0x6f,0x6d,0x2f,0x78,0x61, + 0x70,0x2f,0x31,0x2e,0x30,0x2f,0x22,0x20,0x78,0x6d, + 0x70,0x4d,0x4d,0x3a,0x4f,0x72,0x69,0x67,0x69,0x6e, + 0x61,0x6c,0x44,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74, + 0x49,0x44,0x3d,0x22,0x78,0x6d,0x70,0x2e,0x64,0x69, + 0x64,0x3a,0x46,0x30,0x31,0x35,0x37,0x37,0x33,0x42, + 0x31,0x31,0x32,0x30,0x36,0x38,0x31,0x31,0x38,0x30, + 0x38,0x33,0x43,0x37,0x45,0x33,0x31,0x45,0x41,0x35, + 0x41,0x37,0x35,0x33,0x22,0x20,0x78,0x6d,0x70,0x4d, + 0x4d,0x3a,0x44,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74, + 0x49,0x44,0x3d,0x22,0x78,0x6d,0x70,0x2e,0x64,0x69, + 0x64,0x3a,0x30,0x30,0x37,0x39,0x36,0x32,0x32,0x35, + 0x39,0x44,0x38,0x44,0x31,0x31,0x45,0x33,0x41,0x39, + 0x31,0x44,0x42,0x44,0x46,0x44,0x34,0x30,0x39,0x39, + 0x32,0x45,0x45,0x33,0x22,0x20,0x78,0x6d,0x70,0x4d, + 0x4d,0x3a,0x49,0x6e,0x73,0x74,0x61,0x6e,0x63,0x65, + 0x49,0x44,0x3d,0x22,0x78,0x6d,0x70,0x2e,0x69,0x69, + 0x64,0x3a,0x30,0x30,0x37,0x39,0x36,0x32,0x32,0x34, + 0x39,0x44,0x38,0x44,0x31,0x31,0x45,0x33,0x41,0x39, + 0x31,0x44,0x42,0x44,0x46,0x44,0x34,0x30,0x39,0x39, + 0x32,0x45,0x45,0x33,0x22,0x20,0x78,0x6d,0x70,0x3a, + 0x43,0x72,0x65,0x61,0x74,0x6f,0x72,0x54,0x6f,0x6f, + 0x6c,0x3d,0x22,0x41,0x64,0x6f,0x62,0x65,0x20,0x50, + 0x68,0x6f,0x74,0x6f,0x73,0x68,0x6f,0x70,0x20,0x43, + 0x53,0x36,0x20,0x28,0x4d,0x61,0x63,0x69,0x6e,0x74, + 0x6f,0x73,0x68,0x29,0x22,0x3e,0x20,0x3c,0x78,0x6d, + 0x70,0x4d,0x4d,0x3a,0x44,0x65,0x72,0x69,0x76,0x65, + 0x64,0x46,0x72,0x6f,0x6d,0x20,0x73,0x74,0x52,0x65, + 0x66,0x3a,0x69,0x6e,0x73,0x74,0x61,0x6e,0x63,0x65, + 0x49,0x44,0x3d,0x22,0x78,0x6d,0x70,0x2e,0x69,0x69, + 0x64,0x3a,0x46,0x30,0x31,0x35,0x37,0x37,0x33,0x42, + 0x31,0x31,0x32,0x30,0x36,0x38,0x31,0x31,0x38,0x30, + 0x38,0x33,0x43,0x37,0x45,0x33,0x31,0x45,0x41,0x35, + 0x41,0x37,0x35,0x33,0x22,0x20,0x73,0x74,0x52,0x65, + 0x66,0x3a,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74, + 0x49,0x44,0x3d,0x22,0x78,0x6d,0x70,0x2e,0x64,0x69, + 0x64,0x3a,0x46,0x30,0x31,0x35,0x37,0x37,0x33,0x42, + 0x31,0x31,0x32,0x30,0x36,0x38,0x31,0x31,0x38,0x30, + 0x38,0x33,0x43,0x37,0x45,0x33,0x31,0x45,0x41,0x35, + 0x41,0x37,0x35,0x33,0x22,0x2f,0x3e,0x20,0x3c,0x2f, + 0x72,0x64,0x66,0x3a,0x44,0x65,0x73,0x63,0x72,0x69, + 0x70,0x74,0x69,0x6f,0x6e,0x3e,0x20,0x3c,0x2f,0x72, + 0x64,0x66,0x3a,0x52,0x44,0x46,0x3e,0x20,0x3c,0x2f, + 0x78,0x3a,0x78,0x6d,0x70,0x6d,0x65,0x74,0x61,0x3e, + 0x20,0x3c,0x3f,0x78,0x70,0x61,0x63,0x6b,0x65,0x74, + 0x20,0x65,0x6e,0x64,0x3d,0x22,0x72,0x22,0x3f,0x3e, + 0x7e,0xb4,0x24,0x5c,0x00,0x00,0x03,0x3b,0x49,0x44, + 0x41,0x54,0x78,0xda,0xd4,0x98,0x5b,0x6c,0x4c,0x41, + 0x18,0xc7,0xcf,0xae,0x55,0x82,0xbe,0xa8,0x4b,0x69, + 0x25,0x24,0x75,0x09,0x61,0x25,0x22,0x41,0x24,0xd5, + 0x4a,0x84,0xa0,0x89,0x07,0x51,0x5e,0x44,0x1f,0xb4, + 0x95,0x50,0x0d,0xb2,0x5b,0xc4,0xad,0xb2,0x24,0x2e, + 0x2b,0x8d,0x48,0xa5,0x3c,0x78,0xa1,0xc4,0x93,0x4b, + 0xbc,0xb8,0xc5,0xcb,0x56,0x82,0x07,0xb7,0x20,0x54, + 0x42,0xe9,0x6a,0x17,0x91,0x6e,0xa8,0x93,0xba,0xfc, + 0x27,0xf9,0x37,0xd9,0x4c,0xce,0x39,0x33,0x67,0x8f, + 0x75,0xf8,0x92,0x5f,0x4e,0x76,0x76,0xce,0xcc,0x37, + 0x33,0xdf,0x7c,0x97,0x13,0x88,0x44,0x22,0x86,0x4b, + 0x19,0x01,0x8e,0x80,0x15,0x20,0xdf,0xa1,0xdf,0x57, + 0x70,0x0d,0x6c,0x00,0x5d,0x6e,0x26,0x08,0x19,0xee, + 0xa5,0x15,0xcc,0x05,0x2d,0xa0,0xd3,0xa1,0xdf,0x28, + 0x50,0x03,0x4e,0x81,0x8a,0x5c,0x2a,0x55,0x08,0x16, + 0x82,0x6d,0xe0,0xb0,0x46,0xff,0x2f,0x60,0x37,0x28, + 0x00,0x1f,0x75,0x27,0x09,0xba,0x54,0x6a,0x24,0x9f, + 0xcf,0xa4,0xf6,0x39,0x20,0x05,0xe6,0x49,0xed,0x2f, + 0x39,0xc7,0x58,0x37,0x93,0x04,0x8d,0xec,0xe4,0x97, + 0xb4,0xdb,0xcd,0xdc,0x8d,0xe6,0x2c,0x4d,0xe2,0x8f, + 0x28,0x95,0x29,0x9b,0x40,0x18,0x9c,0x04,0xd3,0x41, + 0xbd,0xdf,0x4a,0x15,0x83,0xbd,0xe0,0x0a,0x8d,0xfa, + 0x12,0xd8,0x05,0xc6,0xf9,0xa9,0x54,0x1c,0x0c,0x03, + 0x3d,0xe0,0x20,0x48,0xf3,0x77,0xdc,0xcb,0xa0,0x5e, + 0xcf,0x3f,0xcc,0xe7,0x6a,0xa9,0x7d,0xa6,0x9f,0x4a, + 0x4d,0x32,0x72,0x20,0x41,0xe3,0x1f,0x94,0x90,0xe4, + 0x81,0x55,0x06,0x5a,0x92,0xe5,0x3c,0x53,0x41,0x9e, + 0xa2,0x4f,0x07,0xf8,0xd0,0xaf,0x94,0x70,0x88,0x67, + 0xc0,0x12,0x17,0x3e,0x2a,0xa5,0xd9,0xf7,0x3d,0xfb, + 0xb7,0x6a,0xf6,0xbf,0x01,0x2a,0x43,0x8c,0x4d,0xa5, + 0x60,0x3b,0x3d,0xb0,0x4a,0x92,0xe0,0xae,0xe6,0x24, + 0xb7,0xc1,0x02,0x30,0x5a,0xa3,0xaf,0x38,0xa5,0x46, + 0x70,0x48,0x28,0xb5,0x18,0x34,0x81,0x03,0x16,0x1d, + 0x07,0xd2,0x98,0x9f,0x28,0x06,0xcc,0xa3,0xcf,0x12, + 0x47,0x60,0x4a,0xff,0xdd,0xb1,0xb0,0xe3,0x9f,0x36, + 0xe3,0x4c,0x00,0x6b,0x83,0x1c,0xd0,0x2a,0x58,0xce, + 0x06,0xf7,0xc0,0x23,0x87,0x95,0x0e,0x00,0x31,0xf0, + 0x19,0xbc,0xe2,0x33,0xc6,0x76,0x3b,0x79,0x07,0x2e, + 0x53,0x01,0xab,0xff,0xf2,0xad,0x6e,0xdf,0x50,0x70, + 0x14,0x24,0xc0,0x0c,0x10,0x00,0x83,0x6c,0x26,0xd8, + 0x0f,0x1a,0xe8,0xc9,0xd7,0xf3,0xd9,0xc0,0x76,0xa7, + 0x4c,0x63,0x19,0x77,0x3f,0x6a,0x75,0x01,0x64,0xa5, + 0x16,0x71,0x67,0xea,0x15,0xab,0x15,0x32,0x98,0x71, + 0xef,0x1c,0x9d,0x67,0x0b,0x9f,0xe7,0xc1,0x46,0x87, + 0x85,0x08,0x39,0x0e,0xae,0xd2,0x64,0x1e,0x80,0xf9, + 0x76,0x4a,0x85,0x1c,0xb6,0xd5,0x6e,0xc5,0x43,0xc0, + 0x2d,0xa9,0xfd,0x26,0x77,0xbb,0x50,0x71,0x84,0x2b, + 0xc1,0x31,0x30,0x8d,0xb1,0xd3,0x52,0xa9,0x3e,0xb0, + 0x14,0xb4,0x6b,0x2a,0x95,0x64,0xca,0x5b,0x2e,0xb5, + 0x97,0x33,0x06,0x26,0x1d,0xde,0x15,0xf9,0xd5,0x05, + 0xb0,0x99,0xb9,0x59,0x85,0x53,0x98,0xb9,0xce,0xf4, + 0xa3,0x91,0x47,0xe3,0x14,0x86,0x7a,0x79,0x6b,0xa3, + 0xd2,0xf5,0x5f,0xc5,0xe0,0xfc,0xdd,0xe1,0x5d,0x71, + 0xbc,0xdf,0xc0,0x0e,0x66,0xb0,0xa6,0x2a,0xf6,0x89, + 0xd5,0x6f,0xa1,0xad,0x9c,0xa6,0x92,0xbd,0x36,0x83, + 0xef,0xa4,0x73,0xac,0x13,0x4e,0x8f,0x3b,0x14,0x63, + 0xfa,0x62,0x27,0xc2,0x6b,0xdf,0xa7,0x62,0xed,0x76, + 0x61,0x26,0x4d,0x1f,0x23,0x8b,0x70,0x07,0xb3,0xc0, + 0x64,0x87,0x6a,0xe4,0x07,0x9d,0xee,0x1e,0x50,0x44, + 0x5b,0x31,0x15,0xc7,0x5e,0xc4,0xf7,0xec,0x2a,0x25, + 0x53,0x28,0x75,0x11,0xac,0x03,0xaf,0xc1,0x1b,0x87, + 0xd8,0x95,0xb9,0x52,0xd9,0x21,0x9a,0x7c,0xdf,0x4a, + 0x4a,0x19,0x57,0x55,0x32,0x05,0xd4,0x8a,0x5b,0x19, + 0x62,0x65,0x32,0x5e,0xb3,0x3a,0xe9,0x8f,0x7d,0xa2, + 0x40,0x68,0xd3,0xe8,0x5b,0xc6,0x78,0x16,0xd0,0x1c, + 0x57,0xd4,0x89,0xd5,0x21,0x06,0xd7,0x32,0xae,0xa6, + 0x58,0x31,0x40,0x09,0x83,0x6b,0x81,0xe6,0x02,0xc6, + 0x70,0xbc,0x4a,0x45,0x5c,0x15,0x0a,0xbd,0x05,0xdd, + 0xb2,0xa1,0x77,0x69,0x54,0xb2,0xa6,0x91,0x9d,0x3c, + 0xa5,0x53,0xfe,0x7f,0x93,0x3c,0xaf,0x4a,0xbd,0xe0, + 0xd6,0xcb,0x3c,0xf7,0x33,0x47,0x7f,0x0c,0x26,0x82, + 0xb3,0xb4,0x09,0x91,0x13,0xad,0x01,0x0f,0xfd,0xdc, + 0xa9,0xba,0x8c,0xb2,0x2a,0xca,0xaf,0x30,0x69,0xaf, + 0x05,0xa9,0x57,0xa5,0xc4,0xee,0xec,0x63,0xec,0x3a, + 0x01,0x96,0xf3,0x83,0x46,0x87,0xdf,0xd5,0x4c,0x9c, + 0x37,0xab,0x96,0xc7,0xd6,0xe4,0x97,0xa1,0x07,0xa4, + 0xec,0xa2,0x1a,0x7c,0x62,0xe9,0xde,0xf7,0xb7,0x95, + 0xea,0x64,0x7e,0x1d,0x96,0xda,0x13,0x74,0xa8,0x09, + 0x8b,0x6f,0x0d,0x86,0x22,0x8d,0xf1,0x7c,0xfb,0x52, + 0x0c,0x05,0x22,0x08,0x0f,0x57,0x38,0x5b,0x71,0x13, + 0xab,0x98,0x0e,0x75,0xe7,0xda,0x25,0x54,0xd1,0xa8, + 0x6b,0x98,0x79,0xda,0x49,0x0f,0x53,0xe3,0xad,0x6e, + 0x27,0xf8,0x2d,0xc0,0x00,0x86,0xa8,0xb5,0xf9,0x24, + 0xe5,0xd1,0x9d,0x00,0x00,0x00,0x00,0x49,0x45,0x4e, + 0x44,0xae,0x42,0x60,0x82 +}; diff --git a/data/converted/help_dpad_left_right_png.cpp b/data/converted/help_dpad_left_right_png.cpp new file mode 100644 index 000000000..a9768dcb7 --- /dev/null +++ b/data/converted/help_dpad_left_right_png.cpp @@ -0,0 +1,1637 @@ +//this file was auto-generated from "dpad_left_right.png" by res2h + +#include "../Resources.h" + +const size_t help_dpad_left_right_png_size = 16291; +const unsigned char help_dpad_left_right_png_data[16291] = { + 0x89,0x50,0x4e,0x47,0x0d,0x0a,0x1a,0x0a,0x00,0x00, + 0x00,0x0d,0x49,0x48,0x44,0x52,0x00,0x00,0x00,0x25, + 0x00,0x00,0x00,0x25,0x08,0x06,0x00,0x00,0x00,0xc5, + 0x9e,0x20,0x03,0x00,0x00,0x00,0x09,0x70,0x48,0x59, + 0x73,0x00,0x00,0x0b,0x13,0x00,0x00,0x0b,0x13,0x01, + 0x00,0x9a,0x9c,0x18,0x00,0x00,0x3c,0x0e,0x69,0x54, + 0x58,0x74,0x58,0x4d,0x4c,0x3a,0x63,0x6f,0x6d,0x2e, + 0x61,0x64,0x6f,0x62,0x65,0x2e,0x78,0x6d,0x70,0x00, + 0x00,0x00,0x00,0x00,0x3c,0x3f,0x78,0x70,0x61,0x63, + 0x6b,0x65,0x74,0x20,0x62,0x65,0x67,0x69,0x6e,0x3d, + 0x22,0xef,0xbb,0xbf,0x22,0x20,0x69,0x64,0x3d,0x22, + 0x57,0x35,0x4d,0x30,0x4d,0x70,0x43,0x65,0x68,0x69, + 0x48,0x7a,0x72,0x65,0x53,0x7a,0x4e,0x54,0x63,0x7a, + 0x6b,0x63,0x39,0x64,0x22,0x3f,0x3e,0x0a,0x3c,0x78, + 0x3a,0x78,0x6d,0x70,0x6d,0x65,0x74,0x61,0x20,0x78, + 0x6d,0x6c,0x6e,0x73,0x3a,0x78,0x3d,0x22,0x61,0x64, + 0x6f,0x62,0x65,0x3a,0x6e,0x73,0x3a,0x6d,0x65,0x74, + 0x61,0x2f,0x22,0x20,0x78,0x3a,0x78,0x6d,0x70,0x74, + 0x6b,0x3d,0x22,0x41,0x64,0x6f,0x62,0x65,0x20,0x58, + 0x4d,0x50,0x20,0x43,0x6f,0x72,0x65,0x20,0x35,0x2e, + 0x35,0x2d,0x63,0x30,0x32,0x31,0x20,0x37,0x39,0x2e, + 0x31,0x35,0x34,0x39,0x31,0x31,0x2c,0x20,0x32,0x30, + 0x31,0x33,0x2f,0x31,0x30,0x2f,0x32,0x39,0x2d,0x31, + 0x31,0x3a,0x34,0x37,0x3a,0x31,0x36,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x22,0x3e,0x0a,0x20,0x20, + 0x20,0x3c,0x72,0x64,0x66,0x3a,0x52,0x44,0x46,0x20, + 0x78,0x6d,0x6c,0x6e,0x73,0x3a,0x72,0x64,0x66,0x3d, + 0x22,0x68,0x74,0x74,0x70,0x3a,0x2f,0x2f,0x77,0x77, + 0x77,0x2e,0x77,0x33,0x2e,0x6f,0x72,0x67,0x2f,0x31, + 0x39,0x39,0x39,0x2f,0x30,0x32,0x2f,0x32,0x32,0x2d, + 0x72,0x64,0x66,0x2d,0x73,0x79,0x6e,0x74,0x61,0x78, + 0x2d,0x6e,0x73,0x23,0x22,0x3e,0x0a,0x20,0x20,0x20, + 0x20,0x20,0x20,0x3c,0x72,0x64,0x66,0x3a,0x44,0x65, + 0x73,0x63,0x72,0x69,0x70,0x74,0x69,0x6f,0x6e,0x20, + 0x72,0x64,0x66,0x3a,0x61,0x62,0x6f,0x75,0x74,0x3d, + 0x22,0x22,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x78,0x6d,0x6c,0x6e,0x73, + 0x3a,0x78,0x6d,0x70,0x4d,0x4d,0x3d,0x22,0x68,0x74, + 0x74,0x70,0x3a,0x2f,0x2f,0x6e,0x73,0x2e,0x61,0x64, + 0x6f,0x62,0x65,0x2e,0x63,0x6f,0x6d,0x2f,0x78,0x61, + 0x70,0x2f,0x31,0x2e,0x30,0x2f,0x6d,0x6d,0x2f,0x22, + 0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x78,0x6d,0x6c,0x6e,0x73,0x3a,0x73, + 0x74,0x52,0x65,0x66,0x3d,0x22,0x68,0x74,0x74,0x70, + 0x3a,0x2f,0x2f,0x6e,0x73,0x2e,0x61,0x64,0x6f,0x62, + 0x65,0x2e,0x63,0x6f,0x6d,0x2f,0x78,0x61,0x70,0x2f, + 0x31,0x2e,0x30,0x2f,0x73,0x54,0x79,0x70,0x65,0x2f, + 0x52,0x65,0x73,0x6f,0x75,0x72,0x63,0x65,0x52,0x65, + 0x66,0x23,0x22,0x0a,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x78,0x6d,0x6c,0x6e, + 0x73,0x3a,0x73,0x74,0x45,0x76,0x74,0x3d,0x22,0x68, + 0x74,0x74,0x70,0x3a,0x2f,0x2f,0x6e,0x73,0x2e,0x61, + 0x64,0x6f,0x62,0x65,0x2e,0x63,0x6f,0x6d,0x2f,0x78, + 0x61,0x70,0x2f,0x31,0x2e,0x30,0x2f,0x73,0x54,0x79, + 0x70,0x65,0x2f,0x52,0x65,0x73,0x6f,0x75,0x72,0x63, + 0x65,0x45,0x76,0x65,0x6e,0x74,0x23,0x22,0x0a,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x78,0x6d,0x6c,0x6e,0x73,0x3a,0x78,0x6d,0x70, + 0x3d,0x22,0x68,0x74,0x74,0x70,0x3a,0x2f,0x2f,0x6e, + 0x73,0x2e,0x61,0x64,0x6f,0x62,0x65,0x2e,0x63,0x6f, + 0x6d,0x2f,0x78,0x61,0x70,0x2f,0x31,0x2e,0x30,0x2f, + 0x22,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x78,0x6d,0x6c,0x6e,0x73,0x3a, + 0x64,0x63,0x3d,0x22,0x68,0x74,0x74,0x70,0x3a,0x2f, + 0x2f,0x70,0x75,0x72,0x6c,0x2e,0x6f,0x72,0x67,0x2f, + 0x64,0x63,0x2f,0x65,0x6c,0x65,0x6d,0x65,0x6e,0x74, + 0x73,0x2f,0x31,0x2e,0x31,0x2f,0x22,0x0a,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x78,0x6d,0x6c,0x6e,0x73,0x3a,0x70,0x68,0x6f,0x74, + 0x6f,0x73,0x68,0x6f,0x70,0x3d,0x22,0x68,0x74,0x74, + 0x70,0x3a,0x2f,0x2f,0x6e,0x73,0x2e,0x61,0x64,0x6f, + 0x62,0x65,0x2e,0x63,0x6f,0x6d,0x2f,0x70,0x68,0x6f, + 0x74,0x6f,0x73,0x68,0x6f,0x70,0x2f,0x31,0x2e,0x30, + 0x2f,0x22,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x78,0x6d,0x6c,0x6e,0x73, + 0x3a,0x74,0x69,0x66,0x66,0x3d,0x22,0x68,0x74,0x74, + 0x70,0x3a,0x2f,0x2f,0x6e,0x73,0x2e,0x61,0x64,0x6f, + 0x62,0x65,0x2e,0x63,0x6f,0x6d,0x2f,0x74,0x69,0x66, + 0x66,0x2f,0x31,0x2e,0x30,0x2f,0x22,0x0a,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x78,0x6d,0x6c,0x6e,0x73,0x3a,0x65,0x78,0x69,0x66, + 0x3d,0x22,0x68,0x74,0x74,0x70,0x3a,0x2f,0x2f,0x6e, + 0x73,0x2e,0x61,0x64,0x6f,0x62,0x65,0x2e,0x63,0x6f, + 0x6d,0x2f,0x65,0x78,0x69,0x66,0x2f,0x31,0x2e,0x30, + 0x2f,0x22,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x3c,0x78,0x6d,0x70,0x4d,0x4d,0x3a, + 0x4f,0x72,0x69,0x67,0x69,0x6e,0x61,0x6c,0x44,0x6f, + 0x63,0x75,0x6d,0x65,0x6e,0x74,0x49,0x44,0x3e,0x78, + 0x6d,0x70,0x2e,0x64,0x69,0x64,0x3a,0x46,0x30,0x31, + 0x35,0x37,0x37,0x33,0x42,0x31,0x31,0x32,0x30,0x36, + 0x38,0x31,0x31,0x38,0x30,0x38,0x33,0x43,0x37,0x45, + 0x33,0x31,0x45,0x41,0x35,0x41,0x37,0x35,0x33,0x3c, + 0x2f,0x78,0x6d,0x70,0x4d,0x4d,0x3a,0x4f,0x72,0x69, + 0x67,0x69,0x6e,0x61,0x6c,0x44,0x6f,0x63,0x75,0x6d, + 0x65,0x6e,0x74,0x49,0x44,0x3e,0x0a,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x78,0x6d,0x70, + 0x4d,0x4d,0x3a,0x44,0x6f,0x63,0x75,0x6d,0x65,0x6e, + 0x74,0x49,0x44,0x3e,0x78,0x6d,0x70,0x2e,0x64,0x69, + 0x64,0x3a,0x30,0x30,0x37,0x39,0x36,0x32,0x32,0x35, + 0x39,0x44,0x38,0x44,0x31,0x31,0x45,0x33,0x41,0x39, + 0x31,0x44,0x42,0x44,0x46,0x44,0x34,0x30,0x39,0x39, + 0x32,0x45,0x45,0x33,0x3c,0x2f,0x78,0x6d,0x70,0x4d, + 0x4d,0x3a,0x44,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74, + 0x49,0x44,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x3c,0x78,0x6d,0x70,0x4d,0x4d,0x3a, + 0x49,0x6e,0x73,0x74,0x61,0x6e,0x63,0x65,0x49,0x44, + 0x3e,0x78,0x6d,0x70,0x2e,0x69,0x69,0x64,0x3a,0x32, + 0x37,0x35,0x37,0x63,0x32,0x35,0x35,0x2d,0x65,0x37, + 0x32,0x36,0x2d,0x33,0x32,0x34,0x38,0x2d,0x38,0x33, + 0x37,0x65,0x2d,0x35,0x32,0x33,0x32,0x36,0x36,0x38, + 0x35,0x32,0x34,0x61,0x39,0x3c,0x2f,0x78,0x6d,0x70, + 0x4d,0x4d,0x3a,0x49,0x6e,0x73,0x74,0x61,0x6e,0x63, + 0x65,0x49,0x44,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x3c,0x78,0x6d,0x70,0x4d,0x4d, + 0x3a,0x44,0x65,0x72,0x69,0x76,0x65,0x64,0x46,0x72, + 0x6f,0x6d,0x20,0x72,0x64,0x66,0x3a,0x70,0x61,0x72, + 0x73,0x65,0x54,0x79,0x70,0x65,0x3d,0x22,0x52,0x65, + 0x73,0x6f,0x75,0x72,0x63,0x65,0x22,0x3e,0x0a,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x3c,0x73,0x74,0x52,0x65,0x66,0x3a,0x69,0x6e, + 0x73,0x74,0x61,0x6e,0x63,0x65,0x49,0x44,0x3e,0x78, + 0x6d,0x70,0x2e,0x69,0x69,0x64,0x3a,0x46,0x30,0x31, + 0x35,0x37,0x37,0x33,0x42,0x31,0x31,0x32,0x30,0x36, + 0x38,0x31,0x31,0x38,0x30,0x38,0x33,0x43,0x37,0x45, + 0x33,0x31,0x45,0x41,0x35,0x41,0x37,0x35,0x33,0x3c, + 0x2f,0x73,0x74,0x52,0x65,0x66,0x3a,0x69,0x6e,0x73, + 0x74,0x61,0x6e,0x63,0x65,0x49,0x44,0x3e,0x0a,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x3c,0x73,0x74,0x52,0x65,0x66,0x3a,0x64,0x6f, + 0x63,0x75,0x6d,0x65,0x6e,0x74,0x49,0x44,0x3e,0x78, + 0x6d,0x70,0x2e,0x64,0x69,0x64,0x3a,0x46,0x30,0x31, + 0x35,0x37,0x37,0x33,0x42,0x31,0x31,0x32,0x30,0x36, + 0x38,0x31,0x31,0x38,0x30,0x38,0x33,0x43,0x37,0x45, + 0x33,0x31,0x45,0x41,0x35,0x41,0x37,0x35,0x33,0x3c, + 0x2f,0x73,0x74,0x52,0x65,0x66,0x3a,0x64,0x6f,0x63, + 0x75,0x6d,0x65,0x6e,0x74,0x49,0x44,0x3e,0x0a,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x2f, + 0x78,0x6d,0x70,0x4d,0x4d,0x3a,0x44,0x65,0x72,0x69, + 0x76,0x65,0x64,0x46,0x72,0x6f,0x6d,0x3e,0x0a,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x78, + 0x6d,0x70,0x4d,0x4d,0x3a,0x48,0x69,0x73,0x74,0x6f, + 0x72,0x79,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x72,0x64,0x66, + 0x3a,0x53,0x65,0x71,0x3e,0x0a,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x3c,0x72,0x64,0x66,0x3a,0x6c,0x69,0x20,0x72, + 0x64,0x66,0x3a,0x70,0x61,0x72,0x73,0x65,0x54,0x79, + 0x70,0x65,0x3d,0x22,0x52,0x65,0x73,0x6f,0x75,0x72, + 0x63,0x65,0x22,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x3c,0x73,0x74,0x45,0x76,0x74,0x3a, + 0x61,0x63,0x74,0x69,0x6f,0x6e,0x3e,0x73,0x61,0x76, + 0x65,0x64,0x3c,0x2f,0x73,0x74,0x45,0x76,0x74,0x3a, + 0x61,0x63,0x74,0x69,0x6f,0x6e,0x3e,0x0a,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x73,0x74,0x45, + 0x76,0x74,0x3a,0x69,0x6e,0x73,0x74,0x61,0x6e,0x63, + 0x65,0x49,0x44,0x3e,0x78,0x6d,0x70,0x2e,0x69,0x69, + 0x64,0x3a,0x39,0x31,0x62,0x61,0x65,0x38,0x36,0x63, + 0x2d,0x38,0x39,0x30,0x38,0x2d,0x34,0x36,0x34,0x37, + 0x2d,0x62,0x30,0x34,0x37,0x2d,0x63,0x37,0x39,0x35, + 0x30,0x63,0x34,0x63,0x62,0x35,0x39,0x64,0x3c,0x2f, + 0x73,0x74,0x45,0x76,0x74,0x3a,0x69,0x6e,0x73,0x74, + 0x61,0x6e,0x63,0x65,0x49,0x44,0x3e,0x0a,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x73,0x74,0x45, + 0x76,0x74,0x3a,0x77,0x68,0x65,0x6e,0x3e,0x32,0x30, + 0x31,0x34,0x2d,0x30,0x33,0x2d,0x31,0x35,0x54,0x31, + 0x36,0x3a,0x32,0x35,0x3a,0x30,0x32,0x2d,0x30,0x35, + 0x3a,0x30,0x30,0x3c,0x2f,0x73,0x74,0x45,0x76,0x74, + 0x3a,0x77,0x68,0x65,0x6e,0x3e,0x0a,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x3c,0x73,0x74,0x45,0x76, + 0x74,0x3a,0x73,0x6f,0x66,0x74,0x77,0x61,0x72,0x65, + 0x41,0x67,0x65,0x6e,0x74,0x3e,0x41,0x64,0x6f,0x62, + 0x65,0x20,0x50,0x68,0x6f,0x74,0x6f,0x73,0x68,0x6f, + 0x70,0x20,0x43,0x43,0x20,0x28,0x57,0x69,0x6e,0x64, + 0x6f,0x77,0x73,0x29,0x3c,0x2f,0x73,0x74,0x45,0x76, + 0x74,0x3a,0x73,0x6f,0x66,0x74,0x77,0x61,0x72,0x65, + 0x41,0x67,0x65,0x6e,0x74,0x3e,0x0a,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x3c,0x73,0x74,0x45,0x76, + 0x74,0x3a,0x63,0x68,0x61,0x6e,0x67,0x65,0x64,0x3e, + 0x2f,0x3c,0x2f,0x73,0x74,0x45,0x76,0x74,0x3a,0x63, + 0x68,0x61,0x6e,0x67,0x65,0x64,0x3e,0x0a,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x3c,0x2f,0x72,0x64,0x66,0x3a,0x6c, + 0x69,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x72, + 0x64,0x66,0x3a,0x6c,0x69,0x20,0x72,0x64,0x66,0x3a, + 0x70,0x61,0x72,0x73,0x65,0x54,0x79,0x70,0x65,0x3d, + 0x22,0x52,0x65,0x73,0x6f,0x75,0x72,0x63,0x65,0x22, + 0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x3c,0x73,0x74,0x45,0x76,0x74,0x3a,0x61,0x63,0x74, + 0x69,0x6f,0x6e,0x3e,0x73,0x61,0x76,0x65,0x64,0x3c, + 0x2f,0x73,0x74,0x45,0x76,0x74,0x3a,0x61,0x63,0x74, + 0x69,0x6f,0x6e,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x3c,0x73,0x74,0x45,0x76,0x74,0x3a, + 0x69,0x6e,0x73,0x74,0x61,0x6e,0x63,0x65,0x49,0x44, + 0x3e,0x78,0x6d,0x70,0x2e,0x69,0x69,0x64,0x3a,0x32, + 0x37,0x35,0x37,0x63,0x32,0x35,0x35,0x2d,0x65,0x37, + 0x32,0x36,0x2d,0x33,0x32,0x34,0x38,0x2d,0x38,0x33, + 0x37,0x65,0x2d,0x35,0x32,0x33,0x32,0x36,0x36,0x38, + 0x35,0x32,0x34,0x61,0x39,0x3c,0x2f,0x73,0x74,0x45, + 0x76,0x74,0x3a,0x69,0x6e,0x73,0x74,0x61,0x6e,0x63, + 0x65,0x49,0x44,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x3c,0x73,0x74,0x45,0x76,0x74,0x3a, + 0x77,0x68,0x65,0x6e,0x3e,0x32,0x30,0x31,0x34,0x2d, + 0x30,0x33,0x2d,0x31,0x35,0x54,0x31,0x36,0x3a,0x32, + 0x35,0x3a,0x30,0x32,0x2d,0x30,0x35,0x3a,0x30,0x30, + 0x3c,0x2f,0x73,0x74,0x45,0x76,0x74,0x3a,0x77,0x68, + 0x65,0x6e,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x3c,0x73,0x74,0x45,0x76,0x74,0x3a,0x73, + 0x6f,0x66,0x74,0x77,0x61,0x72,0x65,0x41,0x67,0x65, + 0x6e,0x74,0x3e,0x41,0x64,0x6f,0x62,0x65,0x20,0x50, + 0x68,0x6f,0x74,0x6f,0x73,0x68,0x6f,0x70,0x20,0x43, + 0x43,0x20,0x28,0x57,0x69,0x6e,0x64,0x6f,0x77,0x73, + 0x29,0x3c,0x2f,0x73,0x74,0x45,0x76,0x74,0x3a,0x73, + 0x6f,0x66,0x74,0x77,0x61,0x72,0x65,0x41,0x67,0x65, + 0x6e,0x74,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x3c,0x73,0x74,0x45,0x76,0x74,0x3a,0x63, + 0x68,0x61,0x6e,0x67,0x65,0x64,0x3e,0x2f,0x3c,0x2f, + 0x73,0x74,0x45,0x76,0x74,0x3a,0x63,0x68,0x61,0x6e, + 0x67,0x65,0x64,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x3c,0x2f,0x72,0x64,0x66,0x3a,0x6c,0x69,0x3e,0x0a, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x3c,0x2f,0x72,0x64,0x66,0x3a,0x53,0x65, + 0x71,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x3c,0x2f,0x78,0x6d,0x70,0x4d,0x4d,0x3a, + 0x48,0x69,0x73,0x74,0x6f,0x72,0x79,0x3e,0x0a,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x78, + 0x6d,0x70,0x3a,0x43,0x72,0x65,0x61,0x74,0x6f,0x72, + 0x54,0x6f,0x6f,0x6c,0x3e,0x41,0x64,0x6f,0x62,0x65, + 0x20,0x50,0x68,0x6f,0x74,0x6f,0x73,0x68,0x6f,0x70, + 0x20,0x43,0x43,0x20,0x28,0x57,0x69,0x6e,0x64,0x6f, + 0x77,0x73,0x29,0x3c,0x2f,0x78,0x6d,0x70,0x3a,0x43, + 0x72,0x65,0x61,0x74,0x6f,0x72,0x54,0x6f,0x6f,0x6c, + 0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x3c,0x78,0x6d,0x70,0x3a,0x43,0x72,0x65,0x61, + 0x74,0x65,0x44,0x61,0x74,0x65,0x3e,0x32,0x30,0x31, + 0x34,0x2d,0x30,0x33,0x2d,0x31,0x35,0x54,0x31,0x36, + 0x3a,0x31,0x36,0x3a,0x30,0x36,0x2d,0x30,0x35,0x3a, + 0x30,0x30,0x3c,0x2f,0x78,0x6d,0x70,0x3a,0x43,0x72, + 0x65,0x61,0x74,0x65,0x44,0x61,0x74,0x65,0x3e,0x0a, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c, + 0x78,0x6d,0x70,0x3a,0x4d,0x6f,0x64,0x69,0x66,0x79, + 0x44,0x61,0x74,0x65,0x3e,0x32,0x30,0x31,0x34,0x2d, + 0x30,0x33,0x2d,0x31,0x35,0x54,0x31,0x36,0x3a,0x32, + 0x35,0x3a,0x30,0x32,0x2d,0x30,0x35,0x3a,0x30,0x30, + 0x3c,0x2f,0x78,0x6d,0x70,0x3a,0x4d,0x6f,0x64,0x69, + 0x66,0x79,0x44,0x61,0x74,0x65,0x3e,0x0a,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x78,0x6d, + 0x70,0x3a,0x4d,0x65,0x74,0x61,0x64,0x61,0x74,0x61, + 0x44,0x61,0x74,0x65,0x3e,0x32,0x30,0x31,0x34,0x2d, + 0x30,0x33,0x2d,0x31,0x35,0x54,0x31,0x36,0x3a,0x32, + 0x35,0x3a,0x30,0x32,0x2d,0x30,0x35,0x3a,0x30,0x30, + 0x3c,0x2f,0x78,0x6d,0x70,0x3a,0x4d,0x65,0x74,0x61, + 0x64,0x61,0x74,0x61,0x44,0x61,0x74,0x65,0x3e,0x0a, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c, + 0x64,0x63,0x3a,0x66,0x6f,0x72,0x6d,0x61,0x74,0x3e, + 0x69,0x6d,0x61,0x67,0x65,0x2f,0x70,0x6e,0x67,0x3c, + 0x2f,0x64,0x63,0x3a,0x66,0x6f,0x72,0x6d,0x61,0x74, + 0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x3c,0x70,0x68,0x6f,0x74,0x6f,0x73,0x68,0x6f, + 0x70,0x3a,0x43,0x6f,0x6c,0x6f,0x72,0x4d,0x6f,0x64, + 0x65,0x3e,0x33,0x3c,0x2f,0x70,0x68,0x6f,0x74,0x6f, + 0x73,0x68,0x6f,0x70,0x3a,0x43,0x6f,0x6c,0x6f,0x72, + 0x4d,0x6f,0x64,0x65,0x3e,0x0a,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x3c,0x70,0x68,0x6f,0x74, + 0x6f,0x73,0x68,0x6f,0x70,0x3a,0x44,0x6f,0x63,0x75, + 0x6d,0x65,0x6e,0x74,0x41,0x6e,0x63,0x65,0x73,0x74, + 0x6f,0x72,0x73,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x72,0x64, + 0x66,0x3a,0x42,0x61,0x67,0x3e,0x0a,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x3c,0x72,0x64,0x66,0x3a,0x6c,0x69,0x3e, + 0x78,0x6d,0x70,0x2e,0x64,0x69,0x64,0x3a,0x30,0x30, + 0x37,0x39,0x36,0x32,0x32,0x31,0x39,0x44,0x38,0x44, + 0x31,0x31,0x45,0x33,0x41,0x39,0x31,0x44,0x42,0x44, + 0x46,0x44,0x34,0x30,0x39,0x39,0x32,0x45,0x45,0x33, + 0x3c,0x2f,0x72,0x64,0x66,0x3a,0x6c,0x69,0x3e,0x0a, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x3c,0x2f,0x72,0x64,0x66,0x3a,0x42,0x61, + 0x67,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x3c,0x2f,0x70,0x68,0x6f,0x74,0x6f,0x73, + 0x68,0x6f,0x70,0x3a,0x44,0x6f,0x63,0x75,0x6d,0x65, + 0x6e,0x74,0x41,0x6e,0x63,0x65,0x73,0x74,0x6f,0x72, + 0x73,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x3c,0x74,0x69,0x66,0x66,0x3a,0x4f,0x72, + 0x69,0x65,0x6e,0x74,0x61,0x74,0x69,0x6f,0x6e,0x3e, + 0x31,0x3c,0x2f,0x74,0x69,0x66,0x66,0x3a,0x4f,0x72, + 0x69,0x65,0x6e,0x74,0x61,0x74,0x69,0x6f,0x6e,0x3e, + 0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x3c,0x74,0x69,0x66,0x66,0x3a,0x58,0x52,0x65,0x73, + 0x6f,0x6c,0x75,0x74,0x69,0x6f,0x6e,0x3e,0x37,0x32, + 0x30,0x30,0x30,0x30,0x2f,0x31,0x30,0x30,0x30,0x30, + 0x3c,0x2f,0x74,0x69,0x66,0x66,0x3a,0x58,0x52,0x65, + 0x73,0x6f,0x6c,0x75,0x74,0x69,0x6f,0x6e,0x3e,0x0a, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c, + 0x74,0x69,0x66,0x66,0x3a,0x59,0x52,0x65,0x73,0x6f, + 0x6c,0x75,0x74,0x69,0x6f,0x6e,0x3e,0x37,0x32,0x30, + 0x30,0x30,0x30,0x2f,0x31,0x30,0x30,0x30,0x30,0x3c, + 0x2f,0x74,0x69,0x66,0x66,0x3a,0x59,0x52,0x65,0x73, + 0x6f,0x6c,0x75,0x74,0x69,0x6f,0x6e,0x3e,0x0a,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x74, + 0x69,0x66,0x66,0x3a,0x52,0x65,0x73,0x6f,0x6c,0x75, + 0x74,0x69,0x6f,0x6e,0x55,0x6e,0x69,0x74,0x3e,0x32, + 0x3c,0x2f,0x74,0x69,0x66,0x66,0x3a,0x52,0x65,0x73, + 0x6f,0x6c,0x75,0x74,0x69,0x6f,0x6e,0x55,0x6e,0x69, + 0x74,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x3c,0x65,0x78,0x69,0x66,0x3a,0x43,0x6f, + 0x6c,0x6f,0x72,0x53,0x70,0x61,0x63,0x65,0x3e,0x36, + 0x35,0x35,0x33,0x35,0x3c,0x2f,0x65,0x78,0x69,0x66, + 0x3a,0x43,0x6f,0x6c,0x6f,0x72,0x53,0x70,0x61,0x63, + 0x65,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x3c,0x65,0x78,0x69,0x66,0x3a,0x50,0x69, + 0x78,0x65,0x6c,0x58,0x44,0x69,0x6d,0x65,0x6e,0x73, + 0x69,0x6f,0x6e,0x3e,0x33,0x37,0x3c,0x2f,0x65,0x78, + 0x69,0x66,0x3a,0x50,0x69,0x78,0x65,0x6c,0x58,0x44, + 0x69,0x6d,0x65,0x6e,0x73,0x69,0x6f,0x6e,0x3e,0x0a, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c, + 0x65,0x78,0x69,0x66,0x3a,0x50,0x69,0x78,0x65,0x6c, + 0x59,0x44,0x69,0x6d,0x65,0x6e,0x73,0x69,0x6f,0x6e, + 0x3e,0x33,0x37,0x3c,0x2f,0x65,0x78,0x69,0x66,0x3a, + 0x50,0x69,0x78,0x65,0x6c,0x59,0x44,0x69,0x6d,0x65, + 0x6e,0x73,0x69,0x6f,0x6e,0x3e,0x0a,0x20,0x20,0x20, + 0x20,0x20,0x20,0x3c,0x2f,0x72,0x64,0x66,0x3a,0x44, + 0x65,0x73,0x63,0x72,0x69,0x70,0x74,0x69,0x6f,0x6e, + 0x3e,0x0a,0x20,0x20,0x20,0x3c,0x2f,0x72,0x64,0x66, + 0x3a,0x52,0x44,0x46,0x3e,0x0a,0x3c,0x2f,0x78,0x3a, + 0x78,0x6d,0x70,0x6d,0x65,0x74,0x61,0x3e,0x0a,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x0a, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x0a,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x0a,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x0a,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x0a,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x0a,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x0a,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x0a, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x0a,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x0a,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x0a,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x0a,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x0a,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x0a,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x0a, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x0a,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x0a,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x0a,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x0a,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x0a,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x0a,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x0a, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x0a,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x0a,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x0a,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x0a,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x0a,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x0a,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x0a, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x0a,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x0a,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x0a,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x0a,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x0a,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x0a,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x0a, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x0a,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x0a,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x0a,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x0a,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x0a,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x0a,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x0a, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x0a,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x0a,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x0a,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x0a,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x0a,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x0a,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x0a, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x0a,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x0a,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x0a,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x0a,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x0a,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x0a,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x0a, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x0a,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x0a,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x0a,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x0a,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x0a,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x0a,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x0a, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x0a,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x0a,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x0a,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x0a,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x0a,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x0a,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x0a, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x0a,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x0a,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x0a,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x0a,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x0a,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x0a,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x0a, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x0a,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x0a,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x0a,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x0a,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x0a,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x0a,0x3c,0x3f,0x78, + 0x70,0x61,0x63,0x6b,0x65,0x74,0x20,0x65,0x6e,0x64, + 0x3d,0x22,0x77,0x22,0x3f,0x3e,0x93,0x4e,0x9a,0xa4, + 0x00,0x00,0x00,0x20,0x63,0x48,0x52,0x4d,0x00,0x00, + 0x7a,0x25,0x00,0x00,0x80,0x83,0x00,0x00,0xf9,0xff, + 0x00,0x00,0x80,0xe9,0x00,0x00,0x75,0x30,0x00,0x00, + 0xea,0x60,0x00,0x00,0x3a,0x98,0x00,0x00,0x17,0x6f, + 0x92,0x5f,0xc5,0x46,0x00,0x00,0x03,0x0f,0x49,0x44, + 0x41,0x54,0x78,0xda,0xd4,0x98,0xcd,0x4b,0x54,0x51, + 0x18,0xc6,0x7f,0x33,0x0c,0x35,0x8a,0x44,0x25,0xa5, + 0x84,0x59,0x66,0x45,0x64,0x56,0xa8,0x51,0xba,0xd0, + 0xa4,0x0f,0xa1,0xb0,0x85,0x04,0x2d,0x02,0xdb,0x04, + 0x41,0x0b,0xa3,0xd5,0xd0,0x3f,0xd0,0xa2,0x45,0xd8, + 0xc7,0xae,0x88,0xc0,0x36,0x51,0x49,0xdf,0x44,0x81, + 0x95,0x0b,0x4b,0x4a,0x31,0x30,0x09,0x53,0x32,0xa1, + 0xac,0x34,0x89,0x1a,0x4a,0xad,0xb4,0xcd,0x73,0xe1, + 0x72,0xb8,0x33,0xf7,0x5c,0x87,0x69,0xea,0x81,0xcb, + 0x3b,0xf7,0xdc,0x77,0xce,0xfb,0x70,0xce,0xfb,0x75, + 0x4e,0x28,0x16,0x8b,0x11,0x10,0xab,0x81,0xbb,0xc0, + 0x0a,0x20,0xe4,0xa3,0xfb,0x0e,0xd8,0x09,0xf4,0x05, + 0x31,0x10,0x21,0x38,0x9e,0x00,0x0b,0x81,0x1e,0x60, + 0x24,0x89,0xde,0x62,0xa0,0x1c,0x68,0x03,0xf2,0xd3, + 0x49,0x6a,0xbd,0x08,0xdd,0x06,0xea,0x2d,0xf4,0xdb, + 0x80,0x5a,0x60,0x15,0xf0,0xda,0xd6,0x48,0x38,0x20, + 0xa9,0x95,0x92,0xdd,0xc6,0xf8,0x41,0x60,0x1a,0x38, + 0x64,0x8c,0x3b,0xdb,0x56,0x1a,0xc4,0x48,0x98,0xd9, + 0x61,0xc6,0xf5,0x3b,0x0a,0x9c,0x96,0x7f,0x35,0xeb, + 0x3d,0x25,0x84,0x49,0x1d,0x97,0x81,0x2c,0xad,0x4a, + 0x14,0xb8,0x9a,0x69,0x52,0x9b,0xe4,0x5b,0x1f,0x81, + 0x12,0xe0,0x03,0xb0,0x0b,0xd8,0x9c,0x49,0x52,0xad, + 0xda,0xb6,0x09,0x45,0xe5,0x84,0xde,0xaf,0xa5,0x32, + 0x69,0x24,0x45,0x52,0x79,0x92,0xcb,0xf4,0xb8,0xd3, + 0x41,0xc6,0x48,0xcd,0x21,0x0d,0x08,0xf3,0x0f,0xc2, + 0xbd,0x52,0x6b,0x81,0x32,0x1f,0xfd,0x8a,0x59,0xda, + 0xa9,0x06,0xb2,0x7d,0x74,0x7a,0x80,0x5e,0x87,0xd4, + 0x1a,0xa0,0x1d,0x58,0x14,0xc0,0xc8,0xb0,0xa5,0xde, + 0x80,0xe4,0x11,0x4b,0xfd,0x71,0xa0,0x32,0x02,0x3c, + 0x14,0xa1,0xfb,0xc0,0x4b,0x8b,0x3f,0x0e,0x02,0x17, + 0x2c,0x8d,0x34,0x03,0xbf,0x81,0x22,0x0b,0xdd,0x62, + 0x60,0x0f,0x70,0x27,0xa2,0x62,0xf9,0x0c,0xa8,0xf3, + 0x50,0xcc,0x06,0x76,0x00,0x37,0x7c,0x26,0xcc,0x51, + 0xf1,0xed,0x02,0xe2,0xc6,0xb7,0x33,0x1e,0x2e,0xf3, + 0x2b,0xc1,0x3c,0x2f,0x80,0xd2,0xb0,0x6b,0xd9,0x4c, + 0x1c,0x00,0x3e,0x03,0xd7,0x81,0x75,0x49,0xa2,0xaf, + 0x03,0xf8,0x06,0x3c,0x92,0xec,0xf0,0x89,0xca,0x49, + 0x25,0xd9,0x6a,0x8f,0x6f,0x23,0x40,0x28,0x9c,0xa0, + 0xe5,0xe8,0x02,0x2e,0xba,0xea,0x58,0x4e,0x02,0x03, + 0x8f,0x81,0x4a,0xf9,0x58,0x8b,0x64,0xa5,0xc6,0x93, + 0x45,0x7c,0x9e,0x74,0xee,0x79,0xcd,0x6d,0x92,0x3a, + 0xa6,0xc6,0xac,0xcc,0xc2,0x07,0xe6,0x03,0x5b,0x80, + 0xb7,0x4a,0x9c,0x8d,0x92,0xc3,0x1a,0x9f,0x67,0x31, + 0x47,0x1d,0x30,0x06,0x1c,0x4e,0x44,0x2a,0x0a,0x1c, + 0x0f,0x90,0x50,0x9d,0x2d,0x6d,0x37,0xc6,0xdb,0x8d, + 0xef,0x7e,0x98,0x0b,0x9c,0x4d,0x44,0x6a,0x02,0x88, + 0x01,0x3f,0x2d,0x27,0xeb,0x95,0xac,0xf1,0xc8,0x49, + 0x33,0xae,0xef,0x7e,0x98,0x32,0x53,0x86,0xb9,0x7d, + 0x27,0x80,0x25,0xf2,0x29,0x3f,0x7c,0x01,0x9e,0x02, + 0x85,0xda,0xc2,0x4b,0x92,0x85,0x40,0x27,0xf0,0xd5, + 0x62,0x8e,0x07,0x40,0xae,0x19,0xa1,0x5e,0x8e,0x3e, + 0xa6,0xcc,0xdd,0xa8,0xd5,0x23,0x89,0x81,0x1a,0x75, + 0x07,0x85,0xc0,0x7e,0x60,0xa9,0xa2,0xaf,0x26,0x09, + 0x91,0x69,0x60,0x14,0xd8,0xaa,0x43,0x45,0xdc,0xab, + 0xcc,0xcc,0x68,0x75,0x4c,0xb4,0x00,0x57,0xe4,0x8c, + 0x7d,0x49,0x96,0xbe,0x4a,0x11,0x54,0xa6,0x36,0x39, + 0xee,0xb3,0x3a,0x59,0xfa,0x9f,0x17,0x72,0x1d,0x52, + 0x83,0xea,0xa1,0x6f,0xba,0xca,0x82,0xd7,0x8a,0x38, + 0x78,0xe3,0x91,0x10,0xe3,0x1e,0x0e,0xef,0xa0,0x09, + 0x58,0x6e,0xb1,0x95,0x1b,0xb4,0x43,0xef,0x23,0xc0, + 0x6e,0xf9,0x40,0x3d,0xf6,0xf8,0x01,0x9c,0xb7,0xd0, + 0x3b,0x0a,0x9c,0x0c,0x30,0xef,0x28,0xb0,0x2d,0x02, + 0xf4,0x03,0x0b,0xd4,0x25,0x6c,0xf4,0x69,0x67,0x2a, + 0x14,0x29,0x05,0x96,0x46,0x8a,0x25,0x4f,0x01,0xcf, + 0x7d,0xfc,0xac,0x1b,0x78,0x65,0xb6,0x2e,0x7d,0x16, + 0x27,0xd9,0xef,0x01,0x2a,0xbe,0x99,0xbb,0x5a,0xff, + 0xeb,0x26,0x2f,0x55,0x52,0x53,0x8a,0x5e,0xf3,0x99, + 0xcc,0x24,0xa9,0x51,0xc9,0x21,0x25,0xd2,0x21,0xbd, + 0x7f,0xca,0x24,0xa9,0x06,0xad,0x4c,0x54,0xdd,0x41, + 0x96,0xde,0x1b,0x32,0x49,0xaa,0x53,0xd7,0x42,0xf9, + 0xaa,0x75,0x79,0xc0,0x2d,0x35,0x8d,0x19,0x3d,0xcd, + 0xec,0x55,0x39,0x2a,0x91,0xdc,0x97,0x29,0x47,0x0f, + 0x19,0xdd,0x45,0x93,0xb6,0xad,0xc9,0x55,0x2f,0xff, + 0xda,0x61,0xd4,0x69,0x47,0xaa,0x8c,0xf1,0x73,0x7a, + 0x4c,0x14,0x19,0x57,0x42,0x69,0x21,0xd5,0xaf,0xc8, + 0xda,0xae,0x0c,0x9d,0x2c,0xca,0x0a,0x54,0x53,0xc7, + 0x9d,0x4c,0x9d,0xce,0x63,0x7b,0xad,0x8e,0x63,0xe5, + 0x16,0x77,0x58,0x03,0xba,0x85,0x09,0x84,0x3f,0x03, + 0x00,0xe0,0x20,0xa8,0x96,0x09,0xf3,0x09,0x77,0x00, + 0x00,0x00,0x00,0x49,0x45,0x4e,0x44,0xae,0x42,0x60, + 0x82 +}; diff --git a/data/converted/help_dpad_png.cpp b/data/converted/help_dpad_png.cpp deleted file mode 100644 index 4e2b39db9..000000000 --- a/data/converted/help_dpad_png.cpp +++ /dev/null @@ -1,367 +0,0 @@ -//this file was auto-generated from "dpad.png" by res2h - -#include "../Resources.h" - -const size_t help_dpad_png_size = 3592; -const unsigned char help_dpad_png_data[3592] = { - 0x89,0x50,0x4e,0x47,0x0d,0x0a,0x1a,0x0a,0x00,0x00, - 0x00,0x0d,0x49,0x48,0x44,0x52,0x00,0x00,0x00,0x30, - 0x00,0x00,0x00,0x30,0x08,0x06,0x00,0x00,0x00,0x57, - 0x02,0xf9,0x87,0x00,0x00,0x00,0x09,0x70,0x48,0x59, - 0x73,0x00,0x00,0x0b,0x13,0x00,0x00,0x0b,0x13,0x01, - 0x00,0x9a,0x9c,0x18,0x00,0x00,0x0a,0x4f,0x69,0x43, - 0x43,0x50,0x50,0x68,0x6f,0x74,0x6f,0x73,0x68,0x6f, - 0x70,0x20,0x49,0x43,0x43,0x20,0x70,0x72,0x6f,0x66, - 0x69,0x6c,0x65,0x00,0x00,0x78,0xda,0x9d,0x53,0x67, - 0x54,0x53,0xe9,0x16,0x3d,0xf7,0xde,0xf4,0x42,0x4b, - 0x88,0x80,0x94,0x4b,0x6f,0x52,0x15,0x08,0x20,0x52, - 0x42,0x8b,0x80,0x14,0x91,0x26,0x2a,0x21,0x09,0x10, - 0x4a,0x88,0x21,0xa1,0xd9,0x15,0x51,0xc1,0x11,0x45, - 0x45,0x04,0x1b,0xc8,0xa0,0x88,0x03,0x8e,0x8e,0x80, - 0x8c,0x15,0x51,0x2c,0x0c,0x8a,0x0a,0xd8,0x07,0xe4, - 0x21,0xa2,0x8e,0x83,0xa3,0x88,0x8a,0xca,0xfb,0xe1, - 0x7b,0xa3,0x6b,0xd6,0xbc,0xf7,0xe6,0xcd,0xfe,0xb5, - 0xd7,0x3e,0xe7,0xac,0xf3,0x9d,0xb3,0xcf,0x07,0xc0, - 0x08,0x0c,0x96,0x48,0x33,0x51,0x35,0x80,0x0c,0xa9, - 0x42,0x1e,0x11,0xe0,0x83,0xc7,0xc4,0xc6,0xe1,0xe4, - 0x2e,0x40,0x81,0x0a,0x24,0x70,0x00,0x10,0x08,0xb3, - 0x64,0x21,0x73,0xfd,0x23,0x01,0x00,0xf8,0x7e,0x3c, - 0x3c,0x2b,0x22,0xc0,0x07,0xbe,0x00,0x01,0x78,0xd3, - 0x0b,0x08,0x00,0xc0,0x4d,0x9b,0xc0,0x30,0x1c,0x87, - 0xff,0x0f,0xea,0x42,0x99,0x5c,0x01,0x80,0x84,0x01, - 0xc0,0x74,0x91,0x38,0x4b,0x08,0x80,0x14,0x00,0x40, - 0x7a,0x8e,0x42,0xa6,0x00,0x40,0x46,0x01,0x80,0x9d, - 0x98,0x26,0x53,0x00,0xa0,0x04,0x00,0x60,0xcb,0x63, - 0x62,0xe3,0x00,0x50,0x2d,0x00,0x60,0x27,0x7f,0xe6, - 0xd3,0x00,0x80,0x9d,0xf8,0x99,0x7b,0x01,0x00,0x5b, - 0x94,0x21,0x15,0x01,0xa0,0x91,0x00,0x20,0x13,0x65, - 0x88,0x44,0x00,0x68,0x3b,0x00,0xac,0xcf,0x56,0x8a, - 0x45,0x00,0x58,0x30,0x00,0x14,0x66,0x4b,0xc4,0x39, - 0x00,0xd8,0x2d,0x00,0x30,0x49,0x57,0x66,0x48,0x00, - 0xb0,0xb7,0x00,0xc0,0xce,0x10,0x0b,0xb2,0x00,0x08, - 0x0c,0x00,0x30,0x51,0x88,0x85,0x29,0x00,0x04,0x7b, - 0x00,0x60,0xc8,0x23,0x23,0x78,0x00,0x84,0x99,0x00, - 0x14,0x46,0xf2,0x57,0x3c,0xf1,0x2b,0xae,0x10,0xe7, - 0x2a,0x00,0x00,0x78,0x99,0xb2,0x3c,0xb9,0x24,0x39, - 0x45,0x81,0x5b,0x08,0x2d,0x71,0x07,0x57,0x57,0x2e, - 0x1e,0x28,0xce,0x49,0x17,0x2b,0x14,0x36,0x61,0x02, - 0x61,0x9a,0x40,0x2e,0xc2,0x79,0x99,0x19,0x32,0x81, - 0x34,0x0f,0xe0,0xf3,0xcc,0x00,0x00,0xa0,0x91,0x15, - 0x11,0xe0,0x83,0xf3,0xfd,0x78,0xce,0x0e,0xae,0xce, - 0xce,0x36,0x8e,0xb6,0x0e,0x5f,0x2d,0xea,0xbf,0x06, - 0xff,0x22,0x62,0x62,0xe3,0xfe,0xe5,0xcf,0xab,0x70, - 0x40,0x00,0x00,0xe1,0x74,0x7e,0xd1,0xfe,0x2c,0x2f, - 0xb3,0x1a,0x80,0x3b,0x06,0x80,0x6d,0xfe,0xa2,0x25, - 0xee,0x04,0x68,0x5e,0x0b,0xa0,0x75,0xf7,0x8b,0x66, - 0xb2,0x0f,0x40,0xb5,0x00,0xa0,0xe9,0xda,0x57,0xf3, - 0x70,0xf8,0x7e,0x3c,0x3c,0x45,0xa1,0x90,0xb9,0xd9, - 0xd9,0xe5,0xe4,0xe4,0xd8,0x4a,0xc4,0x42,0x5b,0x61, - 0xca,0x57,0x7d,0xfe,0x67,0xc2,0x5f,0xc0,0x57,0xfd, - 0x6c,0xf9,0x7e,0x3c,0xfc,0xf7,0xf5,0xe0,0xbe,0xe2, - 0x24,0x81,0x32,0x5d,0x81,0x47,0x04,0xf8,0xe0,0xc2, - 0xcc,0xf4,0x4c,0xa5,0x1c,0xcf,0x92,0x09,0x84,0x62, - 0xdc,0xe6,0x8f,0x47,0xfc,0xb7,0x0b,0xff,0xfc,0x1d, - 0xd3,0x22,0xc4,0x49,0x62,0xb9,0x58,0x2a,0x14,0xe3, - 0x51,0x12,0x71,0x8e,0x44,0x9a,0x8c,0xf3,0x32,0xa5, - 0x22,0x89,0x42,0x92,0x29,0xc5,0x25,0xd2,0xff,0x64, - 0xe2,0xdf,0x2c,0xfb,0x03,0x3e,0xdf,0x35,0x00,0xb0, - 0x6a,0x3e,0x01,0x7b,0x91,0x2d,0xa8,0x5d,0x63,0x03, - 0xf6,0x4b,0x27,0x10,0x58,0x74,0xc0,0xe2,0xf7,0x00, - 0x00,0xf2,0xbb,0x6f,0xc1,0xd4,0x28,0x08,0x03,0x80, - 0x68,0x83,0xe1,0xcf,0x77,0xff,0xef,0x3f,0xfd,0x47, - 0xa0,0x25,0x00,0x80,0x66,0x49,0x92,0x71,0x00,0x00, - 0x5e,0x44,0x24,0x2e,0x54,0xca,0xb3,0x3f,0xc7,0x08, - 0x00,0x00,0x44,0xa0,0x81,0x2a,0xb0,0x41,0x1b,0xf4, - 0xc1,0x18,0x2c,0xc0,0x06,0x1c,0xc1,0x05,0xdc,0xc1, - 0x0b,0xfc,0x60,0x36,0x84,0x42,0x24,0xc4,0xc2,0x42, - 0x10,0x42,0x0a,0x64,0x80,0x1c,0x72,0x60,0x29,0xac, - 0x82,0x42,0x28,0x86,0xcd,0xb0,0x1d,0x2a,0x60,0x2f, - 0xd4,0x40,0x1d,0x34,0xc0,0x51,0x68,0x86,0x93,0x70, - 0x0e,0x2e,0xc2,0x55,0xb8,0x0e,0x3d,0x70,0x0f,0xfa, - 0x61,0x08,0x9e,0xc1,0x28,0xbc,0x81,0x09,0x04,0x41, - 0xc8,0x08,0x13,0x61,0x21,0xda,0x88,0x01,0x62,0x8a, - 0x58,0x23,0x8e,0x08,0x17,0x99,0x85,0xf8,0x21,0xc1, - 0x48,0x04,0x12,0x8b,0x24,0x20,0xc9,0x88,0x14,0x51, - 0x22,0x4b,0x91,0x35,0x48,0x31,0x52,0x8a,0x54,0x20, - 0x55,0x48,0x1d,0xf2,0x3d,0x72,0x02,0x39,0x87,0x5c, - 0x46,0xba,0x91,0x3b,0xc8,0x00,0x32,0x82,0xfc,0x86, - 0xbc,0x47,0x31,0x94,0x81,0xb2,0x51,0x3d,0xd4,0x0c, - 0xb5,0x43,0xb9,0xa8,0x37,0x1a,0x84,0x46,0xa2,0x0b, - 0xd0,0x64,0x74,0x31,0x9a,0x8f,0x16,0xa0,0x9b,0xd0, - 0x72,0xb4,0x1a,0x3d,0x8c,0x36,0xa1,0xe7,0xd0,0xab, - 0x68,0x0f,0xda,0x8f,0x3e,0x43,0xc7,0x30,0xc0,0xe8, - 0x18,0x07,0x33,0xc4,0x6c,0x30,0x2e,0xc6,0xc3,0x42, - 0xb1,0x38,0x2c,0x09,0x93,0x63,0xcb,0xb1,0x22,0xac, - 0x0c,0xab,0xc6,0x1a,0xb0,0x56,0xac,0x03,0xbb,0x89, - 0xf5,0x63,0xcf,0xb1,0x77,0x04,0x12,0x81,0x45,0xc0, - 0x09,0x36,0x04,0x77,0x42,0x20,0x61,0x1e,0x41,0x48, - 0x58,0x4c,0x58,0x4e,0xd8,0x48,0xa8,0x20,0x1c,0x24, - 0x34,0x11,0xda,0x09,0x37,0x09,0x03,0x84,0x51,0xc2, - 0x27,0x22,0x93,0xa8,0x4b,0xb4,0x26,0xba,0x11,0xf9, - 0xc4,0x18,0x62,0x32,0x31,0x87,0x58,0x48,0x2c,0x23, - 0xd6,0x12,0x8f,0x13,0x2f,0x10,0x7b,0x88,0x43,0xc4, - 0x37,0x24,0x12,0x89,0x43,0x32,0x27,0xb9,0x90,0x02, - 0x49,0xb1,0xa4,0x54,0xd2,0x12,0xd2,0x46,0xd2,0x6e, - 0x52,0x23,0xe9,0x2c,0xa9,0x9b,0x34,0x48,0x1a,0x23, - 0x93,0xc9,0xda,0x64,0x6b,0xb2,0x07,0x39,0x94,0x2c, - 0x20,0x2b,0xc8,0x85,0xe4,0x9d,0xe4,0xc3,0xe4,0x33, - 0xe4,0x1b,0xe4,0x21,0xf2,0x5b,0x0a,0x9d,0x62,0x40, - 0x71,0xa4,0xf8,0x53,0xe2,0x28,0x52,0xca,0x6a,0x4a, - 0x19,0xe5,0x10,0xe5,0x34,0xe5,0x06,0x65,0x98,0x32, - 0x41,0x55,0xa3,0x9a,0x52,0xdd,0xa8,0xa1,0x54,0x11, - 0x35,0x8f,0x5a,0x42,0xad,0xa1,0xb6,0x52,0xaf,0x51, - 0x87,0xa8,0x13,0x34,0x75,0x9a,0x39,0xcd,0x83,0x16, - 0x49,0x4b,0xa5,0xad,0xa2,0x95,0xd3,0x1a,0x68,0x17, - 0x68,0xf7,0x69,0xaf,0xe8,0x74,0xba,0x11,0xdd,0x95, - 0x1e,0x4e,0x97,0xd0,0x57,0xd2,0xcb,0xe9,0x47,0xe8, - 0x97,0xe8,0x03,0xf4,0x77,0x0c,0x0d,0x86,0x15,0x83, - 0xc7,0x88,0x67,0x28,0x19,0x9b,0x18,0x07,0x18,0x67, - 0x19,0x77,0x18,0xaf,0x98,0x4c,0xa6,0x19,0xd3,0x8b, - 0x19,0xc7,0x54,0x30,0x37,0x31,0xeb,0x98,0xe7,0x99, - 0x0f,0x99,0x6f,0x55,0x58,0x2a,0xb6,0x2a,0x7c,0x15, - 0x91,0xca,0x0a,0x95,0x4a,0x95,0x26,0x95,0x1b,0x2a, - 0x2f,0x54,0xa9,0xaa,0xa6,0xaa,0xde,0xaa,0x0b,0x55, - 0xf3,0x55,0xcb,0x54,0x8f,0xa9,0x5e,0x53,0x7d,0xae, - 0x46,0x55,0x33,0x53,0xe3,0xa9,0x09,0xd4,0x96,0xab, - 0x55,0xaa,0x9d,0x50,0xeb,0x53,0x1b,0x53,0x67,0xa9, - 0x3b,0xa8,0x87,0xaa,0x67,0xa8,0x6f,0x54,0x3f,0xa4, - 0x7e,0x59,0xfd,0x89,0x06,0x59,0xc3,0x4c,0xc3,0x4f, - 0x43,0xa4,0x51,0xa0,0xb1,0x5f,0xe3,0xbc,0xc6,0x20, - 0x0b,0x63,0x19,0xb3,0x78,0x2c,0x21,0x6b,0x0d,0xab, - 0x86,0x75,0x81,0x35,0xc4,0x26,0xb1,0xcd,0xd9,0x7c, - 0x76,0x2a,0xbb,0x98,0xfd,0x1d,0xbb,0x8b,0x3d,0xaa, - 0xa9,0xa1,0x39,0x43,0x33,0x4a,0x33,0x57,0xb3,0x52, - 0xf3,0x94,0x66,0x3f,0x07,0xe3,0x98,0x71,0xf8,0x9c, - 0x74,0x4e,0x09,0xe7,0x28,0xa7,0x97,0xf3,0x7e,0x8a, - 0xde,0x14,0xef,0x29,0xe2,0x29,0x1b,0xa6,0x34,0x4c, - 0xb9,0x31,0x65,0x5c,0x6b,0xaa,0x96,0x97,0x96,0x58, - 0xab,0x48,0xab,0x51,0xab,0x47,0xeb,0xbd,0x36,0xae, - 0xed,0xa7,0x9d,0xa6,0xbd,0x45,0xbb,0x59,0xfb,0x81, - 0x0e,0x41,0xc7,0x4a,0x27,0x5c,0x27,0x47,0x67,0x8f, - 0xce,0x05,0x9d,0xe7,0x53,0xd9,0x53,0xdd,0xa7,0x0a, - 0xa7,0x16,0x4d,0x3d,0x3a,0xf5,0xae,0x2e,0xaa,0x6b, - 0xa5,0x1b,0xa1,0xbb,0x44,0x77,0xbf,0x6e,0xa7,0xee, - 0x98,0x9e,0xbe,0x5e,0x80,0x9e,0x4c,0x6f,0xa7,0xde, - 0x79,0xbd,0xe7,0xfa,0x1c,0x7d,0x2f,0xfd,0x54,0xfd, - 0x6d,0xfa,0xa7,0xf5,0x47,0x0c,0x58,0x06,0xb3,0x0c, - 0x24,0x06,0xdb,0x0c,0xce,0x18,0x3c,0xc5,0x35,0x71, - 0x6f,0x3c,0x1d,0x2f,0xc7,0xdb,0xf1,0x51,0x43,0x5d, - 0xc3,0x40,0x43,0xa5,0x61,0x95,0x61,0x97,0xe1,0x84, - 0x91,0xb9,0xd1,0x3c,0xa3,0xd5,0x46,0x8d,0x46,0x0f, - 0x8c,0x69,0xc6,0x5c,0xe3,0x24,0xe3,0x6d,0xc6,0x6d, - 0xc6,0xa3,0x26,0x06,0x26,0x21,0x26,0x4b,0x4d,0xea, - 0x4d,0xee,0x9a,0x52,0x4d,0xb9,0xa6,0x29,0xa6,0x3b, - 0x4c,0x3b,0x4c,0xc7,0xcd,0xcc,0xcd,0xa2,0xcd,0xd6, - 0x99,0x35,0x9b,0x3d,0x31,0xd7,0x32,0xe7,0x9b,0xe7, - 0x9b,0xd7,0x9b,0xdf,0xb7,0x60,0x5a,0x78,0x5a,0x2c, - 0xb6,0xa8,0xb6,0xb8,0x65,0x49,0xb2,0xe4,0x5a,0xa6, - 0x59,0xee,0xb6,0xbc,0x6e,0x85,0x5a,0x39,0x59,0xa5, - 0x58,0x55,0x5a,0x5d,0xb3,0x46,0xad,0x9d,0xad,0x25, - 0xd6,0xbb,0xad,0xbb,0xa7,0x11,0xa7,0xb9,0x4e,0x93, - 0x4e,0xab,0x9e,0xd6,0x67,0xc3,0xb0,0xf1,0xb6,0xc9, - 0xb6,0xa9,0xb7,0x19,0xb0,0xe5,0xd8,0x06,0xdb,0xae, - 0xb6,0x6d,0xb6,0x7d,0x61,0x67,0x62,0x17,0x67,0xb7, - 0xc5,0xae,0xc3,0xee,0x93,0xbd,0x93,0x7d,0xba,0x7d, - 0x8d,0xfd,0x3d,0x07,0x0d,0x87,0xd9,0x0e,0xab,0x1d, - 0x5a,0x1d,0x7e,0x73,0xb4,0x72,0x14,0x3a,0x56,0x3a, - 0xde,0x9a,0xce,0x9c,0xee,0x3f,0x7d,0xc5,0xf4,0x96, - 0xe9,0x2f,0x67,0x58,0xcf,0x10,0xcf,0xd8,0x33,0xe3, - 0xb6,0x13,0xcb,0x29,0xc4,0x69,0x9d,0x53,0x9b,0xd3, - 0x47,0x67,0x17,0x67,0xb9,0x73,0x83,0xf3,0x88,0x8b, - 0x89,0x4b,0x82,0xcb,0x2e,0x97,0x3e,0x2e,0x9b,0x1b, - 0xc6,0xdd,0xc8,0xbd,0xe4,0x4a,0x74,0xf5,0x71,0x5d, - 0xe1,0x7a,0xd2,0xf5,0x9d,0x9b,0xb3,0x9b,0xc2,0xed, - 0xa8,0xdb,0xaf,0xee,0x36,0xee,0x69,0xee,0x87,0xdc, - 0x9f,0xcc,0x34,0x9f,0x29,0x9e,0x59,0x33,0x73,0xd0, - 0xc3,0xc8,0x43,0xe0,0x51,0xe5,0xd1,0x3f,0x0b,0x9f, - 0x95,0x30,0x6b,0xdf,0xac,0x7e,0x4f,0x43,0x4f,0x81, - 0x67,0xb5,0xe7,0x23,0x2f,0x63,0x2f,0x91,0x57,0xad, - 0xd7,0xb0,0xb7,0xa5,0x77,0xaa,0xf7,0x61,0xef,0x17, - 0x3e,0xf6,0x3e,0x72,0x9f,0xe3,0x3e,0xe3,0x3c,0x37, - 0xde,0x32,0xde,0x59,0x5f,0xcc,0x37,0xc0,0xb7,0xc8, - 0xb7,0xcb,0x4f,0xc3,0x6f,0x9e,0x5f,0x85,0xdf,0x43, - 0x7f,0x23,0xff,0x64,0xff,0x7a,0xff,0xd1,0x00,0xa7, - 0x80,0x25,0x01,0x67,0x03,0x89,0x81,0x41,0x81,0x5b, - 0x02,0xfb,0xf8,0x7a,0x7c,0x21,0xbf,0x8e,0x3f,0x3a, - 0xdb,0x65,0xf6,0xb2,0xd9,0xed,0x41,0x8c,0xa0,0xb9, - 0x41,0x15,0x41,0x8f,0x82,0xad,0x82,0xe5,0xc1,0xad, - 0x21,0x68,0xc8,0xec,0x90,0xad,0x21,0xf7,0xe7,0x98, - 0xce,0x91,0xce,0x69,0x0e,0x85,0x50,0x7e,0xe8,0xd6, - 0xd0,0x07,0x61,0xe6,0x61,0x8b,0xc3,0x7e,0x0c,0x27, - 0x85,0x87,0x85,0x57,0x86,0x3f,0x8e,0x70,0x88,0x58, - 0x1a,0xd1,0x31,0x97,0x35,0x77,0xd1,0xdc,0x43,0x73, - 0xdf,0x44,0xfa,0x44,0x96,0x44,0xde,0x9b,0x67,0x31, - 0x4f,0x39,0xaf,0x2d,0x4a,0x35,0x2a,0x3e,0xaa,0x2e, - 0x6a,0x3c,0xda,0x37,0xba,0x34,0xba,0x3f,0xc6,0x2e, - 0x66,0x59,0xcc,0xd5,0x58,0x9d,0x58,0x49,0x6c,0x4b, - 0x1c,0x39,0x2e,0x2a,0xae,0x36,0x6e,0x6c,0xbe,0xdf, - 0xfc,0xed,0xf3,0x87,0xe2,0x9d,0xe2,0x0b,0xe3,0x7b, - 0x17,0x98,0x2f,0xc8,0x5d,0x70,0x79,0xa1,0xce,0xc2, - 0xf4,0x85,0xa7,0x16,0xa9,0x2e,0x12,0x2c,0x3a,0x96, - 0x40,0x4c,0x88,0x4e,0x38,0x94,0xf0,0x41,0x10,0x2a, - 0xa8,0x16,0x8c,0x25,0xf2,0x13,0x77,0x25,0x8e,0x0a, - 0x79,0xc2,0x1d,0xc2,0x67,0x22,0x2f,0xd1,0x36,0xd1, - 0x88,0xd8,0x43,0x5c,0x2a,0x1e,0x4e,0xf2,0x48,0x2a, - 0x4d,0x7a,0x92,0xec,0x91,0xbc,0x35,0x79,0x24,0xc5, - 0x33,0xa5,0x2c,0xe5,0xb9,0x84,0x27,0xa9,0x90,0xbc, - 0x4c,0x0d,0x4c,0xdd,0x9b,0x3a,0x9e,0x16,0x9a,0x76, - 0x20,0x6d,0x32,0x3d,0x3a,0xbd,0x31,0x83,0x92,0x91, - 0x90,0x71,0x42,0xaa,0x21,0x4d,0x93,0xb6,0x67,0xea, - 0x67,0xe6,0x66,0x76,0xcb,0xac,0x65,0x85,0xb2,0xfe, - 0xc5,0x6e,0x8b,0xb7,0x2f,0x1e,0x95,0x07,0xc9,0x6b, - 0xb3,0x90,0xac,0x05,0x59,0x2d,0x0a,0xb6,0x42,0xa6, - 0xe8,0x54,0x5a,0x28,0xd7,0x2a,0x07,0xb2,0x67,0x65, - 0x57,0x66,0xbf,0xcd,0x89,0xca,0x39,0x96,0xab,0x9e, - 0x2b,0xcd,0xed,0xcc,0xb3,0xca,0xdb,0x90,0x37,0x9c, - 0xef,0x9f,0xff,0xed,0x12,0xc2,0x12,0xe1,0x92,0xb6, - 0xa5,0x86,0x4b,0x57,0x2d,0x1d,0x58,0xe6,0xbd,0xac, - 0x6a,0x39,0xb2,0x3c,0x71,0x79,0xdb,0x0a,0xe3,0x15, - 0x05,0x2b,0x86,0x56,0x06,0xac,0x3c,0xb8,0x8a,0xb6, - 0x2a,0x6d,0xd5,0x4f,0xab,0xed,0x57,0x97,0xae,0x7e, - 0xbd,0x26,0x7a,0x4d,0x6b,0x81,0x5e,0xc1,0xca,0x82, - 0xc1,0xb5,0x01,0x6b,0xeb,0x0b,0x55,0x0a,0xe5,0x85, - 0x7d,0xeb,0xdc,0xd7,0xed,0x5d,0x4f,0x58,0x2f,0x59, - 0xdf,0xb5,0x61,0xfa,0x86,0x9d,0x1b,0x3e,0x15,0x89, - 0x8a,0xae,0x14,0xdb,0x17,0x97,0x15,0x7f,0xd8,0x28, - 0xdc,0x78,0xe5,0x1b,0x87,0x6f,0xca,0xbf,0x99,0xdc, - 0x94,0xb4,0xa9,0xab,0xc4,0xb9,0x64,0xcf,0x66,0xd2, - 0x66,0xe9,0xe6,0xde,0x2d,0x9e,0x5b,0x0e,0x96,0xaa, - 0x97,0xe6,0x97,0x0e,0x6e,0x0d,0xd9,0xda,0xb4,0x0d, - 0xdf,0x56,0xb4,0xed,0xf5,0xf6,0x45,0xdb,0x2f,0x97, - 0xcd,0x28,0xdb,0xbb,0x83,0xb6,0x43,0xb9,0xa3,0xbf, - 0x3c,0xb8,0xbc,0x65,0xa7,0xc9,0xce,0xcd,0x3b,0x3f, - 0x54,0xa4,0x54,0xf4,0x54,0xfa,0x54,0x36,0xee,0xd2, - 0xdd,0xb5,0x61,0xd7,0xf8,0x6e,0xd1,0xee,0x1b,0x7b, - 0xbc,0xf6,0x34,0xec,0xd5,0xdb,0x5b,0xbc,0xf7,0xfd, - 0x3e,0xc9,0xbe,0xdb,0x55,0x01,0x55,0x4d,0xd5,0x66, - 0xd5,0x65,0xfb,0x49,0xfb,0xb3,0xf7,0x3f,0xae,0x89, - 0xaa,0xe9,0xf8,0x96,0xfb,0x6d,0x5d,0xad,0x4e,0x6d, - 0x71,0xed,0xc7,0x03,0xd2,0x03,0xfd,0x07,0x23,0x0e, - 0xb6,0xd7,0xb9,0xd4,0xd5,0x1d,0xd2,0x3d,0x54,0x52, - 0x8f,0xd6,0x2b,0xeb,0x47,0x0e,0xc7,0x1f,0xbe,0xfe, - 0x9d,0xef,0x77,0x2d,0x0d,0x36,0x0d,0x55,0x8d,0x9c, - 0xc6,0xe2,0x23,0x70,0x44,0x79,0xe4,0xe9,0xf7,0x09, - 0xdf,0xf7,0x1e,0x0d,0x3a,0xda,0x76,0x8c,0x7b,0xac, - 0xe1,0x07,0xd3,0x1f,0x76,0x1d,0x67,0x1d,0x2f,0x6a, - 0x42,0x9a,0xf2,0x9a,0x46,0x9b,0x53,0x9a,0xfb,0x5b, - 0x62,0x5b,0xba,0x4f,0xcc,0x3e,0xd1,0xd6,0xea,0xde, - 0x7a,0xfc,0x47,0xdb,0x1f,0x0f,0x9c,0x34,0x3c,0x59, - 0x79,0x4a,0xf3,0x54,0xc9,0x69,0xda,0xe9,0x82,0xd3, - 0x93,0x67,0xf2,0xcf,0x8c,0x9d,0x95,0x9d,0x7d,0x7e, - 0x2e,0xf9,0xdc,0x60,0xdb,0xa2,0xb6,0x7b,0xe7,0x63, - 0xce,0xdf,0x6a,0x0f,0x6f,0xef,0xba,0x10,0x74,0xe1, - 0xd2,0x45,0xff,0x8b,0xe7,0x3b,0xbc,0x3b,0xce,0x5c, - 0xf2,0xb8,0x74,0xf2,0xb2,0xdb,0xe5,0x13,0x57,0xb8, - 0x57,0x9a,0xaf,0x3a,0x5f,0x6d,0xea,0x74,0xea,0x3c, - 0xfe,0x93,0xd3,0x4f,0xc7,0xbb,0x9c,0xbb,0x9a,0xae, - 0xb9,0x5c,0x6b,0xb9,0xee,0x7a,0xbd,0xb5,0x7b,0x66, - 0xf7,0xe9,0x1b,0x9e,0x37,0xce,0xdd,0xf4,0xbd,0x79, - 0xf1,0x16,0xff,0xd6,0xd5,0x9e,0x39,0x3d,0xdd,0xbd, - 0xf3,0x7a,0x6f,0xf7,0xc5,0xf7,0xf5,0xdf,0x16,0xdd, - 0x7e,0x72,0x27,0xfd,0xce,0xcb,0xbb,0xd9,0x77,0x27, - 0xee,0xad,0xbc,0x4f,0xbc,0x5f,0xf4,0x40,0xed,0x41, - 0xd9,0x43,0xdd,0x87,0xd5,0x3f,0x5b,0xfe,0xdc,0xd8, - 0xef,0xdc,0x7f,0x6a,0xc0,0x77,0xa0,0xf3,0xd1,0xdc, - 0x47,0xf7,0x06,0x85,0x83,0xcf,0xfe,0x91,0xf5,0x8f, - 0x0f,0x43,0x05,0x8f,0x99,0x8f,0xcb,0x86,0x0d,0x86, - 0xeb,0x9e,0x38,0x3e,0x39,0x39,0xe2,0x3f,0x72,0xfd, - 0xe9,0xfc,0xa7,0x43,0xcf,0x64,0xcf,0x26,0x9e,0x17, - 0xfe,0xa2,0xfe,0xcb,0xae,0x17,0x16,0x2f,0x7e,0xf8, - 0xd5,0xeb,0xd7,0xce,0xd1,0x98,0xd1,0xa1,0x97,0xf2, - 0x97,0x93,0xbf,0x6d,0x7c,0xa5,0xfd,0xea,0xc0,0xeb, - 0x19,0xaf,0xdb,0xc6,0xc2,0xc6,0x1e,0xbe,0xc9,0x78, - 0x33,0x31,0x5e,0xf4,0x56,0xfb,0xed,0xc1,0x77,0xdc, - 0x77,0x1d,0xef,0xa3,0xdf,0x0f,0x4f,0xe4,0x7c,0x20, - 0x7f,0x28,0xff,0x68,0xf9,0xb1,0xf5,0x53,0xd0,0xa7, - 0xfb,0x93,0x19,0x93,0x93,0xff,0x04,0x03,0x98,0xf3, - 0xfc,0x63,0x33,0x2d,0xdb,0x00,0x00,0x00,0x04,0x67, - 0x41,0x4d,0x41,0x00,0x00,0xb1,0x8e,0x7c,0xfb,0x51, - 0x93,0x00,0x00,0x00,0x20,0x63,0x48,0x52,0x4d,0x00, - 0x00,0x7a,0x25,0x00,0x00,0x80,0x83,0x00,0x00,0xf9, - 0xff,0x00,0x00,0x80,0xe9,0x00,0x00,0x75,0x30,0x00, - 0x00,0xea,0x60,0x00,0x00,0x3a,0x98,0x00,0x00,0x17, - 0x6f,0x92,0x5f,0xc5,0x46,0x00,0x00,0x03,0x23,0x49, - 0x44,0x41,0x54,0x78,0xda,0xd4,0xda,0x4b,0xa8,0x55, - 0x65,0x14,0x07,0xf0,0xdf,0xf1,0x9a,0xaf,0x2e,0x58, - 0x4a,0x3e,0x06,0x69,0x21,0xf9,0x88,0xae,0x24,0x39, - 0x09,0x94,0x9e,0x60,0xa0,0x03,0x8d,0xc4,0xa2,0x44, - 0xd2,0x90,0x1a,0xa4,0xe0,0x20,0xd4,0x8b,0x1a,0x25, - 0x58,0x59,0xe8,0x28,0x14,0x6c,0x60,0xa1,0xe2,0xa0, - 0x24,0xa2,0x41,0x39,0x51,0x84,0x06,0x82,0x10,0xd5, - 0x24,0x03,0x51,0xd0,0x10,0xc5,0x57,0xa5,0x37,0x0d, - 0xdd,0x4d,0xd6,0x8e,0xc3,0xe9,0x9c,0x73,0xf7,0xbe, - 0xee,0x73,0xce,0x3e,0x0b,0xd6,0x60,0x3f,0xce,0xb7, - 0xff,0xff,0xb5,0xf7,0xf7,0xad,0xf5,0xff,0xd6,0xa9, - 0x24,0x49,0xa2,0x9b,0x6d,0x78,0x9e,0x9b,0x2b,0x95, - 0x4a,0xde,0xf1,0x9f,0xc6,0x1c,0xec,0x44,0xe6,0x48, - 0xe5,0x0a,0x6a,0x92,0x24,0x99,0x3d,0xa7,0xbd,0x86, - 0x81,0x00,0xbe,0x0f,0xa3,0x5b,0x82,0xa9,0x05,0x04, - 0x46,0xa3,0x3f,0x80,0x57,0xfb,0x51,0x4c,0x2b,0x3b, - 0x81,0x09,0xd8,0x53,0x07,0x7c,0xea,0xbf,0xe2,0xd9, - 0xb2,0x12,0x78,0x34,0xa2,0x9c,0x0c,0xe2,0x17,0xb0, - 0xba,0x6c,0x04,0x9e,0xc3,0xa9,0x0c,0xe0,0x53,0x1f, - 0xc0,0x07,0x65,0x21,0xb0,0x02,0xd7,0x73,0x80,0xaf, - 0xf6,0xfd,0xe8,0xed,0x14,0x81,0x31,0xd8,0x34,0x44, - 0xe0,0x4d,0x27,0x77,0x3b,0x08,0x4c,0xc6,0xde,0x02, - 0xc0,0xa7,0xfe,0x1b,0x9e,0x6f,0x17,0x81,0xc7,0x70, - 0xac,0x40,0xf0,0xa9,0x5f,0xc4,0x9b,0xf1,0x8c,0x11, - 0x99,0x93,0x6b,0xc6,0xfb,0x46,0x46,0xd6,0x9e,0x89, - 0x4f,0x30,0x0b,0x7f,0xa7,0x01,0x8b,0x07,0x8e,0xcf, - 0xf1,0xe0,0x04,0x7f,0xe0,0x32,0x7a,0xe2,0x5c,0x0f, - 0xfe,0xc2,0x2e,0x4c,0xc7,0xdb,0xb8,0x5d,0x54,0xc9, - 0xb1,0x14,0x1b,0x9b,0x5c,0x9f,0x8d,0x13,0x39,0xa2, - 0x7d,0x0b,0xef,0x36,0x19,0xef,0x4c,0x04,0x6a,0x50, - 0x1b,0x96,0xe1,0x9e,0xf9,0xd8,0x1e,0x49,0xaa,0x9d, - 0xb6,0x0e,0xab,0xee,0x96,0xc0,0x0c,0xbc,0x8f,0xa9, - 0xb1,0x76,0xb7,0xdb,0x3e,0xc5,0xbc,0xa1,0x12,0x18, - 0x8f,0x77,0xf0,0x54,0x07,0xab,0xe5,0x11,0xf8,0x0a, - 0x0f,0xe7,0x25,0x30,0x1c,0x6b,0xb0,0xb2,0x04,0x25, - 0xff,0x03,0xf8,0x1a,0x63,0xf3,0xe8,0x81,0x55,0xd8, - 0xdc,0x42,0x50,0x3d,0x58,0x14,0xf9,0xa4,0x9e,0x8d, - 0xab,0x39,0xee,0xc3,0xe7,0x78,0xb1,0x76,0x65,0xaa, - 0xb7,0x8c,0x2e,0xc6,0x17,0x75,0x52,0xfc,0x79,0x9c, - 0xc6,0x3d,0x0d,0x4a,0xe8,0x87,0x22,0x3b,0xb7,0xd2, - 0xb6,0xc7,0x67,0xdd,0xd0,0x9e,0xc4,0xc9,0x16,0x24, - 0xa9,0x22,0x7d,0x79,0x23,0xf0,0xd3,0x71,0xb8,0xe4, - 0xe0,0x13,0xdc,0x8c,0x40,0xff,0x6f,0xc5,0xf9,0xac, - 0x0b,0xc0,0x57,0x6b,0x8a,0x29,0xd5,0x13,0x6a,0x4b, - 0x17,0x81,0x4f,0xfd,0x27,0xf4,0xf6,0xe0,0x8d,0xac, - 0x69,0xbb,0x64,0x36,0x31,0x5d,0x50,0x7e,0xe8,0xc2, - 0xe8,0x27,0x38,0x1b,0x39,0xc2,0xb2,0x98,0x18,0xdd, - 0x04,0xfe,0x46,0xe4,0x86,0xff,0x6c,0x6d,0x97,0x11, - 0x58,0x52,0xfb,0x3d,0x8d,0xc2,0x87,0x5d,0x02,0xbe, - 0xbf,0xd1,0xa4,0x98,0x14,0x22,0xbb,0xcc,0xe0,0xf7, - 0x0d,0xa6,0xc8,0xfa,0xb0,0xbb,0x5e,0xa2,0x28,0xd8, - 0xfe,0x8c,0xb2,0xe4,0x56,0x83,0xeb,0x7d,0x75,0xd4, - 0xdd,0xf1,0xd8,0x6b,0x1d,0x18,0xac,0x16,0x7a,0x26, - 0x04,0xfb,0x83,0x35,0xe7,0x7f,0xc4,0x91,0x06,0xf5, - 0xce,0xfc,0xd0,0x0e,0xc3,0x32,0x12,0x38,0x1a,0xdb, - 0x31,0x67,0x9a,0x28,0xb2,0x29,0x55,0xc7,0xe7,0x30, - 0x37,0xea,0xb1,0x4c,0xf6,0x4a,0x68,0xde,0xea,0xd7, - 0xb7,0xad,0xc9,0xfd,0xbb,0xf0,0x4f,0x8e,0x4f,0xe1, - 0x48,0x88,0xa4,0x66,0x92,0xb2,0x7a,0xc5,0x79,0x3c, - 0xaf,0x1e,0x38,0x80,0x0d,0x25,0x49,0x58,0xaf,0xc6, - 0xdb,0xcf,0xad,0xc8,0x76,0xe3,0xe3,0x0e,0x83,0xdf, - 0x82,0x43,0x43,0x95,0x94,0x37,0xa2,0x31,0xf1,0x65, - 0x87,0xc0,0x1f,0xc4,0x7b,0x77,0xdb,0xa1,0x39,0x87, - 0xad,0xa1,0x49,0x7b,0xdb,0x08,0xfe,0x38,0x5e,0x2f, - 0x72,0x63,0x6b,0x01,0x1e,0x89,0xad,0x95,0x97,0x43, - 0x81,0xdd,0x89,0x6b,0xb7,0xa3,0x26,0xb9,0x37,0xc7, - 0x78,0x37,0x71,0x29,0x26,0x7e,0xa5,0x2a,0x99,0x9e, - 0x88,0xaa,0xe0,0x02,0xae,0x15,0xad,0x61,0xd3,0xb7, - 0xd5,0x1f,0x83,0x17,0x9d,0xa4,0xbe,0x4d,0x57,0xa6, - 0x76,0x6c,0xee,0xbe,0x84,0xdf,0x0b,0x04,0xbf,0x03, - 0xf7,0xb7,0x7b,0x7b,0xbd,0x0f,0x3f,0x17,0x00,0xfe, - 0xad,0xd8,0x7b,0xed,0x48,0x83,0x63,0x1c,0xbe,0x1f, - 0x22,0xf0,0x2b,0x58,0x58,0x6f,0xde,0x74,0xa2,0xc5, - 0xb4,0x27,0xa7,0xa6,0xf8,0x05,0x4f,0x94,0xad,0xc9, - 0xb7,0x1e,0x57,0x33,0x80,0xff,0xa6,0xa6,0xce,0x29, - 0x55,0x9b,0x75,0x49,0xe4,0x8e,0x46,0xe0,0x3f,0xc2, - 0x7d,0x65,0xee,0x13,0x37,0x9b,0xdc,0xab,0x6b,0x27, - 0x6b,0x59,0x09,0x88,0x28,0x7f,0x17,0xc0,0xaf,0xe2, - 0x85,0x3c,0x3f,0x2e,0x03,0x81,0xb4,0x4c,0xd9,0x1c, - 0xdd,0x1b,0xad,0x22,0x50,0xe9,0xf6,0xbf,0xdb,0xfc, - 0x3b,0x00,0x9b,0x38,0x71,0x5e,0x35,0xd3,0xf7,0xca, - 0x00,0x00,0x00,0x00,0x49,0x45,0x4e,0x44,0xae,0x42, - 0x60,0x82 -}; diff --git a/data/converted/help_dpad_right_png.cpp b/data/converted/help_dpad_right_png.cpp new file mode 100644 index 000000000..f74f76fc0 --- /dev/null +++ b/data/converted/help_dpad_right_png.cpp @@ -0,0 +1,188 @@ +//this file was auto-generated from "dpad_right.png" by res2h + +#include "../Resources.h" + +const size_t help_dpad_right_png_size = 1802; +const unsigned char help_dpad_right_png_data[1802] = { + 0x89,0x50,0x4e,0x47,0x0d,0x0a,0x1a,0x0a,0x00,0x00, + 0x00,0x0d,0x49,0x48,0x44,0x52,0x00,0x00,0x00,0x25, + 0x00,0x00,0x00,0x25,0x08,0x06,0x00,0x00,0x00,0xc5, + 0x9e,0x20,0x03,0x00,0x00,0x00,0x19,0x74,0x45,0x58, + 0x74,0x53,0x6f,0x66,0x74,0x77,0x61,0x72,0x65,0x00, + 0x41,0x64,0x6f,0x62,0x65,0x20,0x49,0x6d,0x61,0x67, + 0x65,0x52,0x65,0x61,0x64,0x79,0x71,0xc9,0x65,0x3c, + 0x00,0x00,0x03,0x68,0x69,0x54,0x58,0x74,0x58,0x4d, + 0x4c,0x3a,0x63,0x6f,0x6d,0x2e,0x61,0x64,0x6f,0x62, + 0x65,0x2e,0x78,0x6d,0x70,0x00,0x00,0x00,0x00,0x00, + 0x3c,0x3f,0x78,0x70,0x61,0x63,0x6b,0x65,0x74,0x20, + 0x62,0x65,0x67,0x69,0x6e,0x3d,0x22,0xef,0xbb,0xbf, + 0x22,0x20,0x69,0x64,0x3d,0x22,0x57,0x35,0x4d,0x30, + 0x4d,0x70,0x43,0x65,0x68,0x69,0x48,0x7a,0x72,0x65, + 0x53,0x7a,0x4e,0x54,0x63,0x7a,0x6b,0x63,0x39,0x64, + 0x22,0x3f,0x3e,0x20,0x3c,0x78,0x3a,0x78,0x6d,0x70, + 0x6d,0x65,0x74,0x61,0x20,0x78,0x6d,0x6c,0x6e,0x73, + 0x3a,0x78,0x3d,0x22,0x61,0x64,0x6f,0x62,0x65,0x3a, + 0x6e,0x73,0x3a,0x6d,0x65,0x74,0x61,0x2f,0x22,0x20, + 0x78,0x3a,0x78,0x6d,0x70,0x74,0x6b,0x3d,0x22,0x41, + 0x64,0x6f,0x62,0x65,0x20,0x58,0x4d,0x50,0x20,0x43, + 0x6f,0x72,0x65,0x20,0x35,0x2e,0x33,0x2d,0x63,0x30, + 0x31,0x31,0x20,0x36,0x36,0x2e,0x31,0x34,0x35,0x36, + 0x36,0x31,0x2c,0x20,0x32,0x30,0x31,0x32,0x2f,0x30, + 0x32,0x2f,0x30,0x36,0x2d,0x31,0x34,0x3a,0x35,0x36, + 0x3a,0x32,0x37,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x22,0x3e,0x20,0x3c,0x72,0x64,0x66,0x3a,0x52, + 0x44,0x46,0x20,0x78,0x6d,0x6c,0x6e,0x73,0x3a,0x72, + 0x64,0x66,0x3d,0x22,0x68,0x74,0x74,0x70,0x3a,0x2f, + 0x2f,0x77,0x77,0x77,0x2e,0x77,0x33,0x2e,0x6f,0x72, + 0x67,0x2f,0x31,0x39,0x39,0x39,0x2f,0x30,0x32,0x2f, + 0x32,0x32,0x2d,0x72,0x64,0x66,0x2d,0x73,0x79,0x6e, + 0x74,0x61,0x78,0x2d,0x6e,0x73,0x23,0x22,0x3e,0x20, + 0x3c,0x72,0x64,0x66,0x3a,0x44,0x65,0x73,0x63,0x72, + 0x69,0x70,0x74,0x69,0x6f,0x6e,0x20,0x72,0x64,0x66, + 0x3a,0x61,0x62,0x6f,0x75,0x74,0x3d,0x22,0x22,0x20, + 0x78,0x6d,0x6c,0x6e,0x73,0x3a,0x78,0x6d,0x70,0x4d, + 0x4d,0x3d,0x22,0x68,0x74,0x74,0x70,0x3a,0x2f,0x2f, + 0x6e,0x73,0x2e,0x61,0x64,0x6f,0x62,0x65,0x2e,0x63, + 0x6f,0x6d,0x2f,0x78,0x61,0x70,0x2f,0x31,0x2e,0x30, + 0x2f,0x6d,0x6d,0x2f,0x22,0x20,0x78,0x6d,0x6c,0x6e, + 0x73,0x3a,0x73,0x74,0x52,0x65,0x66,0x3d,0x22,0x68, + 0x74,0x74,0x70,0x3a,0x2f,0x2f,0x6e,0x73,0x2e,0x61, + 0x64,0x6f,0x62,0x65,0x2e,0x63,0x6f,0x6d,0x2f,0x78, + 0x61,0x70,0x2f,0x31,0x2e,0x30,0x2f,0x73,0x54,0x79, + 0x70,0x65,0x2f,0x52,0x65,0x73,0x6f,0x75,0x72,0x63, + 0x65,0x52,0x65,0x66,0x23,0x22,0x20,0x78,0x6d,0x6c, + 0x6e,0x73,0x3a,0x78,0x6d,0x70,0x3d,0x22,0x68,0x74, + 0x74,0x70,0x3a,0x2f,0x2f,0x6e,0x73,0x2e,0x61,0x64, + 0x6f,0x62,0x65,0x2e,0x63,0x6f,0x6d,0x2f,0x78,0x61, + 0x70,0x2f,0x31,0x2e,0x30,0x2f,0x22,0x20,0x78,0x6d, + 0x70,0x4d,0x4d,0x3a,0x4f,0x72,0x69,0x67,0x69,0x6e, + 0x61,0x6c,0x44,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74, + 0x49,0x44,0x3d,0x22,0x78,0x6d,0x70,0x2e,0x64,0x69, + 0x64,0x3a,0x46,0x30,0x31,0x35,0x37,0x37,0x33,0x42, + 0x31,0x31,0x32,0x30,0x36,0x38,0x31,0x31,0x38,0x30, + 0x38,0x33,0x43,0x37,0x45,0x33,0x31,0x45,0x41,0x35, + 0x41,0x37,0x35,0x33,0x22,0x20,0x78,0x6d,0x70,0x4d, + 0x4d,0x3a,0x44,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74, + 0x49,0x44,0x3d,0x22,0x78,0x6d,0x70,0x2e,0x64,0x69, + 0x64,0x3a,0x30,0x30,0x37,0x39,0x36,0x32,0x32,0x31, + 0x39,0x44,0x38,0x44,0x31,0x31,0x45,0x33,0x41,0x39, + 0x31,0x44,0x42,0x44,0x46,0x44,0x34,0x30,0x39,0x39, + 0x32,0x45,0x45,0x33,0x22,0x20,0x78,0x6d,0x70,0x4d, + 0x4d,0x3a,0x49,0x6e,0x73,0x74,0x61,0x6e,0x63,0x65, + 0x49,0x44,0x3d,0x22,0x78,0x6d,0x70,0x2e,0x69,0x69, + 0x64,0x3a,0x30,0x30,0x37,0x39,0x36,0x32,0x32,0x30, + 0x39,0x44,0x38,0x44,0x31,0x31,0x45,0x33,0x41,0x39, + 0x31,0x44,0x42,0x44,0x46,0x44,0x34,0x30,0x39,0x39, + 0x32,0x45,0x45,0x33,0x22,0x20,0x78,0x6d,0x70,0x3a, + 0x43,0x72,0x65,0x61,0x74,0x6f,0x72,0x54,0x6f,0x6f, + 0x6c,0x3d,0x22,0x41,0x64,0x6f,0x62,0x65,0x20,0x50, + 0x68,0x6f,0x74,0x6f,0x73,0x68,0x6f,0x70,0x20,0x43, + 0x53,0x36,0x20,0x28,0x4d,0x61,0x63,0x69,0x6e,0x74, + 0x6f,0x73,0x68,0x29,0x22,0x3e,0x20,0x3c,0x78,0x6d, + 0x70,0x4d,0x4d,0x3a,0x44,0x65,0x72,0x69,0x76,0x65, + 0x64,0x46,0x72,0x6f,0x6d,0x20,0x73,0x74,0x52,0x65, + 0x66,0x3a,0x69,0x6e,0x73,0x74,0x61,0x6e,0x63,0x65, + 0x49,0x44,0x3d,0x22,0x78,0x6d,0x70,0x2e,0x69,0x69, + 0x64,0x3a,0x46,0x30,0x31,0x35,0x37,0x37,0x33,0x42, + 0x31,0x31,0x32,0x30,0x36,0x38,0x31,0x31,0x38,0x30, + 0x38,0x33,0x43,0x37,0x45,0x33,0x31,0x45,0x41,0x35, + 0x41,0x37,0x35,0x33,0x22,0x20,0x73,0x74,0x52,0x65, + 0x66,0x3a,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74, + 0x49,0x44,0x3d,0x22,0x78,0x6d,0x70,0x2e,0x64,0x69, + 0x64,0x3a,0x46,0x30,0x31,0x35,0x37,0x37,0x33,0x42, + 0x31,0x31,0x32,0x30,0x36,0x38,0x31,0x31,0x38,0x30, + 0x38,0x33,0x43,0x37,0x45,0x33,0x31,0x45,0x41,0x35, + 0x41,0x37,0x35,0x33,0x22,0x2f,0x3e,0x20,0x3c,0x2f, + 0x72,0x64,0x66,0x3a,0x44,0x65,0x73,0x63,0x72,0x69, + 0x70,0x74,0x69,0x6f,0x6e,0x3e,0x20,0x3c,0x2f,0x72, + 0x64,0x66,0x3a,0x52,0x44,0x46,0x3e,0x20,0x3c,0x2f, + 0x78,0x3a,0x78,0x6d,0x70,0x6d,0x65,0x74,0x61,0x3e, + 0x20,0x3c,0x3f,0x78,0x70,0x61,0x63,0x6b,0x65,0x74, + 0x20,0x65,0x6e,0x64,0x3d,0x22,0x72,0x22,0x3f,0x3e, + 0x94,0x89,0x63,0xf5,0x00,0x00,0x03,0x38,0x49,0x44, + 0x41,0x54,0x78,0xda,0xd4,0x98,0x4b,0x68,0x13,0x41, + 0x18,0xc7,0x37,0x71,0x6d,0x7d,0xd5,0x43,0xeb,0xa3, + 0xda,0x0a,0x0a,0xd5,0x8a,0x22,0x11,0x44,0x50,0x11, + 0x6a,0x2b,0x88,0xe2,0x03,0x3c,0x19,0xbd,0x88,0x3d, + 0xd8,0x56,0xd1,0x22,0x2a,0x49,0x45,0x7c,0x55,0xa2, + 0x60,0x35,0xd0,0x83,0x54,0xaa,0x07,0x2f,0x5a,0xc1, + 0x93,0x0f,0xbc,0xf8,0xc2,0x4b,0x14,0xb4,0x07,0x5f, + 0x54,0xd1,0x0a,0x5a,0x6d,0x6d,0xa3,0xa2,0x0d,0x5a, + 0x43,0x7d,0xfc,0x07,0xfe,0x85,0x30,0xec,0xee,0xcc, + 0x6e,0x8c,0xab,0x1f,0xfc,0x58,0x32,0x99,0x9d,0xf9, + 0x66,0xe6,0x7b,0xcd,0x06,0x22,0x91,0x88,0xe1,0x52, + 0xc6,0x81,0xe3,0x60,0x2d,0x28,0x70,0xe8,0xf7,0x15, + 0x5c,0x03,0x5b,0x40,0xaf,0x9b,0x09,0x4c,0xc3,0xbd, + 0xb4,0x81,0x85,0xa0,0x15,0x74,0x3b,0xf4,0x9b,0x00, + 0x6a,0xc1,0x69,0xb0,0x26,0x97,0x4a,0x15,0x83,0xa5, + 0x60,0x37,0x68,0xd2,0xe8,0xff,0x19,0xec,0x07,0x45, + 0xe0,0x83,0xee,0x24,0x41,0x97,0x4a,0x8d,0xe7,0xb3, + 0x43,0x6a,0x5f,0x00,0x92,0x60,0x91,0xd4,0xfe,0x82, + 0x73,0x4c,0x76,0x33,0x49,0xd0,0xf0,0x26,0xbf,0xa4, + 0xdd,0x6e,0xe1,0x6e,0xb4,0x78,0x34,0x89,0x3f,0xa2, + 0x54,0xa6,0x6c,0x07,0x21,0x70,0x0a,0xcc,0x01,0x3b, + 0xfc,0x56,0xaa,0x14,0x1c,0x04,0x57,0x68,0xd4,0x97, + 0xc0,0x3e,0x30,0xc5,0x4f,0xa5,0xe2,0x60,0x0c,0xe8, + 0x07,0x47,0x41,0x8a,0xbf,0xe3,0xd9,0x0c,0x9a,0xed, + 0xf9,0x87,0xf8,0x5c,0x2f,0xb5,0xcf,0xf5,0x53,0xa9, + 0x19,0x46,0x0e,0x24,0x68,0xfc,0x83,0x62,0x4a,0x11, + 0x58,0x65,0xa0,0x65,0x1e,0xe7,0x99,0x05,0xf2,0x14, + 0x7d,0xba,0xc0,0xfb,0x21,0xa5,0x44,0x40,0x3c,0x0b, + 0x56,0xb8,0x88,0x51,0x49,0xcd,0xbe,0xef,0xd8,0xbf, + 0x4d,0xb3,0xff,0x0d,0x10,0x36,0x99,0x9b,0x2a,0xc0, + 0x1e,0x46,0x60,0x95,0xf4,0x80,0x7b,0x9a,0x93,0xdc, + 0x06,0x4b,0xc0,0x44,0x8d,0xbe,0xe2,0x94,0x1a,0xc1, + 0x31,0xa1,0xd4,0x72,0xd0,0x0c,0x8e,0x58,0x74,0x1c, + 0x4e,0x63,0x7e,0xa2,0x18,0x30,0x8f,0x31,0x4b,0x1c, + 0x41,0x5a,0xfa,0xef,0x8e,0x85,0x1d,0xff,0xb4,0x19, + 0x67,0x1a,0xd8,0x18,0xe4,0x80,0x56,0xc9,0x72,0x3e, + 0xb8,0x0f,0x1e,0x39,0xac,0x74,0x18,0x88,0x81,0x4f, + 0xe0,0x25,0x9f,0x31,0xb6,0xdb,0xc9,0x5b,0x70,0x99, + 0x0a,0x58,0xfd,0x57,0x60,0xe5,0x7d,0xa3,0xc1,0x09, + 0x90,0xa0,0x81,0x06,0x40,0xbe,0xcd,0x04,0x87,0x41, + 0x03,0x23,0xf9,0x66,0x3e,0x1b,0xd8,0xee,0x54,0x69, + 0xac,0xe2,0xee,0x47,0xad,0x1c,0x40,0x56,0x6a,0x19, + 0x77,0xa6,0x9e,0xb9,0x6c,0x9b,0xc3,0xe0,0x23,0x98, + 0xf7,0xce,0x33,0x78,0xb6,0xf2,0x79,0x81,0xef,0xe5, + 0x2b,0x8e,0x7c,0x24,0x4d,0xa6,0x1d,0x2c,0xb6,0x53, + 0xca,0xcc,0xd8,0x56,0x61,0xf4,0x5b,0xc1,0x17,0xc5, + 0x8a,0x47,0x81,0x5b,0x52,0xfb,0x4d,0xee,0x76,0xb1, + 0xa6,0x33,0xcc,0x66,0xee,0xb4,0x54,0x6a,0x10,0xac, + 0x04,0x9d,0x5c,0xc1,0x49,0x30,0x56,0xe1,0x85,0xa2, + 0xe4,0xad,0x92,0xda,0xab,0x98,0x03,0x7b,0x34,0x95, + 0xea,0x90,0x2b,0x53,0x39,0xcd,0x5c,0x67,0xf9,0xd1, + 0xc8,0xa3,0x71,0x92,0x01,0x7a,0x6d,0x54,0x72,0xff, + 0x75,0x4c,0xce,0xdf,0x15,0xef,0x7f,0xa3,0xed,0x35, + 0xc9,0x1e,0x6b,0xda,0x14,0xfc,0x3b,0x69,0x2b,0x67, + 0xa8,0xe4,0x80,0xcd,0xc0,0x7b,0x19,0x1c,0x85,0x0d, + 0x86,0xb9,0x43,0x31,0x96,0x2f,0x76,0x22,0xa2,0xf6, + 0x03,0xda,0x5d,0xa7,0x5d,0x9a,0x49,0x31,0xc6,0xc8, + 0x22,0xc2,0xc1,0x3c,0x50,0xee,0x70,0x1b,0xf9,0x41, + 0xfb,0x3b,0x00,0x4a,0xe8,0xd2,0x69,0xc5,0x0e,0x95, + 0xf0,0x3d,0xbb,0x9b,0x52,0x5a,0x28,0x75,0x11,0x6c, + 0x02,0xaf,0xc0,0x6b,0x87,0xdc,0x95,0xb9,0x52,0x39, + 0x20,0xa6,0xf9,0xbe,0x95,0x54,0x30,0xaf,0xaa,0x64, + 0x26,0xa8,0x03,0x57,0x4d,0xde,0x4c,0xa6,0x6a,0xde, + 0x4e,0x86,0x72,0x9f,0xb8,0x20,0xdc,0xd5,0xe8,0x5b, + 0xc9,0x7c,0x16,0xd0,0x1c,0x57,0xdc,0x13,0x6b,0x4c, + 0x26,0xd7,0x4a,0xae,0xa6,0x54,0x31,0x40,0x19,0x93, + 0x6b,0x91,0xe6,0x02,0x26,0x71,0xbc,0xb0,0x22,0xaf, + 0x0a,0x85,0xde,0x80,0x3e,0xd9,0xd0,0x7b,0x35,0x6e, + 0xb2,0x69,0xc3,0x9b,0x3c,0x65,0x50,0xfe,0x7f,0x8b, + 0xbc,0x6c,0x95,0x7a,0xce,0xad,0x97,0x79,0xe6,0x67, + 0x8d,0xfe,0x18,0x4c,0x07,0xe7,0x68,0x13,0xa2,0x26, + 0xda,0x00,0x1e,0xfa,0xb9,0x53,0xf5,0x19,0xd7,0xaa, + 0x28,0xbf,0xc2,0xa4,0xb2,0xbd,0x90,0x66,0xab,0x94, + 0xd8,0x9d,0x43,0xcc,0x5d,0x22,0x57,0xae,0xe6,0x07, + 0x8d,0x2e,0xbf,0x6f,0x33,0x71,0x7a,0x56,0x1d,0x8f, + 0xad,0xd9,0x2f,0x43,0x0f,0x48,0xd5,0x45,0x0d,0xf8, + 0xc8,0xab,0xfb,0xe0,0xdf,0x56,0xaa,0x9b,0xf5,0x75, + 0x48,0x6a,0x4f,0x30,0xa0,0x26,0x2c,0xbe,0x35,0x18, + 0x2e,0xca,0x18,0x4f,0xde,0x97,0x64,0x2a,0x10,0x49, + 0xb8,0x50,0x11,0x6c,0x85,0x27,0x56,0xb3,0x1c,0xea, + 0xcb,0x75,0x48,0xa8,0xa6,0x51,0xd7,0xb2,0xf2,0xb4, + 0x93,0x7e,0x96,0xc6,0xbb,0xdc,0x4e,0xf0,0x5b,0x80, + 0x01,0x00,0x6d,0xd6,0xb5,0x52,0x54,0x06,0x6d,0xa8, + 0x00,0x00,0x00,0x00,0x49,0x45,0x4e,0x44,0xae,0x42, + 0x60,0x82 +}; diff --git a/data/converted/help_dpad_up_down_png.cpp b/data/converted/help_dpad_up_down_png.cpp new file mode 100644 index 000000000..8f323dda1 --- /dev/null +++ b/data/converted/help_dpad_up_down_png.cpp @@ -0,0 +1,1638 @@ +//this file was auto-generated from "dpad_up_down.png" by res2h + +#include "../Resources.h" + +const size_t help_dpad_up_down_png_size = 16306; +const unsigned char help_dpad_up_down_png_data[16306] = { + 0x89,0x50,0x4e,0x47,0x0d,0x0a,0x1a,0x0a,0x00,0x00, + 0x00,0x0d,0x49,0x48,0x44,0x52,0x00,0x00,0x00,0x25, + 0x00,0x00,0x00,0x25,0x08,0x06,0x00,0x00,0x00,0xc5, + 0x9e,0x20,0x03,0x00,0x00,0x00,0x09,0x70,0x48,0x59, + 0x73,0x00,0x00,0x0b,0x13,0x00,0x00,0x0b,0x13,0x01, + 0x00,0x9a,0x9c,0x18,0x00,0x00,0x3c,0x0e,0x69,0x54, + 0x58,0x74,0x58,0x4d,0x4c,0x3a,0x63,0x6f,0x6d,0x2e, + 0x61,0x64,0x6f,0x62,0x65,0x2e,0x78,0x6d,0x70,0x00, + 0x00,0x00,0x00,0x00,0x3c,0x3f,0x78,0x70,0x61,0x63, + 0x6b,0x65,0x74,0x20,0x62,0x65,0x67,0x69,0x6e,0x3d, + 0x22,0xef,0xbb,0xbf,0x22,0x20,0x69,0x64,0x3d,0x22, + 0x57,0x35,0x4d,0x30,0x4d,0x70,0x43,0x65,0x68,0x69, + 0x48,0x7a,0x72,0x65,0x53,0x7a,0x4e,0x54,0x63,0x7a, + 0x6b,0x63,0x39,0x64,0x22,0x3f,0x3e,0x0a,0x3c,0x78, + 0x3a,0x78,0x6d,0x70,0x6d,0x65,0x74,0x61,0x20,0x78, + 0x6d,0x6c,0x6e,0x73,0x3a,0x78,0x3d,0x22,0x61,0x64, + 0x6f,0x62,0x65,0x3a,0x6e,0x73,0x3a,0x6d,0x65,0x74, + 0x61,0x2f,0x22,0x20,0x78,0x3a,0x78,0x6d,0x70,0x74, + 0x6b,0x3d,0x22,0x41,0x64,0x6f,0x62,0x65,0x20,0x58, + 0x4d,0x50,0x20,0x43,0x6f,0x72,0x65,0x20,0x35,0x2e, + 0x35,0x2d,0x63,0x30,0x32,0x31,0x20,0x37,0x39,0x2e, + 0x31,0x35,0x34,0x39,0x31,0x31,0x2c,0x20,0x32,0x30, + 0x31,0x33,0x2f,0x31,0x30,0x2f,0x32,0x39,0x2d,0x31, + 0x31,0x3a,0x34,0x37,0x3a,0x31,0x36,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x22,0x3e,0x0a,0x20,0x20, + 0x20,0x3c,0x72,0x64,0x66,0x3a,0x52,0x44,0x46,0x20, + 0x78,0x6d,0x6c,0x6e,0x73,0x3a,0x72,0x64,0x66,0x3d, + 0x22,0x68,0x74,0x74,0x70,0x3a,0x2f,0x2f,0x77,0x77, + 0x77,0x2e,0x77,0x33,0x2e,0x6f,0x72,0x67,0x2f,0x31, + 0x39,0x39,0x39,0x2f,0x30,0x32,0x2f,0x32,0x32,0x2d, + 0x72,0x64,0x66,0x2d,0x73,0x79,0x6e,0x74,0x61,0x78, + 0x2d,0x6e,0x73,0x23,0x22,0x3e,0x0a,0x20,0x20,0x20, + 0x20,0x20,0x20,0x3c,0x72,0x64,0x66,0x3a,0x44,0x65, + 0x73,0x63,0x72,0x69,0x70,0x74,0x69,0x6f,0x6e,0x20, + 0x72,0x64,0x66,0x3a,0x61,0x62,0x6f,0x75,0x74,0x3d, + 0x22,0x22,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x78,0x6d,0x6c,0x6e,0x73, + 0x3a,0x78,0x6d,0x70,0x4d,0x4d,0x3d,0x22,0x68,0x74, + 0x74,0x70,0x3a,0x2f,0x2f,0x6e,0x73,0x2e,0x61,0x64, + 0x6f,0x62,0x65,0x2e,0x63,0x6f,0x6d,0x2f,0x78,0x61, + 0x70,0x2f,0x31,0x2e,0x30,0x2f,0x6d,0x6d,0x2f,0x22, + 0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x78,0x6d,0x6c,0x6e,0x73,0x3a,0x73, + 0x74,0x52,0x65,0x66,0x3d,0x22,0x68,0x74,0x74,0x70, + 0x3a,0x2f,0x2f,0x6e,0x73,0x2e,0x61,0x64,0x6f,0x62, + 0x65,0x2e,0x63,0x6f,0x6d,0x2f,0x78,0x61,0x70,0x2f, + 0x31,0x2e,0x30,0x2f,0x73,0x54,0x79,0x70,0x65,0x2f, + 0x52,0x65,0x73,0x6f,0x75,0x72,0x63,0x65,0x52,0x65, + 0x66,0x23,0x22,0x0a,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x78,0x6d,0x6c,0x6e, + 0x73,0x3a,0x73,0x74,0x45,0x76,0x74,0x3d,0x22,0x68, + 0x74,0x74,0x70,0x3a,0x2f,0x2f,0x6e,0x73,0x2e,0x61, + 0x64,0x6f,0x62,0x65,0x2e,0x63,0x6f,0x6d,0x2f,0x78, + 0x61,0x70,0x2f,0x31,0x2e,0x30,0x2f,0x73,0x54,0x79, + 0x70,0x65,0x2f,0x52,0x65,0x73,0x6f,0x75,0x72,0x63, + 0x65,0x45,0x76,0x65,0x6e,0x74,0x23,0x22,0x0a,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x78,0x6d,0x6c,0x6e,0x73,0x3a,0x78,0x6d,0x70, + 0x3d,0x22,0x68,0x74,0x74,0x70,0x3a,0x2f,0x2f,0x6e, + 0x73,0x2e,0x61,0x64,0x6f,0x62,0x65,0x2e,0x63,0x6f, + 0x6d,0x2f,0x78,0x61,0x70,0x2f,0x31,0x2e,0x30,0x2f, + 0x22,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x78,0x6d,0x6c,0x6e,0x73,0x3a, + 0x64,0x63,0x3d,0x22,0x68,0x74,0x74,0x70,0x3a,0x2f, + 0x2f,0x70,0x75,0x72,0x6c,0x2e,0x6f,0x72,0x67,0x2f, + 0x64,0x63,0x2f,0x65,0x6c,0x65,0x6d,0x65,0x6e,0x74, + 0x73,0x2f,0x31,0x2e,0x31,0x2f,0x22,0x0a,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x78,0x6d,0x6c,0x6e,0x73,0x3a,0x70,0x68,0x6f,0x74, + 0x6f,0x73,0x68,0x6f,0x70,0x3d,0x22,0x68,0x74,0x74, + 0x70,0x3a,0x2f,0x2f,0x6e,0x73,0x2e,0x61,0x64,0x6f, + 0x62,0x65,0x2e,0x63,0x6f,0x6d,0x2f,0x70,0x68,0x6f, + 0x74,0x6f,0x73,0x68,0x6f,0x70,0x2f,0x31,0x2e,0x30, + 0x2f,0x22,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x78,0x6d,0x6c,0x6e,0x73, + 0x3a,0x74,0x69,0x66,0x66,0x3d,0x22,0x68,0x74,0x74, + 0x70,0x3a,0x2f,0x2f,0x6e,0x73,0x2e,0x61,0x64,0x6f, + 0x62,0x65,0x2e,0x63,0x6f,0x6d,0x2f,0x74,0x69,0x66, + 0x66,0x2f,0x31,0x2e,0x30,0x2f,0x22,0x0a,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x78,0x6d,0x6c,0x6e,0x73,0x3a,0x65,0x78,0x69,0x66, + 0x3d,0x22,0x68,0x74,0x74,0x70,0x3a,0x2f,0x2f,0x6e, + 0x73,0x2e,0x61,0x64,0x6f,0x62,0x65,0x2e,0x63,0x6f, + 0x6d,0x2f,0x65,0x78,0x69,0x66,0x2f,0x31,0x2e,0x30, + 0x2f,0x22,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x3c,0x78,0x6d,0x70,0x4d,0x4d,0x3a, + 0x4f,0x72,0x69,0x67,0x69,0x6e,0x61,0x6c,0x44,0x6f, + 0x63,0x75,0x6d,0x65,0x6e,0x74,0x49,0x44,0x3e,0x78, + 0x6d,0x70,0x2e,0x64,0x69,0x64,0x3a,0x46,0x30,0x31, + 0x35,0x37,0x37,0x33,0x42,0x31,0x31,0x32,0x30,0x36, + 0x38,0x31,0x31,0x38,0x30,0x38,0x33,0x43,0x37,0x45, + 0x33,0x31,0x45,0x41,0x35,0x41,0x37,0x35,0x33,0x3c, + 0x2f,0x78,0x6d,0x70,0x4d,0x4d,0x3a,0x4f,0x72,0x69, + 0x67,0x69,0x6e,0x61,0x6c,0x44,0x6f,0x63,0x75,0x6d, + 0x65,0x6e,0x74,0x49,0x44,0x3e,0x0a,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x78,0x6d,0x70, + 0x4d,0x4d,0x3a,0x44,0x6f,0x63,0x75,0x6d,0x65,0x6e, + 0x74,0x49,0x44,0x3e,0x78,0x6d,0x70,0x2e,0x64,0x69, + 0x64,0x3a,0x46,0x43,0x44,0x39,0x31,0x31,0x37,0x45, + 0x39,0x44,0x38,0x41,0x31,0x31,0x45,0x33,0x41,0x39, + 0x31,0x44,0x42,0x44,0x46,0x44,0x34,0x30,0x39,0x39, + 0x32,0x45,0x45,0x33,0x3c,0x2f,0x78,0x6d,0x70,0x4d, + 0x4d,0x3a,0x44,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74, + 0x49,0x44,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x3c,0x78,0x6d,0x70,0x4d,0x4d,0x3a, + 0x49,0x6e,0x73,0x74,0x61,0x6e,0x63,0x65,0x49,0x44, + 0x3e,0x78,0x6d,0x70,0x2e,0x69,0x69,0x64,0x3a,0x32, + 0x39,0x39,0x66,0x31,0x63,0x61,0x61,0x2d,0x36,0x33, + 0x63,0x62,0x2d,0x31,0x66,0x34,0x33,0x2d,0x39,0x65, + 0x62,0x32,0x2d,0x31,0x33,0x65,0x36,0x37,0x32,0x37, + 0x61,0x30,0x38,0x39,0x64,0x3c,0x2f,0x78,0x6d,0x70, + 0x4d,0x4d,0x3a,0x49,0x6e,0x73,0x74,0x61,0x6e,0x63, + 0x65,0x49,0x44,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x3c,0x78,0x6d,0x70,0x4d,0x4d, + 0x3a,0x44,0x65,0x72,0x69,0x76,0x65,0x64,0x46,0x72, + 0x6f,0x6d,0x20,0x72,0x64,0x66,0x3a,0x70,0x61,0x72, + 0x73,0x65,0x54,0x79,0x70,0x65,0x3d,0x22,0x52,0x65, + 0x73,0x6f,0x75,0x72,0x63,0x65,0x22,0x3e,0x0a,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x3c,0x73,0x74,0x52,0x65,0x66,0x3a,0x69,0x6e, + 0x73,0x74,0x61,0x6e,0x63,0x65,0x49,0x44,0x3e,0x78, + 0x6d,0x70,0x2e,0x69,0x69,0x64,0x3a,0x46,0x30,0x31, + 0x35,0x37,0x37,0x33,0x42,0x31,0x31,0x32,0x30,0x36, + 0x38,0x31,0x31,0x38,0x30,0x38,0x33,0x43,0x37,0x45, + 0x33,0x31,0x45,0x41,0x35,0x41,0x37,0x35,0x33,0x3c, + 0x2f,0x73,0x74,0x52,0x65,0x66,0x3a,0x69,0x6e,0x73, + 0x74,0x61,0x6e,0x63,0x65,0x49,0x44,0x3e,0x0a,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x3c,0x73,0x74,0x52,0x65,0x66,0x3a,0x64,0x6f, + 0x63,0x75,0x6d,0x65,0x6e,0x74,0x49,0x44,0x3e,0x78, + 0x6d,0x70,0x2e,0x64,0x69,0x64,0x3a,0x46,0x30,0x31, + 0x35,0x37,0x37,0x33,0x42,0x31,0x31,0x32,0x30,0x36, + 0x38,0x31,0x31,0x38,0x30,0x38,0x33,0x43,0x37,0x45, + 0x33,0x31,0x45,0x41,0x35,0x41,0x37,0x35,0x33,0x3c, + 0x2f,0x73,0x74,0x52,0x65,0x66,0x3a,0x64,0x6f,0x63, + 0x75,0x6d,0x65,0x6e,0x74,0x49,0x44,0x3e,0x0a,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x2f, + 0x78,0x6d,0x70,0x4d,0x4d,0x3a,0x44,0x65,0x72,0x69, + 0x76,0x65,0x64,0x46,0x72,0x6f,0x6d,0x3e,0x0a,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x78, + 0x6d,0x70,0x4d,0x4d,0x3a,0x48,0x69,0x73,0x74,0x6f, + 0x72,0x79,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x72,0x64,0x66, + 0x3a,0x53,0x65,0x71,0x3e,0x0a,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x3c,0x72,0x64,0x66,0x3a,0x6c,0x69,0x20,0x72, + 0x64,0x66,0x3a,0x70,0x61,0x72,0x73,0x65,0x54,0x79, + 0x70,0x65,0x3d,0x22,0x52,0x65,0x73,0x6f,0x75,0x72, + 0x63,0x65,0x22,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x3c,0x73,0x74,0x45,0x76,0x74,0x3a, + 0x61,0x63,0x74,0x69,0x6f,0x6e,0x3e,0x73,0x61,0x76, + 0x65,0x64,0x3c,0x2f,0x73,0x74,0x45,0x76,0x74,0x3a, + 0x61,0x63,0x74,0x69,0x6f,0x6e,0x3e,0x0a,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x73,0x74,0x45, + 0x76,0x74,0x3a,0x69,0x6e,0x73,0x74,0x61,0x6e,0x63, + 0x65,0x49,0x44,0x3e,0x78,0x6d,0x70,0x2e,0x69,0x69, + 0x64,0x3a,0x64,0x36,0x38,0x36,0x39,0x31,0x37,0x33, + 0x2d,0x63,0x37,0x62,0x30,0x2d,0x33,0x32,0x34,0x61, + 0x2d,0x62,0x33,0x66,0x39,0x2d,0x33,0x32,0x36,0x32, + 0x38,0x31,0x30,0x61,0x34,0x61,0x65,0x63,0x3c,0x2f, + 0x73,0x74,0x45,0x76,0x74,0x3a,0x69,0x6e,0x73,0x74, + 0x61,0x6e,0x63,0x65,0x49,0x44,0x3e,0x0a,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x73,0x74,0x45, + 0x76,0x74,0x3a,0x77,0x68,0x65,0x6e,0x3e,0x32,0x30, + 0x31,0x34,0x2d,0x30,0x33,0x2d,0x31,0x35,0x54,0x31, + 0x36,0x3a,0x32,0x34,0x3a,0x32,0x34,0x2d,0x30,0x35, + 0x3a,0x30,0x30,0x3c,0x2f,0x73,0x74,0x45,0x76,0x74, + 0x3a,0x77,0x68,0x65,0x6e,0x3e,0x0a,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x3c,0x73,0x74,0x45,0x76, + 0x74,0x3a,0x73,0x6f,0x66,0x74,0x77,0x61,0x72,0x65, + 0x41,0x67,0x65,0x6e,0x74,0x3e,0x41,0x64,0x6f,0x62, + 0x65,0x20,0x50,0x68,0x6f,0x74,0x6f,0x73,0x68,0x6f, + 0x70,0x20,0x43,0x43,0x20,0x28,0x57,0x69,0x6e,0x64, + 0x6f,0x77,0x73,0x29,0x3c,0x2f,0x73,0x74,0x45,0x76, + 0x74,0x3a,0x73,0x6f,0x66,0x74,0x77,0x61,0x72,0x65, + 0x41,0x67,0x65,0x6e,0x74,0x3e,0x0a,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x3c,0x73,0x74,0x45,0x76, + 0x74,0x3a,0x63,0x68,0x61,0x6e,0x67,0x65,0x64,0x3e, + 0x2f,0x3c,0x2f,0x73,0x74,0x45,0x76,0x74,0x3a,0x63, + 0x68,0x61,0x6e,0x67,0x65,0x64,0x3e,0x0a,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x3c,0x2f,0x72,0x64,0x66,0x3a,0x6c, + 0x69,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x72, + 0x64,0x66,0x3a,0x6c,0x69,0x20,0x72,0x64,0x66,0x3a, + 0x70,0x61,0x72,0x73,0x65,0x54,0x79,0x70,0x65,0x3d, + 0x22,0x52,0x65,0x73,0x6f,0x75,0x72,0x63,0x65,0x22, + 0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x3c,0x73,0x74,0x45,0x76,0x74,0x3a,0x61,0x63,0x74, + 0x69,0x6f,0x6e,0x3e,0x73,0x61,0x76,0x65,0x64,0x3c, + 0x2f,0x73,0x74,0x45,0x76,0x74,0x3a,0x61,0x63,0x74, + 0x69,0x6f,0x6e,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x3c,0x73,0x74,0x45,0x76,0x74,0x3a, + 0x69,0x6e,0x73,0x74,0x61,0x6e,0x63,0x65,0x49,0x44, + 0x3e,0x78,0x6d,0x70,0x2e,0x69,0x69,0x64,0x3a,0x32, + 0x39,0x39,0x66,0x31,0x63,0x61,0x61,0x2d,0x36,0x33, + 0x63,0x62,0x2d,0x31,0x66,0x34,0x33,0x2d,0x39,0x65, + 0x62,0x32,0x2d,0x31,0x33,0x65,0x36,0x37,0x32,0x37, + 0x61,0x30,0x38,0x39,0x64,0x3c,0x2f,0x73,0x74,0x45, + 0x76,0x74,0x3a,0x69,0x6e,0x73,0x74,0x61,0x6e,0x63, + 0x65,0x49,0x44,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x3c,0x73,0x74,0x45,0x76,0x74,0x3a, + 0x77,0x68,0x65,0x6e,0x3e,0x32,0x30,0x31,0x34,0x2d, + 0x30,0x33,0x2d,0x31,0x35,0x54,0x31,0x36,0x3a,0x32, + 0x34,0x3a,0x32,0x34,0x2d,0x30,0x35,0x3a,0x30,0x30, + 0x3c,0x2f,0x73,0x74,0x45,0x76,0x74,0x3a,0x77,0x68, + 0x65,0x6e,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x3c,0x73,0x74,0x45,0x76,0x74,0x3a,0x73, + 0x6f,0x66,0x74,0x77,0x61,0x72,0x65,0x41,0x67,0x65, + 0x6e,0x74,0x3e,0x41,0x64,0x6f,0x62,0x65,0x20,0x50, + 0x68,0x6f,0x74,0x6f,0x73,0x68,0x6f,0x70,0x20,0x43, + 0x43,0x20,0x28,0x57,0x69,0x6e,0x64,0x6f,0x77,0x73, + 0x29,0x3c,0x2f,0x73,0x74,0x45,0x76,0x74,0x3a,0x73, + 0x6f,0x66,0x74,0x77,0x61,0x72,0x65,0x41,0x67,0x65, + 0x6e,0x74,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x3c,0x73,0x74,0x45,0x76,0x74,0x3a,0x63, + 0x68,0x61,0x6e,0x67,0x65,0x64,0x3e,0x2f,0x3c,0x2f, + 0x73,0x74,0x45,0x76,0x74,0x3a,0x63,0x68,0x61,0x6e, + 0x67,0x65,0x64,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x3c,0x2f,0x72,0x64,0x66,0x3a,0x6c,0x69,0x3e,0x0a, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x3c,0x2f,0x72,0x64,0x66,0x3a,0x53,0x65, + 0x71,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x3c,0x2f,0x78,0x6d,0x70,0x4d,0x4d,0x3a, + 0x48,0x69,0x73,0x74,0x6f,0x72,0x79,0x3e,0x0a,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x78, + 0x6d,0x70,0x3a,0x43,0x72,0x65,0x61,0x74,0x6f,0x72, + 0x54,0x6f,0x6f,0x6c,0x3e,0x41,0x64,0x6f,0x62,0x65, + 0x20,0x50,0x68,0x6f,0x74,0x6f,0x73,0x68,0x6f,0x70, + 0x20,0x43,0x43,0x20,0x28,0x57,0x69,0x6e,0x64,0x6f, + 0x77,0x73,0x29,0x3c,0x2f,0x78,0x6d,0x70,0x3a,0x43, + 0x72,0x65,0x61,0x74,0x6f,0x72,0x54,0x6f,0x6f,0x6c, + 0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x3c,0x78,0x6d,0x70,0x3a,0x43,0x72,0x65,0x61, + 0x74,0x65,0x44,0x61,0x74,0x65,0x3e,0x32,0x30,0x31, + 0x34,0x2d,0x30,0x33,0x2d,0x31,0x35,0x54,0x31,0x36, + 0x3a,0x31,0x36,0x3a,0x30,0x36,0x2d,0x30,0x35,0x3a, + 0x30,0x30,0x3c,0x2f,0x78,0x6d,0x70,0x3a,0x43,0x72, + 0x65,0x61,0x74,0x65,0x44,0x61,0x74,0x65,0x3e,0x0a, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c, + 0x78,0x6d,0x70,0x3a,0x4d,0x6f,0x64,0x69,0x66,0x79, + 0x44,0x61,0x74,0x65,0x3e,0x32,0x30,0x31,0x34,0x2d, + 0x30,0x33,0x2d,0x31,0x35,0x54,0x31,0x36,0x3a,0x32, + 0x34,0x3a,0x32,0x34,0x2d,0x30,0x35,0x3a,0x30,0x30, + 0x3c,0x2f,0x78,0x6d,0x70,0x3a,0x4d,0x6f,0x64,0x69, + 0x66,0x79,0x44,0x61,0x74,0x65,0x3e,0x0a,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x78,0x6d, + 0x70,0x3a,0x4d,0x65,0x74,0x61,0x64,0x61,0x74,0x61, + 0x44,0x61,0x74,0x65,0x3e,0x32,0x30,0x31,0x34,0x2d, + 0x30,0x33,0x2d,0x31,0x35,0x54,0x31,0x36,0x3a,0x32, + 0x34,0x3a,0x32,0x34,0x2d,0x30,0x35,0x3a,0x30,0x30, + 0x3c,0x2f,0x78,0x6d,0x70,0x3a,0x4d,0x65,0x74,0x61, + 0x64,0x61,0x74,0x61,0x44,0x61,0x74,0x65,0x3e,0x0a, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c, + 0x64,0x63,0x3a,0x66,0x6f,0x72,0x6d,0x61,0x74,0x3e, + 0x69,0x6d,0x61,0x67,0x65,0x2f,0x70,0x6e,0x67,0x3c, + 0x2f,0x64,0x63,0x3a,0x66,0x6f,0x72,0x6d,0x61,0x74, + 0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x3c,0x70,0x68,0x6f,0x74,0x6f,0x73,0x68,0x6f, + 0x70,0x3a,0x43,0x6f,0x6c,0x6f,0x72,0x4d,0x6f,0x64, + 0x65,0x3e,0x33,0x3c,0x2f,0x70,0x68,0x6f,0x74,0x6f, + 0x73,0x68,0x6f,0x70,0x3a,0x43,0x6f,0x6c,0x6f,0x72, + 0x4d,0x6f,0x64,0x65,0x3e,0x0a,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x3c,0x70,0x68,0x6f,0x74, + 0x6f,0x73,0x68,0x6f,0x70,0x3a,0x44,0x6f,0x63,0x75, + 0x6d,0x65,0x6e,0x74,0x41,0x6e,0x63,0x65,0x73,0x74, + 0x6f,0x72,0x73,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x72,0x64, + 0x66,0x3a,0x42,0x61,0x67,0x3e,0x0a,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x3c,0x72,0x64,0x66,0x3a,0x6c,0x69,0x3e, + 0x78,0x6d,0x70,0x2e,0x64,0x69,0x64,0x3a,0x46,0x43, + 0x44,0x39,0x31,0x31,0x37,0x41,0x39,0x44,0x38,0x41, + 0x31,0x31,0x45,0x33,0x41,0x39,0x31,0x44,0x42,0x44, + 0x46,0x44,0x34,0x30,0x39,0x39,0x32,0x45,0x45,0x33, + 0x3c,0x2f,0x72,0x64,0x66,0x3a,0x6c,0x69,0x3e,0x0a, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x3c,0x2f,0x72,0x64,0x66,0x3a,0x42,0x61, + 0x67,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x3c,0x2f,0x70,0x68,0x6f,0x74,0x6f,0x73, + 0x68,0x6f,0x70,0x3a,0x44,0x6f,0x63,0x75,0x6d,0x65, + 0x6e,0x74,0x41,0x6e,0x63,0x65,0x73,0x74,0x6f,0x72, + 0x73,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x3c,0x74,0x69,0x66,0x66,0x3a,0x4f,0x72, + 0x69,0x65,0x6e,0x74,0x61,0x74,0x69,0x6f,0x6e,0x3e, + 0x31,0x3c,0x2f,0x74,0x69,0x66,0x66,0x3a,0x4f,0x72, + 0x69,0x65,0x6e,0x74,0x61,0x74,0x69,0x6f,0x6e,0x3e, + 0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x3c,0x74,0x69,0x66,0x66,0x3a,0x58,0x52,0x65,0x73, + 0x6f,0x6c,0x75,0x74,0x69,0x6f,0x6e,0x3e,0x37,0x32, + 0x30,0x30,0x30,0x30,0x2f,0x31,0x30,0x30,0x30,0x30, + 0x3c,0x2f,0x74,0x69,0x66,0x66,0x3a,0x58,0x52,0x65, + 0x73,0x6f,0x6c,0x75,0x74,0x69,0x6f,0x6e,0x3e,0x0a, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c, + 0x74,0x69,0x66,0x66,0x3a,0x59,0x52,0x65,0x73,0x6f, + 0x6c,0x75,0x74,0x69,0x6f,0x6e,0x3e,0x37,0x32,0x30, + 0x30,0x30,0x30,0x2f,0x31,0x30,0x30,0x30,0x30,0x3c, + 0x2f,0x74,0x69,0x66,0x66,0x3a,0x59,0x52,0x65,0x73, + 0x6f,0x6c,0x75,0x74,0x69,0x6f,0x6e,0x3e,0x0a,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x74, + 0x69,0x66,0x66,0x3a,0x52,0x65,0x73,0x6f,0x6c,0x75, + 0x74,0x69,0x6f,0x6e,0x55,0x6e,0x69,0x74,0x3e,0x32, + 0x3c,0x2f,0x74,0x69,0x66,0x66,0x3a,0x52,0x65,0x73, + 0x6f,0x6c,0x75,0x74,0x69,0x6f,0x6e,0x55,0x6e,0x69, + 0x74,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x3c,0x65,0x78,0x69,0x66,0x3a,0x43,0x6f, + 0x6c,0x6f,0x72,0x53,0x70,0x61,0x63,0x65,0x3e,0x36, + 0x35,0x35,0x33,0x35,0x3c,0x2f,0x65,0x78,0x69,0x66, + 0x3a,0x43,0x6f,0x6c,0x6f,0x72,0x53,0x70,0x61,0x63, + 0x65,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x3c,0x65,0x78,0x69,0x66,0x3a,0x50,0x69, + 0x78,0x65,0x6c,0x58,0x44,0x69,0x6d,0x65,0x6e,0x73, + 0x69,0x6f,0x6e,0x3e,0x33,0x37,0x3c,0x2f,0x65,0x78, + 0x69,0x66,0x3a,0x50,0x69,0x78,0x65,0x6c,0x58,0x44, + 0x69,0x6d,0x65,0x6e,0x73,0x69,0x6f,0x6e,0x3e,0x0a, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c, + 0x65,0x78,0x69,0x66,0x3a,0x50,0x69,0x78,0x65,0x6c, + 0x59,0x44,0x69,0x6d,0x65,0x6e,0x73,0x69,0x6f,0x6e, + 0x3e,0x33,0x37,0x3c,0x2f,0x65,0x78,0x69,0x66,0x3a, + 0x50,0x69,0x78,0x65,0x6c,0x59,0x44,0x69,0x6d,0x65, + 0x6e,0x73,0x69,0x6f,0x6e,0x3e,0x0a,0x20,0x20,0x20, + 0x20,0x20,0x20,0x3c,0x2f,0x72,0x64,0x66,0x3a,0x44, + 0x65,0x73,0x63,0x72,0x69,0x70,0x74,0x69,0x6f,0x6e, + 0x3e,0x0a,0x20,0x20,0x20,0x3c,0x2f,0x72,0x64,0x66, + 0x3a,0x52,0x44,0x46,0x3e,0x0a,0x3c,0x2f,0x78,0x3a, + 0x78,0x6d,0x70,0x6d,0x65,0x74,0x61,0x3e,0x0a,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x0a, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x0a,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x0a,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x0a,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x0a,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x0a,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x0a,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x0a, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x0a,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x0a,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x0a,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x0a,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x0a,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x0a,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x0a, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x0a,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x0a,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x0a,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x0a,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x0a,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x0a,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x0a, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x0a,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x0a,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x0a,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x0a,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x0a,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x0a,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x0a, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x0a,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x0a,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x0a,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x0a,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x0a,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x0a,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x0a, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x0a,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x0a,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x0a,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x0a,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x0a,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x0a,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x0a, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x0a,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x0a,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x0a,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x0a,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x0a,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x0a,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x0a, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x0a,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x0a,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x0a,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x0a,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x0a,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x0a,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x0a, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x0a,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x0a,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x0a,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x0a,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x0a,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x0a,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x0a, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x0a,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x0a,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x0a,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x0a,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x0a,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x0a,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x0a, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x0a,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x0a,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x0a,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x0a,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x0a,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x0a,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x0a, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x0a,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x0a,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x0a,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x0a,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x0a,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x20,0x20,0x20,0x20,0x20,0x0a,0x3c,0x3f,0x78, + 0x70,0x61,0x63,0x6b,0x65,0x74,0x20,0x65,0x6e,0x64, + 0x3d,0x22,0x77,0x22,0x3f,0x3e,0x97,0x58,0x4c,0x05, + 0x00,0x00,0x00,0x20,0x63,0x48,0x52,0x4d,0x00,0x00, + 0x7a,0x25,0x00,0x00,0x80,0x83,0x00,0x00,0xf9,0xff, + 0x00,0x00,0x80,0xe9,0x00,0x00,0x75,0x30,0x00,0x00, + 0xea,0x60,0x00,0x00,0x3a,0x98,0x00,0x00,0x17,0x6f, + 0x92,0x5f,0xc5,0x46,0x00,0x00,0x03,0x1e,0x49,0x44, + 0x41,0x54,0x78,0xda,0xd4,0xd8,0xdf,0x8b,0x55,0x55, + 0x14,0x07,0xf0,0xcf,0xbd,0x5c,0x4a,0x45,0xc2,0x14, + 0x53,0x64,0x9a,0x32,0x2b,0xc2,0x52,0x6b,0x34,0x72, + 0x7c,0xc8,0xa4,0x5f,0x98,0xd4,0x83,0x08,0x11,0x81, + 0xbd,0x04,0x41,0x0f,0x13,0x3d,0x0d,0xfd,0x03,0x3d, + 0xf4,0x10,0x66,0xbd,0x29,0x11,0x18,0x84,0x68,0xd2, + 0x4f,0x8b,0x02,0xab,0x79,0x98,0x14,0x7f,0x16,0x26, + 0xe2,0x0f,0x22,0xfb,0x61,0x38,0x26,0x51,0x43,0xea, + 0x54,0x4e,0x2f,0xeb,0xc0,0x61,0x73,0xee,0xb9,0xe7, + 0xcc,0x30,0xdd,0xfa,0xc2,0x61,0xdf,0xbb,0xcf,0xda, + 0x7b,0x7d,0xd9,0xeb,0xc7,0x5e,0xeb,0x34,0x06,0x07, + 0x07,0xd5,0xc4,0xad,0xd8,0x8d,0x9b,0xd0,0xe8,0x20, + 0xfb,0x23,0x1e,0xc2,0xb1,0x3a,0x0a,0x5a,0xea,0xe3, + 0x4b,0xcc,0xc6,0x11,0x9c,0x2d,0x91,0xbb,0x0e,0xcb, + 0xb1,0x07,0xf3,0xa7,0x92,0xd4,0xd2,0x20,0xf4,0x01, + 0x1e,0xad,0x20,0xbf,0x07,0x6b,0x70,0x0b,0x4e,0x56, + 0x55,0xd2,0xac,0x49,0xea,0xe6,0x18,0x0f,0x25,0xf3, + 0x4f,0xe3,0x0a,0x9e,0x49,0xe6,0x33,0xb3,0x2d,0xa9, + 0xa3,0xa4,0x69,0x62,0x18,0xcf,0xfd,0x9e,0x86,0xcd, + 0xe1,0x5f,0x9b,0xe2,0xff,0xa4,0xd0,0x34,0x79,0x6c, + 0xc7,0xf4,0x1c,0xc1,0x9d,0xdd,0x26,0x75,0x77,0x81, + 0x6f,0x3d,0x82,0x7b,0xba,0x49,0x6a,0x57,0x41,0x5a, + 0x68,0xe0,0xed,0x6e,0x92,0x9a,0x57,0x92,0x0e,0x26, + 0x8c,0xd6,0x24,0x49,0x5d,0x65,0x0a,0xd0,0xf4,0x1f, + 0x44,0xfe,0xa4,0x16,0xa3,0xaf,0x83,0xfc,0x8a,0x09, + 0xea,0xb9,0x17,0x33,0x3a,0xc8,0x1c,0xc1,0xd1,0x8c, + 0xd4,0x6d,0x18,0xc2,0xdc,0x1a,0x4a,0xce,0x54,0x94, + 0x3b,0x15,0xe3,0x73,0x15,0xe5,0x2f,0xa0,0xbf,0x85, + 0xcf,0x82,0xd0,0x27,0xf8,0xa6,0xc2,0xc2,0xd3,0x78, + 0xbd,0xa2,0x92,0x4d,0xf8,0x1b,0x0b,0x2b,0xc8,0x2e, + 0xc2,0x63,0xf8,0xb0,0x15,0x97,0xe5,0x7e,0x3c,0x5c, + 0x20,0x38,0x03,0x0f,0xe2,0xdd,0x0e,0x1b,0xce,0x8c, + 0xcb,0xf7,0x20,0x46,0x93,0x77,0xaf,0x16,0xb8,0xcc, + 0x5f,0x6d,0xf6,0xf9,0x0a,0x4b,0x9a,0xb9,0x63,0x4b, + 0xf1,0x14,0x7e,0xc1,0x3b,0xb8,0xa3,0x24,0xfa,0x86, + 0xf1,0x3b,0x3e,0x8f,0x71,0xb8,0x43,0x54,0x5e,0xc6, + 0xcf,0xe1,0x67,0x29,0xce,0xa2,0xd1,0x6c,0x93,0x63, + 0x0e,0xe2,0x8d,0xdc,0x3d,0x36,0xb3,0x8d,0x82,0x2f, + 0xd0,0x1f,0x3e,0xb6,0x2d,0xc6,0xfe,0x98,0x2f,0x8b, + 0xf8,0x79,0x21,0xf3,0x71,0xd1,0xde,0x29,0xa9,0x17, + 0xa2,0x30,0xeb,0x8b,0x48,0x78,0xab,0x64,0xf3,0x59, + 0x58,0x89,0xef,0x70,0x03,0x36,0xc6,0x78,0x26,0xe6, + 0xaf,0x29,0x59,0xfb,0x35,0x7e,0x08,0x97,0x39,0x8f, + 0x67,0xdb,0x91,0x9a,0x86,0x17,0xc3,0xe6,0x1f,0x45, + 0xb9,0x71,0xa1,0x64,0xe3,0xcc,0xa4,0x43,0xc9,0xfc, + 0x50,0xf2,0x5e,0x1b,0x33,0x5d,0x8f,0xc3,0xb8,0x1a, + 0xaf,0xb5,0x23,0x75,0x09,0x83,0xf8,0x13,0x6b,0xe3, + 0xa4,0x66,0x97,0x6c,0x7c,0x34,0xc6,0xd5,0x05,0x39, + 0x69,0x3c,0xf7,0xbe,0x08,0xf3,0xf1,0x3d,0xee,0xc2, + 0x58,0x9a,0x32,0x52,0xf3,0xbd,0x84,0x05,0xe1,0x53, + 0xb7,0xe3,0x89,0x92,0x8d,0x7f,0xc5,0x5e,0xf4,0x86, + 0x09,0xdf,0x8c,0xb1,0x17,0xfb,0xf0,0x5b,0xc9,0xda, + 0x65,0xe8,0xc1,0xa7,0x98,0x93,0x46,0x68,0x91,0xa3, + 0x9f,0x8f,0xcc,0xbd,0x31,0x4e,0x4f,0x89,0x82,0xd5, + 0x51,0xb3,0xf7,0xe2,0xc9,0x30,0xc9,0x70,0xc1,0xe9, + 0xe5,0x71,0x05,0x23,0xb8,0x2f,0x9a,0x8a,0xd1,0xa2, + 0x6b,0x66,0x3c,0x4e,0x27,0xc5,0x36,0xec,0x08,0x67, + 0x6c,0xd7,0x8d,0x8c,0x61,0x55,0x44,0x50,0x5f,0x94, + 0xc9,0xa3,0x1d,0x72,0xda,0xf4,0x58,0x57,0x84,0x39, + 0x19,0xa9,0xd3,0xe1,0xd4,0xef,0xe5,0xae,0x85,0xa2, + 0x13,0xc9,0xf0,0x6d,0x41,0x42,0x1c,0x2d,0x70,0xf8, + 0x0c,0x03,0xb8,0xb1,0x42,0x46,0x5f,0x16,0x16,0xfa, + 0xa9,0x85,0x75,0xe1,0x03,0x55,0xba,0x93,0x0c,0x17, + 0xb1,0xb5,0x82,0xdc,0xf3,0x78,0xb9,0xc6,0xbe,0x23, + 0xb8,0xbf,0x85,0x13,0xb8,0x36,0xaa,0x84,0x3b,0x3b, + 0x94,0x33,0x2b,0x22,0x52,0x7a,0x2a,0x2a,0x59,0x14, + 0xe3,0x2b,0x38,0xd0,0xc1,0xcf,0x0e,0xe1,0x78,0x5a, + 0xba,0x1c,0xab,0xd0,0xc9,0xfe,0x51,0xe3,0xc6,0x4f, + 0x73,0xd7,0xae,0xff,0x75,0x91,0x37,0x59,0x52,0x63, + 0x11,0xbd,0xe9,0x73,0xb9,0x9b,0xa4,0x46,0xda,0xcc, + 0x9f,0xeb,0x26,0xa9,0xf5,0x49,0xb7,0x9c,0x75,0xcf, + 0xeb,0xbb,0x49,0x6a,0x5f,0x7c,0x16,0xca,0xe3,0xfd, + 0x28,0x1a,0xbb,0xda,0xcd,0x6c,0xc8,0x5d,0x47,0x97, + 0xf0,0x78,0xb7,0x1c,0xbd,0x91,0x54,0x17,0x03,0x61, + 0xb6,0x81,0x1c,0xc1,0x7f,0xad,0x19,0xcd,0xca,0x91, + 0x55,0xc9,0xfc,0x96,0x78,0x52,0x2c,0x4c,0x3e,0x09, + 0x4d,0x09,0xa9,0x13,0x11,0x59,0x0f,0x44,0x86,0x2e, + 0x8b,0xb2,0x9e,0x5c,0xa1,0x78,0x7c,0xaa,0xdb,0xf6, + 0x35,0xd1,0x8e,0x2d,0xaf,0xf0,0x0d,0xeb,0x54,0x7c, + 0x85,0xa9,0x85,0x7f,0x06,0x00,0xf4,0x2d,0xa8,0xcd, + 0x56,0x9a,0xd2,0xb6,0x00,0x00,0x00,0x00,0x49,0x45, + 0x4e,0x44,0xae,0x42,0x60,0x82 +}; diff --git a/data/converted/help_dpad_up_png.cpp b/data/converted/help_dpad_up_png.cpp new file mode 100644 index 000000000..e910243ac --- /dev/null +++ b/data/converted/help_dpad_up_png.cpp @@ -0,0 +1,188 @@ +//this file was auto-generated from "dpad_up.png" by res2h + +#include "../Resources.h" + +const size_t help_dpad_up_png_size = 1804; +const unsigned char help_dpad_up_png_data[1804] = { + 0x89,0x50,0x4e,0x47,0x0d,0x0a,0x1a,0x0a,0x00,0x00, + 0x00,0x0d,0x49,0x48,0x44,0x52,0x00,0x00,0x00,0x25, + 0x00,0x00,0x00,0x25,0x08,0x06,0x00,0x00,0x00,0xc5, + 0x9e,0x20,0x03,0x00,0x00,0x00,0x19,0x74,0x45,0x58, + 0x74,0x53,0x6f,0x66,0x74,0x77,0x61,0x72,0x65,0x00, + 0x41,0x64,0x6f,0x62,0x65,0x20,0x49,0x6d,0x61,0x67, + 0x65,0x52,0x65,0x61,0x64,0x79,0x71,0xc9,0x65,0x3c, + 0x00,0x00,0x03,0x68,0x69,0x54,0x58,0x74,0x58,0x4d, + 0x4c,0x3a,0x63,0x6f,0x6d,0x2e,0x61,0x64,0x6f,0x62, + 0x65,0x2e,0x78,0x6d,0x70,0x00,0x00,0x00,0x00,0x00, + 0x3c,0x3f,0x78,0x70,0x61,0x63,0x6b,0x65,0x74,0x20, + 0x62,0x65,0x67,0x69,0x6e,0x3d,0x22,0xef,0xbb,0xbf, + 0x22,0x20,0x69,0x64,0x3d,0x22,0x57,0x35,0x4d,0x30, + 0x4d,0x70,0x43,0x65,0x68,0x69,0x48,0x7a,0x72,0x65, + 0x53,0x7a,0x4e,0x54,0x63,0x7a,0x6b,0x63,0x39,0x64, + 0x22,0x3f,0x3e,0x20,0x3c,0x78,0x3a,0x78,0x6d,0x70, + 0x6d,0x65,0x74,0x61,0x20,0x78,0x6d,0x6c,0x6e,0x73, + 0x3a,0x78,0x3d,0x22,0x61,0x64,0x6f,0x62,0x65,0x3a, + 0x6e,0x73,0x3a,0x6d,0x65,0x74,0x61,0x2f,0x22,0x20, + 0x78,0x3a,0x78,0x6d,0x70,0x74,0x6b,0x3d,0x22,0x41, + 0x64,0x6f,0x62,0x65,0x20,0x58,0x4d,0x50,0x20,0x43, + 0x6f,0x72,0x65,0x20,0x35,0x2e,0x33,0x2d,0x63,0x30, + 0x31,0x31,0x20,0x36,0x36,0x2e,0x31,0x34,0x35,0x36, + 0x36,0x31,0x2c,0x20,0x32,0x30,0x31,0x32,0x2f,0x30, + 0x32,0x2f,0x30,0x36,0x2d,0x31,0x34,0x3a,0x35,0x36, + 0x3a,0x32,0x37,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x22,0x3e,0x20,0x3c,0x72,0x64,0x66,0x3a,0x52, + 0x44,0x46,0x20,0x78,0x6d,0x6c,0x6e,0x73,0x3a,0x72, + 0x64,0x66,0x3d,0x22,0x68,0x74,0x74,0x70,0x3a,0x2f, + 0x2f,0x77,0x77,0x77,0x2e,0x77,0x33,0x2e,0x6f,0x72, + 0x67,0x2f,0x31,0x39,0x39,0x39,0x2f,0x30,0x32,0x2f, + 0x32,0x32,0x2d,0x72,0x64,0x66,0x2d,0x73,0x79,0x6e, + 0x74,0x61,0x78,0x2d,0x6e,0x73,0x23,0x22,0x3e,0x20, + 0x3c,0x72,0x64,0x66,0x3a,0x44,0x65,0x73,0x63,0x72, + 0x69,0x70,0x74,0x69,0x6f,0x6e,0x20,0x72,0x64,0x66, + 0x3a,0x61,0x62,0x6f,0x75,0x74,0x3d,0x22,0x22,0x20, + 0x78,0x6d,0x6c,0x6e,0x73,0x3a,0x78,0x6d,0x70,0x4d, + 0x4d,0x3d,0x22,0x68,0x74,0x74,0x70,0x3a,0x2f,0x2f, + 0x6e,0x73,0x2e,0x61,0x64,0x6f,0x62,0x65,0x2e,0x63, + 0x6f,0x6d,0x2f,0x78,0x61,0x70,0x2f,0x31,0x2e,0x30, + 0x2f,0x6d,0x6d,0x2f,0x22,0x20,0x78,0x6d,0x6c,0x6e, + 0x73,0x3a,0x73,0x74,0x52,0x65,0x66,0x3d,0x22,0x68, + 0x74,0x74,0x70,0x3a,0x2f,0x2f,0x6e,0x73,0x2e,0x61, + 0x64,0x6f,0x62,0x65,0x2e,0x63,0x6f,0x6d,0x2f,0x78, + 0x61,0x70,0x2f,0x31,0x2e,0x30,0x2f,0x73,0x54,0x79, + 0x70,0x65,0x2f,0x52,0x65,0x73,0x6f,0x75,0x72,0x63, + 0x65,0x52,0x65,0x66,0x23,0x22,0x20,0x78,0x6d,0x6c, + 0x6e,0x73,0x3a,0x78,0x6d,0x70,0x3d,0x22,0x68,0x74, + 0x74,0x70,0x3a,0x2f,0x2f,0x6e,0x73,0x2e,0x61,0x64, + 0x6f,0x62,0x65,0x2e,0x63,0x6f,0x6d,0x2f,0x78,0x61, + 0x70,0x2f,0x31,0x2e,0x30,0x2f,0x22,0x20,0x78,0x6d, + 0x70,0x4d,0x4d,0x3a,0x4f,0x72,0x69,0x67,0x69,0x6e, + 0x61,0x6c,0x44,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74, + 0x49,0x44,0x3d,0x22,0x78,0x6d,0x70,0x2e,0x64,0x69, + 0x64,0x3a,0x46,0x30,0x31,0x35,0x37,0x37,0x33,0x42, + 0x31,0x31,0x32,0x30,0x36,0x38,0x31,0x31,0x38,0x30, + 0x38,0x33,0x43,0x37,0x45,0x33,0x31,0x45,0x41,0x35, + 0x41,0x37,0x35,0x33,0x22,0x20,0x78,0x6d,0x70,0x4d, + 0x4d,0x3a,0x44,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74, + 0x49,0x44,0x3d,0x22,0x78,0x6d,0x70,0x2e,0x64,0x69, + 0x64,0x3a,0x46,0x43,0x44,0x39,0x31,0x31,0x37,0x41, + 0x39,0x44,0x38,0x41,0x31,0x31,0x45,0x33,0x41,0x39, + 0x31,0x44,0x42,0x44,0x46,0x44,0x34,0x30,0x39,0x39, + 0x32,0x45,0x45,0x33,0x22,0x20,0x78,0x6d,0x70,0x4d, + 0x4d,0x3a,0x49,0x6e,0x73,0x74,0x61,0x6e,0x63,0x65, + 0x49,0x44,0x3d,0x22,0x78,0x6d,0x70,0x2e,0x69,0x69, + 0x64,0x3a,0x46,0x43,0x44,0x39,0x31,0x31,0x37,0x39, + 0x39,0x44,0x38,0x41,0x31,0x31,0x45,0x33,0x41,0x39, + 0x31,0x44,0x42,0x44,0x46,0x44,0x34,0x30,0x39,0x39, + 0x32,0x45,0x45,0x33,0x22,0x20,0x78,0x6d,0x70,0x3a, + 0x43,0x72,0x65,0x61,0x74,0x6f,0x72,0x54,0x6f,0x6f, + 0x6c,0x3d,0x22,0x41,0x64,0x6f,0x62,0x65,0x20,0x50, + 0x68,0x6f,0x74,0x6f,0x73,0x68,0x6f,0x70,0x20,0x43, + 0x53,0x36,0x20,0x28,0x4d,0x61,0x63,0x69,0x6e,0x74, + 0x6f,0x73,0x68,0x29,0x22,0x3e,0x20,0x3c,0x78,0x6d, + 0x70,0x4d,0x4d,0x3a,0x44,0x65,0x72,0x69,0x76,0x65, + 0x64,0x46,0x72,0x6f,0x6d,0x20,0x73,0x74,0x52,0x65, + 0x66,0x3a,0x69,0x6e,0x73,0x74,0x61,0x6e,0x63,0x65, + 0x49,0x44,0x3d,0x22,0x78,0x6d,0x70,0x2e,0x69,0x69, + 0x64,0x3a,0x46,0x30,0x31,0x35,0x37,0x37,0x33,0x42, + 0x31,0x31,0x32,0x30,0x36,0x38,0x31,0x31,0x38,0x30, + 0x38,0x33,0x43,0x37,0x45,0x33,0x31,0x45,0x41,0x35, + 0x41,0x37,0x35,0x33,0x22,0x20,0x73,0x74,0x52,0x65, + 0x66,0x3a,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74, + 0x49,0x44,0x3d,0x22,0x78,0x6d,0x70,0x2e,0x64,0x69, + 0x64,0x3a,0x46,0x30,0x31,0x35,0x37,0x37,0x33,0x42, + 0x31,0x31,0x32,0x30,0x36,0x38,0x31,0x31,0x38,0x30, + 0x38,0x33,0x43,0x37,0x45,0x33,0x31,0x45,0x41,0x35, + 0x41,0x37,0x35,0x33,0x22,0x2f,0x3e,0x20,0x3c,0x2f, + 0x72,0x64,0x66,0x3a,0x44,0x65,0x73,0x63,0x72,0x69, + 0x70,0x74,0x69,0x6f,0x6e,0x3e,0x20,0x3c,0x2f,0x72, + 0x64,0x66,0x3a,0x52,0x44,0x46,0x3e,0x20,0x3c,0x2f, + 0x78,0x3a,0x78,0x6d,0x70,0x6d,0x65,0x74,0x61,0x3e, + 0x20,0x3c,0x3f,0x78,0x70,0x61,0x63,0x6b,0x65,0x74, + 0x20,0x65,0x6e,0x64,0x3d,0x22,0x72,0x22,0x3f,0x3e, + 0xe2,0x6a,0x11,0x2f,0x00,0x00,0x03,0x3a,0x49,0x44, + 0x41,0x54,0x78,0xda,0xd4,0x98,0x5b,0x6c,0x0c,0x51, + 0x18,0xc7,0x67,0xd7,0x68,0x85,0xad,0x07,0x75,0x29, + 0x2d,0x21,0xa9,0x4b,0x88,0x54,0x22,0x12,0x44,0x52, + 0x25,0x11,0xe2,0x16,0x0f,0x62,0x3d,0x89,0x3e,0x68, + 0x11,0xaa,0x41,0xb6,0x45,0xdc,0x2a,0x4b,0xe2,0x52, + 0x69,0x44,0x2a,0x78,0xf0,0x42,0x89,0x27,0x22,0x5e, + 0xdc,0xe2,0x65,0x2b,0xc1,0x83,0x5b,0x10,0x2a,0xa1, + 0x94,0x76,0x11,0x34,0xd4,0xa4,0x2e,0xff,0x2f,0xf9, + 0x37,0xd9,0x9c,0xcc,0xcc,0x99,0xd9,0xb5,0x86,0x2f, + 0xf9,0x65,0x76,0xcf,0x9c,0xcb,0x77,0xce,0xf9,0xce, + 0xf7,0x7d,0x67,0x42,0xb1,0x58,0xcc,0xf0,0x29,0x03, + 0xc1,0x41,0xb0,0x04,0xe4,0xb9,0xd4,0xfb,0x0a,0x2e, + 0x83,0x35,0xa0,0xdd,0xcf,0x00,0xa6,0xe1,0x5f,0x9a, + 0xc0,0x34,0x70,0x1c,0xb4,0xb9,0xd4,0x1b,0x0c,0x2a, + 0xc1,0x09,0xb0,0x28,0x9b,0x4a,0x15,0x80,0xd9,0x60, + 0x33,0x38,0xe0,0xa1,0xfe,0x27,0xb0,0x03,0xe4,0x83, + 0xf7,0x5e,0x07,0x09,0xfb,0x54,0x6a,0x10,0x9f,0x8f, + 0x95,0xf2,0xa9,0x20,0x09,0xa6,0x2b,0xe5,0xcf,0x38, + 0xc6,0x30,0x3f,0x83,0x84,0x8d,0xf4,0xe4,0x97,0xb2, + 0xda,0x8d,0x5c,0x8d,0xc6,0x34,0x4d,0xe2,0x8f,0x28, + 0x95,0x2a,0xeb,0x41,0x09,0x7f,0x4f,0x04,0xd5,0x41, + 0x2b,0x55,0x04,0x76,0x29,0x65,0xdb,0xc1,0xf0,0x20, + 0x95,0xaa,0x07,0x11,0xa5,0x2c,0xc2,0xf2,0xc0,0x94, + 0x2a,0x71,0x28,0x9f,0x94,0x49,0xa7,0x99,0x1a,0xe5, + 0x18,0x23,0x0b,0x12,0x36,0xfe,0x41,0x31,0x15,0x0f, + 0xac,0x33,0xd0,0xe2,0x34,0xc7,0x19,0x0f,0x72,0x34, + 0x75,0x5a,0xc1,0xbb,0x1e,0xa5,0xc4,0x21,0x9e,0x02, + 0xf3,0x7c,0xf8,0xa8,0xa4,0xc7,0xba,0x6f,0x58,0xbf, + 0xc9,0x63,0xfd,0xab,0x20,0x6a,0x32,0x36,0x95,0x82, + 0x2d,0xf4,0xc0,0x3a,0x79,0x0b,0x6e,0x79,0x1c,0xe4, + 0x06,0x98,0x09,0x86,0x78,0xa8,0x2b,0xbb,0x54,0x07, + 0xf6,0x8b,0x52,0x73,0x41,0x03,0xd8,0x6b,0x53,0xb1, + 0x37,0x8d,0xf9,0xa1,0xa6,0xc3,0x1c,0xfa,0x2c,0xd9, + 0x02,0x4b,0x79,0x77,0xd3,0xc6,0x8e,0x7f,0x3a,0xf4, + 0x33,0x0a,0xac,0x08,0xb3,0x43,0xbb,0x60,0x39,0x05, + 0xdc,0x06,0xf7,0x5d,0x66,0xda,0x0b,0xc4,0xc1,0x47, + 0xf0,0x9c,0xcf,0x38,0xcb,0x9d,0xe4,0x35,0xb8,0x48, + 0x05,0xec,0xde,0xe5,0xd9,0x9d,0xbe,0x7e,0xe0,0x10, + 0x48,0xd0,0x40,0x43,0x20,0xd7,0x61,0x80,0x3d,0xa0, + 0x16,0x5c,0x00,0xab,0xf8,0xac,0x65,0xb9,0x5b,0xa6, + 0xb1,0x80,0xab,0x5f,0x63,0x77,0x00,0x54,0xa5,0xe6, + 0x70,0x65,0xaa,0xc0,0x31,0xb0,0xce,0xa5,0xf3,0x3e, + 0x8c,0x7b,0x67,0xc0,0x72,0xe6,0x57,0xf2,0x3c,0xcb, + 0x76,0xb9,0x2e,0x6d,0x8f,0x80,0x4b,0x34,0x99,0xbb, + 0x60,0x86,0x93,0x52,0x66,0xca,0xb2,0x8a,0xd1,0xaf, + 0x05,0x9f,0x35,0x33,0xee,0x0b,0xae,0x2b,0xe5,0xd7, + 0xb8,0xda,0x05,0x9a,0x2d,0x5c,0x0a,0x0e,0x83,0x09, + 0x1c,0xd7,0x56,0xa9,0x6e,0x30,0x1f,0xb4,0x70,0x06, + 0x47,0x41,0x7f,0xcd,0x29,0x94,0x94,0x77,0x96,0x52, + 0x2e,0xff,0x3b,0xf9,0xde,0x49,0x24,0xbf,0x3a,0x07, + 0x36,0x30,0x37,0x5b,0xec,0x16,0x66,0xae,0x30,0xfd, + 0xa8,0xe3,0xd6,0xb8,0x49,0x17,0x4f,0x6d,0x8d,0x72, + 0xfc,0x97,0x81,0x7d,0xe0,0xbb,0x4b,0x5b,0xd9,0xde, + 0x6f,0x60,0x2b,0x33,0x58,0x4b,0x17,0xfb,0x64,0xf6, + 0x1b,0x69,0x2b,0x27,0xa9,0x64,0x97,0x43,0xe7,0xdb, + 0xe8,0x1c,0xc5,0x06,0xa3,0x5c,0xa1,0x38,0xd3,0x17, + 0x27,0x11,0xaf,0x7d,0x87,0x8a,0xb5,0x38,0x85,0x99, + 0x4e,0xfa,0x18,0x55,0xc4,0x1d,0x4c,0x06,0x63,0x5d, + 0x6e,0x23,0x3f,0x68,0x7f,0x3b,0x41,0x21,0x6d,0xc5, + 0xd2,0xac,0x70,0x21,0xdb,0x39,0xdd,0x94,0x2c,0x51, + 0xea,0x3c,0x58,0x09,0x5e,0x80,0x97,0x2e,0xb1,0x2b, + 0x75,0xa6,0xaa,0x43,0xb4,0xd8,0xde,0x4e,0x4a,0x19, + 0x57,0x75,0x32,0x0e,0xac,0x96,0x53,0x69,0xf2,0x66, + 0x32,0xd2,0xe3,0xed,0xa4,0x27,0xf6,0xc9,0x05,0xa1, + 0xd9,0x43,0xdd,0x32,0xc6,0xb3,0x90,0xc7,0x7e,0xe5, + 0x9e,0x58,0x61,0x32,0xb8,0x96,0x71,0x36,0x45,0x9a, + 0x0e,0x8a,0x19,0x5c,0xf3,0x3d,0x4e,0x60,0x28,0xfb, + 0x8b,0x6a,0xe2,0xaa,0x28,0xf4,0x0a,0x74,0xa8,0x86, + 0xde,0xee,0xe1,0x26,0x6b,0x19,0xe9,0xc9,0x23,0x3a, + 0xe5,0xff,0x37,0xc9,0xcb,0x54,0xa9,0xa7,0x5c,0x7a, + 0x95,0x27,0x41,0xe6,0xe8,0x0f,0xc0,0x68,0x70,0x9a, + 0x36,0x31,0x82,0xf1,0xef,0x5e,0x90,0x2b,0x55,0x45, + 0x3f,0x17,0xa1,0x67,0x8f,0xf0,0x7f,0x75,0x90,0x4a, + 0xc9,0xea,0xec,0xe6,0x57,0x15,0xb9,0xb2,0x2f,0xe4, + 0x07,0x8d,0xd6,0xa0,0x6f,0x33,0xf5,0x3c,0x59,0x15, + 0xdc,0xb6,0x86,0xa0,0x0c,0x3d,0xa4,0x64,0x17,0xa2, + 0xd0,0x07,0x7e,0x8f,0xea,0xfe,0xdb,0x4a,0xb5,0x31, + 0xbf,0x56,0x6f,0xc6,0x09,0x3a,0xd4,0x84,0xcd,0xb7, + 0x06,0x43,0x93,0xc6,0x64,0x7c,0xfa,0x92,0x0c,0x05, + 0x12,0x84,0x07,0x68,0x9c,0xad,0xdc,0x4e,0xca,0x99, + 0x0e,0x75,0x64,0xdb,0x25,0x94,0x33,0x01,0xac,0x64, + 0xe6,0xe9,0x24,0x5f,0x98,0x1a,0x6f,0xf2,0x3b,0xc0, + 0x6f,0x01,0x06,0x00,0x54,0xe1,0xb4,0xc2,0x8e,0x39, + 0x5d,0xa2,0x00,0x00,0x00,0x00,0x49,0x45,0x4e,0x44, + 0xae,0x42,0x60,0x82 +}; diff --git a/data/converted/help_l_png.cpp b/data/converted/help_l_png.cpp new file mode 100644 index 000000000..b03a58ccc --- /dev/null +++ b/data/converted/help_l_png.cpp @@ -0,0 +1,154 @@ +//this file was auto-generated from "l.png" by res2h + +#include "../Resources.h" + +const size_t help_l_png_size = 1464; +const unsigned char help_l_png_data[1464] = { + 0x89,0x50,0x4e,0x47,0x0d,0x0a,0x1a,0x0a,0x00,0x00, + 0x00,0x0d,0x49,0x48,0x44,0x52,0x00,0x00,0x00,0x28, + 0x00,0x00,0x00,0x13,0x08,0x06,0x00,0x00,0x00,0xe2, + 0x43,0x4f,0x03,0x00,0x00,0x00,0x19,0x74,0x45,0x58, + 0x74,0x53,0x6f,0x66,0x74,0x77,0x61,0x72,0x65,0x00, + 0x41,0x64,0x6f,0x62,0x65,0x20,0x49,0x6d,0x61,0x67, + 0x65,0x52,0x65,0x61,0x64,0x79,0x71,0xc9,0x65,0x3c, + 0x00,0x00,0x03,0x68,0x69,0x54,0x58,0x74,0x58,0x4d, + 0x4c,0x3a,0x63,0x6f,0x6d,0x2e,0x61,0x64,0x6f,0x62, + 0x65,0x2e,0x78,0x6d,0x70,0x00,0x00,0x00,0x00,0x00, + 0x3c,0x3f,0x78,0x70,0x61,0x63,0x6b,0x65,0x74,0x20, + 0x62,0x65,0x67,0x69,0x6e,0x3d,0x22,0xef,0xbb,0xbf, + 0x22,0x20,0x69,0x64,0x3d,0x22,0x57,0x35,0x4d,0x30, + 0x4d,0x70,0x43,0x65,0x68,0x69,0x48,0x7a,0x72,0x65, + 0x53,0x7a,0x4e,0x54,0x63,0x7a,0x6b,0x63,0x39,0x64, + 0x22,0x3f,0x3e,0x20,0x3c,0x78,0x3a,0x78,0x6d,0x70, + 0x6d,0x65,0x74,0x61,0x20,0x78,0x6d,0x6c,0x6e,0x73, + 0x3a,0x78,0x3d,0x22,0x61,0x64,0x6f,0x62,0x65,0x3a, + 0x6e,0x73,0x3a,0x6d,0x65,0x74,0x61,0x2f,0x22,0x20, + 0x78,0x3a,0x78,0x6d,0x70,0x74,0x6b,0x3d,0x22,0x41, + 0x64,0x6f,0x62,0x65,0x20,0x58,0x4d,0x50,0x20,0x43, + 0x6f,0x72,0x65,0x20,0x35,0x2e,0x33,0x2d,0x63,0x30, + 0x31,0x31,0x20,0x36,0x36,0x2e,0x31,0x34,0x35,0x36, + 0x36,0x31,0x2c,0x20,0x32,0x30,0x31,0x32,0x2f,0x30, + 0x32,0x2f,0x30,0x36,0x2d,0x31,0x34,0x3a,0x35,0x36, + 0x3a,0x32,0x37,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x22,0x3e,0x20,0x3c,0x72,0x64,0x66,0x3a,0x52, + 0x44,0x46,0x20,0x78,0x6d,0x6c,0x6e,0x73,0x3a,0x72, + 0x64,0x66,0x3d,0x22,0x68,0x74,0x74,0x70,0x3a,0x2f, + 0x2f,0x77,0x77,0x77,0x2e,0x77,0x33,0x2e,0x6f,0x72, + 0x67,0x2f,0x31,0x39,0x39,0x39,0x2f,0x30,0x32,0x2f, + 0x32,0x32,0x2d,0x72,0x64,0x66,0x2d,0x73,0x79,0x6e, + 0x74,0x61,0x78,0x2d,0x6e,0x73,0x23,0x22,0x3e,0x20, + 0x3c,0x72,0x64,0x66,0x3a,0x44,0x65,0x73,0x63,0x72, + 0x69,0x70,0x74,0x69,0x6f,0x6e,0x20,0x72,0x64,0x66, + 0x3a,0x61,0x62,0x6f,0x75,0x74,0x3d,0x22,0x22,0x20, + 0x78,0x6d,0x6c,0x6e,0x73,0x3a,0x78,0x6d,0x70,0x4d, + 0x4d,0x3d,0x22,0x68,0x74,0x74,0x70,0x3a,0x2f,0x2f, + 0x6e,0x73,0x2e,0x61,0x64,0x6f,0x62,0x65,0x2e,0x63, + 0x6f,0x6d,0x2f,0x78,0x61,0x70,0x2f,0x31,0x2e,0x30, + 0x2f,0x6d,0x6d,0x2f,0x22,0x20,0x78,0x6d,0x6c,0x6e, + 0x73,0x3a,0x73,0x74,0x52,0x65,0x66,0x3d,0x22,0x68, + 0x74,0x74,0x70,0x3a,0x2f,0x2f,0x6e,0x73,0x2e,0x61, + 0x64,0x6f,0x62,0x65,0x2e,0x63,0x6f,0x6d,0x2f,0x78, + 0x61,0x70,0x2f,0x31,0x2e,0x30,0x2f,0x73,0x54,0x79, + 0x70,0x65,0x2f,0x52,0x65,0x73,0x6f,0x75,0x72,0x63, + 0x65,0x52,0x65,0x66,0x23,0x22,0x20,0x78,0x6d,0x6c, + 0x6e,0x73,0x3a,0x78,0x6d,0x70,0x3d,0x22,0x68,0x74, + 0x74,0x70,0x3a,0x2f,0x2f,0x6e,0x73,0x2e,0x61,0x64, + 0x6f,0x62,0x65,0x2e,0x63,0x6f,0x6d,0x2f,0x78,0x61, + 0x70,0x2f,0x31,0x2e,0x30,0x2f,0x22,0x20,0x78,0x6d, + 0x70,0x4d,0x4d,0x3a,0x4f,0x72,0x69,0x67,0x69,0x6e, + 0x61,0x6c,0x44,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74, + 0x49,0x44,0x3d,0x22,0x78,0x6d,0x70,0x2e,0x64,0x69, + 0x64,0x3a,0x33,0x38,0x45,0x38,0x44,0x46,0x33,0x39, + 0x31,0x38,0x32,0x30,0x36,0x38,0x31,0x31,0x38,0x30, + 0x38,0x33,0x43,0x37,0x45,0x33,0x31,0x45,0x41,0x35, + 0x41,0x37,0x35,0x33,0x22,0x20,0x78,0x6d,0x70,0x4d, + 0x4d,0x3a,0x44,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74, + 0x49,0x44,0x3d,0x22,0x78,0x6d,0x70,0x2e,0x64,0x69, + 0x64,0x3a,0x41,0x46,0x45,0x45,0x44,0x32,0x37,0x44, + 0x39,0x44,0x39,0x31,0x31,0x31,0x45,0x33,0x41,0x39, + 0x31,0x44,0x42,0x44,0x46,0x44,0x34,0x30,0x39,0x39, + 0x32,0x45,0x45,0x33,0x22,0x20,0x78,0x6d,0x70,0x4d, + 0x4d,0x3a,0x49,0x6e,0x73,0x74,0x61,0x6e,0x63,0x65, + 0x49,0x44,0x3d,0x22,0x78,0x6d,0x70,0x2e,0x69,0x69, + 0x64,0x3a,0x41,0x46,0x45,0x45,0x44,0x32,0x37,0x43, + 0x39,0x44,0x39,0x31,0x31,0x31,0x45,0x33,0x41,0x39, + 0x31,0x44,0x42,0x44,0x46,0x44,0x34,0x30,0x39,0x39, + 0x32,0x45,0x45,0x33,0x22,0x20,0x78,0x6d,0x70,0x3a, + 0x43,0x72,0x65,0x61,0x74,0x6f,0x72,0x54,0x6f,0x6f, + 0x6c,0x3d,0x22,0x41,0x64,0x6f,0x62,0x65,0x20,0x50, + 0x68,0x6f,0x74,0x6f,0x73,0x68,0x6f,0x70,0x20,0x43, + 0x53,0x36,0x20,0x28,0x4d,0x61,0x63,0x69,0x6e,0x74, + 0x6f,0x73,0x68,0x29,0x22,0x3e,0x20,0x3c,0x78,0x6d, + 0x70,0x4d,0x4d,0x3a,0x44,0x65,0x72,0x69,0x76,0x65, + 0x64,0x46,0x72,0x6f,0x6d,0x20,0x73,0x74,0x52,0x65, + 0x66,0x3a,0x69,0x6e,0x73,0x74,0x61,0x6e,0x63,0x65, + 0x49,0x44,0x3d,0x22,0x78,0x6d,0x70,0x2e,0x69,0x69, + 0x64,0x3a,0x33,0x38,0x45,0x38,0x44,0x46,0x33,0x39, + 0x31,0x38,0x32,0x30,0x36,0x38,0x31,0x31,0x38,0x30, + 0x38,0x33,0x43,0x37,0x45,0x33,0x31,0x45,0x41,0x35, + 0x41,0x37,0x35,0x33,0x22,0x20,0x73,0x74,0x52,0x65, + 0x66,0x3a,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74, + 0x49,0x44,0x3d,0x22,0x78,0x6d,0x70,0x2e,0x64,0x69, + 0x64,0x3a,0x33,0x38,0x45,0x38,0x44,0x46,0x33,0x39, + 0x31,0x38,0x32,0x30,0x36,0x38,0x31,0x31,0x38,0x30, + 0x38,0x33,0x43,0x37,0x45,0x33,0x31,0x45,0x41,0x35, + 0x41,0x37,0x35,0x33,0x22,0x2f,0x3e,0x20,0x3c,0x2f, + 0x72,0x64,0x66,0x3a,0x44,0x65,0x73,0x63,0x72,0x69, + 0x70,0x74,0x69,0x6f,0x6e,0x3e,0x20,0x3c,0x2f,0x72, + 0x64,0x66,0x3a,0x52,0x44,0x46,0x3e,0x20,0x3c,0x2f, + 0x78,0x3a,0x78,0x6d,0x70,0x6d,0x65,0x74,0x61,0x3e, + 0x20,0x3c,0x3f,0x78,0x70,0x61,0x63,0x6b,0x65,0x74, + 0x20,0x65,0x6e,0x64,0x3d,0x22,0x72,0x22,0x3f,0x3e, + 0xc2,0x6d,0x14,0xe5,0x00,0x00,0x01,0xe6,0x49,0x44, + 0x41,0x54,0x78,0xda,0xcc,0xd6,0xcf,0x4b,0x54,0x51, + 0x18,0xc6,0xf1,0x3b,0xb7,0x31,0x15,0x45,0x2c,0x1c, + 0x1b,0x14,0x67,0xe5,0x22,0xd0,0x8a,0x10,0x5a,0x68, + 0x44,0x8b,0x16,0x09,0xea,0x84,0x9b,0xf0,0x47,0x8b, + 0x84,0xd0,0x64,0x68,0x13,0x34,0xfe,0x0f,0x41,0x81, + 0x88,0x46,0x14,0x04,0x29,0x2d,0x4a,0x34,0x88,0x02, + 0xb7,0x62,0xa0,0x4c,0x8b,0x8a,0x14,0x14,0x17,0xda, + 0x42,0x6b,0x6a,0x91,0x65,0x90,0x3f,0xd0,0xef,0x81, + 0xe7,0xc2,0xe5,0xa2,0x41,0x33,0x77,0xa6,0xfb,0xc2, + 0x07,0x74,0xee,0x70,0xe6,0xe1,0x1e,0xce,0x79,0xdf, + 0x50,0x32,0x99,0xb4,0x3c,0x15,0x42,0x1b,0xba,0xd0, + 0x88,0x28,0x8e,0x58,0xb9,0xab,0x75,0xcc,0xe2,0x19, + 0x5e,0x60,0xd7,0xfd,0x30,0xec,0xf9,0xf2,0x49,0x3c, + 0x56,0x30,0xa7,0x7e,0xe3,0x4f,0x8e,0xc2,0x15,0xe8, + 0x05,0xc4,0xe5,0x03,0x3a,0xf1,0xe9,0xa0,0x80,0xe7, + 0xf0,0x06,0xc7,0x31,0x8f,0xbb,0x78,0x8d,0xaf,0x56, + 0x6e,0xab,0x02,0x97,0x71,0x07,0xa7,0x31,0x8d,0x16, + 0xbc,0x35,0x0f,0x6d,0x7d,0xa9,0x06,0xaf,0x14,0xee, + 0x01,0xce,0xe2,0x49,0x1e,0xc2,0x99,0xfa,0x86,0x51, + 0x34,0xe0,0x1e,0x8e,0x61,0x02,0x55,0xee,0x80,0xf7, + 0x11,0xc1,0x53,0xdc,0xc4,0x96,0x95,0xff,0xda,0xc6, + 0x6d,0xbd,0x98,0x4a,0x0c,0x39,0x01,0x4f,0xa1,0x1d, + 0x5f,0xd0,0x9f,0xc5,0x0f,0xc4,0xf4,0x16,0xb2,0xad, + 0x04,0xd6,0x70,0xc5,0x6c,0xb9,0x09,0x78,0x5d,0x27, + 0x77,0x10,0xbf,0xb2,0x58,0x78,0x00,0x29,0x1f,0x02, + 0x6e,0xea,0xed,0x99,0x4c,0x1d,0x26,0xe0,0x05,0x3d, + 0x78,0x69,0x05,0xa7,0x9c,0x2c,0x97,0x6c,0x1d,0x90, + 0x6d,0x9d,0xdc,0xa0,0x94,0xc9,0xb2,0x63,0xae,0x3d, + 0x5b,0x87,0xe3,0x07,0xf6,0x02,0x14,0xd0,0x64,0xd9, + 0x40,0x89,0xad,0x3d,0x2f,0xd7,0x9e,0x07,0xa5,0x4c, + 0xae,0x32,0xa4,0xcd,0x1f,0x0b,0xba,0xb0,0xeb,0x7d, + 0x5a,0xbc,0xc1,0x25,0x96,0xe1,0x1a,0x75,0xca,0xb4, + 0x62,0x02,0x4e,0xe9,0xc3,0xb8,0x4f,0x01,0x53,0x2e, + 0x03,0x19,0xae,0xe1,0x64,0x99,0x0e,0x31,0x2c,0xd4, + 0xa9,0x07,0x9a,0x1b,0xbd,0x16,0x3f,0xb3,0xb8,0x07, + 0x23,0x9e,0xcf,0xd2,0x58,0xfd,0xc7,0x75,0x4a,0xb1, + 0xac,0xb5,0xce,0x84,0xd5,0x98,0x9f,0xe3,0x2a,0x46, + 0xd0,0x9d,0x61,0xc0,0xd5,0x0c,0xc2,0x1c,0x54,0xc3, + 0xea,0x24,0xe3,0xf8,0xe8,0xb4,0xba,0x5b,0xba,0xbd, + 0xbb,0x14,0xb2,0xf0,0x3f,0x1c,0x8c,0xa3,0x9a,0x03, + 0xae,0x69,0x04,0x4b,0xb8,0x7b,0xb1,0x19,0x0a,0x5a, + 0xb5,0x25,0x7d,0xda,0xf2,0x1b,0xa8,0xce,0xc3,0xe9, + 0x8e,0xaa,0x9b,0xbd,0x47,0x2f,0xbe,0x2b,0xcb,0xba, + 0x77,0xdc,0x7a,0x87,0x26,0x3c,0x52,0x77,0x79,0xf8, + 0x97,0x56,0xe4,0xd7,0x30,0x51,0x8c,0x22,0xd7,0xff, + 0x33,0xe8,0xc1,0xe2,0x61,0x03,0xeb,0x12,0x2e,0xa2, + 0x59,0x83,0xe3,0x79,0x9c,0xf0,0x2c,0x52,0x22,0x7e, + 0x4d,0x30,0x9f,0x31,0x87,0x31,0x4c,0x7a,0x1b,0xc6, + 0xbe,0x00,0x03,0x00,0xc2,0x08,0x63,0xad,0xd8,0xa6, + 0xa9,0xf6,0x00,0x00,0x00,0x00,0x49,0x45,0x4e,0x44, + 0xae,0x42,0x60,0x82 +}; diff --git a/data/converted/help_left_right_png.cpp b/data/converted/help_left_right_png.cpp deleted file mode 100644 index e999eaeb3..000000000 --- a/data/converted/help_left_right_png.cpp +++ /dev/null @@ -1,336 +0,0 @@ -//this file was auto-generated from "left_right.png" by res2h - -#include "../Resources.h" - -const size_t help_left_right_png_size = 3288; -const unsigned char help_left_right_png_data[3288] = { - 0x89,0x50,0x4e,0x47,0x0d,0x0a,0x1a,0x0a,0x00,0x00, - 0x00,0x0d,0x49,0x48,0x44,0x52,0x00,0x00,0x00,0x30, - 0x00,0x00,0x00,0x30,0x08,0x06,0x00,0x00,0x00,0x57, - 0x02,0xf9,0x87,0x00,0x00,0x00,0x09,0x70,0x48,0x59, - 0x73,0x00,0x00,0x0b,0x13,0x00,0x00,0x0b,0x13,0x01, - 0x00,0x9a,0x9c,0x18,0x00,0x00,0x0a,0x4f,0x69,0x43, - 0x43,0x50,0x50,0x68,0x6f,0x74,0x6f,0x73,0x68,0x6f, - 0x70,0x20,0x49,0x43,0x43,0x20,0x70,0x72,0x6f,0x66, - 0x69,0x6c,0x65,0x00,0x00,0x78,0xda,0x9d,0x53,0x67, - 0x54,0x53,0xe9,0x16,0x3d,0xf7,0xde,0xf4,0x42,0x4b, - 0x88,0x80,0x94,0x4b,0x6f,0x52,0x15,0x08,0x20,0x52, - 0x42,0x8b,0x80,0x14,0x91,0x26,0x2a,0x21,0x09,0x10, - 0x4a,0x88,0x21,0xa1,0xd9,0x15,0x51,0xc1,0x11,0x45, - 0x45,0x04,0x1b,0xc8,0xa0,0x88,0x03,0x8e,0x8e,0x80, - 0x8c,0x15,0x51,0x2c,0x0c,0x8a,0x0a,0xd8,0x07,0xe4, - 0x21,0xa2,0x8e,0x83,0xa3,0x88,0x8a,0xca,0xfb,0xe1, - 0x7b,0xa3,0x6b,0xd6,0xbc,0xf7,0xe6,0xcd,0xfe,0xb5, - 0xd7,0x3e,0xe7,0xac,0xf3,0x9d,0xb3,0xcf,0x07,0xc0, - 0x08,0x0c,0x96,0x48,0x33,0x51,0x35,0x80,0x0c,0xa9, - 0x42,0x1e,0x11,0xe0,0x83,0xc7,0xc4,0xc6,0xe1,0xe4, - 0x2e,0x40,0x81,0x0a,0x24,0x70,0x00,0x10,0x08,0xb3, - 0x64,0x21,0x73,0xfd,0x23,0x01,0x00,0xf8,0x7e,0x3c, - 0x3c,0x2b,0x22,0xc0,0x07,0xbe,0x00,0x01,0x78,0xd3, - 0x0b,0x08,0x00,0xc0,0x4d,0x9b,0xc0,0x30,0x1c,0x87, - 0xff,0x0f,0xea,0x42,0x99,0x5c,0x01,0x80,0x84,0x01, - 0xc0,0x74,0x91,0x38,0x4b,0x08,0x80,0x14,0x00,0x40, - 0x7a,0x8e,0x42,0xa6,0x00,0x40,0x46,0x01,0x80,0x9d, - 0x98,0x26,0x53,0x00,0xa0,0x04,0x00,0x60,0xcb,0x63, - 0x62,0xe3,0x00,0x50,0x2d,0x00,0x60,0x27,0x7f,0xe6, - 0xd3,0x00,0x80,0x9d,0xf8,0x99,0x7b,0x01,0x00,0x5b, - 0x94,0x21,0x15,0x01,0xa0,0x91,0x00,0x20,0x13,0x65, - 0x88,0x44,0x00,0x68,0x3b,0x00,0xac,0xcf,0x56,0x8a, - 0x45,0x00,0x58,0x30,0x00,0x14,0x66,0x4b,0xc4,0x39, - 0x00,0xd8,0x2d,0x00,0x30,0x49,0x57,0x66,0x48,0x00, - 0xb0,0xb7,0x00,0xc0,0xce,0x10,0x0b,0xb2,0x00,0x08, - 0x0c,0x00,0x30,0x51,0x88,0x85,0x29,0x00,0x04,0x7b, - 0x00,0x60,0xc8,0x23,0x23,0x78,0x00,0x84,0x99,0x00, - 0x14,0x46,0xf2,0x57,0x3c,0xf1,0x2b,0xae,0x10,0xe7, - 0x2a,0x00,0x00,0x78,0x99,0xb2,0x3c,0xb9,0x24,0x39, - 0x45,0x81,0x5b,0x08,0x2d,0x71,0x07,0x57,0x57,0x2e, - 0x1e,0x28,0xce,0x49,0x17,0x2b,0x14,0x36,0x61,0x02, - 0x61,0x9a,0x40,0x2e,0xc2,0x79,0x99,0x19,0x32,0x81, - 0x34,0x0f,0xe0,0xf3,0xcc,0x00,0x00,0xa0,0x91,0x15, - 0x11,0xe0,0x83,0xf3,0xfd,0x78,0xce,0x0e,0xae,0xce, - 0xce,0x36,0x8e,0xb6,0x0e,0x5f,0x2d,0xea,0xbf,0x06, - 0xff,0x22,0x62,0x62,0xe3,0xfe,0xe5,0xcf,0xab,0x70, - 0x40,0x00,0x00,0xe1,0x74,0x7e,0xd1,0xfe,0x2c,0x2f, - 0xb3,0x1a,0x80,0x3b,0x06,0x80,0x6d,0xfe,0xa2,0x25, - 0xee,0x04,0x68,0x5e,0x0b,0xa0,0x75,0xf7,0x8b,0x66, - 0xb2,0x0f,0x40,0xb5,0x00,0xa0,0xe9,0xda,0x57,0xf3, - 0x70,0xf8,0x7e,0x3c,0x3c,0x45,0xa1,0x90,0xb9,0xd9, - 0xd9,0xe5,0xe4,0xe4,0xd8,0x4a,0xc4,0x42,0x5b,0x61, - 0xca,0x57,0x7d,0xfe,0x67,0xc2,0x5f,0xc0,0x57,0xfd, - 0x6c,0xf9,0x7e,0x3c,0xfc,0xf7,0xf5,0xe0,0xbe,0xe2, - 0x24,0x81,0x32,0x5d,0x81,0x47,0x04,0xf8,0xe0,0xc2, - 0xcc,0xf4,0x4c,0xa5,0x1c,0xcf,0x92,0x09,0x84,0x62, - 0xdc,0xe6,0x8f,0x47,0xfc,0xb7,0x0b,0xff,0xfc,0x1d, - 0xd3,0x22,0xc4,0x49,0x62,0xb9,0x58,0x2a,0x14,0xe3, - 0x51,0x12,0x71,0x8e,0x44,0x9a,0x8c,0xf3,0x32,0xa5, - 0x22,0x89,0x42,0x92,0x29,0xc5,0x25,0xd2,0xff,0x64, - 0xe2,0xdf,0x2c,0xfb,0x03,0x3e,0xdf,0x35,0x00,0xb0, - 0x6a,0x3e,0x01,0x7b,0x91,0x2d,0xa8,0x5d,0x63,0x03, - 0xf6,0x4b,0x27,0x10,0x58,0x74,0xc0,0xe2,0xf7,0x00, - 0x00,0xf2,0xbb,0x6f,0xc1,0xd4,0x28,0x08,0x03,0x80, - 0x68,0x83,0xe1,0xcf,0x77,0xff,0xef,0x3f,0xfd,0x47, - 0xa0,0x25,0x00,0x80,0x66,0x49,0x92,0x71,0x00,0x00, - 0x5e,0x44,0x24,0x2e,0x54,0xca,0xb3,0x3f,0xc7,0x08, - 0x00,0x00,0x44,0xa0,0x81,0x2a,0xb0,0x41,0x1b,0xf4, - 0xc1,0x18,0x2c,0xc0,0x06,0x1c,0xc1,0x05,0xdc,0xc1, - 0x0b,0xfc,0x60,0x36,0x84,0x42,0x24,0xc4,0xc2,0x42, - 0x10,0x42,0x0a,0x64,0x80,0x1c,0x72,0x60,0x29,0xac, - 0x82,0x42,0x28,0x86,0xcd,0xb0,0x1d,0x2a,0x60,0x2f, - 0xd4,0x40,0x1d,0x34,0xc0,0x51,0x68,0x86,0x93,0x70, - 0x0e,0x2e,0xc2,0x55,0xb8,0x0e,0x3d,0x70,0x0f,0xfa, - 0x61,0x08,0x9e,0xc1,0x28,0xbc,0x81,0x09,0x04,0x41, - 0xc8,0x08,0x13,0x61,0x21,0xda,0x88,0x01,0x62,0x8a, - 0x58,0x23,0x8e,0x08,0x17,0x99,0x85,0xf8,0x21,0xc1, - 0x48,0x04,0x12,0x8b,0x24,0x20,0xc9,0x88,0x14,0x51, - 0x22,0x4b,0x91,0x35,0x48,0x31,0x52,0x8a,0x54,0x20, - 0x55,0x48,0x1d,0xf2,0x3d,0x72,0x02,0x39,0x87,0x5c, - 0x46,0xba,0x91,0x3b,0xc8,0x00,0x32,0x82,0xfc,0x86, - 0xbc,0x47,0x31,0x94,0x81,0xb2,0x51,0x3d,0xd4,0x0c, - 0xb5,0x43,0xb9,0xa8,0x37,0x1a,0x84,0x46,0xa2,0x0b, - 0xd0,0x64,0x74,0x31,0x9a,0x8f,0x16,0xa0,0x9b,0xd0, - 0x72,0xb4,0x1a,0x3d,0x8c,0x36,0xa1,0xe7,0xd0,0xab, - 0x68,0x0f,0xda,0x8f,0x3e,0x43,0xc7,0x30,0xc0,0xe8, - 0x18,0x07,0x33,0xc4,0x6c,0x30,0x2e,0xc6,0xc3,0x42, - 0xb1,0x38,0x2c,0x09,0x93,0x63,0xcb,0xb1,0x22,0xac, - 0x0c,0xab,0xc6,0x1a,0xb0,0x56,0xac,0x03,0xbb,0x89, - 0xf5,0x63,0xcf,0xb1,0x77,0x04,0x12,0x81,0x45,0xc0, - 0x09,0x36,0x04,0x77,0x42,0x20,0x61,0x1e,0x41,0x48, - 0x58,0x4c,0x58,0x4e,0xd8,0x48,0xa8,0x20,0x1c,0x24, - 0x34,0x11,0xda,0x09,0x37,0x09,0x03,0x84,0x51,0xc2, - 0x27,0x22,0x93,0xa8,0x4b,0xb4,0x26,0xba,0x11,0xf9, - 0xc4,0x18,0x62,0x32,0x31,0x87,0x58,0x48,0x2c,0x23, - 0xd6,0x12,0x8f,0x13,0x2f,0x10,0x7b,0x88,0x43,0xc4, - 0x37,0x24,0x12,0x89,0x43,0x32,0x27,0xb9,0x90,0x02, - 0x49,0xb1,0xa4,0x54,0xd2,0x12,0xd2,0x46,0xd2,0x6e, - 0x52,0x23,0xe9,0x2c,0xa9,0x9b,0x34,0x48,0x1a,0x23, - 0x93,0xc9,0xda,0x64,0x6b,0xb2,0x07,0x39,0x94,0x2c, - 0x20,0x2b,0xc8,0x85,0xe4,0x9d,0xe4,0xc3,0xe4,0x33, - 0xe4,0x1b,0xe4,0x21,0xf2,0x5b,0x0a,0x9d,0x62,0x40, - 0x71,0xa4,0xf8,0x53,0xe2,0x28,0x52,0xca,0x6a,0x4a, - 0x19,0xe5,0x10,0xe5,0x34,0xe5,0x06,0x65,0x98,0x32, - 0x41,0x55,0xa3,0x9a,0x52,0xdd,0xa8,0xa1,0x54,0x11, - 0x35,0x8f,0x5a,0x42,0xad,0xa1,0xb6,0x52,0xaf,0x51, - 0x87,0xa8,0x13,0x34,0x75,0x9a,0x39,0xcd,0x83,0x16, - 0x49,0x4b,0xa5,0xad,0xa2,0x95,0xd3,0x1a,0x68,0x17, - 0x68,0xf7,0x69,0xaf,0xe8,0x74,0xba,0x11,0xdd,0x95, - 0x1e,0x4e,0x97,0xd0,0x57,0xd2,0xcb,0xe9,0x47,0xe8, - 0x97,0xe8,0x03,0xf4,0x77,0x0c,0x0d,0x86,0x15,0x83, - 0xc7,0x88,0x67,0x28,0x19,0x9b,0x18,0x07,0x18,0x67, - 0x19,0x77,0x18,0xaf,0x98,0x4c,0xa6,0x19,0xd3,0x8b, - 0x19,0xc7,0x54,0x30,0x37,0x31,0xeb,0x98,0xe7,0x99, - 0x0f,0x99,0x6f,0x55,0x58,0x2a,0xb6,0x2a,0x7c,0x15, - 0x91,0xca,0x0a,0x95,0x4a,0x95,0x26,0x95,0x1b,0x2a, - 0x2f,0x54,0xa9,0xaa,0xa6,0xaa,0xde,0xaa,0x0b,0x55, - 0xf3,0x55,0xcb,0x54,0x8f,0xa9,0x5e,0x53,0x7d,0xae, - 0x46,0x55,0x33,0x53,0xe3,0xa9,0x09,0xd4,0x96,0xab, - 0x55,0xaa,0x9d,0x50,0xeb,0x53,0x1b,0x53,0x67,0xa9, - 0x3b,0xa8,0x87,0xaa,0x67,0xa8,0x6f,0x54,0x3f,0xa4, - 0x7e,0x59,0xfd,0x89,0x06,0x59,0xc3,0x4c,0xc3,0x4f, - 0x43,0xa4,0x51,0xa0,0xb1,0x5f,0xe3,0xbc,0xc6,0x20, - 0x0b,0x63,0x19,0xb3,0x78,0x2c,0x21,0x6b,0x0d,0xab, - 0x86,0x75,0x81,0x35,0xc4,0x26,0xb1,0xcd,0xd9,0x7c, - 0x76,0x2a,0xbb,0x98,0xfd,0x1d,0xbb,0x8b,0x3d,0xaa, - 0xa9,0xa1,0x39,0x43,0x33,0x4a,0x33,0x57,0xb3,0x52, - 0xf3,0x94,0x66,0x3f,0x07,0xe3,0x98,0x71,0xf8,0x9c, - 0x74,0x4e,0x09,0xe7,0x28,0xa7,0x97,0xf3,0x7e,0x8a, - 0xde,0x14,0xef,0x29,0xe2,0x29,0x1b,0xa6,0x34,0x4c, - 0xb9,0x31,0x65,0x5c,0x6b,0xaa,0x96,0x97,0x96,0x58, - 0xab,0x48,0xab,0x51,0xab,0x47,0xeb,0xbd,0x36,0xae, - 0xed,0xa7,0x9d,0xa6,0xbd,0x45,0xbb,0x59,0xfb,0x81, - 0x0e,0x41,0xc7,0x4a,0x27,0x5c,0x27,0x47,0x67,0x8f, - 0xce,0x05,0x9d,0xe7,0x53,0xd9,0x53,0xdd,0xa7,0x0a, - 0xa7,0x16,0x4d,0x3d,0x3a,0xf5,0xae,0x2e,0xaa,0x6b, - 0xa5,0x1b,0xa1,0xbb,0x44,0x77,0xbf,0x6e,0xa7,0xee, - 0x98,0x9e,0xbe,0x5e,0x80,0x9e,0x4c,0x6f,0xa7,0xde, - 0x79,0xbd,0xe7,0xfa,0x1c,0x7d,0x2f,0xfd,0x54,0xfd, - 0x6d,0xfa,0xa7,0xf5,0x47,0x0c,0x58,0x06,0xb3,0x0c, - 0x24,0x06,0xdb,0x0c,0xce,0x18,0x3c,0xc5,0x35,0x71, - 0x6f,0x3c,0x1d,0x2f,0xc7,0xdb,0xf1,0x51,0x43,0x5d, - 0xc3,0x40,0x43,0xa5,0x61,0x95,0x61,0x97,0xe1,0x84, - 0x91,0xb9,0xd1,0x3c,0xa3,0xd5,0x46,0x8d,0x46,0x0f, - 0x8c,0x69,0xc6,0x5c,0xe3,0x24,0xe3,0x6d,0xc6,0x6d, - 0xc6,0xa3,0x26,0x06,0x26,0x21,0x26,0x4b,0x4d,0xea, - 0x4d,0xee,0x9a,0x52,0x4d,0xb9,0xa6,0x29,0xa6,0x3b, - 0x4c,0x3b,0x4c,0xc7,0xcd,0xcc,0xcd,0xa2,0xcd,0xd6, - 0x99,0x35,0x9b,0x3d,0x31,0xd7,0x32,0xe7,0x9b,0xe7, - 0x9b,0xd7,0x9b,0xdf,0xb7,0x60,0x5a,0x78,0x5a,0x2c, - 0xb6,0xa8,0xb6,0xb8,0x65,0x49,0xb2,0xe4,0x5a,0xa6, - 0x59,0xee,0xb6,0xbc,0x6e,0x85,0x5a,0x39,0x59,0xa5, - 0x58,0x55,0x5a,0x5d,0xb3,0x46,0xad,0x9d,0xad,0x25, - 0xd6,0xbb,0xad,0xbb,0xa7,0x11,0xa7,0xb9,0x4e,0x93, - 0x4e,0xab,0x9e,0xd6,0x67,0xc3,0xb0,0xf1,0xb6,0xc9, - 0xb6,0xa9,0xb7,0x19,0xb0,0xe5,0xd8,0x06,0xdb,0xae, - 0xb6,0x6d,0xb6,0x7d,0x61,0x67,0x62,0x17,0x67,0xb7, - 0xc5,0xae,0xc3,0xee,0x93,0xbd,0x93,0x7d,0xba,0x7d, - 0x8d,0xfd,0x3d,0x07,0x0d,0x87,0xd9,0x0e,0xab,0x1d, - 0x5a,0x1d,0x7e,0x73,0xb4,0x72,0x14,0x3a,0x56,0x3a, - 0xde,0x9a,0xce,0x9c,0xee,0x3f,0x7d,0xc5,0xf4,0x96, - 0xe9,0x2f,0x67,0x58,0xcf,0x10,0xcf,0xd8,0x33,0xe3, - 0xb6,0x13,0xcb,0x29,0xc4,0x69,0x9d,0x53,0x9b,0xd3, - 0x47,0x67,0x17,0x67,0xb9,0x73,0x83,0xf3,0x88,0x8b, - 0x89,0x4b,0x82,0xcb,0x2e,0x97,0x3e,0x2e,0x9b,0x1b, - 0xc6,0xdd,0xc8,0xbd,0xe4,0x4a,0x74,0xf5,0x71,0x5d, - 0xe1,0x7a,0xd2,0xf5,0x9d,0x9b,0xb3,0x9b,0xc2,0xed, - 0xa8,0xdb,0xaf,0xee,0x36,0xee,0x69,0xee,0x87,0xdc, - 0x9f,0xcc,0x34,0x9f,0x29,0x9e,0x59,0x33,0x73,0xd0, - 0xc3,0xc8,0x43,0xe0,0x51,0xe5,0xd1,0x3f,0x0b,0x9f, - 0x95,0x30,0x6b,0xdf,0xac,0x7e,0x4f,0x43,0x4f,0x81, - 0x67,0xb5,0xe7,0x23,0x2f,0x63,0x2f,0x91,0x57,0xad, - 0xd7,0xb0,0xb7,0xa5,0x77,0xaa,0xf7,0x61,0xef,0x17, - 0x3e,0xf6,0x3e,0x72,0x9f,0xe3,0x3e,0xe3,0x3c,0x37, - 0xde,0x32,0xde,0x59,0x5f,0xcc,0x37,0xc0,0xb7,0xc8, - 0xb7,0xcb,0x4f,0xc3,0x6f,0x9e,0x5f,0x85,0xdf,0x43, - 0x7f,0x23,0xff,0x64,0xff,0x7a,0xff,0xd1,0x00,0xa7, - 0x80,0x25,0x01,0x67,0x03,0x89,0x81,0x41,0x81,0x5b, - 0x02,0xfb,0xf8,0x7a,0x7c,0x21,0xbf,0x8e,0x3f,0x3a, - 0xdb,0x65,0xf6,0xb2,0xd9,0xed,0x41,0x8c,0xa0,0xb9, - 0x41,0x15,0x41,0x8f,0x82,0xad,0x82,0xe5,0xc1,0xad, - 0x21,0x68,0xc8,0xec,0x90,0xad,0x21,0xf7,0xe7,0x98, - 0xce,0x91,0xce,0x69,0x0e,0x85,0x50,0x7e,0xe8,0xd6, - 0xd0,0x07,0x61,0xe6,0x61,0x8b,0xc3,0x7e,0x0c,0x27, - 0x85,0x87,0x85,0x57,0x86,0x3f,0x8e,0x70,0x88,0x58, - 0x1a,0xd1,0x31,0x97,0x35,0x77,0xd1,0xdc,0x43,0x73, - 0xdf,0x44,0xfa,0x44,0x96,0x44,0xde,0x9b,0x67,0x31, - 0x4f,0x39,0xaf,0x2d,0x4a,0x35,0x2a,0x3e,0xaa,0x2e, - 0x6a,0x3c,0xda,0x37,0xba,0x34,0xba,0x3f,0xc6,0x2e, - 0x66,0x59,0xcc,0xd5,0x58,0x9d,0x58,0x49,0x6c,0x4b, - 0x1c,0x39,0x2e,0x2a,0xae,0x36,0x6e,0x6c,0xbe,0xdf, - 0xfc,0xed,0xf3,0x87,0xe2,0x9d,0xe2,0x0b,0xe3,0x7b, - 0x17,0x98,0x2f,0xc8,0x5d,0x70,0x79,0xa1,0xce,0xc2, - 0xf4,0x85,0xa7,0x16,0xa9,0x2e,0x12,0x2c,0x3a,0x96, - 0x40,0x4c,0x88,0x4e,0x38,0x94,0xf0,0x41,0x10,0x2a, - 0xa8,0x16,0x8c,0x25,0xf2,0x13,0x77,0x25,0x8e,0x0a, - 0x79,0xc2,0x1d,0xc2,0x67,0x22,0x2f,0xd1,0x36,0xd1, - 0x88,0xd8,0x43,0x5c,0x2a,0x1e,0x4e,0xf2,0x48,0x2a, - 0x4d,0x7a,0x92,0xec,0x91,0xbc,0x35,0x79,0x24,0xc5, - 0x33,0xa5,0x2c,0xe5,0xb9,0x84,0x27,0xa9,0x90,0xbc, - 0x4c,0x0d,0x4c,0xdd,0x9b,0x3a,0x9e,0x16,0x9a,0x76, - 0x20,0x6d,0x32,0x3d,0x3a,0xbd,0x31,0x83,0x92,0x91, - 0x90,0x71,0x42,0xaa,0x21,0x4d,0x93,0xb6,0x67,0xea, - 0x67,0xe6,0x66,0x76,0xcb,0xac,0x65,0x85,0xb2,0xfe, - 0xc5,0x6e,0x8b,0xb7,0x2f,0x1e,0x95,0x07,0xc9,0x6b, - 0xb3,0x90,0xac,0x05,0x59,0x2d,0x0a,0xb6,0x42,0xa6, - 0xe8,0x54,0x5a,0x28,0xd7,0x2a,0x07,0xb2,0x67,0x65, - 0x57,0x66,0xbf,0xcd,0x89,0xca,0x39,0x96,0xab,0x9e, - 0x2b,0xcd,0xed,0xcc,0xb3,0xca,0xdb,0x90,0x37,0x9c, - 0xef,0x9f,0xff,0xed,0x12,0xc2,0x12,0xe1,0x92,0xb6, - 0xa5,0x86,0x4b,0x57,0x2d,0x1d,0x58,0xe6,0xbd,0xac, - 0x6a,0x39,0xb2,0x3c,0x71,0x79,0xdb,0x0a,0xe3,0x15, - 0x05,0x2b,0x86,0x56,0x06,0xac,0x3c,0xb8,0x8a,0xb6, - 0x2a,0x6d,0xd5,0x4f,0xab,0xed,0x57,0x97,0xae,0x7e, - 0xbd,0x26,0x7a,0x4d,0x6b,0x81,0x5e,0xc1,0xca,0x82, - 0xc1,0xb5,0x01,0x6b,0xeb,0x0b,0x55,0x0a,0xe5,0x85, - 0x7d,0xeb,0xdc,0xd7,0xed,0x5d,0x4f,0x58,0x2f,0x59, - 0xdf,0xb5,0x61,0xfa,0x86,0x9d,0x1b,0x3e,0x15,0x89, - 0x8a,0xae,0x14,0xdb,0x17,0x97,0x15,0x7f,0xd8,0x28, - 0xdc,0x78,0xe5,0x1b,0x87,0x6f,0xca,0xbf,0x99,0xdc, - 0x94,0xb4,0xa9,0xab,0xc4,0xb9,0x64,0xcf,0x66,0xd2, - 0x66,0xe9,0xe6,0xde,0x2d,0x9e,0x5b,0x0e,0x96,0xaa, - 0x97,0xe6,0x97,0x0e,0x6e,0x0d,0xd9,0xda,0xb4,0x0d, - 0xdf,0x56,0xb4,0xed,0xf5,0xf6,0x45,0xdb,0x2f,0x97, - 0xcd,0x28,0xdb,0xbb,0x83,0xb6,0x43,0xb9,0xa3,0xbf, - 0x3c,0xb8,0xbc,0x65,0xa7,0xc9,0xce,0xcd,0x3b,0x3f, - 0x54,0xa4,0x54,0xf4,0x54,0xfa,0x54,0x36,0xee,0xd2, - 0xdd,0xb5,0x61,0xd7,0xf8,0x6e,0xd1,0xee,0x1b,0x7b, - 0xbc,0xf6,0x34,0xec,0xd5,0xdb,0x5b,0xbc,0xf7,0xfd, - 0x3e,0xc9,0xbe,0xdb,0x55,0x01,0x55,0x4d,0xd5,0x66, - 0xd5,0x65,0xfb,0x49,0xfb,0xb3,0xf7,0x3f,0xae,0x89, - 0xaa,0xe9,0xf8,0x96,0xfb,0x6d,0x5d,0xad,0x4e,0x6d, - 0x71,0xed,0xc7,0x03,0xd2,0x03,0xfd,0x07,0x23,0x0e, - 0xb6,0xd7,0xb9,0xd4,0xd5,0x1d,0xd2,0x3d,0x54,0x52, - 0x8f,0xd6,0x2b,0xeb,0x47,0x0e,0xc7,0x1f,0xbe,0xfe, - 0x9d,0xef,0x77,0x2d,0x0d,0x36,0x0d,0x55,0x8d,0x9c, - 0xc6,0xe2,0x23,0x70,0x44,0x79,0xe4,0xe9,0xf7,0x09, - 0xdf,0xf7,0x1e,0x0d,0x3a,0xda,0x76,0x8c,0x7b,0xac, - 0xe1,0x07,0xd3,0x1f,0x76,0x1d,0x67,0x1d,0x2f,0x6a, - 0x42,0x9a,0xf2,0x9a,0x46,0x9b,0x53,0x9a,0xfb,0x5b, - 0x62,0x5b,0xba,0x4f,0xcc,0x3e,0xd1,0xd6,0xea,0xde, - 0x7a,0xfc,0x47,0xdb,0x1f,0x0f,0x9c,0x34,0x3c,0x59, - 0x79,0x4a,0xf3,0x54,0xc9,0x69,0xda,0xe9,0x82,0xd3, - 0x93,0x67,0xf2,0xcf,0x8c,0x9d,0x95,0x9d,0x7d,0x7e, - 0x2e,0xf9,0xdc,0x60,0xdb,0xa2,0xb6,0x7b,0xe7,0x63, - 0xce,0xdf,0x6a,0x0f,0x6f,0xef,0xba,0x10,0x74,0xe1, - 0xd2,0x45,0xff,0x8b,0xe7,0x3b,0xbc,0x3b,0xce,0x5c, - 0xf2,0xb8,0x74,0xf2,0xb2,0xdb,0xe5,0x13,0x57,0xb8, - 0x57,0x9a,0xaf,0x3a,0x5f,0x6d,0xea,0x74,0xea,0x3c, - 0xfe,0x93,0xd3,0x4f,0xc7,0xbb,0x9c,0xbb,0x9a,0xae, - 0xb9,0x5c,0x6b,0xb9,0xee,0x7a,0xbd,0xb5,0x7b,0x66, - 0xf7,0xe9,0x1b,0x9e,0x37,0xce,0xdd,0xf4,0xbd,0x79, - 0xf1,0x16,0xff,0xd6,0xd5,0x9e,0x39,0x3d,0xdd,0xbd, - 0xf3,0x7a,0x6f,0xf7,0xc5,0xf7,0xf5,0xdf,0x16,0xdd, - 0x7e,0x72,0x27,0xfd,0xce,0xcb,0xbb,0xd9,0x77,0x27, - 0xee,0xad,0xbc,0x4f,0xbc,0x5f,0xf4,0x40,0xed,0x41, - 0xd9,0x43,0xdd,0x87,0xd5,0x3f,0x5b,0xfe,0xdc,0xd8, - 0xef,0xdc,0x7f,0x6a,0xc0,0x77,0xa0,0xf3,0xd1,0xdc, - 0x47,0xf7,0x06,0x85,0x83,0xcf,0xfe,0x91,0xf5,0x8f, - 0x0f,0x43,0x05,0x8f,0x99,0x8f,0xcb,0x86,0x0d,0x86, - 0xeb,0x9e,0x38,0x3e,0x39,0x39,0xe2,0x3f,0x72,0xfd, - 0xe9,0xfc,0xa7,0x43,0xcf,0x64,0xcf,0x26,0x9e,0x17, - 0xfe,0xa2,0xfe,0xcb,0xae,0x17,0x16,0x2f,0x7e,0xf8, - 0xd5,0xeb,0xd7,0xce,0xd1,0x98,0xd1,0xa1,0x97,0xf2, - 0x97,0x93,0xbf,0x6d,0x7c,0xa5,0xfd,0xea,0xc0,0xeb, - 0x19,0xaf,0xdb,0xc6,0xc2,0xc6,0x1e,0xbe,0xc9,0x78, - 0x33,0x31,0x5e,0xf4,0x56,0xfb,0xed,0xc1,0x77,0xdc, - 0x77,0x1d,0xef,0xa3,0xdf,0x0f,0x4f,0xe4,0x7c,0x20, - 0x7f,0x28,0xff,0x68,0xf9,0xb1,0xf5,0x53,0xd0,0xa7, - 0xfb,0x93,0x19,0x93,0x93,0xff,0x04,0x03,0x98,0xf3, - 0xfc,0x63,0x33,0x2d,0xdb,0x00,0x00,0x00,0x04,0x67, - 0x41,0x4d,0x41,0x00,0x00,0xb1,0x8e,0x7c,0xfb,0x51, - 0x93,0x00,0x00,0x00,0x20,0x63,0x48,0x52,0x4d,0x00, - 0x00,0x7a,0x25,0x00,0x00,0x80,0x83,0x00,0x00,0xf9, - 0xff,0x00,0x00,0x80,0xe9,0x00,0x00,0x75,0x30,0x00, - 0x00,0xea,0x60,0x00,0x00,0x3a,0x98,0x00,0x00,0x17, - 0x6f,0x92,0x5f,0xc5,0x46,0x00,0x00,0x01,0xf3,0x49, - 0x44,0x41,0x54,0x78,0xda,0xec,0xd9,0xcf,0x8b,0x4d, - 0x61,0x1c,0xc7,0xf1,0xd7,0xb9,0xd7,0x8c,0x30,0x35, - 0x8b,0x49,0x29,0x51,0x16,0x58,0x29,0x5b,0x45,0x36, - 0x4a,0x4a,0xc2,0xce,0xc8,0xc2,0x50,0x36,0x62,0x85, - 0x44,0x93,0x94,0x14,0x26,0xa4,0xd4,0x14,0x0b,0x29, - 0x43,0x44,0x64,0xcf,0x4e,0x29,0x35,0x99,0x9d,0x0d, - 0x33,0x51,0x23,0x7f,0x80,0x1f,0xa5,0xc7,0xe6,0x5c, - 0x9d,0x6e,0xa7,0x71,0xcf,0x75,0xdc,0x7b,0x4e,0x9e, - 0x6f,0x9d,0xcd,0x73,0xce,0xf3,0x3d,0xdf,0xf7,0xf7, - 0xfb,0x3c,0x9f,0xf3,0x7d,0x3a,0x49,0x08,0x41,0x9d, - 0xad,0xa1,0xe6,0x16,0x01,0x22,0x40,0x04,0x88,0x00, - 0x11,0x20,0x02,0xfc,0x17,0xb6,0x18,0xcb,0x8a,0x4e, - 0x0a,0x21,0xe8,0xb2,0x55,0x19,0x2c,0xbb,0x02,0xbb, - 0x70,0xbc,0x87,0x09,0xbb,0x86,0x66,0x59,0xce,0xb6, - 0xe0,0x43,0xea,0xb4,0x57,0x15,0x98,0xc5,0x44,0x19, - 0xc1,0xaf,0xc7,0x4b,0x04,0x5c,0xec,0x31,0x40,0xc0, - 0xa1,0xbf,0x09,0x7e,0x04,0xb7,0x53,0x47,0xfd,0x02, - 0xf8,0x8e,0xcd,0xdd,0xec,0x81,0x45,0x38,0x86,0xb1, - 0x3e,0x8b,0xc7,0x20,0x1e,0x63,0x4d,0xd1,0x89,0x47, - 0x32,0x99,0xef,0x67,0x05,0x5a,0xd7,0x5b,0x0c,0xe7, - 0x3d,0x98,0xe4,0x8c,0xed,0xc6,0x5d,0x0c,0xb5,0x8d, - 0xcf,0xa7,0x9b,0x79,0xa0,0x83,0xac,0xcd,0x61,0x22, - 0x84,0xf0,0x02,0x92,0x24,0x19,0xc5,0xd6,0x02,0x00, - 0xa3,0x39,0xef,0x7f,0x86,0xbd,0xf8,0xb9,0xd0,0xc4, - 0x4d,0x78,0x97,0x93,0xfd,0xa2,0xd7,0x2c,0xf6,0x64, - 0x2a,0x70,0xb3,0x04,0x9f,0x01,0x97,0x16,0xda,0x03, - 0xeb,0x70,0x1e,0x6b,0x2b,0xfc,0x41,0x3d,0x81,0x03, - 0x79,0x00,0x23,0x38,0x85,0x6d,0x35,0xe8,0x0a,0x6e, - 0xa5,0x2b,0xe5,0x37,0x40,0x13,0x47,0x2b,0xa0,0x38, - 0x45,0x94,0xe9,0x29,0x56,0xb7,0x00,0xc6,0x70,0xae, - 0x66,0xbd,0xd9,0x72,0x3c,0xc7,0x50,0x03,0x07,0x6b, - 0xda,0x60,0x6e,0xc0,0x78,0x03,0xd7,0xf1,0xa3,0x86, - 0x00,0x9f,0x70,0xb9,0x81,0x07,0x38,0x59,0xb3,0xe0, - 0xbf,0x62,0x07,0xbe,0xb4,0x54,0x68,0x32,0x4f,0x63, - 0x2b,0x6c,0xfb,0x31,0x93,0x95,0xd1,0x6f,0xb8,0x8a, - 0xa9,0x1a,0x04,0x7f,0x16,0x4f,0xf2,0x3e,0x64,0xf3, - 0x69,0xbf,0xf3,0xaa,0xc2,0xc1,0xdf,0xc3,0x85,0xf6, - 0xae,0x33,0x6b,0x33,0x38,0x83,0x3b,0x58,0xd5,0x76, - 0x6f,0x3a,0x3d,0x1b,0x2c,0xfd,0xc3,0x4b,0x06,0xf0, - 0x19,0xef,0x33,0x63,0x73,0x78,0x53,0x50,0x61,0xda, - 0x8f,0x95,0xaf,0x71,0xb8,0x53,0x07,0xfb,0xd2,0x65, - 0x55,0x95,0x6e,0xf4,0x23,0x56,0x14,0x39,0x0f,0x4c, - 0xe1,0x74,0x85,0x14,0x67,0x67,0xba,0xc4,0x0b,0x1d, - 0xea,0x27,0x71,0xa5,0x22,0x8a,0x33,0xdd,0xed,0xe4, - 0x95,0x78,0xd4,0xc7,0x25,0x34,0x5e,0x46,0x06,0x36, - 0xa6,0x1b,0xf0,0x46,0x8f,0x01,0xee,0x97,0x59,0xc6, - 0xed,0x69,0xc7,0xda,0x2b,0x80,0x87,0x58,0x52,0x26, - 0x40,0x33,0x47,0x72,0xff,0x25,0xc0,0x70,0xa7,0x0f, - 0x26,0xf1,0x2f,0x65,0x04,0x88,0x00,0x11,0x20,0x02, - 0x44,0x80,0x08,0xd0,0x47,0xfb,0x35,0x00,0xaf,0x4a, - 0xca,0x1e,0xa2,0xb2,0x15,0xb6,0x00,0x00,0x00,0x00, - 0x49,0x45,0x4e,0x44,0xae,0x42,0x60,0x82 -}; diff --git a/data/converted/help_menu_png.cpp b/data/converted/help_menu_png.cpp deleted file mode 100644 index e6d88dba6..000000000 --- a/data/converted/help_menu_png.cpp +++ /dev/null @@ -1,351 +0,0 @@ -//this file was auto-generated from "menu.png" by res2h - -#include "../Resources.h" - -const size_t help_menu_png_size = 3431; -const unsigned char help_menu_png_data[3431] = { - 0x89,0x50,0x4e,0x47,0x0d,0x0a,0x1a,0x0a,0x00,0x00, - 0x00,0x0d,0x49,0x48,0x44,0x52,0x00,0x00,0x00,0x30, - 0x00,0x00,0x00,0x30,0x08,0x06,0x00,0x00,0x00,0x57, - 0x02,0xf9,0x87,0x00,0x00,0x00,0x09,0x70,0x48,0x59, - 0x73,0x00,0x00,0x0b,0x13,0x00,0x00,0x0b,0x13,0x01, - 0x00,0x9a,0x9c,0x18,0x00,0x00,0x0a,0x4f,0x69,0x43, - 0x43,0x50,0x50,0x68,0x6f,0x74,0x6f,0x73,0x68,0x6f, - 0x70,0x20,0x49,0x43,0x43,0x20,0x70,0x72,0x6f,0x66, - 0x69,0x6c,0x65,0x00,0x00,0x78,0xda,0x9d,0x53,0x67, - 0x54,0x53,0xe9,0x16,0x3d,0xf7,0xde,0xf4,0x42,0x4b, - 0x88,0x80,0x94,0x4b,0x6f,0x52,0x15,0x08,0x20,0x52, - 0x42,0x8b,0x80,0x14,0x91,0x26,0x2a,0x21,0x09,0x10, - 0x4a,0x88,0x21,0xa1,0xd9,0x15,0x51,0xc1,0x11,0x45, - 0x45,0x04,0x1b,0xc8,0xa0,0x88,0x03,0x8e,0x8e,0x80, - 0x8c,0x15,0x51,0x2c,0x0c,0x8a,0x0a,0xd8,0x07,0xe4, - 0x21,0xa2,0x8e,0x83,0xa3,0x88,0x8a,0xca,0xfb,0xe1, - 0x7b,0xa3,0x6b,0xd6,0xbc,0xf7,0xe6,0xcd,0xfe,0xb5, - 0xd7,0x3e,0xe7,0xac,0xf3,0x9d,0xb3,0xcf,0x07,0xc0, - 0x08,0x0c,0x96,0x48,0x33,0x51,0x35,0x80,0x0c,0xa9, - 0x42,0x1e,0x11,0xe0,0x83,0xc7,0xc4,0xc6,0xe1,0xe4, - 0x2e,0x40,0x81,0x0a,0x24,0x70,0x00,0x10,0x08,0xb3, - 0x64,0x21,0x73,0xfd,0x23,0x01,0x00,0xf8,0x7e,0x3c, - 0x3c,0x2b,0x22,0xc0,0x07,0xbe,0x00,0x01,0x78,0xd3, - 0x0b,0x08,0x00,0xc0,0x4d,0x9b,0xc0,0x30,0x1c,0x87, - 0xff,0x0f,0xea,0x42,0x99,0x5c,0x01,0x80,0x84,0x01, - 0xc0,0x74,0x91,0x38,0x4b,0x08,0x80,0x14,0x00,0x40, - 0x7a,0x8e,0x42,0xa6,0x00,0x40,0x46,0x01,0x80,0x9d, - 0x98,0x26,0x53,0x00,0xa0,0x04,0x00,0x60,0xcb,0x63, - 0x62,0xe3,0x00,0x50,0x2d,0x00,0x60,0x27,0x7f,0xe6, - 0xd3,0x00,0x80,0x9d,0xf8,0x99,0x7b,0x01,0x00,0x5b, - 0x94,0x21,0x15,0x01,0xa0,0x91,0x00,0x20,0x13,0x65, - 0x88,0x44,0x00,0x68,0x3b,0x00,0xac,0xcf,0x56,0x8a, - 0x45,0x00,0x58,0x30,0x00,0x14,0x66,0x4b,0xc4,0x39, - 0x00,0xd8,0x2d,0x00,0x30,0x49,0x57,0x66,0x48,0x00, - 0xb0,0xb7,0x00,0xc0,0xce,0x10,0x0b,0xb2,0x00,0x08, - 0x0c,0x00,0x30,0x51,0x88,0x85,0x29,0x00,0x04,0x7b, - 0x00,0x60,0xc8,0x23,0x23,0x78,0x00,0x84,0x99,0x00, - 0x14,0x46,0xf2,0x57,0x3c,0xf1,0x2b,0xae,0x10,0xe7, - 0x2a,0x00,0x00,0x78,0x99,0xb2,0x3c,0xb9,0x24,0x39, - 0x45,0x81,0x5b,0x08,0x2d,0x71,0x07,0x57,0x57,0x2e, - 0x1e,0x28,0xce,0x49,0x17,0x2b,0x14,0x36,0x61,0x02, - 0x61,0x9a,0x40,0x2e,0xc2,0x79,0x99,0x19,0x32,0x81, - 0x34,0x0f,0xe0,0xf3,0xcc,0x00,0x00,0xa0,0x91,0x15, - 0x11,0xe0,0x83,0xf3,0xfd,0x78,0xce,0x0e,0xae,0xce, - 0xce,0x36,0x8e,0xb6,0x0e,0x5f,0x2d,0xea,0xbf,0x06, - 0xff,0x22,0x62,0x62,0xe3,0xfe,0xe5,0xcf,0xab,0x70, - 0x40,0x00,0x00,0xe1,0x74,0x7e,0xd1,0xfe,0x2c,0x2f, - 0xb3,0x1a,0x80,0x3b,0x06,0x80,0x6d,0xfe,0xa2,0x25, - 0xee,0x04,0x68,0x5e,0x0b,0xa0,0x75,0xf7,0x8b,0x66, - 0xb2,0x0f,0x40,0xb5,0x00,0xa0,0xe9,0xda,0x57,0xf3, - 0x70,0xf8,0x7e,0x3c,0x3c,0x45,0xa1,0x90,0xb9,0xd9, - 0xd9,0xe5,0xe4,0xe4,0xd8,0x4a,0xc4,0x42,0x5b,0x61, - 0xca,0x57,0x7d,0xfe,0x67,0xc2,0x5f,0xc0,0x57,0xfd, - 0x6c,0xf9,0x7e,0x3c,0xfc,0xf7,0xf5,0xe0,0xbe,0xe2, - 0x24,0x81,0x32,0x5d,0x81,0x47,0x04,0xf8,0xe0,0xc2, - 0xcc,0xf4,0x4c,0xa5,0x1c,0xcf,0x92,0x09,0x84,0x62, - 0xdc,0xe6,0x8f,0x47,0xfc,0xb7,0x0b,0xff,0xfc,0x1d, - 0xd3,0x22,0xc4,0x49,0x62,0xb9,0x58,0x2a,0x14,0xe3, - 0x51,0x12,0x71,0x8e,0x44,0x9a,0x8c,0xf3,0x32,0xa5, - 0x22,0x89,0x42,0x92,0x29,0xc5,0x25,0xd2,0xff,0x64, - 0xe2,0xdf,0x2c,0xfb,0x03,0x3e,0xdf,0x35,0x00,0xb0, - 0x6a,0x3e,0x01,0x7b,0x91,0x2d,0xa8,0x5d,0x63,0x03, - 0xf6,0x4b,0x27,0x10,0x58,0x74,0xc0,0xe2,0xf7,0x00, - 0x00,0xf2,0xbb,0x6f,0xc1,0xd4,0x28,0x08,0x03,0x80, - 0x68,0x83,0xe1,0xcf,0x77,0xff,0xef,0x3f,0xfd,0x47, - 0xa0,0x25,0x00,0x80,0x66,0x49,0x92,0x71,0x00,0x00, - 0x5e,0x44,0x24,0x2e,0x54,0xca,0xb3,0x3f,0xc7,0x08, - 0x00,0x00,0x44,0xa0,0x81,0x2a,0xb0,0x41,0x1b,0xf4, - 0xc1,0x18,0x2c,0xc0,0x06,0x1c,0xc1,0x05,0xdc,0xc1, - 0x0b,0xfc,0x60,0x36,0x84,0x42,0x24,0xc4,0xc2,0x42, - 0x10,0x42,0x0a,0x64,0x80,0x1c,0x72,0x60,0x29,0xac, - 0x82,0x42,0x28,0x86,0xcd,0xb0,0x1d,0x2a,0x60,0x2f, - 0xd4,0x40,0x1d,0x34,0xc0,0x51,0x68,0x86,0x93,0x70, - 0x0e,0x2e,0xc2,0x55,0xb8,0x0e,0x3d,0x70,0x0f,0xfa, - 0x61,0x08,0x9e,0xc1,0x28,0xbc,0x81,0x09,0x04,0x41, - 0xc8,0x08,0x13,0x61,0x21,0xda,0x88,0x01,0x62,0x8a, - 0x58,0x23,0x8e,0x08,0x17,0x99,0x85,0xf8,0x21,0xc1, - 0x48,0x04,0x12,0x8b,0x24,0x20,0xc9,0x88,0x14,0x51, - 0x22,0x4b,0x91,0x35,0x48,0x31,0x52,0x8a,0x54,0x20, - 0x55,0x48,0x1d,0xf2,0x3d,0x72,0x02,0x39,0x87,0x5c, - 0x46,0xba,0x91,0x3b,0xc8,0x00,0x32,0x82,0xfc,0x86, - 0xbc,0x47,0x31,0x94,0x81,0xb2,0x51,0x3d,0xd4,0x0c, - 0xb5,0x43,0xb9,0xa8,0x37,0x1a,0x84,0x46,0xa2,0x0b, - 0xd0,0x64,0x74,0x31,0x9a,0x8f,0x16,0xa0,0x9b,0xd0, - 0x72,0xb4,0x1a,0x3d,0x8c,0x36,0xa1,0xe7,0xd0,0xab, - 0x68,0x0f,0xda,0x8f,0x3e,0x43,0xc7,0x30,0xc0,0xe8, - 0x18,0x07,0x33,0xc4,0x6c,0x30,0x2e,0xc6,0xc3,0x42, - 0xb1,0x38,0x2c,0x09,0x93,0x63,0xcb,0xb1,0x22,0xac, - 0x0c,0xab,0xc6,0x1a,0xb0,0x56,0xac,0x03,0xbb,0x89, - 0xf5,0x63,0xcf,0xb1,0x77,0x04,0x12,0x81,0x45,0xc0, - 0x09,0x36,0x04,0x77,0x42,0x20,0x61,0x1e,0x41,0x48, - 0x58,0x4c,0x58,0x4e,0xd8,0x48,0xa8,0x20,0x1c,0x24, - 0x34,0x11,0xda,0x09,0x37,0x09,0x03,0x84,0x51,0xc2, - 0x27,0x22,0x93,0xa8,0x4b,0xb4,0x26,0xba,0x11,0xf9, - 0xc4,0x18,0x62,0x32,0x31,0x87,0x58,0x48,0x2c,0x23, - 0xd6,0x12,0x8f,0x13,0x2f,0x10,0x7b,0x88,0x43,0xc4, - 0x37,0x24,0x12,0x89,0x43,0x32,0x27,0xb9,0x90,0x02, - 0x49,0xb1,0xa4,0x54,0xd2,0x12,0xd2,0x46,0xd2,0x6e, - 0x52,0x23,0xe9,0x2c,0xa9,0x9b,0x34,0x48,0x1a,0x23, - 0x93,0xc9,0xda,0x64,0x6b,0xb2,0x07,0x39,0x94,0x2c, - 0x20,0x2b,0xc8,0x85,0xe4,0x9d,0xe4,0xc3,0xe4,0x33, - 0xe4,0x1b,0xe4,0x21,0xf2,0x5b,0x0a,0x9d,0x62,0x40, - 0x71,0xa4,0xf8,0x53,0xe2,0x28,0x52,0xca,0x6a,0x4a, - 0x19,0xe5,0x10,0xe5,0x34,0xe5,0x06,0x65,0x98,0x32, - 0x41,0x55,0xa3,0x9a,0x52,0xdd,0xa8,0xa1,0x54,0x11, - 0x35,0x8f,0x5a,0x42,0xad,0xa1,0xb6,0x52,0xaf,0x51, - 0x87,0xa8,0x13,0x34,0x75,0x9a,0x39,0xcd,0x83,0x16, - 0x49,0x4b,0xa5,0xad,0xa2,0x95,0xd3,0x1a,0x68,0x17, - 0x68,0xf7,0x69,0xaf,0xe8,0x74,0xba,0x11,0xdd,0x95, - 0x1e,0x4e,0x97,0xd0,0x57,0xd2,0xcb,0xe9,0x47,0xe8, - 0x97,0xe8,0x03,0xf4,0x77,0x0c,0x0d,0x86,0x15,0x83, - 0xc7,0x88,0x67,0x28,0x19,0x9b,0x18,0x07,0x18,0x67, - 0x19,0x77,0x18,0xaf,0x98,0x4c,0xa6,0x19,0xd3,0x8b, - 0x19,0xc7,0x54,0x30,0x37,0x31,0xeb,0x98,0xe7,0x99, - 0x0f,0x99,0x6f,0x55,0x58,0x2a,0xb6,0x2a,0x7c,0x15, - 0x91,0xca,0x0a,0x95,0x4a,0x95,0x26,0x95,0x1b,0x2a, - 0x2f,0x54,0xa9,0xaa,0xa6,0xaa,0xde,0xaa,0x0b,0x55, - 0xf3,0x55,0xcb,0x54,0x8f,0xa9,0x5e,0x53,0x7d,0xae, - 0x46,0x55,0x33,0x53,0xe3,0xa9,0x09,0xd4,0x96,0xab, - 0x55,0xaa,0x9d,0x50,0xeb,0x53,0x1b,0x53,0x67,0xa9, - 0x3b,0xa8,0x87,0xaa,0x67,0xa8,0x6f,0x54,0x3f,0xa4, - 0x7e,0x59,0xfd,0x89,0x06,0x59,0xc3,0x4c,0xc3,0x4f, - 0x43,0xa4,0x51,0xa0,0xb1,0x5f,0xe3,0xbc,0xc6,0x20, - 0x0b,0x63,0x19,0xb3,0x78,0x2c,0x21,0x6b,0x0d,0xab, - 0x86,0x75,0x81,0x35,0xc4,0x26,0xb1,0xcd,0xd9,0x7c, - 0x76,0x2a,0xbb,0x98,0xfd,0x1d,0xbb,0x8b,0x3d,0xaa, - 0xa9,0xa1,0x39,0x43,0x33,0x4a,0x33,0x57,0xb3,0x52, - 0xf3,0x94,0x66,0x3f,0x07,0xe3,0x98,0x71,0xf8,0x9c, - 0x74,0x4e,0x09,0xe7,0x28,0xa7,0x97,0xf3,0x7e,0x8a, - 0xde,0x14,0xef,0x29,0xe2,0x29,0x1b,0xa6,0x34,0x4c, - 0xb9,0x31,0x65,0x5c,0x6b,0xaa,0x96,0x97,0x96,0x58, - 0xab,0x48,0xab,0x51,0xab,0x47,0xeb,0xbd,0x36,0xae, - 0xed,0xa7,0x9d,0xa6,0xbd,0x45,0xbb,0x59,0xfb,0x81, - 0x0e,0x41,0xc7,0x4a,0x27,0x5c,0x27,0x47,0x67,0x8f, - 0xce,0x05,0x9d,0xe7,0x53,0xd9,0x53,0xdd,0xa7,0x0a, - 0xa7,0x16,0x4d,0x3d,0x3a,0xf5,0xae,0x2e,0xaa,0x6b, - 0xa5,0x1b,0xa1,0xbb,0x44,0x77,0xbf,0x6e,0xa7,0xee, - 0x98,0x9e,0xbe,0x5e,0x80,0x9e,0x4c,0x6f,0xa7,0xde, - 0x79,0xbd,0xe7,0xfa,0x1c,0x7d,0x2f,0xfd,0x54,0xfd, - 0x6d,0xfa,0xa7,0xf5,0x47,0x0c,0x58,0x06,0xb3,0x0c, - 0x24,0x06,0xdb,0x0c,0xce,0x18,0x3c,0xc5,0x35,0x71, - 0x6f,0x3c,0x1d,0x2f,0xc7,0xdb,0xf1,0x51,0x43,0x5d, - 0xc3,0x40,0x43,0xa5,0x61,0x95,0x61,0x97,0xe1,0x84, - 0x91,0xb9,0xd1,0x3c,0xa3,0xd5,0x46,0x8d,0x46,0x0f, - 0x8c,0x69,0xc6,0x5c,0xe3,0x24,0xe3,0x6d,0xc6,0x6d, - 0xc6,0xa3,0x26,0x06,0x26,0x21,0x26,0x4b,0x4d,0xea, - 0x4d,0xee,0x9a,0x52,0x4d,0xb9,0xa6,0x29,0xa6,0x3b, - 0x4c,0x3b,0x4c,0xc7,0xcd,0xcc,0xcd,0xa2,0xcd,0xd6, - 0x99,0x35,0x9b,0x3d,0x31,0xd7,0x32,0xe7,0x9b,0xe7, - 0x9b,0xd7,0x9b,0xdf,0xb7,0x60,0x5a,0x78,0x5a,0x2c, - 0xb6,0xa8,0xb6,0xb8,0x65,0x49,0xb2,0xe4,0x5a,0xa6, - 0x59,0xee,0xb6,0xbc,0x6e,0x85,0x5a,0x39,0x59,0xa5, - 0x58,0x55,0x5a,0x5d,0xb3,0x46,0xad,0x9d,0xad,0x25, - 0xd6,0xbb,0xad,0xbb,0xa7,0x11,0xa7,0xb9,0x4e,0x93, - 0x4e,0xab,0x9e,0xd6,0x67,0xc3,0xb0,0xf1,0xb6,0xc9, - 0xb6,0xa9,0xb7,0x19,0xb0,0xe5,0xd8,0x06,0xdb,0xae, - 0xb6,0x6d,0xb6,0x7d,0x61,0x67,0x62,0x17,0x67,0xb7, - 0xc5,0xae,0xc3,0xee,0x93,0xbd,0x93,0x7d,0xba,0x7d, - 0x8d,0xfd,0x3d,0x07,0x0d,0x87,0xd9,0x0e,0xab,0x1d, - 0x5a,0x1d,0x7e,0x73,0xb4,0x72,0x14,0x3a,0x56,0x3a, - 0xde,0x9a,0xce,0x9c,0xee,0x3f,0x7d,0xc5,0xf4,0x96, - 0xe9,0x2f,0x67,0x58,0xcf,0x10,0xcf,0xd8,0x33,0xe3, - 0xb6,0x13,0xcb,0x29,0xc4,0x69,0x9d,0x53,0x9b,0xd3, - 0x47,0x67,0x17,0x67,0xb9,0x73,0x83,0xf3,0x88,0x8b, - 0x89,0x4b,0x82,0xcb,0x2e,0x97,0x3e,0x2e,0x9b,0x1b, - 0xc6,0xdd,0xc8,0xbd,0xe4,0x4a,0x74,0xf5,0x71,0x5d, - 0xe1,0x7a,0xd2,0xf5,0x9d,0x9b,0xb3,0x9b,0xc2,0xed, - 0xa8,0xdb,0xaf,0xee,0x36,0xee,0x69,0xee,0x87,0xdc, - 0x9f,0xcc,0x34,0x9f,0x29,0x9e,0x59,0x33,0x73,0xd0, - 0xc3,0xc8,0x43,0xe0,0x51,0xe5,0xd1,0x3f,0x0b,0x9f, - 0x95,0x30,0x6b,0xdf,0xac,0x7e,0x4f,0x43,0x4f,0x81, - 0x67,0xb5,0xe7,0x23,0x2f,0x63,0x2f,0x91,0x57,0xad, - 0xd7,0xb0,0xb7,0xa5,0x77,0xaa,0xf7,0x61,0xef,0x17, - 0x3e,0xf6,0x3e,0x72,0x9f,0xe3,0x3e,0xe3,0x3c,0x37, - 0xde,0x32,0xde,0x59,0x5f,0xcc,0x37,0xc0,0xb7,0xc8, - 0xb7,0xcb,0x4f,0xc3,0x6f,0x9e,0x5f,0x85,0xdf,0x43, - 0x7f,0x23,0xff,0x64,0xff,0x7a,0xff,0xd1,0x00,0xa7, - 0x80,0x25,0x01,0x67,0x03,0x89,0x81,0x41,0x81,0x5b, - 0x02,0xfb,0xf8,0x7a,0x7c,0x21,0xbf,0x8e,0x3f,0x3a, - 0xdb,0x65,0xf6,0xb2,0xd9,0xed,0x41,0x8c,0xa0,0xb9, - 0x41,0x15,0x41,0x8f,0x82,0xad,0x82,0xe5,0xc1,0xad, - 0x21,0x68,0xc8,0xec,0x90,0xad,0x21,0xf7,0xe7,0x98, - 0xce,0x91,0xce,0x69,0x0e,0x85,0x50,0x7e,0xe8,0xd6, - 0xd0,0x07,0x61,0xe6,0x61,0x8b,0xc3,0x7e,0x0c,0x27, - 0x85,0x87,0x85,0x57,0x86,0x3f,0x8e,0x70,0x88,0x58, - 0x1a,0xd1,0x31,0x97,0x35,0x77,0xd1,0xdc,0x43,0x73, - 0xdf,0x44,0xfa,0x44,0x96,0x44,0xde,0x9b,0x67,0x31, - 0x4f,0x39,0xaf,0x2d,0x4a,0x35,0x2a,0x3e,0xaa,0x2e, - 0x6a,0x3c,0xda,0x37,0xba,0x34,0xba,0x3f,0xc6,0x2e, - 0x66,0x59,0xcc,0xd5,0x58,0x9d,0x58,0x49,0x6c,0x4b, - 0x1c,0x39,0x2e,0x2a,0xae,0x36,0x6e,0x6c,0xbe,0xdf, - 0xfc,0xed,0xf3,0x87,0xe2,0x9d,0xe2,0x0b,0xe3,0x7b, - 0x17,0x98,0x2f,0xc8,0x5d,0x70,0x79,0xa1,0xce,0xc2, - 0xf4,0x85,0xa7,0x16,0xa9,0x2e,0x12,0x2c,0x3a,0x96, - 0x40,0x4c,0x88,0x4e,0x38,0x94,0xf0,0x41,0x10,0x2a, - 0xa8,0x16,0x8c,0x25,0xf2,0x13,0x77,0x25,0x8e,0x0a, - 0x79,0xc2,0x1d,0xc2,0x67,0x22,0x2f,0xd1,0x36,0xd1, - 0x88,0xd8,0x43,0x5c,0x2a,0x1e,0x4e,0xf2,0x48,0x2a, - 0x4d,0x7a,0x92,0xec,0x91,0xbc,0x35,0x79,0x24,0xc5, - 0x33,0xa5,0x2c,0xe5,0xb9,0x84,0x27,0xa9,0x90,0xbc, - 0x4c,0x0d,0x4c,0xdd,0x9b,0x3a,0x9e,0x16,0x9a,0x76, - 0x20,0x6d,0x32,0x3d,0x3a,0xbd,0x31,0x83,0x92,0x91, - 0x90,0x71,0x42,0xaa,0x21,0x4d,0x93,0xb6,0x67,0xea, - 0x67,0xe6,0x66,0x76,0xcb,0xac,0x65,0x85,0xb2,0xfe, - 0xc5,0x6e,0x8b,0xb7,0x2f,0x1e,0x95,0x07,0xc9,0x6b, - 0xb3,0x90,0xac,0x05,0x59,0x2d,0x0a,0xb6,0x42,0xa6, - 0xe8,0x54,0x5a,0x28,0xd7,0x2a,0x07,0xb2,0x67,0x65, - 0x57,0x66,0xbf,0xcd,0x89,0xca,0x39,0x96,0xab,0x9e, - 0x2b,0xcd,0xed,0xcc,0xb3,0xca,0xdb,0x90,0x37,0x9c, - 0xef,0x9f,0xff,0xed,0x12,0xc2,0x12,0xe1,0x92,0xb6, - 0xa5,0x86,0x4b,0x57,0x2d,0x1d,0x58,0xe6,0xbd,0xac, - 0x6a,0x39,0xb2,0x3c,0x71,0x79,0xdb,0x0a,0xe3,0x15, - 0x05,0x2b,0x86,0x56,0x06,0xac,0x3c,0xb8,0x8a,0xb6, - 0x2a,0x6d,0xd5,0x4f,0xab,0xed,0x57,0x97,0xae,0x7e, - 0xbd,0x26,0x7a,0x4d,0x6b,0x81,0x5e,0xc1,0xca,0x82, - 0xc1,0xb5,0x01,0x6b,0xeb,0x0b,0x55,0x0a,0xe5,0x85, - 0x7d,0xeb,0xdc,0xd7,0xed,0x5d,0x4f,0x58,0x2f,0x59, - 0xdf,0xb5,0x61,0xfa,0x86,0x9d,0x1b,0x3e,0x15,0x89, - 0x8a,0xae,0x14,0xdb,0x17,0x97,0x15,0x7f,0xd8,0x28, - 0xdc,0x78,0xe5,0x1b,0x87,0x6f,0xca,0xbf,0x99,0xdc, - 0x94,0xb4,0xa9,0xab,0xc4,0xb9,0x64,0xcf,0x66,0xd2, - 0x66,0xe9,0xe6,0xde,0x2d,0x9e,0x5b,0x0e,0x96,0xaa, - 0x97,0xe6,0x97,0x0e,0x6e,0x0d,0xd9,0xda,0xb4,0x0d, - 0xdf,0x56,0xb4,0xed,0xf5,0xf6,0x45,0xdb,0x2f,0x97, - 0xcd,0x28,0xdb,0xbb,0x83,0xb6,0x43,0xb9,0xa3,0xbf, - 0x3c,0xb8,0xbc,0x65,0xa7,0xc9,0xce,0xcd,0x3b,0x3f, - 0x54,0xa4,0x54,0xf4,0x54,0xfa,0x54,0x36,0xee,0xd2, - 0xdd,0xb5,0x61,0xd7,0xf8,0x6e,0xd1,0xee,0x1b,0x7b, - 0xbc,0xf6,0x34,0xec,0xd5,0xdb,0x5b,0xbc,0xf7,0xfd, - 0x3e,0xc9,0xbe,0xdb,0x55,0x01,0x55,0x4d,0xd5,0x66, - 0xd5,0x65,0xfb,0x49,0xfb,0xb3,0xf7,0x3f,0xae,0x89, - 0xaa,0xe9,0xf8,0x96,0xfb,0x6d,0x5d,0xad,0x4e,0x6d, - 0x71,0xed,0xc7,0x03,0xd2,0x03,0xfd,0x07,0x23,0x0e, - 0xb6,0xd7,0xb9,0xd4,0xd5,0x1d,0xd2,0x3d,0x54,0x52, - 0x8f,0xd6,0x2b,0xeb,0x47,0x0e,0xc7,0x1f,0xbe,0xfe, - 0x9d,0xef,0x77,0x2d,0x0d,0x36,0x0d,0x55,0x8d,0x9c, - 0xc6,0xe2,0x23,0x70,0x44,0x79,0xe4,0xe9,0xf7,0x09, - 0xdf,0xf7,0x1e,0x0d,0x3a,0xda,0x76,0x8c,0x7b,0xac, - 0xe1,0x07,0xd3,0x1f,0x76,0x1d,0x67,0x1d,0x2f,0x6a, - 0x42,0x9a,0xf2,0x9a,0x46,0x9b,0x53,0x9a,0xfb,0x5b, - 0x62,0x5b,0xba,0x4f,0xcc,0x3e,0xd1,0xd6,0xea,0xde, - 0x7a,0xfc,0x47,0xdb,0x1f,0x0f,0x9c,0x34,0x3c,0x59, - 0x79,0x4a,0xf3,0x54,0xc9,0x69,0xda,0xe9,0x82,0xd3, - 0x93,0x67,0xf2,0xcf,0x8c,0x9d,0x95,0x9d,0x7d,0x7e, - 0x2e,0xf9,0xdc,0x60,0xdb,0xa2,0xb6,0x7b,0xe7,0x63, - 0xce,0xdf,0x6a,0x0f,0x6f,0xef,0xba,0x10,0x74,0xe1, - 0xd2,0x45,0xff,0x8b,0xe7,0x3b,0xbc,0x3b,0xce,0x5c, - 0xf2,0xb8,0x74,0xf2,0xb2,0xdb,0xe5,0x13,0x57,0xb8, - 0x57,0x9a,0xaf,0x3a,0x5f,0x6d,0xea,0x74,0xea,0x3c, - 0xfe,0x93,0xd3,0x4f,0xc7,0xbb,0x9c,0xbb,0x9a,0xae, - 0xb9,0x5c,0x6b,0xb9,0xee,0x7a,0xbd,0xb5,0x7b,0x66, - 0xf7,0xe9,0x1b,0x9e,0x37,0xce,0xdd,0xf4,0xbd,0x79, - 0xf1,0x16,0xff,0xd6,0xd5,0x9e,0x39,0x3d,0xdd,0xbd, - 0xf3,0x7a,0x6f,0xf7,0xc5,0xf7,0xf5,0xdf,0x16,0xdd, - 0x7e,0x72,0x27,0xfd,0xce,0xcb,0xbb,0xd9,0x77,0x27, - 0xee,0xad,0xbc,0x4f,0xbc,0x5f,0xf4,0x40,0xed,0x41, - 0xd9,0x43,0xdd,0x87,0xd5,0x3f,0x5b,0xfe,0xdc,0xd8, - 0xef,0xdc,0x7f,0x6a,0xc0,0x77,0xa0,0xf3,0xd1,0xdc, - 0x47,0xf7,0x06,0x85,0x83,0xcf,0xfe,0x91,0xf5,0x8f, - 0x0f,0x43,0x05,0x8f,0x99,0x8f,0xcb,0x86,0x0d,0x86, - 0xeb,0x9e,0x38,0x3e,0x39,0x39,0xe2,0x3f,0x72,0xfd, - 0xe9,0xfc,0xa7,0x43,0xcf,0x64,0xcf,0x26,0x9e,0x17, - 0xfe,0xa2,0xfe,0xcb,0xae,0x17,0x16,0x2f,0x7e,0xf8, - 0xd5,0xeb,0xd7,0xce,0xd1,0x98,0xd1,0xa1,0x97,0xf2, - 0x97,0x93,0xbf,0x6d,0x7c,0xa5,0xfd,0xea,0xc0,0xeb, - 0x19,0xaf,0xdb,0xc6,0xc2,0xc6,0x1e,0xbe,0xc9,0x78, - 0x33,0x31,0x5e,0xf4,0x56,0xfb,0xed,0xc1,0x77,0xdc, - 0x77,0x1d,0xef,0xa3,0xdf,0x0f,0x4f,0xe4,0x7c,0x20, - 0x7f,0x28,0xff,0x68,0xf9,0xb1,0xf5,0x53,0xd0,0xa7, - 0xfb,0x93,0x19,0x93,0x93,0xff,0x04,0x03,0x98,0xf3, - 0xfc,0x63,0x33,0x2d,0xdb,0x00,0x00,0x00,0x04,0x67, - 0x41,0x4d,0x41,0x00,0x00,0xb1,0x8e,0x7c,0xfb,0x51, - 0x93,0x00,0x00,0x00,0x20,0x63,0x48,0x52,0x4d,0x00, - 0x00,0x7a,0x25,0x00,0x00,0x80,0x83,0x00,0x00,0xf9, - 0xff,0x00,0x00,0x80,0xe9,0x00,0x00,0x75,0x30,0x00, - 0x00,0xea,0x60,0x00,0x00,0x3a,0x98,0x00,0x00,0x17, - 0x6f,0x92,0x5f,0xc5,0x46,0x00,0x00,0x02,0x82,0x49, - 0x44,0x41,0x54,0x78,0xda,0xec,0x99,0xbf,0x8b,0x14, - 0x31,0x14,0xc7,0xbf,0xab,0x72,0x95,0x70,0xc4,0xca, - 0xd6,0xfc,0x05,0x07,0x5b,0x5d,0x9f,0x42,0x10,0x0e, - 0x04,0x17,0x41,0xb0,0x9d,0x7f,0x21,0xb5,0x5d,0xae, - 0x16,0x84,0x6c,0x6f,0x93,0x6d,0xb5,0xca,0x16,0x07, - 0x82,0x72,0x90,0x41,0xd9,0x7e,0x07,0xac,0x85,0x6c, - 0x27,0x08,0xca,0xf7,0x0a,0x2f,0x61,0x66,0x6e,0x57, - 0x16,0x5d,0xb9,0x19,0xc8,0x83,0xb7,0xcc,0xe6,0xe7, - 0xfb,0x4c,0x92,0xf7,0x5e,0x98,0x09,0x49,0x8c,0x59, - 0xee,0x60,0xe4,0x52,0x00,0x0a,0x40,0x01,0x28,0x00, - 0x05,0xa0,0x00,0x14,0x80,0x02,0xf0,0x0f,0x72,0x2f, - 0x3d,0x4c,0x26,0x93,0x6d,0xf5,0x53,0x00,0x67,0x00, - 0x1e,0xde,0xa2,0x8d,0xdf,0x00,0xbc,0x07,0xf0,0xa9, - 0x5f,0x41,0xf2,0xf7,0xcf,0x96,0x8c,0xf4,0x04,0xc0, - 0x07,0x00,0x1c,0x90,0x06,0x00,0xa7,0xfb,0x00,0x3c, - 0x05,0xf0,0x7d,0x60,0xc6,0x27,0xfd,0x01,0xe0,0xe5, - 0x9f,0x00,0x4e,0xaf,0x1b,0x71,0xc0,0xfa,0x13,0xc0, - 0xe3,0x6d,0x00,0x77,0x01,0xac,0x06,0x6e,0x7c,0xd2, - 0xaf,0x00,0x8e,0xfa,0x00,0x4f,0x46,0x62,0x7c,0xd2, - 0x17,0x24,0x3b,0x6e,0xf4,0x2c,0x3d,0x54,0x55,0x05, - 0xef,0x3d,0xbc,0xf7,0x50,0x4a,0xc1,0x39,0x87,0x18, - 0x23,0xbc,0xf7,0x90,0x52,0x42,0x6b,0x0d,0xe7,0x1c, - 0x48,0x42,0x6b,0xdd,0x75,0x5b,0xd3,0x29,0xac,0xb5, - 0x30,0xc6,0xc0,0x39,0x07,0x6b,0x2d,0x84,0x10,0x00, - 0x00,0x63,0x0c,0xbc,0xf7,0x30,0xc6,0x40,0x6b,0x0d, - 0x6b,0x6d,0x1e,0xb7,0x3d,0xb7,0x73,0x2e,0x97,0x49, - 0x29,0x3b,0xfd,0x5a,0xf2,0x2c,0x1f,0x84,0xeb,0x15, - 0xe8,0x78,0x1d,0xe7,0x1c,0x49,0xb2,0xaa,0x2a,0x02, - 0xa0,0x52,0x8a,0x24,0x19,0x42,0xa0,0x10,0x82,0x00, - 0xa8,0xb5,0x26,0x49,0x4a,0x29,0x09,0x80,0x42,0x08, - 0xc6,0x18,0x39,0x9d,0x4e,0xf3,0x38,0x21,0x04,0x5a, - 0x6b,0x73,0xfd,0x7a,0xbd,0xee,0xb4,0x49,0xe3,0xa6, - 0x79,0xda,0x73,0xa7,0xff,0xa9,0x9f,0xf7,0xbe,0xbd, - 0x02,0xab,0xfe,0x0a,0x1c,0xb7,0xf1,0xea,0xba,0x06, - 0x00,0xcc,0xe7,0x73,0x00,0xc0,0x72,0xb9,0x04,0x00, - 0x2c,0x16,0x0b,0x6c,0x36,0x9b,0x4e,0x1b,0x29,0x65, - 0x7e,0x7b,0x4d,0xd3,0xe4,0xf2,0xd4,0x7e,0x36,0x9b, - 0x01,0x00,0x36,0x9b,0x4d,0xae,0x4f,0x6d,0xd2,0xb8, - 0x69,0x95,0xda,0xe3,0x26,0x49,0xfd,0x7a,0x72,0xdc, - 0x09,0x64,0x87,0x10,0xa5,0x14,0x84,0x10,0x9d,0x6d, - 0x25,0xa5,0xbc,0x61,0xd0,0x7f,0x89,0xc4,0x87,0x92, - 0xa6,0x69,0x70,0x7e,0x7e,0x3e,0xce,0x5c,0xa8,0xae, - 0x6b,0x28,0xa5,0x6e,0x94,0xa7,0x2d,0x36,0x78,0x80, - 0x74,0x5e,0xfa,0x9e,0xc9,0x18,0xd3,0xd9,0xe3,0xfb, - 0x4a,0xea,0x23,0x84,0xd8,0xfd,0x12,0x5a,0x5e,0xe8, - 0x73,0x3a,0xe1,0x55,0x55,0x31,0x84,0x40,0x92,0x74, - 0xce,0x51,0x4a,0x49,0x63,0x0c,0x49,0x32,0xc6,0x48, - 0xa5,0x14,0xa5,0x94,0xd9,0x5b,0x84,0x10,0xa8,0x94, - 0xca,0x7d,0x63,0x8c,0xb4,0xd6,0x52,0x6b,0x4d,0x6b, - 0x6d,0xf6,0x38,0x5a,0x6b,0xc6,0x18,0x49,0x92,0xc6, - 0x98,0xad,0xe3,0xb6,0xbd,0x59,0x08,0x81,0x5a,0x6b, - 0x1a,0x63,0xb2,0x3d,0xc6,0x98,0xe4,0x85,0x9a,0x7e, - 0x20,0x7b,0x77,0xc8,0x40,0xa3,0x94,0xca,0x06,0xfd, - 0x8d,0x0a,0x21,0xa8,0x94,0xea,0xb8,0xe4,0x9e,0x7e, - 0xec,0x03,0xbc,0x1a,0x59,0x24,0x7e,0xd3,0x07,0x78, - 0x34,0x82,0x44,0xae,0xad,0x27,0xdb,0xb2,0xd1,0xd7, - 0x23,0x31,0xfe,0xed,0xae,0x74,0xfa,0x08,0xc0,0xe5, - 0xc0,0x8d,0x5f,0xa5,0x28,0xbc,0xeb,0x42,0x73,0xff, - 0xd0,0x07,0xfa,0x80,0x7a,0x01,0xe0,0xc1,0x3e,0x57, - 0xca,0x94,0x9d,0x5e,0x0c,0xc4,0xf0,0x4b,0x00,0xcf, - 0xb7,0x85,0x80,0x49,0x32,0x7e,0xc7,0xa5,0xbe,0x7d, - 0xb9,0xbf,0x2d,0xf9,0x02,0xe0,0xd7,0xae,0x18,0x36, - 0x29,0x9f,0x98,0x0a,0x40,0x01,0x28,0x00,0x05,0xa0, - 0x00,0x14,0x80,0x02,0x50,0x00,0xc6,0x2b,0x57,0x03, - 0x00,0x37,0x31,0xc0,0xa1,0xa9,0x5d,0x0e,0xee,0x00, - 0x00,0x00,0x00,0x49,0x45,0x4e,0x44,0xae,0x42,0x60, - 0x82 -}; diff --git a/data/converted/help_r_png.cpp b/data/converted/help_r_png.cpp new file mode 100644 index 000000000..33de5f230 --- /dev/null +++ b/data/converted/help_r_png.cpp @@ -0,0 +1,157 @@ +//this file was auto-generated from "r.png" by res2h + +#include "../Resources.h" + +const size_t help_r_png_size = 1495; +const unsigned char help_r_png_data[1495] = { + 0x89,0x50,0x4e,0x47,0x0d,0x0a,0x1a,0x0a,0x00,0x00, + 0x00,0x0d,0x49,0x48,0x44,0x52,0x00,0x00,0x00,0x28, + 0x00,0x00,0x00,0x13,0x08,0x06,0x00,0x00,0x00,0xe2, + 0x43,0x4f,0x03,0x00,0x00,0x00,0x19,0x74,0x45,0x58, + 0x74,0x53,0x6f,0x66,0x74,0x77,0x61,0x72,0x65,0x00, + 0x41,0x64,0x6f,0x62,0x65,0x20,0x49,0x6d,0x61,0x67, + 0x65,0x52,0x65,0x61,0x64,0x79,0x71,0xc9,0x65,0x3c, + 0x00,0x00,0x03,0x68,0x69,0x54,0x58,0x74,0x58,0x4d, + 0x4c,0x3a,0x63,0x6f,0x6d,0x2e,0x61,0x64,0x6f,0x62, + 0x65,0x2e,0x78,0x6d,0x70,0x00,0x00,0x00,0x00,0x00, + 0x3c,0x3f,0x78,0x70,0x61,0x63,0x6b,0x65,0x74,0x20, + 0x62,0x65,0x67,0x69,0x6e,0x3d,0x22,0xef,0xbb,0xbf, + 0x22,0x20,0x69,0x64,0x3d,0x22,0x57,0x35,0x4d,0x30, + 0x4d,0x70,0x43,0x65,0x68,0x69,0x48,0x7a,0x72,0x65, + 0x53,0x7a,0x4e,0x54,0x63,0x7a,0x6b,0x63,0x39,0x64, + 0x22,0x3f,0x3e,0x20,0x3c,0x78,0x3a,0x78,0x6d,0x70, + 0x6d,0x65,0x74,0x61,0x20,0x78,0x6d,0x6c,0x6e,0x73, + 0x3a,0x78,0x3d,0x22,0x61,0x64,0x6f,0x62,0x65,0x3a, + 0x6e,0x73,0x3a,0x6d,0x65,0x74,0x61,0x2f,0x22,0x20, + 0x78,0x3a,0x78,0x6d,0x70,0x74,0x6b,0x3d,0x22,0x41, + 0x64,0x6f,0x62,0x65,0x20,0x58,0x4d,0x50,0x20,0x43, + 0x6f,0x72,0x65,0x20,0x35,0x2e,0x33,0x2d,0x63,0x30, + 0x31,0x31,0x20,0x36,0x36,0x2e,0x31,0x34,0x35,0x36, + 0x36,0x31,0x2c,0x20,0x32,0x30,0x31,0x32,0x2f,0x30, + 0x32,0x2f,0x30,0x36,0x2d,0x31,0x34,0x3a,0x35,0x36, + 0x3a,0x32,0x37,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x22,0x3e,0x20,0x3c,0x72,0x64,0x66,0x3a,0x52, + 0x44,0x46,0x20,0x78,0x6d,0x6c,0x6e,0x73,0x3a,0x72, + 0x64,0x66,0x3d,0x22,0x68,0x74,0x74,0x70,0x3a,0x2f, + 0x2f,0x77,0x77,0x77,0x2e,0x77,0x33,0x2e,0x6f,0x72, + 0x67,0x2f,0x31,0x39,0x39,0x39,0x2f,0x30,0x32,0x2f, + 0x32,0x32,0x2d,0x72,0x64,0x66,0x2d,0x73,0x79,0x6e, + 0x74,0x61,0x78,0x2d,0x6e,0x73,0x23,0x22,0x3e,0x20, + 0x3c,0x72,0x64,0x66,0x3a,0x44,0x65,0x73,0x63,0x72, + 0x69,0x70,0x74,0x69,0x6f,0x6e,0x20,0x72,0x64,0x66, + 0x3a,0x61,0x62,0x6f,0x75,0x74,0x3d,0x22,0x22,0x20, + 0x78,0x6d,0x6c,0x6e,0x73,0x3a,0x78,0x6d,0x70,0x4d, + 0x4d,0x3d,0x22,0x68,0x74,0x74,0x70,0x3a,0x2f,0x2f, + 0x6e,0x73,0x2e,0x61,0x64,0x6f,0x62,0x65,0x2e,0x63, + 0x6f,0x6d,0x2f,0x78,0x61,0x70,0x2f,0x31,0x2e,0x30, + 0x2f,0x6d,0x6d,0x2f,0x22,0x20,0x78,0x6d,0x6c,0x6e, + 0x73,0x3a,0x73,0x74,0x52,0x65,0x66,0x3d,0x22,0x68, + 0x74,0x74,0x70,0x3a,0x2f,0x2f,0x6e,0x73,0x2e,0x61, + 0x64,0x6f,0x62,0x65,0x2e,0x63,0x6f,0x6d,0x2f,0x78, + 0x61,0x70,0x2f,0x31,0x2e,0x30,0x2f,0x73,0x54,0x79, + 0x70,0x65,0x2f,0x52,0x65,0x73,0x6f,0x75,0x72,0x63, + 0x65,0x52,0x65,0x66,0x23,0x22,0x20,0x78,0x6d,0x6c, + 0x6e,0x73,0x3a,0x78,0x6d,0x70,0x3d,0x22,0x68,0x74, + 0x74,0x70,0x3a,0x2f,0x2f,0x6e,0x73,0x2e,0x61,0x64, + 0x6f,0x62,0x65,0x2e,0x63,0x6f,0x6d,0x2f,0x78,0x61, + 0x70,0x2f,0x31,0x2e,0x30,0x2f,0x22,0x20,0x78,0x6d, + 0x70,0x4d,0x4d,0x3a,0x4f,0x72,0x69,0x67,0x69,0x6e, + 0x61,0x6c,0x44,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74, + 0x49,0x44,0x3d,0x22,0x78,0x6d,0x70,0x2e,0x64,0x69, + 0x64,0x3a,0x33,0x38,0x45,0x38,0x44,0x46,0x33,0x39, + 0x31,0x38,0x32,0x30,0x36,0x38,0x31,0x31,0x38,0x30, + 0x38,0x33,0x43,0x37,0x45,0x33,0x31,0x45,0x41,0x35, + 0x41,0x37,0x35,0x33,0x22,0x20,0x78,0x6d,0x70,0x4d, + 0x4d,0x3a,0x44,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74, + 0x49,0x44,0x3d,0x22,0x78,0x6d,0x70,0x2e,0x64,0x69, + 0x64,0x3a,0x30,0x30,0x46,0x41,0x42,0x34,0x37,0x38, + 0x39,0x44,0x39,0x31,0x31,0x31,0x45,0x33,0x41,0x39, + 0x31,0x44,0x42,0x44,0x46,0x44,0x34,0x30,0x39,0x39, + 0x32,0x45,0x45,0x33,0x22,0x20,0x78,0x6d,0x70,0x4d, + 0x4d,0x3a,0x49,0x6e,0x73,0x74,0x61,0x6e,0x63,0x65, + 0x49,0x44,0x3d,0x22,0x78,0x6d,0x70,0x2e,0x69,0x69, + 0x64,0x3a,0x30,0x30,0x46,0x41,0x42,0x34,0x37,0x37, + 0x39,0x44,0x39,0x31,0x31,0x31,0x45,0x33,0x41,0x39, + 0x31,0x44,0x42,0x44,0x46,0x44,0x34,0x30,0x39,0x39, + 0x32,0x45,0x45,0x33,0x22,0x20,0x78,0x6d,0x70,0x3a, + 0x43,0x72,0x65,0x61,0x74,0x6f,0x72,0x54,0x6f,0x6f, + 0x6c,0x3d,0x22,0x41,0x64,0x6f,0x62,0x65,0x20,0x50, + 0x68,0x6f,0x74,0x6f,0x73,0x68,0x6f,0x70,0x20,0x43, + 0x53,0x36,0x20,0x28,0x4d,0x61,0x63,0x69,0x6e,0x74, + 0x6f,0x73,0x68,0x29,0x22,0x3e,0x20,0x3c,0x78,0x6d, + 0x70,0x4d,0x4d,0x3a,0x44,0x65,0x72,0x69,0x76,0x65, + 0x64,0x46,0x72,0x6f,0x6d,0x20,0x73,0x74,0x52,0x65, + 0x66,0x3a,0x69,0x6e,0x73,0x74,0x61,0x6e,0x63,0x65, + 0x49,0x44,0x3d,0x22,0x78,0x6d,0x70,0x2e,0x69,0x69, + 0x64,0x3a,0x33,0x38,0x45,0x38,0x44,0x46,0x33,0x39, + 0x31,0x38,0x32,0x30,0x36,0x38,0x31,0x31,0x38,0x30, + 0x38,0x33,0x43,0x37,0x45,0x33,0x31,0x45,0x41,0x35, + 0x41,0x37,0x35,0x33,0x22,0x20,0x73,0x74,0x52,0x65, + 0x66,0x3a,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74, + 0x49,0x44,0x3d,0x22,0x78,0x6d,0x70,0x2e,0x64,0x69, + 0x64,0x3a,0x33,0x38,0x45,0x38,0x44,0x46,0x33,0x39, + 0x31,0x38,0x32,0x30,0x36,0x38,0x31,0x31,0x38,0x30, + 0x38,0x33,0x43,0x37,0x45,0x33,0x31,0x45,0x41,0x35, + 0x41,0x37,0x35,0x33,0x22,0x2f,0x3e,0x20,0x3c,0x2f, + 0x72,0x64,0x66,0x3a,0x44,0x65,0x73,0x63,0x72,0x69, + 0x70,0x74,0x69,0x6f,0x6e,0x3e,0x20,0x3c,0x2f,0x72, + 0x64,0x66,0x3a,0x52,0x44,0x46,0x3e,0x20,0x3c,0x2f, + 0x78,0x3a,0x78,0x6d,0x70,0x6d,0x65,0x74,0x61,0x3e, + 0x20,0x3c,0x3f,0x78,0x70,0x61,0x63,0x6b,0x65,0x74, + 0x20,0x65,0x6e,0x64,0x3d,0x22,0x72,0x22,0x3f,0x3e, + 0xde,0xa7,0x8d,0x87,0x00,0x00,0x02,0x05,0x49,0x44, + 0x41,0x54,0x78,0xda,0xcc,0xd6,0x4b,0x48,0x54,0x71, + 0x14,0xc7,0xf1,0x3b,0xb7,0x91,0x4c,0x09,0xec,0x2d, + 0x49,0xcb,0xb0,0x85,0x05,0x61,0x14,0x54,0x44,0x90, + 0x82,0x82,0x3a,0x83,0xad,0x46,0x41,0x34,0x10,0x4a, + 0xd4,0x4d,0xd0,0x14,0xb4,0x68,0x1f,0x14,0x44,0x90, + 0x48,0x81,0x90,0x52,0xa0,0xa4,0x42,0x24,0x84,0x0b, + 0x41,0x0c,0x0a,0x5c,0x68,0xa4,0xa0,0x08,0xb6,0xca, + 0x47,0x2d,0x02,0x13,0xf2,0x51,0x7d,0x0f,0xfc,0x2e, + 0xdc,0x86,0x0a,0x9c,0x7b,0x67,0xec,0xc0,0x07,0x66, + 0xee,0xe3,0xcf,0xb9,0xff,0xc7,0xf9,0xff,0x23,0xc9, + 0x64,0xd2,0x49,0x89,0x08,0x6a,0x50,0x8f,0xb3,0x28, + 0xc4,0x0e,0x27,0x73,0xb1,0x80,0xb7,0x78,0x86,0x3e, + 0x6c,0xfa,0x6f,0x46,0x53,0x1e,0x3e,0x86,0x27,0x4a, + 0xcc,0x8b,0x55,0x7c,0xcf,0x50,0x72,0x39,0xea,0x80, + 0x98,0x4c,0xa2,0x0e,0x1f,0xfe,0x94,0xe0,0x69,0x0c, + 0x61,0x2f,0xa6,0x70,0x17,0xaf,0xb0,0xe4,0x64,0x36, + 0xf6,0xa3,0x02,0x37,0x70,0x02,0xa3,0xa8,0xc2,0x1b, + 0xbb,0xe9,0xea,0xa1,0x23,0x78,0xa9,0xe4,0x3a,0x70, + 0x12,0x5d,0x59,0x48,0xce,0xe2,0x33,0xba,0x51,0x8a, + 0x7b,0xd8,0x83,0x7e,0x1c,0xf6,0x27,0x78,0x1f,0x07, + 0xf0,0x14,0xd7,0xb0,0xe6,0x64,0x3f,0xd6,0x71,0x5d, + 0x1d,0x73,0x10,0x0f,0xbd,0x04,0x8f,0xa3,0x16,0x8b, + 0x68,0x71,0xb6,0x3f,0x5a,0xf1,0x09,0x71,0x1b,0x72, + 0x4b,0xb0,0x49,0x2b,0xf7,0x01,0x56,0x02,0x34,0xfc, + 0x33,0xc5,0xb4,0xa6,0xca,0x56,0xe3,0x9b,0x7a,0xcf, + 0x72,0x4a,0x58,0x82,0x17,0x74,0x63,0x30,0x84,0xaf, + 0xb7,0xe1,0x39,0x85,0x4b,0xd8,0x87,0x3b,0x69,0xb6, + 0xe3,0xe5,0x52,0x16,0xd5,0x02,0x59,0xd7,0xca,0x0d, + 0xa3,0xa6,0x8d,0xeb,0xeb,0x97,0x7c,0x73,0x7c,0xab, + 0x61,0xb9,0x6c,0x58,0xd9,0x8b,0x6a,0x71,0x7c,0xd1, + 0xb0,0x04,0x8d,0x46,0x94,0xab,0x4d,0xab,0x08,0x89, + 0x00,0xd3,0xe5,0xab,0xb5,0xe1,0x6a,0xcc,0x0b,0xf4, + 0xd5,0x41,0x63,0x04,0x37,0x71,0x5b,0x45,0x38,0x1e, + 0xa0,0xad,0x3c,0x2c,0xbb,0x9a,0xcc,0xd6,0x93,0x25, + 0x21,0x24,0x38,0x8f,0x61,0x95,0x2b,0x1b,0xea,0x33, + 0x69,0xb6,0x73,0x08,0xbb,0xf0,0xd1,0x12,0x7c,0xad, + 0x8b,0xb1,0x90,0xcb,0xc5,0x1c,0x8e,0xa6,0xf9,0xae, + 0xb7,0xd5,0x8e,0xba,0xda,0xa4,0x7f,0xa0,0x0d,0xbb, + 0x03,0x24,0x64,0x53,0xe4,0x96,0xef,0x7f,0x03,0x8a, + 0xd3,0x6c,0x2b,0xa1,0x79,0xd8,0xe5,0x6a,0x63,0xee, + 0x55,0xf5,0x7e,0xf4,0x1f,0x14,0x6a,0xdb,0xf2,0x2e, + 0xe3,0x05,0xde,0x7b,0x65,0xa0,0x5d,0xd5,0xbb,0x5e, + 0x49,0xee,0xdc,0xa6,0xe4,0x8a,0xf0,0x5c,0x25,0xaa, + 0xd5,0xbf,0x17,0xdb,0x85,0x6a,0x5b,0x35,0xb8,0xaa, + 0x63,0x4f,0xb3,0x5e,0x88,0x64,0x29,0x31,0x9b,0x62, + 0x13,0x3a,0x2c,0x54,0xab,0xa6,0xfe,0x76,0xdc,0xb2, + 0x55,0x77,0x0e,0x8f,0xb5,0xbb,0x74,0xfe,0x63,0x2b, + 0x0a,0xf3,0x30,0x61,0xab,0x35,0x57,0xbf,0xc7,0x70, + 0x05,0x33,0x7f,0x3b,0xb0,0xce,0xe2,0x22,0x2a,0x75, + 0x70,0x3c,0xaf,0x25,0x9f,0xeb,0x7b,0x26,0x5f,0xc2, + 0x3a,0xc1,0x58,0x4f,0xbd,0x43,0x0f,0x06,0x52,0x37, + 0x8c,0x5f,0x02,0x0c,0x00,0xae,0xe8,0x68,0xbc,0x71, + 0xf2,0x9e,0xc2,0x00,0x00,0x00,0x00,0x49,0x45,0x4e, + 0x44,0xae,0x42,0x60,0x82 +}; diff --git a/data/converted/help_select_png.cpp b/data/converted/help_select_png.cpp new file mode 100644 index 000000000..676d3d03d --- /dev/null +++ b/data/converted/help_select_png.cpp @@ -0,0 +1,155 @@ +//this file was auto-generated from "select.png" by res2h + +#include "../Resources.h" + +const size_t help_select_png_size = 1477; +const unsigned char help_select_png_data[1477] = { + 0x89,0x50,0x4e,0x47,0x0d,0x0a,0x1a,0x0a,0x00,0x00, + 0x00,0x0d,0x49,0x48,0x44,0x52,0x00,0x00,0x00,0x28, + 0x00,0x00,0x00,0x14,0x08,0x06,0x00,0x00,0x00,0xff, + 0x46,0x7f,0xbb,0x00,0x00,0x00,0x19,0x74,0x45,0x58, + 0x74,0x53,0x6f,0x66,0x74,0x77,0x61,0x72,0x65,0x00, + 0x41,0x64,0x6f,0x62,0x65,0x20,0x49,0x6d,0x61,0x67, + 0x65,0x52,0x65,0x61,0x64,0x79,0x71,0xc9,0x65,0x3c, + 0x00,0x00,0x03,0x24,0x69,0x54,0x58,0x74,0x58,0x4d, + 0x4c,0x3a,0x63,0x6f,0x6d,0x2e,0x61,0x64,0x6f,0x62, + 0x65,0x2e,0x78,0x6d,0x70,0x00,0x00,0x00,0x00,0x00, + 0x3c,0x3f,0x78,0x70,0x61,0x63,0x6b,0x65,0x74,0x20, + 0x62,0x65,0x67,0x69,0x6e,0x3d,0x22,0xef,0xbb,0xbf, + 0x22,0x20,0x69,0x64,0x3d,0x22,0x57,0x35,0x4d,0x30, + 0x4d,0x70,0x43,0x65,0x68,0x69,0x48,0x7a,0x72,0x65, + 0x53,0x7a,0x4e,0x54,0x63,0x7a,0x6b,0x63,0x39,0x64, + 0x22,0x3f,0x3e,0x20,0x3c,0x78,0x3a,0x78,0x6d,0x70, + 0x6d,0x65,0x74,0x61,0x20,0x78,0x6d,0x6c,0x6e,0x73, + 0x3a,0x78,0x3d,0x22,0x61,0x64,0x6f,0x62,0x65,0x3a, + 0x6e,0x73,0x3a,0x6d,0x65,0x74,0x61,0x2f,0x22,0x20, + 0x78,0x3a,0x78,0x6d,0x70,0x74,0x6b,0x3d,0x22,0x41, + 0x64,0x6f,0x62,0x65,0x20,0x58,0x4d,0x50,0x20,0x43, + 0x6f,0x72,0x65,0x20,0x35,0x2e,0x33,0x2d,0x63,0x30, + 0x31,0x31,0x20,0x36,0x36,0x2e,0x31,0x34,0x35,0x36, + 0x36,0x31,0x2c,0x20,0x32,0x30,0x31,0x32,0x2f,0x30, + 0x32,0x2f,0x30,0x36,0x2d,0x31,0x34,0x3a,0x35,0x36, + 0x3a,0x32,0x37,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x22,0x3e,0x20,0x3c,0x72,0x64,0x66,0x3a,0x52, + 0x44,0x46,0x20,0x78,0x6d,0x6c,0x6e,0x73,0x3a,0x72, + 0x64,0x66,0x3d,0x22,0x68,0x74,0x74,0x70,0x3a,0x2f, + 0x2f,0x77,0x77,0x77,0x2e,0x77,0x33,0x2e,0x6f,0x72, + 0x67,0x2f,0x31,0x39,0x39,0x39,0x2f,0x30,0x32,0x2f, + 0x32,0x32,0x2d,0x72,0x64,0x66,0x2d,0x73,0x79,0x6e, + 0x74,0x61,0x78,0x2d,0x6e,0x73,0x23,0x22,0x3e,0x20, + 0x3c,0x72,0x64,0x66,0x3a,0x44,0x65,0x73,0x63,0x72, + 0x69,0x70,0x74,0x69,0x6f,0x6e,0x20,0x72,0x64,0x66, + 0x3a,0x61,0x62,0x6f,0x75,0x74,0x3d,0x22,0x22,0x20, + 0x78,0x6d,0x6c,0x6e,0x73,0x3a,0x78,0x6d,0x70,0x3d, + 0x22,0x68,0x74,0x74,0x70,0x3a,0x2f,0x2f,0x6e,0x73, + 0x2e,0x61,0x64,0x6f,0x62,0x65,0x2e,0x63,0x6f,0x6d, + 0x2f,0x78,0x61,0x70,0x2f,0x31,0x2e,0x30,0x2f,0x22, + 0x20,0x78,0x6d,0x6c,0x6e,0x73,0x3a,0x78,0x6d,0x70, + 0x4d,0x4d,0x3d,0x22,0x68,0x74,0x74,0x70,0x3a,0x2f, + 0x2f,0x6e,0x73,0x2e,0x61,0x64,0x6f,0x62,0x65,0x2e, + 0x63,0x6f,0x6d,0x2f,0x78,0x61,0x70,0x2f,0x31,0x2e, + 0x30,0x2f,0x6d,0x6d,0x2f,0x22,0x20,0x78,0x6d,0x6c, + 0x6e,0x73,0x3a,0x73,0x74,0x52,0x65,0x66,0x3d,0x22, + 0x68,0x74,0x74,0x70,0x3a,0x2f,0x2f,0x6e,0x73,0x2e, + 0x61,0x64,0x6f,0x62,0x65,0x2e,0x63,0x6f,0x6d,0x2f, + 0x78,0x61,0x70,0x2f,0x31,0x2e,0x30,0x2f,0x73,0x54, + 0x79,0x70,0x65,0x2f,0x52,0x65,0x73,0x6f,0x75,0x72, + 0x63,0x65,0x52,0x65,0x66,0x23,0x22,0x20,0x78,0x6d, + 0x70,0x3a,0x43,0x72,0x65,0x61,0x74,0x6f,0x72,0x54, + 0x6f,0x6f,0x6c,0x3d,0x22,0x41,0x64,0x6f,0x62,0x65, + 0x20,0x50,0x68,0x6f,0x74,0x6f,0x73,0x68,0x6f,0x70, + 0x20,0x43,0x53,0x36,0x20,0x28,0x4d,0x61,0x63,0x69, + 0x6e,0x74,0x6f,0x73,0x68,0x29,0x22,0x20,0x78,0x6d, + 0x70,0x4d,0x4d,0x3a,0x49,0x6e,0x73,0x74,0x61,0x6e, + 0x63,0x65,0x49,0x44,0x3d,0x22,0x78,0x6d,0x70,0x2e, + 0x69,0x69,0x64,0x3a,0x30,0x30,0x46,0x41,0x42,0x34, + 0x37,0x33,0x39,0x44,0x39,0x31,0x31,0x31,0x45,0x33, + 0x41,0x39,0x31,0x44,0x42,0x44,0x46,0x44,0x34,0x30, + 0x39,0x39,0x32,0x45,0x45,0x33,0x22,0x20,0x78,0x6d, + 0x70,0x4d,0x4d,0x3a,0x44,0x6f,0x63,0x75,0x6d,0x65, + 0x6e,0x74,0x49,0x44,0x3d,0x22,0x78,0x6d,0x70,0x2e, + 0x64,0x69,0x64,0x3a,0x30,0x30,0x46,0x41,0x42,0x34, + 0x37,0x34,0x39,0x44,0x39,0x31,0x31,0x31,0x45,0x33, + 0x41,0x39,0x31,0x44,0x42,0x44,0x46,0x44,0x34,0x30, + 0x39,0x39,0x32,0x45,0x45,0x33,0x22,0x3e,0x20,0x3c, + 0x78,0x6d,0x70,0x4d,0x4d,0x3a,0x44,0x65,0x72,0x69, + 0x76,0x65,0x64,0x46,0x72,0x6f,0x6d,0x20,0x73,0x74, + 0x52,0x65,0x66,0x3a,0x69,0x6e,0x73,0x74,0x61,0x6e, + 0x63,0x65,0x49,0x44,0x3d,0x22,0x78,0x6d,0x70,0x2e, + 0x69,0x69,0x64,0x3a,0x30,0x30,0x46,0x41,0x42,0x34, + 0x37,0x31,0x39,0x44,0x39,0x31,0x31,0x31,0x45,0x33, + 0x41,0x39,0x31,0x44,0x42,0x44,0x46,0x44,0x34,0x30, + 0x39,0x39,0x32,0x45,0x45,0x33,0x22,0x20,0x73,0x74, + 0x52,0x65,0x66,0x3a,0x64,0x6f,0x63,0x75,0x6d,0x65, + 0x6e,0x74,0x49,0x44,0x3d,0x22,0x78,0x6d,0x70,0x2e, + 0x64,0x69,0x64,0x3a,0x30,0x30,0x46,0x41,0x42,0x34, + 0x37,0x32,0x39,0x44,0x39,0x31,0x31,0x31,0x45,0x33, + 0x41,0x39,0x31,0x44,0x42,0x44,0x46,0x44,0x34,0x30, + 0x39,0x39,0x32,0x45,0x45,0x33,0x22,0x2f,0x3e,0x20, + 0x3c,0x2f,0x72,0x64,0x66,0x3a,0x44,0x65,0x73,0x63, + 0x72,0x69,0x70,0x74,0x69,0x6f,0x6e,0x3e,0x20,0x3c, + 0x2f,0x72,0x64,0x66,0x3a,0x52,0x44,0x46,0x3e,0x20, + 0x3c,0x2f,0x78,0x3a,0x78,0x6d,0x70,0x6d,0x65,0x74, + 0x61,0x3e,0x20,0x3c,0x3f,0x78,0x70,0x61,0x63,0x6b, + 0x65,0x74,0x20,0x65,0x6e,0x64,0x3d,0x22,0x72,0x22, + 0x3f,0x3e,0xb2,0xa8,0xe0,0x6c,0x00,0x00,0x02,0x37, + 0x49,0x44,0x41,0x54,0x78,0xda,0xcc,0x95,0x5f,0x68, + 0xce,0x51,0x18,0xc7,0xcf,0xfb,0xdb,0x5b,0x2e,0x69, + 0x91,0x45,0xfe,0xc4,0x90,0x0b,0x85,0x49,0x8d,0xb4, + 0x76,0xb7,0xa4,0x94,0xa4,0xec,0x6a,0x73,0x49,0xca, + 0x85,0x7a,0xb1,0x62,0x69,0x17,0x16,0x17,0xd2,0x1b, + 0x56,0xd2,0x2e,0xb4,0x76,0x61,0x6a,0x85,0x6c,0x49, + 0x66,0x92,0xfc,0x5b,0xb8,0x40,0x34,0x11,0xb5,0x85, + 0xa2,0xd7,0x9f,0xf9,0x37,0x3e,0x4f,0x7d,0x7f,0x75, + 0x1c,0x7b,0x5f,0xbd,0x25,0xce,0x53,0x9f,0xce,0xf9, + 0x3d,0xbf,0xdf,0x73,0xce,0xf7,0x3c,0xe7,0x39,0xbf, + 0x93,0xc9,0xe5,0x72,0x73,0x9d,0x73,0xc7,0xa1,0x0e, + 0xde,0xc3,0x59,0xd8,0x01,0xef,0xe0,0x04,0x2c,0x75, + 0xbf,0x5a,0x27,0xe4,0xe1,0x96,0xbe,0xbb,0x1a,0xbc, + 0xb7,0xf8,0xaa,0xc0,0x97,0x57,0xdc,0x54,0x38,0x02, + 0x6b,0xe1,0x07,0xf4,0xc2,0x4e,0x78,0x0d,0xdd,0x50, + 0x1d,0xc4,0xb9,0x2c,0x1c,0x82,0x59,0xb0,0x11,0x2a, + 0xe1,0x30,0x7c,0x84,0x6d,0xb0,0x08,0x0a,0x70,0xc1, + 0x8b,0xb9,0xaf,0xb6,0x06,0x26,0xbb,0xdf,0x6d,0x09, + 0xdc,0x81,0xeb,0x9e,0xef,0xa1,0x5a,0x13,0x34,0x1d, + 0x9a,0x61,0x12,0xb4,0xc1,0x69,0xa8,0x87,0x7e,0x18, + 0x82,0x06,0x2d,0xb0,0x33,0x15,0xb8,0x10,0x06,0xe1, + 0x9c,0x06,0xb1,0xd5,0x4c,0xf3,0x06,0xb7,0x89,0xda, + 0x5d,0x79,0x66,0x93,0x1d,0x0b,0x7c,0x2b,0x60,0x95, + 0xc4,0x5c,0x96,0x6f,0x14,0x2e,0xc1,0x32,0x38,0x29, + 0xdf,0x14,0x2d,0xb2,0x3d,0x15,0x78,0x1e,0x72,0xb0, + 0x12,0x6e,0x2b,0xb8,0xdb,0x1b,0xb8,0x41,0x99,0x4d, + 0xad,0x0b,0x06,0xfe,0x20,0xb0,0x31,0x28,0x8d,0xbc, + 0x44,0x7c,0x81,0x2b,0x9e,0xdf,0xfa,0xf3,0x61,0xa4, + 0xd8,0x40,0x09,0xec,0x81,0x4d,0x70,0x17,0x56,0xc3, + 0x29,0xe8,0x71,0x7f,0xdf,0xbe,0xc3,0x27,0x18,0x0f, + 0x7c,0xc3,0x2a,0xa9,0x09,0xcd,0x32,0xb8,0x5f,0x59, + 0x6c,0x96,0xaf,0x15,0xf6,0x42,0x85,0x9e,0xad,0xfe, + 0x76,0x97,0x29,0xa6,0x6b,0x82,0x2d,0xae,0x54,0xcd, + 0x2e,0x80,0xc7,0xf2,0x2d,0xd7,0xae,0x59,0x62,0xae, + 0x15,0x13,0xb8,0x4e,0x75,0xb1,0x19,0xde,0xe8,0xc0, + 0x8c,0x6a,0x75,0x4e,0x05,0x5b,0xe3,0xc5,0xbc,0x82, + 0xe7,0xea,0xdb,0x36,0x7e,0xf6,0xde,0x5d,0x54,0x3b, + 0x3b,0x88,0x19,0x91,0x80,0x17,0xd0,0x01,0x5b,0xe0, + 0x03,0x1c,0x54,0x06,0x6f,0x94,0xca,0xe0,0x76,0x6d, + 0xeb,0x33,0xf9,0xde,0x42,0x93,0xf7,0x4d,0x53,0xf0, + 0x6c,0x99,0xd9,0xaa,0x7e,0x5b,0x30,0x5e,0x46,0xed, + 0x2e,0x91,0xda,0x01,0xed,0xc2,0x06,0x38,0x03,0x4f, + 0xe5,0x7f,0xa2,0xf2,0xfa,0x56,0x4a,0xe0,0xa0,0xfe, + 0x3f,0x8b,0x55,0x1f,0x16,0x34,0xa6,0xf7,0x6b,0x4a, + 0x6c,0x63,0xa6,0x88,0x7f,0x4e,0x89,0x98,0x9b,0x30, + 0x4f,0x73,0x7d,0x85,0x47,0x41,0x4d,0xba,0xb0,0x9c, + 0xb2,0x6a,0xed,0xe3,0x7b,0xee,0xdf,0x58,0x59,0x73, + 0x25,0x2e,0x72,0xcb,0x7a,0xfd,0x0a,0xa5,0xbe,0xea, + 0x3f,0x6b,0xb2,0x03,0xf5,0x20,0x3d,0xa4,0xa9,0xc0, + 0xf5,0x70,0x14,0x66,0x44,0x92,0xb8,0x97,0xba,0x6a, + 0x7b,0xb3,0x3a,0x08,0x3d,0xde,0x7f,0x2f,0x06,0x9b, + 0x29,0x4d,0xf5,0x56,0x83,0xfb,0x22,0x13,0xe7,0x97, + 0x5c,0x6b,0xa2,0x0b,0x3c,0x56,0xab,0x4d,0xbc,0x7f, + 0x5e,0x8c,0x36,0x66,0x02,0xfb,0x22,0x16,0xd8,0x67, + 0x02,0x5b,0x74,0xbf,0xc6,0x66,0xa6,0xa9,0x25,0xd1, + 0x65,0x5d,0xab,0x53,0x53,0x88,0x40,0x58,0x41,0x5a, + 0x4c,0xd3,0xf0,0x4f,0x01,0x06,0x00,0xc1,0x48,0x7e, + 0xf4,0x07,0x45,0x6c,0x0d,0x00,0x00,0x00,0x00,0x49, + 0x45,0x4e,0x44,0xae,0x42,0x60,0x82 +}; diff --git a/data/converted/help_start_png.cpp b/data/converted/help_start_png.cpp new file mode 100644 index 000000000..02aa4e915 --- /dev/null +++ b/data/converted/help_start_png.cpp @@ -0,0 +1,152 @@ +//this file was auto-generated from "start.png" by res2h + +#include "../Resources.h" + +const size_t help_start_png_size = 1446; +const unsigned char help_start_png_data[1446] = { + 0x89,0x50,0x4e,0x47,0x0d,0x0a,0x1a,0x0a,0x00,0x00, + 0x00,0x0d,0x49,0x48,0x44,0x52,0x00,0x00,0x00,0x28, + 0x00,0x00,0x00,0x14,0x08,0x06,0x00,0x00,0x00,0xff, + 0x46,0x7f,0xbb,0x00,0x00,0x00,0x19,0x74,0x45,0x58, + 0x74,0x53,0x6f,0x66,0x74,0x77,0x61,0x72,0x65,0x00, + 0x41,0x64,0x6f,0x62,0x65,0x20,0x49,0x6d,0x61,0x67, + 0x65,0x52,0x65,0x61,0x64,0x79,0x71,0xc9,0x65,0x3c, + 0x00,0x00,0x03,0x24,0x69,0x54,0x58,0x74,0x58,0x4d, + 0x4c,0x3a,0x63,0x6f,0x6d,0x2e,0x61,0x64,0x6f,0x62, + 0x65,0x2e,0x78,0x6d,0x70,0x00,0x00,0x00,0x00,0x00, + 0x3c,0x3f,0x78,0x70,0x61,0x63,0x6b,0x65,0x74,0x20, + 0x62,0x65,0x67,0x69,0x6e,0x3d,0x22,0xef,0xbb,0xbf, + 0x22,0x20,0x69,0x64,0x3d,0x22,0x57,0x35,0x4d,0x30, + 0x4d,0x70,0x43,0x65,0x68,0x69,0x48,0x7a,0x72,0x65, + 0x53,0x7a,0x4e,0x54,0x63,0x7a,0x6b,0x63,0x39,0x64, + 0x22,0x3f,0x3e,0x20,0x3c,0x78,0x3a,0x78,0x6d,0x70, + 0x6d,0x65,0x74,0x61,0x20,0x78,0x6d,0x6c,0x6e,0x73, + 0x3a,0x78,0x3d,0x22,0x61,0x64,0x6f,0x62,0x65,0x3a, + 0x6e,0x73,0x3a,0x6d,0x65,0x74,0x61,0x2f,0x22,0x20, + 0x78,0x3a,0x78,0x6d,0x70,0x74,0x6b,0x3d,0x22,0x41, + 0x64,0x6f,0x62,0x65,0x20,0x58,0x4d,0x50,0x20,0x43, + 0x6f,0x72,0x65,0x20,0x35,0x2e,0x33,0x2d,0x63,0x30, + 0x31,0x31,0x20,0x36,0x36,0x2e,0x31,0x34,0x35,0x36, + 0x36,0x31,0x2c,0x20,0x32,0x30,0x31,0x32,0x2f,0x30, + 0x32,0x2f,0x30,0x36,0x2d,0x31,0x34,0x3a,0x35,0x36, + 0x3a,0x32,0x37,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x22,0x3e,0x20,0x3c,0x72,0x64,0x66,0x3a,0x52, + 0x44,0x46,0x20,0x78,0x6d,0x6c,0x6e,0x73,0x3a,0x72, + 0x64,0x66,0x3d,0x22,0x68,0x74,0x74,0x70,0x3a,0x2f, + 0x2f,0x77,0x77,0x77,0x2e,0x77,0x33,0x2e,0x6f,0x72, + 0x67,0x2f,0x31,0x39,0x39,0x39,0x2f,0x30,0x32,0x2f, + 0x32,0x32,0x2d,0x72,0x64,0x66,0x2d,0x73,0x79,0x6e, + 0x74,0x61,0x78,0x2d,0x6e,0x73,0x23,0x22,0x3e,0x20, + 0x3c,0x72,0x64,0x66,0x3a,0x44,0x65,0x73,0x63,0x72, + 0x69,0x70,0x74,0x69,0x6f,0x6e,0x20,0x72,0x64,0x66, + 0x3a,0x61,0x62,0x6f,0x75,0x74,0x3d,0x22,0x22,0x20, + 0x78,0x6d,0x6c,0x6e,0x73,0x3a,0x78,0x6d,0x70,0x3d, + 0x22,0x68,0x74,0x74,0x70,0x3a,0x2f,0x2f,0x6e,0x73, + 0x2e,0x61,0x64,0x6f,0x62,0x65,0x2e,0x63,0x6f,0x6d, + 0x2f,0x78,0x61,0x70,0x2f,0x31,0x2e,0x30,0x2f,0x22, + 0x20,0x78,0x6d,0x6c,0x6e,0x73,0x3a,0x78,0x6d,0x70, + 0x4d,0x4d,0x3d,0x22,0x68,0x74,0x74,0x70,0x3a,0x2f, + 0x2f,0x6e,0x73,0x2e,0x61,0x64,0x6f,0x62,0x65,0x2e, + 0x63,0x6f,0x6d,0x2f,0x78,0x61,0x70,0x2f,0x31,0x2e, + 0x30,0x2f,0x6d,0x6d,0x2f,0x22,0x20,0x78,0x6d,0x6c, + 0x6e,0x73,0x3a,0x73,0x74,0x52,0x65,0x66,0x3d,0x22, + 0x68,0x74,0x74,0x70,0x3a,0x2f,0x2f,0x6e,0x73,0x2e, + 0x61,0x64,0x6f,0x62,0x65,0x2e,0x63,0x6f,0x6d,0x2f, + 0x78,0x61,0x70,0x2f,0x31,0x2e,0x30,0x2f,0x73,0x54, + 0x79,0x70,0x65,0x2f,0x52,0x65,0x73,0x6f,0x75,0x72, + 0x63,0x65,0x52,0x65,0x66,0x23,0x22,0x20,0x78,0x6d, + 0x70,0x3a,0x43,0x72,0x65,0x61,0x74,0x6f,0x72,0x54, + 0x6f,0x6f,0x6c,0x3d,0x22,0x41,0x64,0x6f,0x62,0x65, + 0x20,0x50,0x68,0x6f,0x74,0x6f,0x73,0x68,0x6f,0x70, + 0x20,0x43,0x53,0x36,0x20,0x28,0x4d,0x61,0x63,0x69, + 0x6e,0x74,0x6f,0x73,0x68,0x29,0x22,0x20,0x78,0x6d, + 0x70,0x4d,0x4d,0x3a,0x49,0x6e,0x73,0x74,0x61,0x6e, + 0x63,0x65,0x49,0x44,0x3d,0x22,0x78,0x6d,0x70,0x2e, + 0x69,0x69,0x64,0x3a,0x30,0x30,0x46,0x41,0x42,0x34, + 0x36,0x46,0x39,0x44,0x39,0x31,0x31,0x31,0x45,0x33, + 0x41,0x39,0x31,0x44,0x42,0x44,0x46,0x44,0x34,0x30, + 0x39,0x39,0x32,0x45,0x45,0x33,0x22,0x20,0x78,0x6d, + 0x70,0x4d,0x4d,0x3a,0x44,0x6f,0x63,0x75,0x6d,0x65, + 0x6e,0x74,0x49,0x44,0x3d,0x22,0x78,0x6d,0x70,0x2e, + 0x64,0x69,0x64,0x3a,0x30,0x30,0x46,0x41,0x42,0x34, + 0x37,0x30,0x39,0x44,0x39,0x31,0x31,0x31,0x45,0x33, + 0x41,0x39,0x31,0x44,0x42,0x44,0x46,0x44,0x34,0x30, + 0x39,0x39,0x32,0x45,0x45,0x33,0x22,0x3e,0x20,0x3c, + 0x78,0x6d,0x70,0x4d,0x4d,0x3a,0x44,0x65,0x72,0x69, + 0x76,0x65,0x64,0x46,0x72,0x6f,0x6d,0x20,0x73,0x74, + 0x52,0x65,0x66,0x3a,0x69,0x6e,0x73,0x74,0x61,0x6e, + 0x63,0x65,0x49,0x44,0x3d,0x22,0x78,0x6d,0x70,0x2e, + 0x69,0x69,0x64,0x3a,0x36,0x39,0x44,0x41,0x36,0x46, + 0x46,0x43,0x39,0x44,0x39,0x30,0x31,0x31,0x45,0x33, + 0x41,0x39,0x31,0x44,0x42,0x44,0x46,0x44,0x34,0x30, + 0x39,0x39,0x32,0x45,0x45,0x33,0x22,0x20,0x73,0x74, + 0x52,0x65,0x66,0x3a,0x64,0x6f,0x63,0x75,0x6d,0x65, + 0x6e,0x74,0x49,0x44,0x3d,0x22,0x78,0x6d,0x70,0x2e, + 0x64,0x69,0x64,0x3a,0x30,0x30,0x46,0x41,0x42,0x34, + 0x36,0x45,0x39,0x44,0x39,0x31,0x31,0x31,0x45,0x33, + 0x41,0x39,0x31,0x44,0x42,0x44,0x46,0x44,0x34,0x30, + 0x39,0x39,0x32,0x45,0x45,0x33,0x22,0x2f,0x3e,0x20, + 0x3c,0x2f,0x72,0x64,0x66,0x3a,0x44,0x65,0x73,0x63, + 0x72,0x69,0x70,0x74,0x69,0x6f,0x6e,0x3e,0x20,0x3c, + 0x2f,0x72,0x64,0x66,0x3a,0x52,0x44,0x46,0x3e,0x20, + 0x3c,0x2f,0x78,0x3a,0x78,0x6d,0x70,0x6d,0x65,0x74, + 0x61,0x3e,0x20,0x3c,0x3f,0x78,0x70,0x61,0x63,0x6b, + 0x65,0x74,0x20,0x65,0x6e,0x64,0x3d,0x22,0x72,0x22, + 0x3f,0x3e,0x80,0xfc,0x29,0xc2,0x00,0x00,0x02,0x18, + 0x49,0x44,0x41,0x54,0x78,0xda,0xcc,0xd5,0x4b,0x48, + 0x15,0x51,0x1c,0xc7,0xf1,0xb9,0xe3,0x95,0x52,0x82, + 0x44,0xa2,0x22,0xc9,0x1e,0x48,0x91,0x58,0x14,0x45, + 0xa0,0x14,0x25,0xb5,0x8a,0xc8,0x8d,0x90,0xd8,0xce, + 0xa4,0xa4,0xa4,0xa8,0xa0,0xbb,0x30,0x28,0xa2,0x20, + 0x41,0xa4,0x42,0xc2,0x56,0x4a,0xd1,0xa6,0x17,0x89, + 0x1a,0xb8,0x09,0x17,0xae,0xc4,0xb5,0xd5,0x42,0x13, + 0x44,0x48,0xb4,0x07,0xdd,0x1e,0x82,0x59,0x7d,0xff, + 0xf0,0x4b,0x0e,0x83,0x7a,0x96,0x9e,0x3f,0x7c,0xb8, + 0x33,0xc3,0x99,0x39,0xbf,0x7b,0x1e,0x33,0xa9,0x4c, + 0x26,0x53,0x10,0x45,0x51,0x0b,0x8e,0x63,0x0d,0x26, + 0xd1,0x87,0xab,0x98,0xc6,0x50,0xb4,0x78,0x1d,0xc6, + 0x77,0x1d,0x3f,0xc4,0x5e,0xdc,0xc1,0x73,0xa7,0xcd, + 0x01,0xdc,0x4d,0xdc,0xf7,0x13,0xc3,0xb8,0x8d,0x59, + 0xf4,0x2c,0xd6,0x41,0x1a,0xad,0xa8,0xc5,0x65,0xdd, + 0xb4,0x47,0x9d,0x6c,0xc2,0x11,0x3c,0x53,0xdb,0xcd, + 0x68,0x40,0x27,0xde,0xe9,0xda,0xac,0x7e,0x4b,0x50, + 0x8f,0xaf,0xb8,0x92,0x08,0xb8,0x5a,0xc1,0xdb,0x31, + 0xa6,0x6b,0xeb,0x70,0x01,0xc5,0xa8,0x71,0xfa,0xd8, + 0xad,0xf3,0xf9,0xb6,0x16,0xb0,0x4c,0xa3,0xd6,0x81, + 0x5f,0xe8,0xc7,0x38,0xb6,0x22,0x85,0x66,0x67,0x24, + 0x1a,0xd4,0x79,0x6f,0xe2,0x8f,0xda,0xf5,0xcf,0xb8, + 0x84,0xc7,0xd8,0x8f,0xc1,0x44,0x9b,0x27,0x18,0x70, + 0xce,0x2b,0xb0,0x05,0xdf,0x9c,0x3e,0x6a,0x15,0x70, + 0xbe,0x6d,0x8c,0x97,0xfa,0x27,0x16,0xea,0xb5,0xa6, + 0x23,0x17,0xf7,0xf1,0x37,0xf2,0x57,0x3e,0x4e,0x2b, + 0x98,0x8d,0xc4,0x27,0x9c,0x5f,0xa0,0xdd,0x3e,0x1c, + 0x95,0x3a,0x0d,0xcc,0x53,0xdf,0xc3,0xd3,0x9a,0xce, + 0x7e,0xad,0xc1,0x9d,0xa8,0xc6,0x45,0xbc,0xd7,0xd4, + 0xfc,0xf0,0x3c,0xe3,0x14,0x6c,0x1d,0xbf,0x41,0x91, + 0xd6,0xef,0x49,0x4d,0xf5,0xb4,0xd3,0xee,0x26,0x7e, + 0xeb,0x78,0x95,0x9e,0xdb,0xe5,0x0b,0x68,0x23,0x78, + 0x0b,0xa5,0xb8,0x86,0x2a,0x6c,0xc4,0x3d,0x6c,0xd7, + 0x54,0xf9,0xaa,0x51,0xbf,0xdd,0x18,0xd1,0x34,0xad, + 0xc0,0xd9,0x44,0xbb,0x63,0x28,0x94,0x6d,0xc8,0xd3, + 0x46,0xf4,0x06,0xb4,0x21,0x6f,0x53,0xb8,0x95,0x58, + 0xab,0x0d,0xf2,0x07,0x1f,0x3c,0xf7,0x1f,0xc2,0x2e, + 0x4d,0x69,0xa1,0xc3,0x76,0xfe,0x19,0xcd,0xd0,0x42, + 0x65,0x1b,0x60,0x54,0x6f,0x0d,0x6f,0xc0,0x3a,0xed, + 0xde,0x57,0xda,0x24,0x1f,0x71,0x50,0x0b,0x7f,0xcc, + 0x73,0xff,0x39,0x64,0xf1,0x08,0x5f,0x1c,0xed,0x5a, + 0xd7,0x27,0x96,0xb8,0x77,0x52,0x6d,0x96,0xac,0x14, + 0xef,0xc1,0xff,0xc7,0xb6,0x7e,0xd6,0xeb,0xbd,0x36, + 0xe2,0xac,0x97,0x65,0x2d,0x77,0x0a,0x26,0x24,0xa8, + 0x8a,0xa3,0xc0,0xcb,0x1d,0xc1,0x1c,0xec,0xd0,0x34, + 0x2f,0x67,0xd9,0x1e,0x78,0x8b,0x39,0x37,0xa0,0xed, + 0xe0,0x07,0xd8,0x10,0xc8,0xc0,0x4d,0xe8,0xcd,0xd0, + 0x95,0xd6,0x8e,0x7d,0xa1,0x11,0x0c,0xa5,0x8a,0x94, + 0xa9,0xd2,0xd6,0xe0,0xf5,0xc0,0xc2,0xb9,0x4b,0xee, + 0x46,0xac,0x8f,0x76,0xa8,0x55,0x6e,0x01,0x67,0x02, + 0x0e,0x38,0x13,0xeb,0xe3,0x1e,0x6a,0xf5,0x59,0xc0, + 0x26,0x4c,0x05,0x18,0xce,0x32,0x35,0xc5,0xfa,0x68, + 0x97,0x6b,0xd7,0x64,0x03,0x08,0x96,0x55,0x16,0xcb, + 0x34,0xfa,0x4f,0x80,0x01,0x00,0x48,0x64,0x77,0x19, + 0x89,0x3e,0xfe,0x4c,0x00,0x00,0x00,0x00,0x49,0x45, + 0x4e,0x44,0xae,0x42,0x60,0x82 +}; diff --git a/data/converted/help_up_down_png.cpp b/data/converted/help_up_down_png.cpp deleted file mode 100644 index fa397aeee..000000000 --- a/data/converted/help_up_down_png.cpp +++ /dev/null @@ -1,337 +0,0 @@ -//this file was auto-generated from "up_down.png" by res2h - -#include "../Resources.h" - -const size_t help_up_down_png_size = 3292; -const unsigned char help_up_down_png_data[3292] = { - 0x89,0x50,0x4e,0x47,0x0d,0x0a,0x1a,0x0a,0x00,0x00, - 0x00,0x0d,0x49,0x48,0x44,0x52,0x00,0x00,0x00,0x30, - 0x00,0x00,0x00,0x30,0x08,0x06,0x00,0x00,0x00,0x57, - 0x02,0xf9,0x87,0x00,0x00,0x00,0x09,0x70,0x48,0x59, - 0x73,0x00,0x00,0x0b,0x13,0x00,0x00,0x0b,0x13,0x01, - 0x00,0x9a,0x9c,0x18,0x00,0x00,0x0a,0x4f,0x69,0x43, - 0x43,0x50,0x50,0x68,0x6f,0x74,0x6f,0x73,0x68,0x6f, - 0x70,0x20,0x49,0x43,0x43,0x20,0x70,0x72,0x6f,0x66, - 0x69,0x6c,0x65,0x00,0x00,0x78,0xda,0x9d,0x53,0x67, - 0x54,0x53,0xe9,0x16,0x3d,0xf7,0xde,0xf4,0x42,0x4b, - 0x88,0x80,0x94,0x4b,0x6f,0x52,0x15,0x08,0x20,0x52, - 0x42,0x8b,0x80,0x14,0x91,0x26,0x2a,0x21,0x09,0x10, - 0x4a,0x88,0x21,0xa1,0xd9,0x15,0x51,0xc1,0x11,0x45, - 0x45,0x04,0x1b,0xc8,0xa0,0x88,0x03,0x8e,0x8e,0x80, - 0x8c,0x15,0x51,0x2c,0x0c,0x8a,0x0a,0xd8,0x07,0xe4, - 0x21,0xa2,0x8e,0x83,0xa3,0x88,0x8a,0xca,0xfb,0xe1, - 0x7b,0xa3,0x6b,0xd6,0xbc,0xf7,0xe6,0xcd,0xfe,0xb5, - 0xd7,0x3e,0xe7,0xac,0xf3,0x9d,0xb3,0xcf,0x07,0xc0, - 0x08,0x0c,0x96,0x48,0x33,0x51,0x35,0x80,0x0c,0xa9, - 0x42,0x1e,0x11,0xe0,0x83,0xc7,0xc4,0xc6,0xe1,0xe4, - 0x2e,0x40,0x81,0x0a,0x24,0x70,0x00,0x10,0x08,0xb3, - 0x64,0x21,0x73,0xfd,0x23,0x01,0x00,0xf8,0x7e,0x3c, - 0x3c,0x2b,0x22,0xc0,0x07,0xbe,0x00,0x01,0x78,0xd3, - 0x0b,0x08,0x00,0xc0,0x4d,0x9b,0xc0,0x30,0x1c,0x87, - 0xff,0x0f,0xea,0x42,0x99,0x5c,0x01,0x80,0x84,0x01, - 0xc0,0x74,0x91,0x38,0x4b,0x08,0x80,0x14,0x00,0x40, - 0x7a,0x8e,0x42,0xa6,0x00,0x40,0x46,0x01,0x80,0x9d, - 0x98,0x26,0x53,0x00,0xa0,0x04,0x00,0x60,0xcb,0x63, - 0x62,0xe3,0x00,0x50,0x2d,0x00,0x60,0x27,0x7f,0xe6, - 0xd3,0x00,0x80,0x9d,0xf8,0x99,0x7b,0x01,0x00,0x5b, - 0x94,0x21,0x15,0x01,0xa0,0x91,0x00,0x20,0x13,0x65, - 0x88,0x44,0x00,0x68,0x3b,0x00,0xac,0xcf,0x56,0x8a, - 0x45,0x00,0x58,0x30,0x00,0x14,0x66,0x4b,0xc4,0x39, - 0x00,0xd8,0x2d,0x00,0x30,0x49,0x57,0x66,0x48,0x00, - 0xb0,0xb7,0x00,0xc0,0xce,0x10,0x0b,0xb2,0x00,0x08, - 0x0c,0x00,0x30,0x51,0x88,0x85,0x29,0x00,0x04,0x7b, - 0x00,0x60,0xc8,0x23,0x23,0x78,0x00,0x84,0x99,0x00, - 0x14,0x46,0xf2,0x57,0x3c,0xf1,0x2b,0xae,0x10,0xe7, - 0x2a,0x00,0x00,0x78,0x99,0xb2,0x3c,0xb9,0x24,0x39, - 0x45,0x81,0x5b,0x08,0x2d,0x71,0x07,0x57,0x57,0x2e, - 0x1e,0x28,0xce,0x49,0x17,0x2b,0x14,0x36,0x61,0x02, - 0x61,0x9a,0x40,0x2e,0xc2,0x79,0x99,0x19,0x32,0x81, - 0x34,0x0f,0xe0,0xf3,0xcc,0x00,0x00,0xa0,0x91,0x15, - 0x11,0xe0,0x83,0xf3,0xfd,0x78,0xce,0x0e,0xae,0xce, - 0xce,0x36,0x8e,0xb6,0x0e,0x5f,0x2d,0xea,0xbf,0x06, - 0xff,0x22,0x62,0x62,0xe3,0xfe,0xe5,0xcf,0xab,0x70, - 0x40,0x00,0x00,0xe1,0x74,0x7e,0xd1,0xfe,0x2c,0x2f, - 0xb3,0x1a,0x80,0x3b,0x06,0x80,0x6d,0xfe,0xa2,0x25, - 0xee,0x04,0x68,0x5e,0x0b,0xa0,0x75,0xf7,0x8b,0x66, - 0xb2,0x0f,0x40,0xb5,0x00,0xa0,0xe9,0xda,0x57,0xf3, - 0x70,0xf8,0x7e,0x3c,0x3c,0x45,0xa1,0x90,0xb9,0xd9, - 0xd9,0xe5,0xe4,0xe4,0xd8,0x4a,0xc4,0x42,0x5b,0x61, - 0xca,0x57,0x7d,0xfe,0x67,0xc2,0x5f,0xc0,0x57,0xfd, - 0x6c,0xf9,0x7e,0x3c,0xfc,0xf7,0xf5,0xe0,0xbe,0xe2, - 0x24,0x81,0x32,0x5d,0x81,0x47,0x04,0xf8,0xe0,0xc2, - 0xcc,0xf4,0x4c,0xa5,0x1c,0xcf,0x92,0x09,0x84,0x62, - 0xdc,0xe6,0x8f,0x47,0xfc,0xb7,0x0b,0xff,0xfc,0x1d, - 0xd3,0x22,0xc4,0x49,0x62,0xb9,0x58,0x2a,0x14,0xe3, - 0x51,0x12,0x71,0x8e,0x44,0x9a,0x8c,0xf3,0x32,0xa5, - 0x22,0x89,0x42,0x92,0x29,0xc5,0x25,0xd2,0xff,0x64, - 0xe2,0xdf,0x2c,0xfb,0x03,0x3e,0xdf,0x35,0x00,0xb0, - 0x6a,0x3e,0x01,0x7b,0x91,0x2d,0xa8,0x5d,0x63,0x03, - 0xf6,0x4b,0x27,0x10,0x58,0x74,0xc0,0xe2,0xf7,0x00, - 0x00,0xf2,0xbb,0x6f,0xc1,0xd4,0x28,0x08,0x03,0x80, - 0x68,0x83,0xe1,0xcf,0x77,0xff,0xef,0x3f,0xfd,0x47, - 0xa0,0x25,0x00,0x80,0x66,0x49,0x92,0x71,0x00,0x00, - 0x5e,0x44,0x24,0x2e,0x54,0xca,0xb3,0x3f,0xc7,0x08, - 0x00,0x00,0x44,0xa0,0x81,0x2a,0xb0,0x41,0x1b,0xf4, - 0xc1,0x18,0x2c,0xc0,0x06,0x1c,0xc1,0x05,0xdc,0xc1, - 0x0b,0xfc,0x60,0x36,0x84,0x42,0x24,0xc4,0xc2,0x42, - 0x10,0x42,0x0a,0x64,0x80,0x1c,0x72,0x60,0x29,0xac, - 0x82,0x42,0x28,0x86,0xcd,0xb0,0x1d,0x2a,0x60,0x2f, - 0xd4,0x40,0x1d,0x34,0xc0,0x51,0x68,0x86,0x93,0x70, - 0x0e,0x2e,0xc2,0x55,0xb8,0x0e,0x3d,0x70,0x0f,0xfa, - 0x61,0x08,0x9e,0xc1,0x28,0xbc,0x81,0x09,0x04,0x41, - 0xc8,0x08,0x13,0x61,0x21,0xda,0x88,0x01,0x62,0x8a, - 0x58,0x23,0x8e,0x08,0x17,0x99,0x85,0xf8,0x21,0xc1, - 0x48,0x04,0x12,0x8b,0x24,0x20,0xc9,0x88,0x14,0x51, - 0x22,0x4b,0x91,0x35,0x48,0x31,0x52,0x8a,0x54,0x20, - 0x55,0x48,0x1d,0xf2,0x3d,0x72,0x02,0x39,0x87,0x5c, - 0x46,0xba,0x91,0x3b,0xc8,0x00,0x32,0x82,0xfc,0x86, - 0xbc,0x47,0x31,0x94,0x81,0xb2,0x51,0x3d,0xd4,0x0c, - 0xb5,0x43,0xb9,0xa8,0x37,0x1a,0x84,0x46,0xa2,0x0b, - 0xd0,0x64,0x74,0x31,0x9a,0x8f,0x16,0xa0,0x9b,0xd0, - 0x72,0xb4,0x1a,0x3d,0x8c,0x36,0xa1,0xe7,0xd0,0xab, - 0x68,0x0f,0xda,0x8f,0x3e,0x43,0xc7,0x30,0xc0,0xe8, - 0x18,0x07,0x33,0xc4,0x6c,0x30,0x2e,0xc6,0xc3,0x42, - 0xb1,0x38,0x2c,0x09,0x93,0x63,0xcb,0xb1,0x22,0xac, - 0x0c,0xab,0xc6,0x1a,0xb0,0x56,0xac,0x03,0xbb,0x89, - 0xf5,0x63,0xcf,0xb1,0x77,0x04,0x12,0x81,0x45,0xc0, - 0x09,0x36,0x04,0x77,0x42,0x20,0x61,0x1e,0x41,0x48, - 0x58,0x4c,0x58,0x4e,0xd8,0x48,0xa8,0x20,0x1c,0x24, - 0x34,0x11,0xda,0x09,0x37,0x09,0x03,0x84,0x51,0xc2, - 0x27,0x22,0x93,0xa8,0x4b,0xb4,0x26,0xba,0x11,0xf9, - 0xc4,0x18,0x62,0x32,0x31,0x87,0x58,0x48,0x2c,0x23, - 0xd6,0x12,0x8f,0x13,0x2f,0x10,0x7b,0x88,0x43,0xc4, - 0x37,0x24,0x12,0x89,0x43,0x32,0x27,0xb9,0x90,0x02, - 0x49,0xb1,0xa4,0x54,0xd2,0x12,0xd2,0x46,0xd2,0x6e, - 0x52,0x23,0xe9,0x2c,0xa9,0x9b,0x34,0x48,0x1a,0x23, - 0x93,0xc9,0xda,0x64,0x6b,0xb2,0x07,0x39,0x94,0x2c, - 0x20,0x2b,0xc8,0x85,0xe4,0x9d,0xe4,0xc3,0xe4,0x33, - 0xe4,0x1b,0xe4,0x21,0xf2,0x5b,0x0a,0x9d,0x62,0x40, - 0x71,0xa4,0xf8,0x53,0xe2,0x28,0x52,0xca,0x6a,0x4a, - 0x19,0xe5,0x10,0xe5,0x34,0xe5,0x06,0x65,0x98,0x32, - 0x41,0x55,0xa3,0x9a,0x52,0xdd,0xa8,0xa1,0x54,0x11, - 0x35,0x8f,0x5a,0x42,0xad,0xa1,0xb6,0x52,0xaf,0x51, - 0x87,0xa8,0x13,0x34,0x75,0x9a,0x39,0xcd,0x83,0x16, - 0x49,0x4b,0xa5,0xad,0xa2,0x95,0xd3,0x1a,0x68,0x17, - 0x68,0xf7,0x69,0xaf,0xe8,0x74,0xba,0x11,0xdd,0x95, - 0x1e,0x4e,0x97,0xd0,0x57,0xd2,0xcb,0xe9,0x47,0xe8, - 0x97,0xe8,0x03,0xf4,0x77,0x0c,0x0d,0x86,0x15,0x83, - 0xc7,0x88,0x67,0x28,0x19,0x9b,0x18,0x07,0x18,0x67, - 0x19,0x77,0x18,0xaf,0x98,0x4c,0xa6,0x19,0xd3,0x8b, - 0x19,0xc7,0x54,0x30,0x37,0x31,0xeb,0x98,0xe7,0x99, - 0x0f,0x99,0x6f,0x55,0x58,0x2a,0xb6,0x2a,0x7c,0x15, - 0x91,0xca,0x0a,0x95,0x4a,0x95,0x26,0x95,0x1b,0x2a, - 0x2f,0x54,0xa9,0xaa,0xa6,0xaa,0xde,0xaa,0x0b,0x55, - 0xf3,0x55,0xcb,0x54,0x8f,0xa9,0x5e,0x53,0x7d,0xae, - 0x46,0x55,0x33,0x53,0xe3,0xa9,0x09,0xd4,0x96,0xab, - 0x55,0xaa,0x9d,0x50,0xeb,0x53,0x1b,0x53,0x67,0xa9, - 0x3b,0xa8,0x87,0xaa,0x67,0xa8,0x6f,0x54,0x3f,0xa4, - 0x7e,0x59,0xfd,0x89,0x06,0x59,0xc3,0x4c,0xc3,0x4f, - 0x43,0xa4,0x51,0xa0,0xb1,0x5f,0xe3,0xbc,0xc6,0x20, - 0x0b,0x63,0x19,0xb3,0x78,0x2c,0x21,0x6b,0x0d,0xab, - 0x86,0x75,0x81,0x35,0xc4,0x26,0xb1,0xcd,0xd9,0x7c, - 0x76,0x2a,0xbb,0x98,0xfd,0x1d,0xbb,0x8b,0x3d,0xaa, - 0xa9,0xa1,0x39,0x43,0x33,0x4a,0x33,0x57,0xb3,0x52, - 0xf3,0x94,0x66,0x3f,0x07,0xe3,0x98,0x71,0xf8,0x9c, - 0x74,0x4e,0x09,0xe7,0x28,0xa7,0x97,0xf3,0x7e,0x8a, - 0xde,0x14,0xef,0x29,0xe2,0x29,0x1b,0xa6,0x34,0x4c, - 0xb9,0x31,0x65,0x5c,0x6b,0xaa,0x96,0x97,0x96,0x58, - 0xab,0x48,0xab,0x51,0xab,0x47,0xeb,0xbd,0x36,0xae, - 0xed,0xa7,0x9d,0xa6,0xbd,0x45,0xbb,0x59,0xfb,0x81, - 0x0e,0x41,0xc7,0x4a,0x27,0x5c,0x27,0x47,0x67,0x8f, - 0xce,0x05,0x9d,0xe7,0x53,0xd9,0x53,0xdd,0xa7,0x0a, - 0xa7,0x16,0x4d,0x3d,0x3a,0xf5,0xae,0x2e,0xaa,0x6b, - 0xa5,0x1b,0xa1,0xbb,0x44,0x77,0xbf,0x6e,0xa7,0xee, - 0x98,0x9e,0xbe,0x5e,0x80,0x9e,0x4c,0x6f,0xa7,0xde, - 0x79,0xbd,0xe7,0xfa,0x1c,0x7d,0x2f,0xfd,0x54,0xfd, - 0x6d,0xfa,0xa7,0xf5,0x47,0x0c,0x58,0x06,0xb3,0x0c, - 0x24,0x06,0xdb,0x0c,0xce,0x18,0x3c,0xc5,0x35,0x71, - 0x6f,0x3c,0x1d,0x2f,0xc7,0xdb,0xf1,0x51,0x43,0x5d, - 0xc3,0x40,0x43,0xa5,0x61,0x95,0x61,0x97,0xe1,0x84, - 0x91,0xb9,0xd1,0x3c,0xa3,0xd5,0x46,0x8d,0x46,0x0f, - 0x8c,0x69,0xc6,0x5c,0xe3,0x24,0xe3,0x6d,0xc6,0x6d, - 0xc6,0xa3,0x26,0x06,0x26,0x21,0x26,0x4b,0x4d,0xea, - 0x4d,0xee,0x9a,0x52,0x4d,0xb9,0xa6,0x29,0xa6,0x3b, - 0x4c,0x3b,0x4c,0xc7,0xcd,0xcc,0xcd,0xa2,0xcd,0xd6, - 0x99,0x35,0x9b,0x3d,0x31,0xd7,0x32,0xe7,0x9b,0xe7, - 0x9b,0xd7,0x9b,0xdf,0xb7,0x60,0x5a,0x78,0x5a,0x2c, - 0xb6,0xa8,0xb6,0xb8,0x65,0x49,0xb2,0xe4,0x5a,0xa6, - 0x59,0xee,0xb6,0xbc,0x6e,0x85,0x5a,0x39,0x59,0xa5, - 0x58,0x55,0x5a,0x5d,0xb3,0x46,0xad,0x9d,0xad,0x25, - 0xd6,0xbb,0xad,0xbb,0xa7,0x11,0xa7,0xb9,0x4e,0x93, - 0x4e,0xab,0x9e,0xd6,0x67,0xc3,0xb0,0xf1,0xb6,0xc9, - 0xb6,0xa9,0xb7,0x19,0xb0,0xe5,0xd8,0x06,0xdb,0xae, - 0xb6,0x6d,0xb6,0x7d,0x61,0x67,0x62,0x17,0x67,0xb7, - 0xc5,0xae,0xc3,0xee,0x93,0xbd,0x93,0x7d,0xba,0x7d, - 0x8d,0xfd,0x3d,0x07,0x0d,0x87,0xd9,0x0e,0xab,0x1d, - 0x5a,0x1d,0x7e,0x73,0xb4,0x72,0x14,0x3a,0x56,0x3a, - 0xde,0x9a,0xce,0x9c,0xee,0x3f,0x7d,0xc5,0xf4,0x96, - 0xe9,0x2f,0x67,0x58,0xcf,0x10,0xcf,0xd8,0x33,0xe3, - 0xb6,0x13,0xcb,0x29,0xc4,0x69,0x9d,0x53,0x9b,0xd3, - 0x47,0x67,0x17,0x67,0xb9,0x73,0x83,0xf3,0x88,0x8b, - 0x89,0x4b,0x82,0xcb,0x2e,0x97,0x3e,0x2e,0x9b,0x1b, - 0xc6,0xdd,0xc8,0xbd,0xe4,0x4a,0x74,0xf5,0x71,0x5d, - 0xe1,0x7a,0xd2,0xf5,0x9d,0x9b,0xb3,0x9b,0xc2,0xed, - 0xa8,0xdb,0xaf,0xee,0x36,0xee,0x69,0xee,0x87,0xdc, - 0x9f,0xcc,0x34,0x9f,0x29,0x9e,0x59,0x33,0x73,0xd0, - 0xc3,0xc8,0x43,0xe0,0x51,0xe5,0xd1,0x3f,0x0b,0x9f, - 0x95,0x30,0x6b,0xdf,0xac,0x7e,0x4f,0x43,0x4f,0x81, - 0x67,0xb5,0xe7,0x23,0x2f,0x63,0x2f,0x91,0x57,0xad, - 0xd7,0xb0,0xb7,0xa5,0x77,0xaa,0xf7,0x61,0xef,0x17, - 0x3e,0xf6,0x3e,0x72,0x9f,0xe3,0x3e,0xe3,0x3c,0x37, - 0xde,0x32,0xde,0x59,0x5f,0xcc,0x37,0xc0,0xb7,0xc8, - 0xb7,0xcb,0x4f,0xc3,0x6f,0x9e,0x5f,0x85,0xdf,0x43, - 0x7f,0x23,0xff,0x64,0xff,0x7a,0xff,0xd1,0x00,0xa7, - 0x80,0x25,0x01,0x67,0x03,0x89,0x81,0x41,0x81,0x5b, - 0x02,0xfb,0xf8,0x7a,0x7c,0x21,0xbf,0x8e,0x3f,0x3a, - 0xdb,0x65,0xf6,0xb2,0xd9,0xed,0x41,0x8c,0xa0,0xb9, - 0x41,0x15,0x41,0x8f,0x82,0xad,0x82,0xe5,0xc1,0xad, - 0x21,0x68,0xc8,0xec,0x90,0xad,0x21,0xf7,0xe7,0x98, - 0xce,0x91,0xce,0x69,0x0e,0x85,0x50,0x7e,0xe8,0xd6, - 0xd0,0x07,0x61,0xe6,0x61,0x8b,0xc3,0x7e,0x0c,0x27, - 0x85,0x87,0x85,0x57,0x86,0x3f,0x8e,0x70,0x88,0x58, - 0x1a,0xd1,0x31,0x97,0x35,0x77,0xd1,0xdc,0x43,0x73, - 0xdf,0x44,0xfa,0x44,0x96,0x44,0xde,0x9b,0x67,0x31, - 0x4f,0x39,0xaf,0x2d,0x4a,0x35,0x2a,0x3e,0xaa,0x2e, - 0x6a,0x3c,0xda,0x37,0xba,0x34,0xba,0x3f,0xc6,0x2e, - 0x66,0x59,0xcc,0xd5,0x58,0x9d,0x58,0x49,0x6c,0x4b, - 0x1c,0x39,0x2e,0x2a,0xae,0x36,0x6e,0x6c,0xbe,0xdf, - 0xfc,0xed,0xf3,0x87,0xe2,0x9d,0xe2,0x0b,0xe3,0x7b, - 0x17,0x98,0x2f,0xc8,0x5d,0x70,0x79,0xa1,0xce,0xc2, - 0xf4,0x85,0xa7,0x16,0xa9,0x2e,0x12,0x2c,0x3a,0x96, - 0x40,0x4c,0x88,0x4e,0x38,0x94,0xf0,0x41,0x10,0x2a, - 0xa8,0x16,0x8c,0x25,0xf2,0x13,0x77,0x25,0x8e,0x0a, - 0x79,0xc2,0x1d,0xc2,0x67,0x22,0x2f,0xd1,0x36,0xd1, - 0x88,0xd8,0x43,0x5c,0x2a,0x1e,0x4e,0xf2,0x48,0x2a, - 0x4d,0x7a,0x92,0xec,0x91,0xbc,0x35,0x79,0x24,0xc5, - 0x33,0xa5,0x2c,0xe5,0xb9,0x84,0x27,0xa9,0x90,0xbc, - 0x4c,0x0d,0x4c,0xdd,0x9b,0x3a,0x9e,0x16,0x9a,0x76, - 0x20,0x6d,0x32,0x3d,0x3a,0xbd,0x31,0x83,0x92,0x91, - 0x90,0x71,0x42,0xaa,0x21,0x4d,0x93,0xb6,0x67,0xea, - 0x67,0xe6,0x66,0x76,0xcb,0xac,0x65,0x85,0xb2,0xfe, - 0xc5,0x6e,0x8b,0xb7,0x2f,0x1e,0x95,0x07,0xc9,0x6b, - 0xb3,0x90,0xac,0x05,0x59,0x2d,0x0a,0xb6,0x42,0xa6, - 0xe8,0x54,0x5a,0x28,0xd7,0x2a,0x07,0xb2,0x67,0x65, - 0x57,0x66,0xbf,0xcd,0x89,0xca,0x39,0x96,0xab,0x9e, - 0x2b,0xcd,0xed,0xcc,0xb3,0xca,0xdb,0x90,0x37,0x9c, - 0xef,0x9f,0xff,0xed,0x12,0xc2,0x12,0xe1,0x92,0xb6, - 0xa5,0x86,0x4b,0x57,0x2d,0x1d,0x58,0xe6,0xbd,0xac, - 0x6a,0x39,0xb2,0x3c,0x71,0x79,0xdb,0x0a,0xe3,0x15, - 0x05,0x2b,0x86,0x56,0x06,0xac,0x3c,0xb8,0x8a,0xb6, - 0x2a,0x6d,0xd5,0x4f,0xab,0xed,0x57,0x97,0xae,0x7e, - 0xbd,0x26,0x7a,0x4d,0x6b,0x81,0x5e,0xc1,0xca,0x82, - 0xc1,0xb5,0x01,0x6b,0xeb,0x0b,0x55,0x0a,0xe5,0x85, - 0x7d,0xeb,0xdc,0xd7,0xed,0x5d,0x4f,0x58,0x2f,0x59, - 0xdf,0xb5,0x61,0xfa,0x86,0x9d,0x1b,0x3e,0x15,0x89, - 0x8a,0xae,0x14,0xdb,0x17,0x97,0x15,0x7f,0xd8,0x28, - 0xdc,0x78,0xe5,0x1b,0x87,0x6f,0xca,0xbf,0x99,0xdc, - 0x94,0xb4,0xa9,0xab,0xc4,0xb9,0x64,0xcf,0x66,0xd2, - 0x66,0xe9,0xe6,0xde,0x2d,0x9e,0x5b,0x0e,0x96,0xaa, - 0x97,0xe6,0x97,0x0e,0x6e,0x0d,0xd9,0xda,0xb4,0x0d, - 0xdf,0x56,0xb4,0xed,0xf5,0xf6,0x45,0xdb,0x2f,0x97, - 0xcd,0x28,0xdb,0xbb,0x83,0xb6,0x43,0xb9,0xa3,0xbf, - 0x3c,0xb8,0xbc,0x65,0xa7,0xc9,0xce,0xcd,0x3b,0x3f, - 0x54,0xa4,0x54,0xf4,0x54,0xfa,0x54,0x36,0xee,0xd2, - 0xdd,0xb5,0x61,0xd7,0xf8,0x6e,0xd1,0xee,0x1b,0x7b, - 0xbc,0xf6,0x34,0xec,0xd5,0xdb,0x5b,0xbc,0xf7,0xfd, - 0x3e,0xc9,0xbe,0xdb,0x55,0x01,0x55,0x4d,0xd5,0x66, - 0xd5,0x65,0xfb,0x49,0xfb,0xb3,0xf7,0x3f,0xae,0x89, - 0xaa,0xe9,0xf8,0x96,0xfb,0x6d,0x5d,0xad,0x4e,0x6d, - 0x71,0xed,0xc7,0x03,0xd2,0x03,0xfd,0x07,0x23,0x0e, - 0xb6,0xd7,0xb9,0xd4,0xd5,0x1d,0xd2,0x3d,0x54,0x52, - 0x8f,0xd6,0x2b,0xeb,0x47,0x0e,0xc7,0x1f,0xbe,0xfe, - 0x9d,0xef,0x77,0x2d,0x0d,0x36,0x0d,0x55,0x8d,0x9c, - 0xc6,0xe2,0x23,0x70,0x44,0x79,0xe4,0xe9,0xf7,0x09, - 0xdf,0xf7,0x1e,0x0d,0x3a,0xda,0x76,0x8c,0x7b,0xac, - 0xe1,0x07,0xd3,0x1f,0x76,0x1d,0x67,0x1d,0x2f,0x6a, - 0x42,0x9a,0xf2,0x9a,0x46,0x9b,0x53,0x9a,0xfb,0x5b, - 0x62,0x5b,0xba,0x4f,0xcc,0x3e,0xd1,0xd6,0xea,0xde, - 0x7a,0xfc,0x47,0xdb,0x1f,0x0f,0x9c,0x34,0x3c,0x59, - 0x79,0x4a,0xf3,0x54,0xc9,0x69,0xda,0xe9,0x82,0xd3, - 0x93,0x67,0xf2,0xcf,0x8c,0x9d,0x95,0x9d,0x7d,0x7e, - 0x2e,0xf9,0xdc,0x60,0xdb,0xa2,0xb6,0x7b,0xe7,0x63, - 0xce,0xdf,0x6a,0x0f,0x6f,0xef,0xba,0x10,0x74,0xe1, - 0xd2,0x45,0xff,0x8b,0xe7,0x3b,0xbc,0x3b,0xce,0x5c, - 0xf2,0xb8,0x74,0xf2,0xb2,0xdb,0xe5,0x13,0x57,0xb8, - 0x57,0x9a,0xaf,0x3a,0x5f,0x6d,0xea,0x74,0xea,0x3c, - 0xfe,0x93,0xd3,0x4f,0xc7,0xbb,0x9c,0xbb,0x9a,0xae, - 0xb9,0x5c,0x6b,0xb9,0xee,0x7a,0xbd,0xb5,0x7b,0x66, - 0xf7,0xe9,0x1b,0x9e,0x37,0xce,0xdd,0xf4,0xbd,0x79, - 0xf1,0x16,0xff,0xd6,0xd5,0x9e,0x39,0x3d,0xdd,0xbd, - 0xf3,0x7a,0x6f,0xf7,0xc5,0xf7,0xf5,0xdf,0x16,0xdd, - 0x7e,0x72,0x27,0xfd,0xce,0xcb,0xbb,0xd9,0x77,0x27, - 0xee,0xad,0xbc,0x4f,0xbc,0x5f,0xf4,0x40,0xed,0x41, - 0xd9,0x43,0xdd,0x87,0xd5,0x3f,0x5b,0xfe,0xdc,0xd8, - 0xef,0xdc,0x7f,0x6a,0xc0,0x77,0xa0,0xf3,0xd1,0xdc, - 0x47,0xf7,0x06,0x85,0x83,0xcf,0xfe,0x91,0xf5,0x8f, - 0x0f,0x43,0x05,0x8f,0x99,0x8f,0xcb,0x86,0x0d,0x86, - 0xeb,0x9e,0x38,0x3e,0x39,0x39,0xe2,0x3f,0x72,0xfd, - 0xe9,0xfc,0xa7,0x43,0xcf,0x64,0xcf,0x26,0x9e,0x17, - 0xfe,0xa2,0xfe,0xcb,0xae,0x17,0x16,0x2f,0x7e,0xf8, - 0xd5,0xeb,0xd7,0xce,0xd1,0x98,0xd1,0xa1,0x97,0xf2, - 0x97,0x93,0xbf,0x6d,0x7c,0xa5,0xfd,0xea,0xc0,0xeb, - 0x19,0xaf,0xdb,0xc6,0xc2,0xc6,0x1e,0xbe,0xc9,0x78, - 0x33,0x31,0x5e,0xf4,0x56,0xfb,0xed,0xc1,0x77,0xdc, - 0x77,0x1d,0xef,0xa3,0xdf,0x0f,0x4f,0xe4,0x7c,0x20, - 0x7f,0x28,0xff,0x68,0xf9,0xb1,0xf5,0x53,0xd0,0xa7, - 0xfb,0x93,0x19,0x93,0x93,0xff,0x04,0x03,0x98,0xf3, - 0xfc,0x63,0x33,0x2d,0xdb,0x00,0x00,0x00,0x04,0x67, - 0x41,0x4d,0x41,0x00,0x00,0xb1,0x8e,0x7c,0xfb,0x51, - 0x93,0x00,0x00,0x00,0x20,0x63,0x48,0x52,0x4d,0x00, - 0x00,0x7a,0x25,0x00,0x00,0x80,0x83,0x00,0x00,0xf9, - 0xff,0x00,0x00,0x80,0xe9,0x00,0x00,0x75,0x30,0x00, - 0x00,0xea,0x60,0x00,0x00,0x3a,0x98,0x00,0x00,0x17, - 0x6f,0x92,0x5f,0xc5,0x46,0x00,0x00,0x01,0xf7,0x49, - 0x44,0x41,0x54,0x78,0xda,0xec,0xd9,0xcd,0xab,0x4d, - 0x51,0x18,0xc7,0xf1,0xcf,0xbe,0xd7,0x75,0xba,0x22, - 0x6f,0xa5,0x4c,0x18,0xc8,0x80,0x50,0x3a,0x7f,0x00, - 0x61,0xa0,0x0c,0xa4,0x0c,0x95,0x99,0xf8,0x0f,0x94, - 0xdc,0x0c,0xa5,0xe4,0x9a,0x19,0x98,0x18,0x90,0x81, - 0x99,0x0c,0x98,0xc9,0x50,0x4a,0x31,0x91,0x32,0x63, - 0xe0,0xe6,0x35,0x3a,0x2e,0x6a,0x19,0xec,0xbd,0x73, - 0x95,0xce,0xdd,0xeb,0x9c,0x75,0x8e,0x7d,0xb2,0x9e, - 0x7a,0x3a,0x75,0x5a,0xed,0x7e,0xdf,0x67,0xbd,0xec, - 0xb5,0x7f,0x4f,0x11,0x42,0x30,0xc9,0xb1,0x22,0x66, - 0x70,0x51,0x14,0xb1,0xcf,0xdf,0x8f,0xbd,0x98,0x47, - 0xe3,0x4a,0x45,0x15,0x35,0x84,0xd0,0x38,0x23,0xe3, - 0x04,0x7a,0x95,0xf0,0x9b,0x98,0x1d,0x89,0xa6,0x11, - 0x00,0xcc,0xe2,0x5c,0x25,0x7c,0x69,0x3e,0xc4,0xb6, - 0xb6,0x03,0x6c,0xc2,0xf5,0xbf,0x88,0xaf,0xf3,0x05, - 0x0e,0xb4,0x15,0x60,0x67,0x55,0xe5,0xb0,0x4c,0xbe, - 0xc5,0xa9,0xb6,0x01,0x1c,0xc4,0xab,0x06,0xe2,0xeb, - 0xec,0xe1,0x62,0x5b,0x00,0x4e,0xe2,0x6b,0x84,0xf8, - 0xa5,0x79,0x0b,0xab,0xff,0x15,0xc0,0x2a,0x9c,0x1f, - 0x50,0x78,0xdf,0xcd,0x3d,0x0e,0x80,0xcd,0xb8,0x91, - 0x40,0x7c,0x9d,0x2f,0x71,0x68,0x5c,0x00,0xbb,0xf0, - 0x28,0xa1,0xf8,0x3a,0x17,0x70,0x3a,0x16,0xa0,0x88, - 0x79,0x41,0x15,0x45,0xd1,0xc5,0x65,0xec,0xc0,0xb7, - 0xba,0x60,0x58,0x89,0x8d,0xd5,0x6f,0xa3,0xa3,0x1e, - 0x9f,0xf1,0x1e,0xd3,0xd5,0x7f,0xd3,0xf8,0x82,0x6b, - 0x21,0x84,0xf9,0x71,0xbf,0x89,0xf7,0xe0,0x49,0x44, - 0xb5,0xbf,0xe3,0x42,0x0a,0x4d,0x53,0x26,0x3c,0x32, - 0x40,0x06,0xc8,0x00,0x19,0x20,0x03,0x64,0x80,0xff, - 0xc7,0x95,0xe8,0x13,0xef,0x70,0x07,0x4f,0xb1,0xd8, - 0xa0,0x68,0x3f,0xf0,0xb8,0x4d,0x33,0xd0,0xab,0x2e, - 0x77,0x4d,0x6e,0x86,0xf5,0x98,0xb5,0x6d,0x9a,0x81, - 0x35,0x38,0x8a,0x7d,0x0d,0xc7,0xff,0xc4,0x4c,0xf5, - 0x45,0x96,0x37,0x71,0x06,0xc8,0x00,0x19,0x20,0x03, - 0x64,0x80,0x0c,0x30,0xb1,0x11,0x6b,0x6c,0x6d,0xc7, - 0x55,0x74,0xfd,0x69,0x6c,0xcd,0x28,0x8d,0xad,0x4e, - 0xc3,0x47,0x05,0xa5,0x21,0xbc,0xe0,0xb7,0xb1,0x35, - 0x55,0xdd,0xa9,0x6e,0x87,0x10,0xe6,0x1a,0x8b,0x1a, - 0xc0,0xd8,0xda,0x8a,0x7b,0xd2,0x5b,0x8b,0x9f,0x94, - 0x9d,0x9d,0xb1,0x98,0xbb,0xeb,0x71,0x25,0xa1,0xf8, - 0x37,0x38,0x3e,0x50,0x51,0x87,0xb0,0x16,0x3b,0x38, - 0x93,0x40,0xfc,0x33,0xec,0x1e,0x78,0x55,0x0c,0xe9, - 0x8d,0x16,0x38,0x82,0x0f,0x03,0x8a,0x7f,0x80,0x0d, - 0x43,0x2d,0xeb,0x44,0xe6,0x6e,0x17,0xcf,0x23,0x84, - 0x2f,0x2a,0x9b,0x81,0xc3,0xef,0xcb,0x84,0x4d,0xbe, - 0x2d,0xb8,0xdb,0x40,0xfc,0x47,0x9c,0x4d,0x76,0xb0, - 0x24,0x6e,0xb3,0xae,0xc3,0xa5,0x3e,0xe2,0x5f,0xe3, - 0x58,0xd2,0x93,0x71,0x04,0x8d,0xee,0x8e,0xb2,0x8d, - 0xba,0xec,0x66,0x6d,0x2b,0x40,0x1d,0x87,0xab,0xe5, - 0x12,0x70,0xbf,0x9a,0x1d,0x93,0x04,0x40,0xd9,0xb9, - 0x99,0x8b,0x35,0x0f,0x46,0xd6,0x23,0x6b,0x63,0xfc, - 0x1a,0x00,0x7a,0x84,0x45,0x65,0xbc,0xcf,0x3a,0x08, - 0x00,0x00,0x00,0x00,0x49,0x45,0x4e,0x44,0xae,0x42, - 0x60,0x82 -}; diff --git a/data/converted/help_x_png.cpp b/data/converted/help_x_png.cpp new file mode 100644 index 000000000..58e28c57a --- /dev/null +++ b/data/converted/help_x_png.cpp @@ -0,0 +1,165 @@ +//this file was auto-generated from "x.png" by res2h + +#include "../Resources.h" + +const size_t help_x_png_size = 1576; +const unsigned char help_x_png_data[1576] = { + 0x89,0x50,0x4e,0x47,0x0d,0x0a,0x1a,0x0a,0x00,0x00, + 0x00,0x0d,0x49,0x48,0x44,0x52,0x00,0x00,0x00,0x1f, + 0x00,0x00,0x00,0x1f,0x08,0x06,0x00,0x00,0x00,0x1f, + 0xae,0x16,0x39,0x00,0x00,0x00,0x19,0x74,0x45,0x58, + 0x74,0x53,0x6f,0x66,0x74,0x77,0x61,0x72,0x65,0x00, + 0x41,0x64,0x6f,0x62,0x65,0x20,0x49,0x6d,0x61,0x67, + 0x65,0x52,0x65,0x61,0x64,0x79,0x71,0xc9,0x65,0x3c, + 0x00,0x00,0x03,0x24,0x69,0x54,0x58,0x74,0x58,0x4d, + 0x4c,0x3a,0x63,0x6f,0x6d,0x2e,0x61,0x64,0x6f,0x62, + 0x65,0x2e,0x78,0x6d,0x70,0x00,0x00,0x00,0x00,0x00, + 0x3c,0x3f,0x78,0x70,0x61,0x63,0x6b,0x65,0x74,0x20, + 0x62,0x65,0x67,0x69,0x6e,0x3d,0x22,0xef,0xbb,0xbf, + 0x22,0x20,0x69,0x64,0x3d,0x22,0x57,0x35,0x4d,0x30, + 0x4d,0x70,0x43,0x65,0x68,0x69,0x48,0x7a,0x72,0x65, + 0x53,0x7a,0x4e,0x54,0x63,0x7a,0x6b,0x63,0x39,0x64, + 0x22,0x3f,0x3e,0x20,0x3c,0x78,0x3a,0x78,0x6d,0x70, + 0x6d,0x65,0x74,0x61,0x20,0x78,0x6d,0x6c,0x6e,0x73, + 0x3a,0x78,0x3d,0x22,0x61,0x64,0x6f,0x62,0x65,0x3a, + 0x6e,0x73,0x3a,0x6d,0x65,0x74,0x61,0x2f,0x22,0x20, + 0x78,0x3a,0x78,0x6d,0x70,0x74,0x6b,0x3d,0x22,0x41, + 0x64,0x6f,0x62,0x65,0x20,0x58,0x4d,0x50,0x20,0x43, + 0x6f,0x72,0x65,0x20,0x35,0x2e,0x33,0x2d,0x63,0x30, + 0x31,0x31,0x20,0x36,0x36,0x2e,0x31,0x34,0x35,0x36, + 0x36,0x31,0x2c,0x20,0x32,0x30,0x31,0x32,0x2f,0x30, + 0x32,0x2f,0x30,0x36,0x2d,0x31,0x34,0x3a,0x35,0x36, + 0x3a,0x32,0x37,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x22,0x3e,0x20,0x3c,0x72,0x64,0x66,0x3a,0x52, + 0x44,0x46,0x20,0x78,0x6d,0x6c,0x6e,0x73,0x3a,0x72, + 0x64,0x66,0x3d,0x22,0x68,0x74,0x74,0x70,0x3a,0x2f, + 0x2f,0x77,0x77,0x77,0x2e,0x77,0x33,0x2e,0x6f,0x72, + 0x67,0x2f,0x31,0x39,0x39,0x39,0x2f,0x30,0x32,0x2f, + 0x32,0x32,0x2d,0x72,0x64,0x66,0x2d,0x73,0x79,0x6e, + 0x74,0x61,0x78,0x2d,0x6e,0x73,0x23,0x22,0x3e,0x20, + 0x3c,0x72,0x64,0x66,0x3a,0x44,0x65,0x73,0x63,0x72, + 0x69,0x70,0x74,0x69,0x6f,0x6e,0x20,0x72,0x64,0x66, + 0x3a,0x61,0x62,0x6f,0x75,0x74,0x3d,0x22,0x22,0x20, + 0x78,0x6d,0x6c,0x6e,0x73,0x3a,0x78,0x6d,0x70,0x3d, + 0x22,0x68,0x74,0x74,0x70,0x3a,0x2f,0x2f,0x6e,0x73, + 0x2e,0x61,0x64,0x6f,0x62,0x65,0x2e,0x63,0x6f,0x6d, + 0x2f,0x78,0x61,0x70,0x2f,0x31,0x2e,0x30,0x2f,0x22, + 0x20,0x78,0x6d,0x6c,0x6e,0x73,0x3a,0x78,0x6d,0x70, + 0x4d,0x4d,0x3d,0x22,0x68,0x74,0x74,0x70,0x3a,0x2f, + 0x2f,0x6e,0x73,0x2e,0x61,0x64,0x6f,0x62,0x65,0x2e, + 0x63,0x6f,0x6d,0x2f,0x78,0x61,0x70,0x2f,0x31,0x2e, + 0x30,0x2f,0x6d,0x6d,0x2f,0x22,0x20,0x78,0x6d,0x6c, + 0x6e,0x73,0x3a,0x73,0x74,0x52,0x65,0x66,0x3d,0x22, + 0x68,0x74,0x74,0x70,0x3a,0x2f,0x2f,0x6e,0x73,0x2e, + 0x61,0x64,0x6f,0x62,0x65,0x2e,0x63,0x6f,0x6d,0x2f, + 0x78,0x61,0x70,0x2f,0x31,0x2e,0x30,0x2f,0x73,0x54, + 0x79,0x70,0x65,0x2f,0x52,0x65,0x73,0x6f,0x75,0x72, + 0x63,0x65,0x52,0x65,0x66,0x23,0x22,0x20,0x78,0x6d, + 0x70,0x3a,0x43,0x72,0x65,0x61,0x74,0x6f,0x72,0x54, + 0x6f,0x6f,0x6c,0x3d,0x22,0x41,0x64,0x6f,0x62,0x65, + 0x20,0x50,0x68,0x6f,0x74,0x6f,0x73,0x68,0x6f,0x70, + 0x20,0x43,0x53,0x36,0x20,0x28,0x4d,0x61,0x63,0x69, + 0x6e,0x74,0x6f,0x73,0x68,0x29,0x22,0x20,0x78,0x6d, + 0x70,0x4d,0x4d,0x3a,0x49,0x6e,0x73,0x74,0x61,0x6e, + 0x63,0x65,0x49,0x44,0x3d,0x22,0x78,0x6d,0x70,0x2e, + 0x69,0x69,0x64,0x3a,0x36,0x39,0x44,0x41,0x36,0x46, + 0x46,0x32,0x39,0x44,0x39,0x30,0x31,0x31,0x45,0x33, + 0x41,0x39,0x31,0x44,0x42,0x44,0x46,0x44,0x34,0x30, + 0x39,0x39,0x32,0x45,0x45,0x33,0x22,0x20,0x78,0x6d, + 0x70,0x4d,0x4d,0x3a,0x44,0x6f,0x63,0x75,0x6d,0x65, + 0x6e,0x74,0x49,0x44,0x3d,0x22,0x78,0x6d,0x70,0x2e, + 0x64,0x69,0x64,0x3a,0x36,0x39,0x44,0x41,0x36,0x46, + 0x46,0x33,0x39,0x44,0x39,0x30,0x31,0x31,0x45,0x33, + 0x41,0x39,0x31,0x44,0x42,0x44,0x46,0x44,0x34,0x30, + 0x39,0x39,0x32,0x45,0x45,0x33,0x22,0x3e,0x20,0x3c, + 0x78,0x6d,0x70,0x4d,0x4d,0x3a,0x44,0x65,0x72,0x69, + 0x76,0x65,0x64,0x46,0x72,0x6f,0x6d,0x20,0x73,0x74, + 0x52,0x65,0x66,0x3a,0x69,0x6e,0x73,0x74,0x61,0x6e, + 0x63,0x65,0x49,0x44,0x3d,0x22,0x78,0x6d,0x70,0x2e, + 0x69,0x69,0x64,0x3a,0x45,0x44,0x36,0x43,0x36,0x42, + 0x37,0x37,0x39,0x44,0x38,0x46,0x31,0x31,0x45,0x33, + 0x41,0x39,0x31,0x44,0x42,0x44,0x46,0x44,0x34,0x30, + 0x39,0x39,0x32,0x45,0x45,0x33,0x22,0x20,0x73,0x74, + 0x52,0x65,0x66,0x3a,0x64,0x6f,0x63,0x75,0x6d,0x65, + 0x6e,0x74,0x49,0x44,0x3d,0x22,0x78,0x6d,0x70,0x2e, + 0x64,0x69,0x64,0x3a,0x45,0x44,0x36,0x43,0x36,0x42, + 0x37,0x38,0x39,0x44,0x38,0x46,0x31,0x31,0x45,0x33, + 0x41,0x39,0x31,0x44,0x42,0x44,0x46,0x44,0x34,0x30, + 0x39,0x39,0x32,0x45,0x45,0x33,0x22,0x2f,0x3e,0x20, + 0x3c,0x2f,0x72,0x64,0x66,0x3a,0x44,0x65,0x73,0x63, + 0x72,0x69,0x70,0x74,0x69,0x6f,0x6e,0x3e,0x20,0x3c, + 0x2f,0x72,0x64,0x66,0x3a,0x52,0x44,0x46,0x3e,0x20, + 0x3c,0x2f,0x78,0x3a,0x78,0x6d,0x70,0x6d,0x65,0x74, + 0x61,0x3e,0x20,0x3c,0x3f,0x78,0x70,0x61,0x63,0x6b, + 0x65,0x74,0x20,0x65,0x6e,0x64,0x3d,0x22,0x72,0x22, + 0x3f,0x3e,0x86,0x58,0x16,0xa2,0x00,0x00,0x02,0x9a, + 0x49,0x44,0x41,0x54,0x78,0xda,0xbc,0x97,0x4b,0x48, + 0x55,0x51,0x14,0x86,0xcf,0x3d,0x5a,0x83,0xb4,0xa2, + 0xc0,0x5b,0x34,0x11,0x1c,0xa4,0xf6,0x18,0x44,0x49, + 0x4a,0x49,0x83,0x26,0x92,0x54,0x1a,0x3d,0xa9,0x26, + 0x45,0x0f,0x48,0x28,0x0a,0xbc,0x11,0xd8,0x40,0x2d, + 0xad,0x49,0xa4,0xa3,0xcc,0x66,0x15,0x81,0x0f,0x7a, + 0xe8,0x28,0x2a,0x44,0x93,0xe8,0x31,0x8a,0x5e,0x62, + 0x36,0x0a,0x94,0x20,0xb0,0x42,0x85,0x94,0xdb,0xbf, + 0xe0,0xdf,0xb1,0xb9,0x78,0x3c,0x6b,0x9f,0xee,0xed, + 0x87,0x0f,0xf6,0xb9,0xfb,0x9c,0xb5,0xce,0xdd,0x6b, + 0xed,0xb5,0xd7,0x89,0x25,0x12,0x09,0x4f,0xa9,0x35, + 0xa0,0x12,0x6c,0x06,0xab,0xc0,0x32,0x90,0x03,0x26, + 0xc0,0x28,0xf8,0x08,0xfa,0x41,0x2f,0x78,0xab,0x31, + 0x98,0x1d,0x32,0x1f,0x03,0xd5,0xe0,0x3c,0x28,0x09, + 0xb8,0x67,0x01,0x28,0x20,0xdb,0x40,0x13,0x78,0x05, + 0xae,0x82,0x2e,0x90,0x0c,0x32,0xee,0xcf,0xe1,0xb8, + 0x08,0xf4,0xd1,0x40,0x89,0xe7,0x26,0xb9,0xbf,0x83, + 0x2b,0x51,0xe4,0xea,0x7c,0x0f,0xdf,0xbe,0xdc,0xfb, + 0x37,0x6d,0x02,0x6f,0xc0,0x7e,0xad,0xf3,0x63,0xe0, + 0x1e,0xc8,0xf5,0xd2,0x23,0x09,0xcb,0x5d,0x50,0x13, + 0xe6,0x7c,0x1f,0xb8,0x11,0x12,0x8e,0x28,0x92,0xdc, + 0x69,0x01,0x07,0x82,0x9c,0xaf,0x04,0xed,0xbc,0x31, + 0x13,0x12,0xbb,0x37,0x41,0x71,0xaa,0x73,0x99,0x68, + 0x4b,0xe3,0x52,0x07,0x29,0x87,0x7e,0x62,0xf6,0x56, + 0xdb,0x09,0xb6,0x84,0x3c,0x78,0x0b,0xbc,0xe4,0x58, + 0xb6,0x5f,0x45,0xca,0xfc,0x45,0x30,0xc6,0xb1,0xc4, + 0x77,0x6d,0x80,0x1d,0xa9,0x13,0xbb,0x64,0x17,0x19, + 0xe7,0xb5,0x8a,0xb7,0xde,0x08,0x4e,0x82,0x69,0xf0, + 0x18,0x7c,0x02,0xf3,0x38,0x27,0xd7,0x0d,0x1c,0x6f, + 0x60,0x11,0x9a,0x4b,0x52,0xd9,0xba,0x7c,0xee,0xc3, + 0x32,0x65,0x85,0x3b,0xc5,0xf1,0x17,0xe6,0x87,0xc7, + 0x22,0x72,0xc1,0x0a,0x5f,0x2b,0xc8,0x52,0xd4,0x81, + 0xd5,0xe2,0x7c,0xbb,0x43,0xcc,0xea,0xc1,0x72,0x8e, + 0x2f,0x81,0x49,0x16,0xa1,0xd7,0xfc,0xed,0x28,0x28, + 0x55,0xda,0xaa,0xf2,0x19,0x03,0xad,0x16,0xb1,0x6c, + 0x8a,0xbe,0x82,0xeb,0xa0,0x8e,0xd7,0x4b,0xc0,0x65, + 0x07,0x5b,0x65,0xbe,0x9d,0xfa,0x4a,0x1d,0xb2,0x2a, + 0x5f,0x1d,0x0f,0x14,0xb3,0x12,0x79,0x0e,0x76,0x8a, + 0xc5,0x79,0x3c,0x62,0xc1,0xc8,0x66,0xf2,0x89,0xd6, + 0x81,0xe3,0x8e,0x76,0xe2,0xe2,0x7c,0x71,0x84,0xfd, + 0x2a,0x4b,0x3c,0xdf,0xba,0x5e,0x1a,0xa1,0x2a,0xe6, + 0xca,0x03,0xe3,0x11,0x9c,0x9f,0xe1,0x39,0x6e,0xf4, + 0x04,0xdc,0x71,0xb4,0xf1,0xcb,0x67,0x23,0xe0,0x22, + 0x69,0x16,0xee,0x5b,0x87,0x50,0x3e,0xc7,0x67,0xc1, + 0x77,0x07,0x3b,0x63,0xbe,0x95,0x30,0x1a,0x4d,0x81, + 0xd3,0x1c,0x2f,0x04,0x8d,0x56,0x71,0xf9,0xc6,0xe2, + 0xa1,0xd5,0x07,0x9f,0x07,0xbe,0x56,0x57,0xc0,0x67, + 0xeb,0x9f,0x4a,0xb2,0x1e,0x64,0x01,0x32,0x25,0x78, + 0x40,0x69,0xab,0x5f,0x9c,0x3f,0x52,0xde,0x3c,0x02, + 0x9a,0x4d,0xa6,0x82,0x73,0xd6,0xe1,0xd4,0x6c,0x55, + 0xbb,0x13,0xe0,0xb7,0xc2,0x5e,0x8f,0x3c,0x38,0x04, + 0x06,0x15,0x37,0x5f,0x03,0x2b,0xd8,0xab,0xd5,0x73, + 0xd9,0x8d,0xa4,0xb1,0xdc,0xc1,0x39,0x09,0xcd,0xed, + 0x10,0x5b,0x2f,0xc0,0x7b,0x73,0xb0,0x34,0x29,0x56, + 0xa0,0x95,0x04,0xe9,0x81,0x63,0xf8,0xfe,0xee,0xcd, + 0x1e,0xf0,0xd4,0xfb,0x3f,0xea,0x33,0x2f,0x6a,0x17, + 0x06,0x89,0xd5,0x8f,0x0c,0x3b,0xfe,0xc9,0x4a,0x98, + 0x4c,0x75,0x3e,0x0c,0x0e,0x83,0x99,0x0c,0x39,0x16, + 0xbb,0x47,0x98,0x63,0xb3,0x36,0x90,0x0f,0xd9,0x30, + 0x24,0x33,0xe0,0x58,0xec,0x76,0x86,0xb5,0xce,0xd2, + 0x24,0xec,0x4e,0x63,0x08,0xc4,0xce,0x5e,0xab,0xf9, + 0x08,0xfd,0x68,0xe8,0x06,0xeb,0xd3,0x90,0x84,0xcf, + 0x68,0xa7,0xdb,0xf5,0x73,0x49,0x72,0x60,0x2b,0x3b, + 0x9d,0x01,0x47,0xa7,0xcf,0xa5,0x53,0xe1,0xf3,0xc3, + 0x51,0x3f,0x14,0xcd,0x36,0x14,0x0a,0x53,0xbe,0x52, + 0xe3,0x3c,0x8e,0xc7,0x59,0xd7,0xdf,0xd1,0x69,0xaf, + 0xf6,0xbc,0xf8,0x23,0xc0,0x00,0xfb,0xfe,0x80,0x69, + 0x45,0x01,0x0a,0xdf,0x00,0x00,0x00,0x00,0x49,0x45, + 0x4e,0x44,0xae,0x42,0x60,0x82 +}; diff --git a/data/converted/help_y_png.cpp b/data/converted/help_y_png.cpp new file mode 100644 index 000000000..3b950a5ee --- /dev/null +++ b/data/converted/help_y_png.cpp @@ -0,0 +1,157 @@ +//this file was auto-generated from "y.png" by res2h + +#include "../Resources.h" + +const size_t help_y_png_size = 1498; +const unsigned char help_y_png_data[1498] = { + 0x89,0x50,0x4e,0x47,0x0d,0x0a,0x1a,0x0a,0x00,0x00, + 0x00,0x0d,0x49,0x48,0x44,0x52,0x00,0x00,0x00,0x1f, + 0x00,0x00,0x00,0x1f,0x08,0x06,0x00,0x00,0x00,0x1f, + 0xae,0x16,0x39,0x00,0x00,0x00,0x19,0x74,0x45,0x58, + 0x74,0x53,0x6f,0x66,0x74,0x77,0x61,0x72,0x65,0x00, + 0x41,0x64,0x6f,0x62,0x65,0x20,0x49,0x6d,0x61,0x67, + 0x65,0x52,0x65,0x61,0x64,0x79,0x71,0xc9,0x65,0x3c, + 0x00,0x00,0x03,0x24,0x69,0x54,0x58,0x74,0x58,0x4d, + 0x4c,0x3a,0x63,0x6f,0x6d,0x2e,0x61,0x64,0x6f,0x62, + 0x65,0x2e,0x78,0x6d,0x70,0x00,0x00,0x00,0x00,0x00, + 0x3c,0x3f,0x78,0x70,0x61,0x63,0x6b,0x65,0x74,0x20, + 0x62,0x65,0x67,0x69,0x6e,0x3d,0x22,0xef,0xbb,0xbf, + 0x22,0x20,0x69,0x64,0x3d,0x22,0x57,0x35,0x4d,0x30, + 0x4d,0x70,0x43,0x65,0x68,0x69,0x48,0x7a,0x72,0x65, + 0x53,0x7a,0x4e,0x54,0x63,0x7a,0x6b,0x63,0x39,0x64, + 0x22,0x3f,0x3e,0x20,0x3c,0x78,0x3a,0x78,0x6d,0x70, + 0x6d,0x65,0x74,0x61,0x20,0x78,0x6d,0x6c,0x6e,0x73, + 0x3a,0x78,0x3d,0x22,0x61,0x64,0x6f,0x62,0x65,0x3a, + 0x6e,0x73,0x3a,0x6d,0x65,0x74,0x61,0x2f,0x22,0x20, + 0x78,0x3a,0x78,0x6d,0x70,0x74,0x6b,0x3d,0x22,0x41, + 0x64,0x6f,0x62,0x65,0x20,0x58,0x4d,0x50,0x20,0x43, + 0x6f,0x72,0x65,0x20,0x35,0x2e,0x33,0x2d,0x63,0x30, + 0x31,0x31,0x20,0x36,0x36,0x2e,0x31,0x34,0x35,0x36, + 0x36,0x31,0x2c,0x20,0x32,0x30,0x31,0x32,0x2f,0x30, + 0x32,0x2f,0x30,0x36,0x2d,0x31,0x34,0x3a,0x35,0x36, + 0x3a,0x32,0x37,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x22,0x3e,0x20,0x3c,0x72,0x64,0x66,0x3a,0x52, + 0x44,0x46,0x20,0x78,0x6d,0x6c,0x6e,0x73,0x3a,0x72, + 0x64,0x66,0x3d,0x22,0x68,0x74,0x74,0x70,0x3a,0x2f, + 0x2f,0x77,0x77,0x77,0x2e,0x77,0x33,0x2e,0x6f,0x72, + 0x67,0x2f,0x31,0x39,0x39,0x39,0x2f,0x30,0x32,0x2f, + 0x32,0x32,0x2d,0x72,0x64,0x66,0x2d,0x73,0x79,0x6e, + 0x74,0x61,0x78,0x2d,0x6e,0x73,0x23,0x22,0x3e,0x20, + 0x3c,0x72,0x64,0x66,0x3a,0x44,0x65,0x73,0x63,0x72, + 0x69,0x70,0x74,0x69,0x6f,0x6e,0x20,0x72,0x64,0x66, + 0x3a,0x61,0x62,0x6f,0x75,0x74,0x3d,0x22,0x22,0x20, + 0x78,0x6d,0x6c,0x6e,0x73,0x3a,0x78,0x6d,0x70,0x3d, + 0x22,0x68,0x74,0x74,0x70,0x3a,0x2f,0x2f,0x6e,0x73, + 0x2e,0x61,0x64,0x6f,0x62,0x65,0x2e,0x63,0x6f,0x6d, + 0x2f,0x78,0x61,0x70,0x2f,0x31,0x2e,0x30,0x2f,0x22, + 0x20,0x78,0x6d,0x6c,0x6e,0x73,0x3a,0x78,0x6d,0x70, + 0x4d,0x4d,0x3d,0x22,0x68,0x74,0x74,0x70,0x3a,0x2f, + 0x2f,0x6e,0x73,0x2e,0x61,0x64,0x6f,0x62,0x65,0x2e, + 0x63,0x6f,0x6d,0x2f,0x78,0x61,0x70,0x2f,0x31,0x2e, + 0x30,0x2f,0x6d,0x6d,0x2f,0x22,0x20,0x78,0x6d,0x6c, + 0x6e,0x73,0x3a,0x73,0x74,0x52,0x65,0x66,0x3d,0x22, + 0x68,0x74,0x74,0x70,0x3a,0x2f,0x2f,0x6e,0x73,0x2e, + 0x61,0x64,0x6f,0x62,0x65,0x2e,0x63,0x6f,0x6d,0x2f, + 0x78,0x61,0x70,0x2f,0x31,0x2e,0x30,0x2f,0x73,0x54, + 0x79,0x70,0x65,0x2f,0x52,0x65,0x73,0x6f,0x75,0x72, + 0x63,0x65,0x52,0x65,0x66,0x23,0x22,0x20,0x78,0x6d, + 0x70,0x3a,0x43,0x72,0x65,0x61,0x74,0x6f,0x72,0x54, + 0x6f,0x6f,0x6c,0x3d,0x22,0x41,0x64,0x6f,0x62,0x65, + 0x20,0x50,0x68,0x6f,0x74,0x6f,0x73,0x68,0x6f,0x70, + 0x20,0x43,0x53,0x36,0x20,0x28,0x4d,0x61,0x63,0x69, + 0x6e,0x74,0x6f,0x73,0x68,0x29,0x22,0x20,0x78,0x6d, + 0x70,0x4d,0x4d,0x3a,0x49,0x6e,0x73,0x74,0x61,0x6e, + 0x63,0x65,0x49,0x44,0x3d,0x22,0x78,0x6d,0x70,0x2e, + 0x69,0x69,0x64,0x3a,0x36,0x39,0x44,0x41,0x36,0x46, + 0x46,0x41,0x39,0x44,0x39,0x30,0x31,0x31,0x45,0x33, + 0x41,0x39,0x31,0x44,0x42,0x44,0x46,0x44,0x34,0x30, + 0x39,0x39,0x32,0x45,0x45,0x33,0x22,0x20,0x78,0x6d, + 0x70,0x4d,0x4d,0x3a,0x44,0x6f,0x63,0x75,0x6d,0x65, + 0x6e,0x74,0x49,0x44,0x3d,0x22,0x78,0x6d,0x70,0x2e, + 0x64,0x69,0x64,0x3a,0x36,0x39,0x44,0x41,0x36,0x46, + 0x46,0x42,0x39,0x44,0x39,0x30,0x31,0x31,0x45,0x33, + 0x41,0x39,0x31,0x44,0x42,0x44,0x46,0x44,0x34,0x30, + 0x39,0x39,0x32,0x45,0x45,0x33,0x22,0x3e,0x20,0x3c, + 0x78,0x6d,0x70,0x4d,0x4d,0x3a,0x44,0x65,0x72,0x69, + 0x76,0x65,0x64,0x46,0x72,0x6f,0x6d,0x20,0x73,0x74, + 0x52,0x65,0x66,0x3a,0x69,0x6e,0x73,0x74,0x61,0x6e, + 0x63,0x65,0x49,0x44,0x3d,0x22,0x78,0x6d,0x70,0x2e, + 0x69,0x69,0x64,0x3a,0x36,0x39,0x44,0x41,0x36,0x46, + 0x46,0x38,0x39,0x44,0x39,0x30,0x31,0x31,0x45,0x33, + 0x41,0x39,0x31,0x44,0x42,0x44,0x46,0x44,0x34,0x30, + 0x39,0x39,0x32,0x45,0x45,0x33,0x22,0x20,0x73,0x74, + 0x52,0x65,0x66,0x3a,0x64,0x6f,0x63,0x75,0x6d,0x65, + 0x6e,0x74,0x49,0x44,0x3d,0x22,0x78,0x6d,0x70,0x2e, + 0x64,0x69,0x64,0x3a,0x36,0x39,0x44,0x41,0x36,0x46, + 0x46,0x39,0x39,0x44,0x39,0x30,0x31,0x31,0x45,0x33, + 0x41,0x39,0x31,0x44,0x42,0x44,0x46,0x44,0x34,0x30, + 0x39,0x39,0x32,0x45,0x45,0x33,0x22,0x2f,0x3e,0x20, + 0x3c,0x2f,0x72,0x64,0x66,0x3a,0x44,0x65,0x73,0x63, + 0x72,0x69,0x70,0x74,0x69,0x6f,0x6e,0x3e,0x20,0x3c, + 0x2f,0x72,0x64,0x66,0x3a,0x52,0x44,0x46,0x3e,0x20, + 0x3c,0x2f,0x78,0x3a,0x78,0x6d,0x70,0x6d,0x65,0x74, + 0x61,0x3e,0x20,0x3c,0x3f,0x78,0x70,0x61,0x63,0x6b, + 0x65,0x74,0x20,0x65,0x6e,0x64,0x3d,0x22,0x72,0x22, + 0x3f,0x3e,0x79,0x6d,0x1d,0x54,0x00,0x00,0x02,0x4c, + 0x49,0x44,0x41,0x54,0x78,0xda,0xc4,0x97,0x4b,0x48, + 0x1b,0x51,0x14,0x86,0x27,0x83,0x52,0xa8,0x8a,0x64, + 0x13,0xc9,0x56,0x41,0x8d,0xba,0x93,0x50,0x44,0x8b, + 0x0b,0xc1,0x85,0x45,0xea,0xdb,0x74,0xd1,0x8d,0xd4, + 0xb6,0xa0,0xb8,0x11,0x4d,0x37,0xae,0x45,0x41,0x04, + 0x77,0x6a,0xb7,0x4a,0xa1,0x4d,0xc0,0x47,0x56,0xa2, + 0x21,0xc6,0x47,0x69,0x10,0x17,0x45,0x5b,0x8a,0xdd, + 0xb7,0x74,0xe5,0x03,0x41,0xc4,0xc7,0x7f,0xe0,0x0c, + 0x5c,0x86,0x4c,0xe6,0xcc,0x24,0x69,0x7e,0xf8,0x20, + 0x61,0x66,0xce,0x7f,0xe7,0xdc,0x7b,0xce,0xbd,0xe3, + 0x09,0x87,0xc3,0x9a,0x50,0x0d,0xe0,0x05,0x68,0x01, + 0x75,0xa0,0x02,0x94,0x80,0x6b,0xf0,0x07,0xfc,0x04, + 0x49,0x10,0x03,0xdf,0x25,0x01,0x8b,0x6c,0xae,0x7b, + 0x40,0x37,0xf8,0x00,0x82,0x16,0xf7,0x3c,0x05,0x95, + 0x4c,0x07,0x98,0x06,0x29,0x30,0x0b,0x22,0xe0,0xc1, + 0x2a,0xb8,0x9e,0xc1,0xb8,0x16,0x24,0x38,0x40,0x50, + 0x73,0x26,0xba,0xff,0x33,0x67,0xa2,0xd6,0xa9,0x79, + 0x3f,0x8f,0xfe,0xb9,0x96,0x9d,0x9a,0xc1,0x11,0x08, + 0x49,0xcd,0x87,0xc1,0x27,0x50,0xaa,0xe5,0x46,0x34, + 0x2d,0xab,0x60,0xd4,0xce,0x7c,0x10,0x2c,0xda,0x4c, + 0x87,0x1b,0xd1,0xda,0x59,0x00,0xaf,0xac,0xcc,0xab, + 0xc1,0x47,0xbe,0x31,0x1f,0xa2,0xb8,0xcb,0x20,0x60, + 0x36,0xa7,0x0b,0x4b,0x39,0x4c,0xb5,0x95,0x4a,0xd8, + 0xc7,0xa3,0x96,0xda,0x4b,0xd0,0x9a,0xe1,0xa1,0x1b, + 0x30,0x0e,0x6e,0x79,0x0e,0xe7,0xd2,0x4c,0xcd,0x2e, + 0x58,0xe1,0xdf,0xed,0xa0,0xd7,0x22,0x16,0xf5,0x89, + 0x1e,0xaa,0x22,0xc3,0x7c,0xd2,0x66,0xc4,0x4f,0xc0, + 0x3d,0x8f,0xda,0x08,0x60,0x0e,0x3e,0x01,0xbe,0x81, + 0x62,0x41,0x3c,0xea,0x6c,0x11,0x9d,0xeb,0xb0,0x49, + 0x90,0xb2,0x29,0x7e,0x6b,0x8d,0x1b,0x89,0xaa,0x6d, + 0x36,0x26,0xbd,0x01,0x55,0x82,0x3e,0x50,0x4f,0xe6, + 0x9d,0xc2,0xf9,0xf2,0x83,0x31,0xfe,0x4d,0xb5,0xbb, + 0xa5,0x5c,0x9b,0x56,0xca,0x6a,0x4a,0x18,0xaf,0x4b, + 0xe7,0x14,0x4a,0x45,0xe9,0xf4,0x9a,0x0c,0x53,0xfc, + 0xe6,0x1a,0x0f,0xce,0x2f,0x8c,0xd5,0xa4,0xab,0x4b, + 0x5f,0x20,0xaf,0x32,0x9f,0x71,0x70,0xa8,0x0c,0xc2, + 0x2b,0x98,0x6b,0x55,0x01,0x32,0xf7,0x39,0x2c,0x17, + 0xf5,0xed,0x46,0xc0,0x5a,0x9a,0xac,0x48,0xe4,0x23, + 0xf3,0x72,0x17,0xed,0xd2,0x98,0xd7,0x63,0xae,0x02, + 0x75,0x3d,0x48,0x55,0x4a,0xe6,0xe7,0x2e,0x9a,0x85, + 0x79,0x45,0xab,0x95,0x20,0xd5,0x95,0xce,0x07,0x01, + 0xa7,0xa2,0x5a,0x7e,0xa6,0xfc,0x0f,0xb9,0x88,0xf1, + 0x57,0xe7,0x13,0x48,0xb6,0x72,0xb3,0x11,0xfd,0xd0, + 0x79,0xc3,0x2f,0x84,0x92,0x64,0xbe,0x51,0x20,0xf3, + 0x4d,0x32,0xff,0x05,0x0e,0x5c,0x3c,0xec,0x53,0xce, + 0x6e,0x4e,0xd3,0xfe,0x15,0x9c,0xea,0x16,0xbd,0x5a, + 0xa2,0x79,0xf0,0x9b,0x29,0x73,0xf8,0xec,0x8c,0xba, + 0x50,0x36,0xc1,0xce,0x7f,0x4a,0x77,0xc2,0x68,0x4c, + 0x6a,0xba,0xde,0x81,0x8b,0x3c,0x1b,0x5f,0x82,0xb7, + 0xc6,0x71,0x5a,0x35,0x3f,0x03,0xaf,0xc1,0x5d,0x9e, + 0x8c,0x29,0xee,0x10,0xaf,0xb1,0xb4,0xf5,0xb9,0x0e, + 0xde,0x67,0x3a,0xe8,0x67,0x61,0x4c,0x71,0xbf,0xd8, + 0x35,0x07,0x3a,0x44,0xf6,0xe5,0x70,0x0a,0x28,0xce, + 0x00,0xc7,0x15,0x75,0xa6,0x28,0x68,0xcc,0xc1,0x22, + 0x8c,0x73,0x9c,0xa8,0xd3,0xb6,0x48,0x6b,0xa0,0x8d, + 0x4f,0x3a,0x7b,0x0e,0x4d,0xf7,0xe9,0xa4,0xc2,0xcf, + 0x9f,0xb9,0xfd,0x50,0x34,0xca,0x90,0xa8,0x31,0x7d, + 0xa5,0xfa,0x78,0x3b,0xa6,0x5d,0xf1,0x1f,0x38,0x61, + 0xd3,0x98,0x74,0xbf,0x78,0x14,0x60,0x00,0x19,0x2b, + 0x6d,0x27,0x7a,0xc0,0xec,0x28,0x00,0x00,0x00,0x00, + 0x49,0x45,0x4e,0x44,0xae,0x42,0x60,0x82 +}; diff --git a/data/converted/star_filled_png.cpp b/data/converted/star_filled_png.cpp index ec16d993b..4308c2ba4 100644 --- a/data/converted/star_filled_png.cpp +++ b/data/converted/star_filled_png.cpp @@ -2,376 +2,179 @@ #include "../Resources.h" -const size_t star_filled_png_size = 3698; -const unsigned char star_filled_png_data[3698] = { +const size_t star_filled_png_size = 1729; +const unsigned char star_filled_png_data[1729] = { 0x89,0x50,0x4e,0x47,0x0d,0x0a,0x1a,0x0a,0x00,0x00, - 0x00,0x0d,0x49,0x48,0x44,0x52,0x00,0x00,0x00,0x40, - 0x00,0x00,0x00,0x40,0x08,0x06,0x00,0x00,0x00,0xaa, - 0x69,0x71,0xde,0x00,0x00,0x00,0x09,0x70,0x48,0x59, - 0x73,0x00,0x00,0x0b,0x13,0x00,0x00,0x0b,0x13,0x01, - 0x00,0x9a,0x9c,0x18,0x00,0x00,0x0a,0x4f,0x69,0x43, - 0x43,0x50,0x50,0x68,0x6f,0x74,0x6f,0x73,0x68,0x6f, - 0x70,0x20,0x49,0x43,0x43,0x20,0x70,0x72,0x6f,0x66, - 0x69,0x6c,0x65,0x00,0x00,0x78,0xda,0x9d,0x53,0x67, - 0x54,0x53,0xe9,0x16,0x3d,0xf7,0xde,0xf4,0x42,0x4b, - 0x88,0x80,0x94,0x4b,0x6f,0x52,0x15,0x08,0x20,0x52, - 0x42,0x8b,0x80,0x14,0x91,0x26,0x2a,0x21,0x09,0x10, - 0x4a,0x88,0x21,0xa1,0xd9,0x15,0x51,0xc1,0x11,0x45, - 0x45,0x04,0x1b,0xc8,0xa0,0x88,0x03,0x8e,0x8e,0x80, - 0x8c,0x15,0x51,0x2c,0x0c,0x8a,0x0a,0xd8,0x07,0xe4, - 0x21,0xa2,0x8e,0x83,0xa3,0x88,0x8a,0xca,0xfb,0xe1, - 0x7b,0xa3,0x6b,0xd6,0xbc,0xf7,0xe6,0xcd,0xfe,0xb5, - 0xd7,0x3e,0xe7,0xac,0xf3,0x9d,0xb3,0xcf,0x07,0xc0, - 0x08,0x0c,0x96,0x48,0x33,0x51,0x35,0x80,0x0c,0xa9, - 0x42,0x1e,0x11,0xe0,0x83,0xc7,0xc4,0xc6,0xe1,0xe4, - 0x2e,0x40,0x81,0x0a,0x24,0x70,0x00,0x10,0x08,0xb3, - 0x64,0x21,0x73,0xfd,0x23,0x01,0x00,0xf8,0x7e,0x3c, - 0x3c,0x2b,0x22,0xc0,0x07,0xbe,0x00,0x01,0x78,0xd3, - 0x0b,0x08,0x00,0xc0,0x4d,0x9b,0xc0,0x30,0x1c,0x87, - 0xff,0x0f,0xea,0x42,0x99,0x5c,0x01,0x80,0x84,0x01, - 0xc0,0x74,0x91,0x38,0x4b,0x08,0x80,0x14,0x00,0x40, - 0x7a,0x8e,0x42,0xa6,0x00,0x40,0x46,0x01,0x80,0x9d, - 0x98,0x26,0x53,0x00,0xa0,0x04,0x00,0x60,0xcb,0x63, - 0x62,0xe3,0x00,0x50,0x2d,0x00,0x60,0x27,0x7f,0xe6, - 0xd3,0x00,0x80,0x9d,0xf8,0x99,0x7b,0x01,0x00,0x5b, - 0x94,0x21,0x15,0x01,0xa0,0x91,0x00,0x20,0x13,0x65, - 0x88,0x44,0x00,0x68,0x3b,0x00,0xac,0xcf,0x56,0x8a, - 0x45,0x00,0x58,0x30,0x00,0x14,0x66,0x4b,0xc4,0x39, - 0x00,0xd8,0x2d,0x00,0x30,0x49,0x57,0x66,0x48,0x00, - 0xb0,0xb7,0x00,0xc0,0xce,0x10,0x0b,0xb2,0x00,0x08, - 0x0c,0x00,0x30,0x51,0x88,0x85,0x29,0x00,0x04,0x7b, - 0x00,0x60,0xc8,0x23,0x23,0x78,0x00,0x84,0x99,0x00, - 0x14,0x46,0xf2,0x57,0x3c,0xf1,0x2b,0xae,0x10,0xe7, - 0x2a,0x00,0x00,0x78,0x99,0xb2,0x3c,0xb9,0x24,0x39, - 0x45,0x81,0x5b,0x08,0x2d,0x71,0x07,0x57,0x57,0x2e, - 0x1e,0x28,0xce,0x49,0x17,0x2b,0x14,0x36,0x61,0x02, - 0x61,0x9a,0x40,0x2e,0xc2,0x79,0x99,0x19,0x32,0x81, - 0x34,0x0f,0xe0,0xf3,0xcc,0x00,0x00,0xa0,0x91,0x15, - 0x11,0xe0,0x83,0xf3,0xfd,0x78,0xce,0x0e,0xae,0xce, - 0xce,0x36,0x8e,0xb6,0x0e,0x5f,0x2d,0xea,0xbf,0x06, - 0xff,0x22,0x62,0x62,0xe3,0xfe,0xe5,0xcf,0xab,0x70, - 0x40,0x00,0x00,0xe1,0x74,0x7e,0xd1,0xfe,0x2c,0x2f, - 0xb3,0x1a,0x80,0x3b,0x06,0x80,0x6d,0xfe,0xa2,0x25, - 0xee,0x04,0x68,0x5e,0x0b,0xa0,0x75,0xf7,0x8b,0x66, - 0xb2,0x0f,0x40,0xb5,0x00,0xa0,0xe9,0xda,0x57,0xf3, - 0x70,0xf8,0x7e,0x3c,0x3c,0x45,0xa1,0x90,0xb9,0xd9, - 0xd9,0xe5,0xe4,0xe4,0xd8,0x4a,0xc4,0x42,0x5b,0x61, - 0xca,0x57,0x7d,0xfe,0x67,0xc2,0x5f,0xc0,0x57,0xfd, - 0x6c,0xf9,0x7e,0x3c,0xfc,0xf7,0xf5,0xe0,0xbe,0xe2, - 0x24,0x81,0x32,0x5d,0x81,0x47,0x04,0xf8,0xe0,0xc2, - 0xcc,0xf4,0x4c,0xa5,0x1c,0xcf,0x92,0x09,0x84,0x62, - 0xdc,0xe6,0x8f,0x47,0xfc,0xb7,0x0b,0xff,0xfc,0x1d, - 0xd3,0x22,0xc4,0x49,0x62,0xb9,0x58,0x2a,0x14,0xe3, - 0x51,0x12,0x71,0x8e,0x44,0x9a,0x8c,0xf3,0x32,0xa5, - 0x22,0x89,0x42,0x92,0x29,0xc5,0x25,0xd2,0xff,0x64, - 0xe2,0xdf,0x2c,0xfb,0x03,0x3e,0xdf,0x35,0x00,0xb0, - 0x6a,0x3e,0x01,0x7b,0x91,0x2d,0xa8,0x5d,0x63,0x03, - 0xf6,0x4b,0x27,0x10,0x58,0x74,0xc0,0xe2,0xf7,0x00, - 0x00,0xf2,0xbb,0x6f,0xc1,0xd4,0x28,0x08,0x03,0x80, - 0x68,0x83,0xe1,0xcf,0x77,0xff,0xef,0x3f,0xfd,0x47, - 0xa0,0x25,0x00,0x80,0x66,0x49,0x92,0x71,0x00,0x00, - 0x5e,0x44,0x24,0x2e,0x54,0xca,0xb3,0x3f,0xc7,0x08, - 0x00,0x00,0x44,0xa0,0x81,0x2a,0xb0,0x41,0x1b,0xf4, - 0xc1,0x18,0x2c,0xc0,0x06,0x1c,0xc1,0x05,0xdc,0xc1, - 0x0b,0xfc,0x60,0x36,0x84,0x42,0x24,0xc4,0xc2,0x42, - 0x10,0x42,0x0a,0x64,0x80,0x1c,0x72,0x60,0x29,0xac, - 0x82,0x42,0x28,0x86,0xcd,0xb0,0x1d,0x2a,0x60,0x2f, - 0xd4,0x40,0x1d,0x34,0xc0,0x51,0x68,0x86,0x93,0x70, - 0x0e,0x2e,0xc2,0x55,0xb8,0x0e,0x3d,0x70,0x0f,0xfa, - 0x61,0x08,0x9e,0xc1,0x28,0xbc,0x81,0x09,0x04,0x41, - 0xc8,0x08,0x13,0x61,0x21,0xda,0x88,0x01,0x62,0x8a, - 0x58,0x23,0x8e,0x08,0x17,0x99,0x85,0xf8,0x21,0xc1, - 0x48,0x04,0x12,0x8b,0x24,0x20,0xc9,0x88,0x14,0x51, - 0x22,0x4b,0x91,0x35,0x48,0x31,0x52,0x8a,0x54,0x20, - 0x55,0x48,0x1d,0xf2,0x3d,0x72,0x02,0x39,0x87,0x5c, - 0x46,0xba,0x91,0x3b,0xc8,0x00,0x32,0x82,0xfc,0x86, - 0xbc,0x47,0x31,0x94,0x81,0xb2,0x51,0x3d,0xd4,0x0c, - 0xb5,0x43,0xb9,0xa8,0x37,0x1a,0x84,0x46,0xa2,0x0b, - 0xd0,0x64,0x74,0x31,0x9a,0x8f,0x16,0xa0,0x9b,0xd0, - 0x72,0xb4,0x1a,0x3d,0x8c,0x36,0xa1,0xe7,0xd0,0xab, - 0x68,0x0f,0xda,0x8f,0x3e,0x43,0xc7,0x30,0xc0,0xe8, - 0x18,0x07,0x33,0xc4,0x6c,0x30,0x2e,0xc6,0xc3,0x42, - 0xb1,0x38,0x2c,0x09,0x93,0x63,0xcb,0xb1,0x22,0xac, - 0x0c,0xab,0xc6,0x1a,0xb0,0x56,0xac,0x03,0xbb,0x89, - 0xf5,0x63,0xcf,0xb1,0x77,0x04,0x12,0x81,0x45,0xc0, - 0x09,0x36,0x04,0x77,0x42,0x20,0x61,0x1e,0x41,0x48, - 0x58,0x4c,0x58,0x4e,0xd8,0x48,0xa8,0x20,0x1c,0x24, - 0x34,0x11,0xda,0x09,0x37,0x09,0x03,0x84,0x51,0xc2, - 0x27,0x22,0x93,0xa8,0x4b,0xb4,0x26,0xba,0x11,0xf9, - 0xc4,0x18,0x62,0x32,0x31,0x87,0x58,0x48,0x2c,0x23, - 0xd6,0x12,0x8f,0x13,0x2f,0x10,0x7b,0x88,0x43,0xc4, - 0x37,0x24,0x12,0x89,0x43,0x32,0x27,0xb9,0x90,0x02, - 0x49,0xb1,0xa4,0x54,0xd2,0x12,0xd2,0x46,0xd2,0x6e, - 0x52,0x23,0xe9,0x2c,0xa9,0x9b,0x34,0x48,0x1a,0x23, - 0x93,0xc9,0xda,0x64,0x6b,0xb2,0x07,0x39,0x94,0x2c, - 0x20,0x2b,0xc8,0x85,0xe4,0x9d,0xe4,0xc3,0xe4,0x33, - 0xe4,0x1b,0xe4,0x21,0xf2,0x5b,0x0a,0x9d,0x62,0x40, - 0x71,0xa4,0xf8,0x53,0xe2,0x28,0x52,0xca,0x6a,0x4a, - 0x19,0xe5,0x10,0xe5,0x34,0xe5,0x06,0x65,0x98,0x32, - 0x41,0x55,0xa3,0x9a,0x52,0xdd,0xa8,0xa1,0x54,0x11, - 0x35,0x8f,0x5a,0x42,0xad,0xa1,0xb6,0x52,0xaf,0x51, - 0x87,0xa8,0x13,0x34,0x75,0x9a,0x39,0xcd,0x83,0x16, - 0x49,0x4b,0xa5,0xad,0xa2,0x95,0xd3,0x1a,0x68,0x17, - 0x68,0xf7,0x69,0xaf,0xe8,0x74,0xba,0x11,0xdd,0x95, - 0x1e,0x4e,0x97,0xd0,0x57,0xd2,0xcb,0xe9,0x47,0xe8, - 0x97,0xe8,0x03,0xf4,0x77,0x0c,0x0d,0x86,0x15,0x83, - 0xc7,0x88,0x67,0x28,0x19,0x9b,0x18,0x07,0x18,0x67, - 0x19,0x77,0x18,0xaf,0x98,0x4c,0xa6,0x19,0xd3,0x8b, - 0x19,0xc7,0x54,0x30,0x37,0x31,0xeb,0x98,0xe7,0x99, - 0x0f,0x99,0x6f,0x55,0x58,0x2a,0xb6,0x2a,0x7c,0x15, - 0x91,0xca,0x0a,0x95,0x4a,0x95,0x26,0x95,0x1b,0x2a, - 0x2f,0x54,0xa9,0xaa,0xa6,0xaa,0xde,0xaa,0x0b,0x55, - 0xf3,0x55,0xcb,0x54,0x8f,0xa9,0x5e,0x53,0x7d,0xae, - 0x46,0x55,0x33,0x53,0xe3,0xa9,0x09,0xd4,0x96,0xab, - 0x55,0xaa,0x9d,0x50,0xeb,0x53,0x1b,0x53,0x67,0xa9, - 0x3b,0xa8,0x87,0xaa,0x67,0xa8,0x6f,0x54,0x3f,0xa4, - 0x7e,0x59,0xfd,0x89,0x06,0x59,0xc3,0x4c,0xc3,0x4f, - 0x43,0xa4,0x51,0xa0,0xb1,0x5f,0xe3,0xbc,0xc6,0x20, - 0x0b,0x63,0x19,0xb3,0x78,0x2c,0x21,0x6b,0x0d,0xab, - 0x86,0x75,0x81,0x35,0xc4,0x26,0xb1,0xcd,0xd9,0x7c, - 0x76,0x2a,0xbb,0x98,0xfd,0x1d,0xbb,0x8b,0x3d,0xaa, - 0xa9,0xa1,0x39,0x43,0x33,0x4a,0x33,0x57,0xb3,0x52, - 0xf3,0x94,0x66,0x3f,0x07,0xe3,0x98,0x71,0xf8,0x9c, - 0x74,0x4e,0x09,0xe7,0x28,0xa7,0x97,0xf3,0x7e,0x8a, - 0xde,0x14,0xef,0x29,0xe2,0x29,0x1b,0xa6,0x34,0x4c, - 0xb9,0x31,0x65,0x5c,0x6b,0xaa,0x96,0x97,0x96,0x58, - 0xab,0x48,0xab,0x51,0xab,0x47,0xeb,0xbd,0x36,0xae, - 0xed,0xa7,0x9d,0xa6,0xbd,0x45,0xbb,0x59,0xfb,0x81, - 0x0e,0x41,0xc7,0x4a,0x27,0x5c,0x27,0x47,0x67,0x8f, - 0xce,0x05,0x9d,0xe7,0x53,0xd9,0x53,0xdd,0xa7,0x0a, - 0xa7,0x16,0x4d,0x3d,0x3a,0xf5,0xae,0x2e,0xaa,0x6b, - 0xa5,0x1b,0xa1,0xbb,0x44,0x77,0xbf,0x6e,0xa7,0xee, - 0x98,0x9e,0xbe,0x5e,0x80,0x9e,0x4c,0x6f,0xa7,0xde, - 0x79,0xbd,0xe7,0xfa,0x1c,0x7d,0x2f,0xfd,0x54,0xfd, - 0x6d,0xfa,0xa7,0xf5,0x47,0x0c,0x58,0x06,0xb3,0x0c, - 0x24,0x06,0xdb,0x0c,0xce,0x18,0x3c,0xc5,0x35,0x71, - 0x6f,0x3c,0x1d,0x2f,0xc7,0xdb,0xf1,0x51,0x43,0x5d, - 0xc3,0x40,0x43,0xa5,0x61,0x95,0x61,0x97,0xe1,0x84, - 0x91,0xb9,0xd1,0x3c,0xa3,0xd5,0x46,0x8d,0x46,0x0f, - 0x8c,0x69,0xc6,0x5c,0xe3,0x24,0xe3,0x6d,0xc6,0x6d, - 0xc6,0xa3,0x26,0x06,0x26,0x21,0x26,0x4b,0x4d,0xea, - 0x4d,0xee,0x9a,0x52,0x4d,0xb9,0xa6,0x29,0xa6,0x3b, - 0x4c,0x3b,0x4c,0xc7,0xcd,0xcc,0xcd,0xa2,0xcd,0xd6, - 0x99,0x35,0x9b,0x3d,0x31,0xd7,0x32,0xe7,0x9b,0xe7, - 0x9b,0xd7,0x9b,0xdf,0xb7,0x60,0x5a,0x78,0x5a,0x2c, - 0xb6,0xa8,0xb6,0xb8,0x65,0x49,0xb2,0xe4,0x5a,0xa6, - 0x59,0xee,0xb6,0xbc,0x6e,0x85,0x5a,0x39,0x59,0xa5, - 0x58,0x55,0x5a,0x5d,0xb3,0x46,0xad,0x9d,0xad,0x25, - 0xd6,0xbb,0xad,0xbb,0xa7,0x11,0xa7,0xb9,0x4e,0x93, - 0x4e,0xab,0x9e,0xd6,0x67,0xc3,0xb0,0xf1,0xb6,0xc9, - 0xb6,0xa9,0xb7,0x19,0xb0,0xe5,0xd8,0x06,0xdb,0xae, - 0xb6,0x6d,0xb6,0x7d,0x61,0x67,0x62,0x17,0x67,0xb7, - 0xc5,0xae,0xc3,0xee,0x93,0xbd,0x93,0x7d,0xba,0x7d, - 0x8d,0xfd,0x3d,0x07,0x0d,0x87,0xd9,0x0e,0xab,0x1d, - 0x5a,0x1d,0x7e,0x73,0xb4,0x72,0x14,0x3a,0x56,0x3a, - 0xde,0x9a,0xce,0x9c,0xee,0x3f,0x7d,0xc5,0xf4,0x96, - 0xe9,0x2f,0x67,0x58,0xcf,0x10,0xcf,0xd8,0x33,0xe3, - 0xb6,0x13,0xcb,0x29,0xc4,0x69,0x9d,0x53,0x9b,0xd3, - 0x47,0x67,0x17,0x67,0xb9,0x73,0x83,0xf3,0x88,0x8b, - 0x89,0x4b,0x82,0xcb,0x2e,0x97,0x3e,0x2e,0x9b,0x1b, - 0xc6,0xdd,0xc8,0xbd,0xe4,0x4a,0x74,0xf5,0x71,0x5d, - 0xe1,0x7a,0xd2,0xf5,0x9d,0x9b,0xb3,0x9b,0xc2,0xed, - 0xa8,0xdb,0xaf,0xee,0x36,0xee,0x69,0xee,0x87,0xdc, - 0x9f,0xcc,0x34,0x9f,0x29,0x9e,0x59,0x33,0x73,0xd0, - 0xc3,0xc8,0x43,0xe0,0x51,0xe5,0xd1,0x3f,0x0b,0x9f, - 0x95,0x30,0x6b,0xdf,0xac,0x7e,0x4f,0x43,0x4f,0x81, - 0x67,0xb5,0xe7,0x23,0x2f,0x63,0x2f,0x91,0x57,0xad, - 0xd7,0xb0,0xb7,0xa5,0x77,0xaa,0xf7,0x61,0xef,0x17, - 0x3e,0xf6,0x3e,0x72,0x9f,0xe3,0x3e,0xe3,0x3c,0x37, - 0xde,0x32,0xde,0x59,0x5f,0xcc,0x37,0xc0,0xb7,0xc8, - 0xb7,0xcb,0x4f,0xc3,0x6f,0x9e,0x5f,0x85,0xdf,0x43, - 0x7f,0x23,0xff,0x64,0xff,0x7a,0xff,0xd1,0x00,0xa7, - 0x80,0x25,0x01,0x67,0x03,0x89,0x81,0x41,0x81,0x5b, - 0x02,0xfb,0xf8,0x7a,0x7c,0x21,0xbf,0x8e,0x3f,0x3a, - 0xdb,0x65,0xf6,0xb2,0xd9,0xed,0x41,0x8c,0xa0,0xb9, - 0x41,0x15,0x41,0x8f,0x82,0xad,0x82,0xe5,0xc1,0xad, - 0x21,0x68,0xc8,0xec,0x90,0xad,0x21,0xf7,0xe7,0x98, - 0xce,0x91,0xce,0x69,0x0e,0x85,0x50,0x7e,0xe8,0xd6, - 0xd0,0x07,0x61,0xe6,0x61,0x8b,0xc3,0x7e,0x0c,0x27, - 0x85,0x87,0x85,0x57,0x86,0x3f,0x8e,0x70,0x88,0x58, - 0x1a,0xd1,0x31,0x97,0x35,0x77,0xd1,0xdc,0x43,0x73, - 0xdf,0x44,0xfa,0x44,0x96,0x44,0xde,0x9b,0x67,0x31, - 0x4f,0x39,0xaf,0x2d,0x4a,0x35,0x2a,0x3e,0xaa,0x2e, - 0x6a,0x3c,0xda,0x37,0xba,0x34,0xba,0x3f,0xc6,0x2e, - 0x66,0x59,0xcc,0xd5,0x58,0x9d,0x58,0x49,0x6c,0x4b, - 0x1c,0x39,0x2e,0x2a,0xae,0x36,0x6e,0x6c,0xbe,0xdf, - 0xfc,0xed,0xf3,0x87,0xe2,0x9d,0xe2,0x0b,0xe3,0x7b, - 0x17,0x98,0x2f,0xc8,0x5d,0x70,0x79,0xa1,0xce,0xc2, - 0xf4,0x85,0xa7,0x16,0xa9,0x2e,0x12,0x2c,0x3a,0x96, - 0x40,0x4c,0x88,0x4e,0x38,0x94,0xf0,0x41,0x10,0x2a, - 0xa8,0x16,0x8c,0x25,0xf2,0x13,0x77,0x25,0x8e,0x0a, - 0x79,0xc2,0x1d,0xc2,0x67,0x22,0x2f,0xd1,0x36,0xd1, - 0x88,0xd8,0x43,0x5c,0x2a,0x1e,0x4e,0xf2,0x48,0x2a, - 0x4d,0x7a,0x92,0xec,0x91,0xbc,0x35,0x79,0x24,0xc5, - 0x33,0xa5,0x2c,0xe5,0xb9,0x84,0x27,0xa9,0x90,0xbc, - 0x4c,0x0d,0x4c,0xdd,0x9b,0x3a,0x9e,0x16,0x9a,0x76, - 0x20,0x6d,0x32,0x3d,0x3a,0xbd,0x31,0x83,0x92,0x91, - 0x90,0x71,0x42,0xaa,0x21,0x4d,0x93,0xb6,0x67,0xea, - 0x67,0xe6,0x66,0x76,0xcb,0xac,0x65,0x85,0xb2,0xfe, - 0xc5,0x6e,0x8b,0xb7,0x2f,0x1e,0x95,0x07,0xc9,0x6b, - 0xb3,0x90,0xac,0x05,0x59,0x2d,0x0a,0xb6,0x42,0xa6, - 0xe8,0x54,0x5a,0x28,0xd7,0x2a,0x07,0xb2,0x67,0x65, - 0x57,0x66,0xbf,0xcd,0x89,0xca,0x39,0x96,0xab,0x9e, - 0x2b,0xcd,0xed,0xcc,0xb3,0xca,0xdb,0x90,0x37,0x9c, - 0xef,0x9f,0xff,0xed,0x12,0xc2,0x12,0xe1,0x92,0xb6, - 0xa5,0x86,0x4b,0x57,0x2d,0x1d,0x58,0xe6,0xbd,0xac, - 0x6a,0x39,0xb2,0x3c,0x71,0x79,0xdb,0x0a,0xe3,0x15, - 0x05,0x2b,0x86,0x56,0x06,0xac,0x3c,0xb8,0x8a,0xb6, - 0x2a,0x6d,0xd5,0x4f,0xab,0xed,0x57,0x97,0xae,0x7e, - 0xbd,0x26,0x7a,0x4d,0x6b,0x81,0x5e,0xc1,0xca,0x82, - 0xc1,0xb5,0x01,0x6b,0xeb,0x0b,0x55,0x0a,0xe5,0x85, - 0x7d,0xeb,0xdc,0xd7,0xed,0x5d,0x4f,0x58,0x2f,0x59, - 0xdf,0xb5,0x61,0xfa,0x86,0x9d,0x1b,0x3e,0x15,0x89, - 0x8a,0xae,0x14,0xdb,0x17,0x97,0x15,0x7f,0xd8,0x28, - 0xdc,0x78,0xe5,0x1b,0x87,0x6f,0xca,0xbf,0x99,0xdc, - 0x94,0xb4,0xa9,0xab,0xc4,0xb9,0x64,0xcf,0x66,0xd2, - 0x66,0xe9,0xe6,0xde,0x2d,0x9e,0x5b,0x0e,0x96,0xaa, - 0x97,0xe6,0x97,0x0e,0x6e,0x0d,0xd9,0xda,0xb4,0x0d, - 0xdf,0x56,0xb4,0xed,0xf5,0xf6,0x45,0xdb,0x2f,0x97, - 0xcd,0x28,0xdb,0xbb,0x83,0xb6,0x43,0xb9,0xa3,0xbf, - 0x3c,0xb8,0xbc,0x65,0xa7,0xc9,0xce,0xcd,0x3b,0x3f, - 0x54,0xa4,0x54,0xf4,0x54,0xfa,0x54,0x36,0xee,0xd2, - 0xdd,0xb5,0x61,0xd7,0xf8,0x6e,0xd1,0xee,0x1b,0x7b, - 0xbc,0xf6,0x34,0xec,0xd5,0xdb,0x5b,0xbc,0xf7,0xfd, - 0x3e,0xc9,0xbe,0xdb,0x55,0x01,0x55,0x4d,0xd5,0x66, - 0xd5,0x65,0xfb,0x49,0xfb,0xb3,0xf7,0x3f,0xae,0x89, - 0xaa,0xe9,0xf8,0x96,0xfb,0x6d,0x5d,0xad,0x4e,0x6d, - 0x71,0xed,0xc7,0x03,0xd2,0x03,0xfd,0x07,0x23,0x0e, - 0xb6,0xd7,0xb9,0xd4,0xd5,0x1d,0xd2,0x3d,0x54,0x52, - 0x8f,0xd6,0x2b,0xeb,0x47,0x0e,0xc7,0x1f,0xbe,0xfe, - 0x9d,0xef,0x77,0x2d,0x0d,0x36,0x0d,0x55,0x8d,0x9c, - 0xc6,0xe2,0x23,0x70,0x44,0x79,0xe4,0xe9,0xf7,0x09, - 0xdf,0xf7,0x1e,0x0d,0x3a,0xda,0x76,0x8c,0x7b,0xac, - 0xe1,0x07,0xd3,0x1f,0x76,0x1d,0x67,0x1d,0x2f,0x6a, - 0x42,0x9a,0xf2,0x9a,0x46,0x9b,0x53,0x9a,0xfb,0x5b, - 0x62,0x5b,0xba,0x4f,0xcc,0x3e,0xd1,0xd6,0xea,0xde, - 0x7a,0xfc,0x47,0xdb,0x1f,0x0f,0x9c,0x34,0x3c,0x59, - 0x79,0x4a,0xf3,0x54,0xc9,0x69,0xda,0xe9,0x82,0xd3, - 0x93,0x67,0xf2,0xcf,0x8c,0x9d,0x95,0x9d,0x7d,0x7e, - 0x2e,0xf9,0xdc,0x60,0xdb,0xa2,0xb6,0x7b,0xe7,0x63, - 0xce,0xdf,0x6a,0x0f,0x6f,0xef,0xba,0x10,0x74,0xe1, - 0xd2,0x45,0xff,0x8b,0xe7,0x3b,0xbc,0x3b,0xce,0x5c, - 0xf2,0xb8,0x74,0xf2,0xb2,0xdb,0xe5,0x13,0x57,0xb8, - 0x57,0x9a,0xaf,0x3a,0x5f,0x6d,0xea,0x74,0xea,0x3c, - 0xfe,0x93,0xd3,0x4f,0xc7,0xbb,0x9c,0xbb,0x9a,0xae, - 0xb9,0x5c,0x6b,0xb9,0xee,0x7a,0xbd,0xb5,0x7b,0x66, - 0xf7,0xe9,0x1b,0x9e,0x37,0xce,0xdd,0xf4,0xbd,0x79, - 0xf1,0x16,0xff,0xd6,0xd5,0x9e,0x39,0x3d,0xdd,0xbd, - 0xf3,0x7a,0x6f,0xf7,0xc5,0xf7,0xf5,0xdf,0x16,0xdd, - 0x7e,0x72,0x27,0xfd,0xce,0xcb,0xbb,0xd9,0x77,0x27, - 0xee,0xad,0xbc,0x4f,0xbc,0x5f,0xf4,0x40,0xed,0x41, - 0xd9,0x43,0xdd,0x87,0xd5,0x3f,0x5b,0xfe,0xdc,0xd8, - 0xef,0xdc,0x7f,0x6a,0xc0,0x77,0xa0,0xf3,0xd1,0xdc, - 0x47,0xf7,0x06,0x85,0x83,0xcf,0xfe,0x91,0xf5,0x8f, - 0x0f,0x43,0x05,0x8f,0x99,0x8f,0xcb,0x86,0x0d,0x86, - 0xeb,0x9e,0x38,0x3e,0x39,0x39,0xe2,0x3f,0x72,0xfd, - 0xe9,0xfc,0xa7,0x43,0xcf,0x64,0xcf,0x26,0x9e,0x17, - 0xfe,0xa2,0xfe,0xcb,0xae,0x17,0x16,0x2f,0x7e,0xf8, - 0xd5,0xeb,0xd7,0xce,0xd1,0x98,0xd1,0xa1,0x97,0xf2, - 0x97,0x93,0xbf,0x6d,0x7c,0xa5,0xfd,0xea,0xc0,0xeb, - 0x19,0xaf,0xdb,0xc6,0xc2,0xc6,0x1e,0xbe,0xc9,0x78, - 0x33,0x31,0x5e,0xf4,0x56,0xfb,0xed,0xc1,0x77,0xdc, - 0x77,0x1d,0xef,0xa3,0xdf,0x0f,0x4f,0xe4,0x7c,0x20, - 0x7f,0x28,0xff,0x68,0xf9,0xb1,0xf5,0x53,0xd0,0xa7, - 0xfb,0x93,0x19,0x93,0x93,0xff,0x04,0x03,0x98,0xf3, - 0xfc,0x63,0x33,0x2d,0xdb,0x00,0x00,0x00,0x04,0x67, - 0x41,0x4d,0x41,0x00,0x00,0xb1,0x8e,0x7c,0xfb,0x51, - 0x93,0x00,0x00,0x00,0x20,0x63,0x48,0x52,0x4d,0x00, - 0x00,0x7a,0x25,0x00,0x00,0x80,0x83,0x00,0x00,0xf9, - 0xff,0x00,0x00,0x80,0xe9,0x00,0x00,0x75,0x30,0x00, - 0x00,0xea,0x60,0x00,0x00,0x3a,0x98,0x00,0x00,0x17, - 0x6f,0x92,0x5f,0xc5,0x46,0x00,0x00,0x03,0x8d,0x49, - 0x44,0x41,0x54,0x78,0xda,0xec,0x9b,0x51,0x64,0x5b, - 0x61,0x14,0xc7,0x7f,0x4d,0xab,0x8c,0x50,0x6a,0xa5, - 0x8c,0x56,0xab,0xd5,0xc9,0xa4,0x32,0x79,0x98,0xcd, - 0x6a,0xb5,0x31,0x9b,0xd6,0x1e,0x6a,0x33,0x5a,0x9b, - 0xb1,0x51,0xeb,0x4b,0x1f,0xaa,0x93,0xd1,0xd7,0x3d, - 0x8d,0xbe,0x8e,0xb2,0xa7,0x31,0xf6,0x54,0x2b,0x65, - 0x8c,0x51,0xfa,0x34,0x4a,0x29,0xa1,0x94,0x6a,0x09, - 0xb1,0x56,0x28,0x21,0x94,0xc8,0x1e,0xee,0x89,0x45, - 0x34,0xcd,0xcd,0x77,0x6f,0xbe,0xef,0xde,0xfb,0xed, - 0x10,0x91,0xa4,0xc9,0xfd,0xce,0x2f,0xe7,0x9c,0xef, - 0x9c,0xff,0xd7,0x74,0x54,0x2a,0x15,0x6c,0xb6,0x2e, - 0x00,0x8e,0xae,0x9a,0xba,0x7e,0x3f,0x70,0x02,0x94, - 0x8d,0x5c,0x7d,0xf0,0x94,0x98,0xe1,0x2f,0x60,0x19, - 0x98,0x35,0xb9,0x80,0x8e,0x4a,0xa5,0x62,0x2a,0x02, - 0x7a,0x81,0x23,0xe0,0x10,0x18,0xb7,0x31,0x02,0xde, - 0x02,0x71,0x20,0x09,0x4c,0x99,0x5a,0x84,0x29,0x00, - 0x57,0x80,0xc5,0x9a,0xc7,0x19,0xdb,0x00,0xbc,0x06, - 0xfa,0x6a,0x1e,0xdf,0x95,0x9b,0x15,0x00,0x3a,0xa5, - 0xf8,0xd5,0x5b,0xc6,0x16,0x00,0xb3,0xc0,0xc0,0x05, - 0xcf,0x4f,0x49,0x3d,0x88,0x3c,0x80,0x8c,0xe2,0x6b, - 0x91,0x00,0xf0,0x04,0x48,0x5c,0xf2,0xfa,0x73,0x60, - 0x28,0xca,0x00,0x32,0x8a,0xf5,0x21,0x12,0x00,0xee, - 0x01,0xb7,0x5d,0xfc,0xdd,0x2b,0x69,0x91,0x23,0x07, - 0xc0,0x6d,0x7e,0xd7,0xf7,0x08,0x91,0x00,0x90,0x02, - 0x1e,0xb5,0xd8,0x25,0xf6,0x44,0x09,0x40,0xab,0xd5, - 0xbd,0x47,0x20,0x44,0x02,0xc0,0x10,0xf0,0x54,0xe1, - 0x7d,0x8b,0x92,0x0e,0xa1,0x07,0xb0,0x2c,0xd5,0x5d, - 0x45,0x2b,0x78,0x11,0x76,0x00,0xfd,0x52,0xd5,0x75, - 0xc3,0x0b,0x0c,0x00,0xaf,0x61,0x3c,0xa2,0x98,0x3e, - 0x81,0x00,0xe0,0x57,0x21,0x6b,0x6b,0x7b,0xdc,0xe5, - 0xc3,0x5c,0x9f,0x90,0xe1,0xa6,0x0f,0x48,0xcb,0xfd, - 0x80,0x3c,0xef,0x47,0x11,0x4b,0x01,0x7f,0x80,0x63, - 0x20,0x8b,0xa3,0x21,0xee,0xe3,0x28,0x49,0x05,0x60, - 0xa7,0x9d,0x00,0xba,0x65,0x42,0xbb,0x26,0xf9,0x9c, - 0x12,0x07,0x87,0x80,0x31,0x1c,0x45,0x47,0x87,0xf5, - 0xd5,0x00,0xbe,0xc8,0x4e,0x1a,0x00,0x3a,0x01,0x76, - 0xdd,0x00,0x48,0x4a,0x9b,0x9a,0x94,0x0b,0x8d,0xc8, - 0xad,0x87,0x70,0x58,0x33,0x40,0x79,0x20,0x07,0xec, - 0x09,0x94,0x03,0x60,0x13,0xc8,0x55,0x45,0xd1,0x38, - 0xf0,0x1d,0xb8,0x8f,0x1d,0xb6,0x06,0x2c,0x30,0x78, - 0x5a,0xae,0x16,0xc1,0x22,0x30,0x0d,0x6c,0x58,0xe0, - 0xfc,0x47,0x60,0x1e,0x39,0x8b,0xa8,0xdd,0x05,0x4a, - 0xc0,0x0c,0xf0,0x35,0xc2,0xce,0xbf,0x07,0xde,0x5d, - 0x56,0x04,0xcb,0xc0,0x1c,0x70,0xa6,0xab,0x17,0xd7, - 0x68,0xf3,0x12,0xfa,0xae,0xfa,0x80,0x05,0xe0,0x43, - 0x44,0x1c,0x3f,0x97,0x2f,0x75,0xad,0xd5,0x46,0x68, - 0x05,0x58,0x0a,0xb9,0xf3,0x25,0xe0,0xd9,0x65,0x69, - 0xdd,0xac,0x13,0x5c,0xad,0x2d,0x18,0x21,0xb3,0x22, - 0xf0,0xb8,0x59,0x61,0x77,0xd3,0x0a,0xaf,0x49,0x08, - 0x9d,0x87,0xc8,0xf9,0x02,0x30,0x09,0x6c,0xf9,0x35, - 0x0b,0x7c,0x93,0x1d,0xa2,0x14,0x02,0xe7,0x73,0xc0, - 0x84,0xdb,0x16,0xb9,0x95,0x61,0x68,0x13,0x78,0x28, - 0x3b,0x44,0x50,0xed,0x50,0x9c,0xcf,0xb6,0x6b,0x1a, - 0xdc,0x06,0x1e,0x48,0x3b,0x19,0x34,0xcb,0x02,0x77, - 0x04,0x42,0x5b,0xc7,0xe1,0x1d,0xa1,0x9c,0x0b,0x90, - 0xf3,0xbf,0x65,0x4d,0x79,0x5d,0x7a,0xc0,0xbe,0xd0, - 0x3e,0x08,0x80,0xf3,0xbf,0x24,0x2a,0x0b,0xba,0x05, - 0x91,0x63,0xa1,0xbe,0x67,0xd0,0xf9,0x0d,0x99,0x61, - 0x8a,0xaa,0x1f,0xe0,0x55,0x11,0xca,0xcb,0x76,0x73, - 0x6e,0x28,0xe7,0x3d,0xef,0x4c,0x7e,0x48,0x62,0x71, - 0x11,0x4e,0x4c,0x68,0x00,0x9e,0x1b,0x34,0x3f,0x00, - 0x24,0x0d,0x85,0x7f,0x55,0x7a,0x33,0x0e,0x20,0x6d, - 0xb0,0x06,0xa4,0x82,0x00,0x20,0x65,0x3b,0x00,0xab, - 0x23,0xa0,0xd7,0x8f,0x3c,0x34,0x09,0x3f,0x16,0xe2, - 0xf0,0x87,0x7f,0xe7,0x11,0xd6,0x02,0xf0,0xbc,0x86, - 0x58,0x88,0xf3,0xdf,0x97,0x6d,0x38,0x0a,0x00,0xd2, - 0xa6,0x00,0xc4,0x71,0x4e,0x8f,0x54,0xad,0x80,0xa3, - 0x39,0xae,0x7a,0x6c,0xa5,0x8d,0x01,0x48,0xa0,0x76, - 0x76,0x5f,0x12,0xa7,0x87,0xe5,0x7e,0x09,0x18,0x45, - 0xfd,0x3c,0x62,0x04,0x0f,0x67,0x94,0x31,0xcd,0xe4, - 0xbf,0x00,0xd7,0xc5,0xe9,0xb3,0xba,0xc9,0x72,0x0e, - 0xb8,0x89,0x0b,0x1d,0xaf,0xce,0x3a,0xbd,0xd4,0x01, - 0x5d,0x00,0xb6,0xc4,0xb9,0x97,0xe2,0x6c,0x23,0xdb, - 0x95,0xe9,0x72,0x9a,0x16,0x64,0x2d,0x2f,0x3b,0x81, - 0x17,0x00,0x6e,0x2e,0x9a,0xc5,0x91,0xa6,0x27,0x69, - 0x72,0x4c,0x5d,0x67,0x9b,0x38,0xbf,0x22,0x79,0x83, - 0x3b,0x95,0x27,0xad,0x1b,0x40,0x77,0x93,0xb0,0xcb, - 0xcb,0xe2,0x6f,0x00,0x3f,0x14,0xaf,0x51,0x06,0x3e, - 0x4b,0x7d,0x58,0x69,0x22,0x7a,0x68,0x8f,0x80,0xb1, - 0x06,0x1a,0x40,0x51,0x16,0x3b,0x2c,0x8b,0xf7,0xc3, - 0x8a,0x38,0xc7,0x74,0xa3,0xc0,0xa7,0x06,0x1a,0x40, - 0x52,0x55,0x93,0x88,0xf9,0x94,0xff,0x65,0x59,0xdc, - 0xb0,0x2c,0xb6,0x1d,0xe7,0x07,0x79,0x9c,0x33,0xcb, - 0x71,0x60,0xfd,0x82,0x88,0x4c,0xe8,0x04,0x50,0x1b, - 0x72,0xeb,0x12,0xea,0x0b,0xe8,0x91,0xcb,0xab,0x52, - 0xd8,0x04,0x8e,0x1a,0xec,0x29,0x0d,0xbc,0x44,0x40, - 0x55,0x8a,0x9e,0xc1,0x51,0x89,0x75,0xdb,0x36,0x70, - 0x4b,0xb6,0xcf,0x03,0x55,0x00,0xaa,0xbf,0x1b,0x9c, - 0x92,0x4a,0x1d,0x14,0xeb,0xc6,0xf9,0x77,0xfc,0x9f, - 0x2d,0xbd,0x6b,0xf0,0x54,0x00,0x58,0x6c,0x31,0x2c, - 0xb7,0xff,0x00,0x6c,0x07,0xf0,0x77,0x00,0x61,0xc5, - 0xb1,0x4d,0xf4,0xc6,0x0e,0x12,0x00,0x00,0x00,0x00, - 0x49,0x45,0x4e,0x44,0xae,0x42,0x60,0x82 + 0x00,0x0d,0x49,0x48,0x44,0x52,0x00,0x00,0x00,0x18, + 0x00,0x00,0x00,0x16,0x08,0x06,0x00,0x00,0x00,0xda, + 0x7d,0x5c,0x88,0x00,0x00,0x00,0x19,0x74,0x45,0x58, + 0x74,0x53,0x6f,0x66,0x74,0x77,0x61,0x72,0x65,0x00, + 0x41,0x64,0x6f,0x62,0x65,0x20,0x49,0x6d,0x61,0x67, + 0x65,0x52,0x65,0x61,0x64,0x79,0x71,0xc9,0x65,0x3c, + 0x00,0x00,0x03,0x24,0x69,0x54,0x58,0x74,0x58,0x4d, + 0x4c,0x3a,0x63,0x6f,0x6d,0x2e,0x61,0x64,0x6f,0x62, + 0x65,0x2e,0x78,0x6d,0x70,0x00,0x00,0x00,0x00,0x00, + 0x3c,0x3f,0x78,0x70,0x61,0x63,0x6b,0x65,0x74,0x20, + 0x62,0x65,0x67,0x69,0x6e,0x3d,0x22,0xef,0xbb,0xbf, + 0x22,0x20,0x69,0x64,0x3d,0x22,0x57,0x35,0x4d,0x30, + 0x4d,0x70,0x43,0x65,0x68,0x69,0x48,0x7a,0x72,0x65, + 0x53,0x7a,0x4e,0x54,0x63,0x7a,0x6b,0x63,0x39,0x64, + 0x22,0x3f,0x3e,0x20,0x3c,0x78,0x3a,0x78,0x6d,0x70, + 0x6d,0x65,0x74,0x61,0x20,0x78,0x6d,0x6c,0x6e,0x73, + 0x3a,0x78,0x3d,0x22,0x61,0x64,0x6f,0x62,0x65,0x3a, + 0x6e,0x73,0x3a,0x6d,0x65,0x74,0x61,0x2f,0x22,0x20, + 0x78,0x3a,0x78,0x6d,0x70,0x74,0x6b,0x3d,0x22,0x41, + 0x64,0x6f,0x62,0x65,0x20,0x58,0x4d,0x50,0x20,0x43, + 0x6f,0x72,0x65,0x20,0x35,0x2e,0x33,0x2d,0x63,0x30, + 0x31,0x31,0x20,0x36,0x36,0x2e,0x31,0x34,0x35,0x36, + 0x36,0x31,0x2c,0x20,0x32,0x30,0x31,0x32,0x2f,0x30, + 0x32,0x2f,0x30,0x36,0x2d,0x31,0x34,0x3a,0x35,0x36, + 0x3a,0x32,0x37,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x22,0x3e,0x20,0x3c,0x72,0x64,0x66,0x3a,0x52, + 0x44,0x46,0x20,0x78,0x6d,0x6c,0x6e,0x73,0x3a,0x72, + 0x64,0x66,0x3d,0x22,0x68,0x74,0x74,0x70,0x3a,0x2f, + 0x2f,0x77,0x77,0x77,0x2e,0x77,0x33,0x2e,0x6f,0x72, + 0x67,0x2f,0x31,0x39,0x39,0x39,0x2f,0x30,0x32,0x2f, + 0x32,0x32,0x2d,0x72,0x64,0x66,0x2d,0x73,0x79,0x6e, + 0x74,0x61,0x78,0x2d,0x6e,0x73,0x23,0x22,0x3e,0x20, + 0x3c,0x72,0x64,0x66,0x3a,0x44,0x65,0x73,0x63,0x72, + 0x69,0x70,0x74,0x69,0x6f,0x6e,0x20,0x72,0x64,0x66, + 0x3a,0x61,0x62,0x6f,0x75,0x74,0x3d,0x22,0x22,0x20, + 0x78,0x6d,0x6c,0x6e,0x73,0x3a,0x78,0x6d,0x70,0x3d, + 0x22,0x68,0x74,0x74,0x70,0x3a,0x2f,0x2f,0x6e,0x73, + 0x2e,0x61,0x64,0x6f,0x62,0x65,0x2e,0x63,0x6f,0x6d, + 0x2f,0x78,0x61,0x70,0x2f,0x31,0x2e,0x30,0x2f,0x22, + 0x20,0x78,0x6d,0x6c,0x6e,0x73,0x3a,0x78,0x6d,0x70, + 0x4d,0x4d,0x3d,0x22,0x68,0x74,0x74,0x70,0x3a,0x2f, + 0x2f,0x6e,0x73,0x2e,0x61,0x64,0x6f,0x62,0x65,0x2e, + 0x63,0x6f,0x6d,0x2f,0x78,0x61,0x70,0x2f,0x31,0x2e, + 0x30,0x2f,0x6d,0x6d,0x2f,0x22,0x20,0x78,0x6d,0x6c, + 0x6e,0x73,0x3a,0x73,0x74,0x52,0x65,0x66,0x3d,0x22, + 0x68,0x74,0x74,0x70,0x3a,0x2f,0x2f,0x6e,0x73,0x2e, + 0x61,0x64,0x6f,0x62,0x65,0x2e,0x63,0x6f,0x6d,0x2f, + 0x78,0x61,0x70,0x2f,0x31,0x2e,0x30,0x2f,0x73,0x54, + 0x79,0x70,0x65,0x2f,0x52,0x65,0x73,0x6f,0x75,0x72, + 0x63,0x65,0x52,0x65,0x66,0x23,0x22,0x20,0x78,0x6d, + 0x70,0x3a,0x43,0x72,0x65,0x61,0x74,0x6f,0x72,0x54, + 0x6f,0x6f,0x6c,0x3d,0x22,0x41,0x64,0x6f,0x62,0x65, + 0x20,0x50,0x68,0x6f,0x74,0x6f,0x73,0x68,0x6f,0x70, + 0x20,0x43,0x53,0x36,0x20,0x28,0x4d,0x61,0x63,0x69, + 0x6e,0x74,0x6f,0x73,0x68,0x29,0x22,0x20,0x78,0x6d, + 0x70,0x4d,0x4d,0x3a,0x49,0x6e,0x73,0x74,0x61,0x6e, + 0x63,0x65,0x49,0x44,0x3d,0x22,0x78,0x6d,0x70,0x2e, + 0x69,0x69,0x64,0x3a,0x46,0x43,0x44,0x39,0x31,0x31, + 0x37,0x35,0x39,0x44,0x38,0x41,0x31,0x31,0x45,0x33, + 0x41,0x39,0x31,0x44,0x42,0x44,0x46,0x44,0x34,0x30, + 0x39,0x39,0x32,0x45,0x45,0x33,0x22,0x20,0x78,0x6d, + 0x70,0x4d,0x4d,0x3a,0x44,0x6f,0x63,0x75,0x6d,0x65, + 0x6e,0x74,0x49,0x44,0x3d,0x22,0x78,0x6d,0x70,0x2e, + 0x64,0x69,0x64,0x3a,0x46,0x43,0x44,0x39,0x31,0x31, + 0x37,0x36,0x39,0x44,0x38,0x41,0x31,0x31,0x45,0x33, + 0x41,0x39,0x31,0x44,0x42,0x44,0x46,0x44,0x34,0x30, + 0x39,0x39,0x32,0x45,0x45,0x33,0x22,0x3e,0x20,0x3c, + 0x78,0x6d,0x70,0x4d,0x4d,0x3a,0x44,0x65,0x72,0x69, + 0x76,0x65,0x64,0x46,0x72,0x6f,0x6d,0x20,0x73,0x74, + 0x52,0x65,0x66,0x3a,0x69,0x6e,0x73,0x74,0x61,0x6e, + 0x63,0x65,0x49,0x44,0x3d,0x22,0x78,0x6d,0x70,0x2e, + 0x69,0x69,0x64,0x3a,0x36,0x46,0x44,0x45,0x41,0x33, + 0x43,0x45,0x39,0x44,0x38,0x41,0x31,0x31,0x45,0x33, + 0x41,0x39,0x31,0x44,0x42,0x44,0x46,0x44,0x34,0x30, + 0x39,0x39,0x32,0x45,0x45,0x33,0x22,0x20,0x73,0x74, + 0x52,0x65,0x66,0x3a,0x64,0x6f,0x63,0x75,0x6d,0x65, + 0x6e,0x74,0x49,0x44,0x3d,0x22,0x78,0x6d,0x70,0x2e, + 0x64,0x69,0x64,0x3a,0x46,0x43,0x44,0x39,0x31,0x31, + 0x37,0x34,0x39,0x44,0x38,0x41,0x31,0x31,0x45,0x33, + 0x41,0x39,0x31,0x44,0x42,0x44,0x46,0x44,0x34,0x30, + 0x39,0x39,0x32,0x45,0x45,0x33,0x22,0x2f,0x3e,0x20, + 0x3c,0x2f,0x72,0x64,0x66,0x3a,0x44,0x65,0x73,0x63, + 0x72,0x69,0x70,0x74,0x69,0x6f,0x6e,0x3e,0x20,0x3c, + 0x2f,0x72,0x64,0x66,0x3a,0x52,0x44,0x46,0x3e,0x20, + 0x3c,0x2f,0x78,0x3a,0x78,0x6d,0x70,0x6d,0x65,0x74, + 0x61,0x3e,0x20,0x3c,0x3f,0x78,0x70,0x61,0x63,0x6b, + 0x65,0x74,0x20,0x65,0x6e,0x64,0x3d,0x22,0x72,0x22, + 0x3f,0x3e,0x69,0x5e,0x78,0x11,0x00,0x00,0x03,0x33, + 0x49,0x44,0x41,0x54,0x78,0xda,0x8c,0x55,0xcf,0x8b, + 0x4f,0x51,0x14,0x3f,0xe7,0xbe,0x37,0x63,0x4c,0xca, + 0x2c,0x34,0xcd,0x42,0x21,0x23,0x62,0x43,0x52,0x52, + 0x9a,0x3f,0x80,0x05,0x76,0x36,0x2c,0x68,0x76,0x83, + 0xa5,0x29,0x36,0x9a,0xb2,0x52,0x92,0x15,0x59,0xd8, + 0x30,0x94,0x10,0x0d,0x1b,0x2b,0x1b,0x0b,0x35,0xa5, + 0xc6,0x8a,0xc2,0x42,0xa2,0xe4,0x47,0xf2,0x65,0xde, + 0xbd,0xc7,0xe7,0x9c,0x7b,0xdf,0x8f,0xef,0x7b,0x5f, + 0x72,0xeb,0xbc,0x77,0xdf,0xb9,0xe7,0x9e,0x1f,0x9f, + 0xf3,0xe3,0x71,0x6f,0x71,0x05,0xb1,0x0b,0x64,0x8b, + 0x89,0xb2,0x95,0x05,0x31,0x0b,0x91,0x50,0x7b,0x5d, + 0x02,0x1d,0x04,0xbd,0x03,0x1d,0x05,0xbd,0xea,0x3b, + 0xc5,0x5d,0x59,0x76,0x24,0x9e,0x49,0xb0,0xd7,0x87, + 0x80,0x5c,0x5b,0x8b,0x14,0xac,0xb2,0xed,0x75,0x1c, + 0x34,0x03,0x5a,0x0b,0xda,0x03,0xba,0xdd,0x56,0x4e, + 0x01,0x0a,0x83,0xa3,0xf6,0xe5,0xae,0x01,0xf5,0x22, + 0x50,0x5b,0xf0,0x4c,0x4b,0x6c,0x07,0x68,0xaa,0xc9, + 0x08,0xde,0xd1,0xa0,0x35,0x80,0xcb,0x14,0x96,0xf3, + 0xda,0x33,0xa2,0x59,0xd0,0xba,0x01,0x77,0xe7,0x2b, + 0x68,0x00,0x8b,0x46,0x40,0x2c,0xff,0x61,0x00,0x42, + 0x7a,0x21,0xfc,0xce,0x28,0x82,0xc9,0x73,0xf6,0x6e, + 0xde,0x8d,0xfb,0x09,0x28,0xdf,0x67,0xd0,0xa8,0xf7, + 0x03,0x94,0xff,0x25,0x02,0xe5,0xc2,0x08,0x2e,0x86, + 0xc2,0xcd,0x86,0x82,0x9d,0x98,0x77,0x8d,0x64,0x6a, + 0x02,0xbd,0xd1,0x05,0x28,0x1f,0xa1,0x7f,0xac,0x3c, + 0x5d,0xda,0x85,0xe7,0x06,0xd0,0x1a,0xd0,0x38,0x68, + 0x2b,0xbc,0xdc,0x84,0x84,0x6f,0x17,0x71,0x94,0x0d, + 0xf9,0xe8,0x4a,0x59,0x6c,0x30,0xe2,0x97,0x33,0xdd, + 0x6e,0x46,0xc5,0xbd,0xc6,0xfd,0x17,0xd8,0xbf,0x04, + 0xbd,0x07,0x7d,0x02,0x7d,0x04,0x3d,0x36,0xd9,0xde, + 0xe2,0xf0,0x39,0x08,0x9c,0x8d,0xa1,0x73,0x03,0x03, + 0x8e,0xe5,0x0a,0x72,0xc3,0x1e,0xa5,0x4c,0x35,0x4c, + 0xe0,0x85,0x22,0xb3,0x8a,0xab,0x93,0x25,0x55,0x94, + 0x1c,0xe1,0x7a,0x26,0xc4,0x47,0xf8,0xe7,0xf3,0x11, + 0x29,0x2f,0x55,0x4a,0x00,0x91,0x7a,0x69,0x82,0x6e, + 0x00,0xb6,0x1c,0xcf,0x45,0x92,0x53,0x56,0xf3,0x95, + 0x5f,0x06,0x6f,0x32,0x7b,0x3d,0xd7,0xf2,0x32,0x83, + 0x19,0x3c,0xcd,0x7c,0x23,0x2b,0x62,0x97,0xa4,0x3c, + 0x67,0xea,0x8b,0x4e,0xca,0xb4,0xa4,0x28,0x99,0x53, + 0x81,0x14,0x28,0x73,0x44,0x67,0x7b,0xa2,0x0f,0x39, + 0x12,0x75,0x18,0x49,0xbb,0x49,0x9e,0xec,0xd0,0x29, + 0xde,0x4c,0x7d,0x55,0x23,0x4d,0xe5,0x5c,0x37,0xa2, + 0x34,0x1a,0x8d,0x0d,0x36,0x67,0xc4,0xd1,0xf2,0x3d, + 0x44,0x3f,0xa7,0x49,0x9e,0x47,0x48,0x2a,0x3b,0x1f, + 0xb4,0x3c,0x81,0xab,0x1b,0x0e,0x51,0x48,0xa8,0xd9, + 0x0f,0x15,0x43,0xb8,0x0b,0x97,0x26,0x5d,0x52,0xb3, + 0x09,0xcb,0x5d,0x97,0xc9,0xa1,0xba,0x8a,0x88,0x6e, + 0xe1,0xf0,0x07,0x20,0x79,0x60,0x50,0x7a,0x8d,0x24, + 0x34,0x6a,0x3b,0x5a,0x63,0x66,0xea,0x8c,0x08,0xf0, + 0x15,0xe6,0xe8,0xb9,0x25,0xfa,0x2a,0x72,0x39,0x5d, + 0x3a,0xe3,0xd8,0x12,0x6a,0x38,0x3e,0x44,0x24,0x53, + 0xa0,0xcf,0x01,0xde,0x14,0xbf,0xf2,0x84,0x67,0x1a, + 0x60,0x49,0x89,0x91,0x46,0xea,0x23,0x3f,0x40,0xce, + 0xf7,0x72,0x4d,0x6c,0x11,0x82,0x9b,0x83,0xce,0x69, + 0xb6,0x82,0x49,0xf4,0xe5,0xc9,0x18,0x95,0x9d,0x9a, + 0xaa,0xe2,0x22,0x9e,0x27,0x4d,0x68,0x28,0x74,0x3c, + 0xe6,0x2a,0x17,0x65,0x52,0xb3,0xb2,0x93,0xbf,0x82, + 0x3f,0x96,0xa2,0xa8,0x92,0x9e,0xfb,0xde,0x50,0x5f, + 0x0d,0x63,0xbf,0x85,0xd5,0x60,0x06,0xe5,0xed,0x01, + 0x96,0xc6,0xb8,0x94,0x89,0xb6,0x92,0x24,0x8b,0x08, + 0xac,0xd5,0x38,0xd8,0x86,0xcf,0xa5,0x2a,0x49,0x90, + 0xcd,0x6d,0x72,0x52,0xc5,0x18,0x05,0xce,0x7b,0x6d, + 0x98,0x02,0x48,0xf6,0x92,0x0a,0x27,0x25,0x57,0x5c, + 0xdd,0x03,0xcd,0xd1,0x14,0xe2,0xec,0x87,0x1a,0x9d, + 0xb2,0x4b,0x7d,0xa3,0x42,0x31,0x6e,0xac,0x8d,0x90, + 0x1b,0x4d,0x03,0xb8,0xd2,0xa2,0x8a,0x4b,0x25,0x25, + 0xbe,0x54,0xe6,0x8e,0xd2,0x34,0x8d,0x06,0xc6,0xdb, + 0x3f,0xaa,0x5c,0xfa,0x61,0x98,0xa8,0x4b,0x0f,0x09, + 0xb4,0x9f,0x48,0x1a,0xc5,0x8d,0x41,0x67,0xdb,0x32, + 0x89,0x99,0xc4,0x4e,0x2e,0xcc,0xc0,0xfa,0xce,0xb0, + 0x53,0xfc,0x1a,0x6b,0x32,0xce,0x12,0x26,0xaf,0x8a, + 0xb4,0x7a,0xd2,0x70,0xc3,0xfb,0x11,0x3c,0xbe,0x86, + 0xcf,0x9d,0xe0,0xcc,0x00,0xda,0x55,0xd1,0x50,0xa8, + 0xff,0x68,0x44,0xbb,0x3b,0x06,0xec,0x37,0x57,0xf7, + 0xd1,0x5b,0xa2,0xd6,0xef,0x98,0xe9,0x3e,0x1a,0xe7, + 0x0a,0xbc,0x5d,0x48,0xed,0x70,0x07,0x51,0x5d,0xc6, + 0xfb,0x34,0xbe,0x8e,0x89,0xcf,0x46,0x1b,0xcd,0xf8, + 0xa6,0xfb,0x3f,0x28,0x87,0x54,0xd4,0xba,0x00,0xc8, + 0xce,0xa3,0xc6,0xbf,0x81,0x96,0xa0,0x68,0x3f,0xf8, + 0x07,0x94,0xdf,0x6a,0x31,0x1d,0xcb,0x27,0x70,0x3e, + 0x09,0xb9,0x1b,0x40,0xe1,0x3b,0x26,0xc0,0x53,0x44, + 0x71,0xaa,0x4f,0x1f,0xe8,0x8f,0x00,0x03,0x00,0xa3, + 0x22,0x9c,0x02,0x6c,0xe3,0xe8,0x90,0x00,0x00,0x00, + 0x00,0x49,0x45,0x4e,0x44,0xae,0x42,0x60,0x82 }; diff --git a/data/converted/star_unfilled_png.cpp b/data/converted/star_unfilled_png.cpp index 40b12d668..a3f69fde3 100644 --- a/data/converted/star_unfilled_png.cpp +++ b/data/converted/star_unfilled_png.cpp @@ -2,377 +2,131 @@ #include "../Resources.h" -const size_t star_unfilled_png_size = 3703; -const unsigned char star_unfilled_png_data[3703] = { +const size_t star_unfilled_png_size = 1245; +const unsigned char star_unfilled_png_data[1245] = { 0x89,0x50,0x4e,0x47,0x0d,0x0a,0x1a,0x0a,0x00,0x00, - 0x00,0x0d,0x49,0x48,0x44,0x52,0x00,0x00,0x00,0x40, - 0x00,0x00,0x00,0x40,0x08,0x06,0x00,0x00,0x00,0xaa, - 0x69,0x71,0xde,0x00,0x00,0x00,0x09,0x70,0x48,0x59, - 0x73,0x00,0x00,0x0b,0x13,0x00,0x00,0x0b,0x13,0x01, - 0x00,0x9a,0x9c,0x18,0x00,0x00,0x0a,0x4f,0x69,0x43, - 0x43,0x50,0x50,0x68,0x6f,0x74,0x6f,0x73,0x68,0x6f, - 0x70,0x20,0x49,0x43,0x43,0x20,0x70,0x72,0x6f,0x66, - 0x69,0x6c,0x65,0x00,0x00,0x78,0xda,0x9d,0x53,0x67, - 0x54,0x53,0xe9,0x16,0x3d,0xf7,0xde,0xf4,0x42,0x4b, - 0x88,0x80,0x94,0x4b,0x6f,0x52,0x15,0x08,0x20,0x52, - 0x42,0x8b,0x80,0x14,0x91,0x26,0x2a,0x21,0x09,0x10, - 0x4a,0x88,0x21,0xa1,0xd9,0x15,0x51,0xc1,0x11,0x45, - 0x45,0x04,0x1b,0xc8,0xa0,0x88,0x03,0x8e,0x8e,0x80, - 0x8c,0x15,0x51,0x2c,0x0c,0x8a,0x0a,0xd8,0x07,0xe4, - 0x21,0xa2,0x8e,0x83,0xa3,0x88,0x8a,0xca,0xfb,0xe1, - 0x7b,0xa3,0x6b,0xd6,0xbc,0xf7,0xe6,0xcd,0xfe,0xb5, - 0xd7,0x3e,0xe7,0xac,0xf3,0x9d,0xb3,0xcf,0x07,0xc0, - 0x08,0x0c,0x96,0x48,0x33,0x51,0x35,0x80,0x0c,0xa9, - 0x42,0x1e,0x11,0xe0,0x83,0xc7,0xc4,0xc6,0xe1,0xe4, - 0x2e,0x40,0x81,0x0a,0x24,0x70,0x00,0x10,0x08,0xb3, - 0x64,0x21,0x73,0xfd,0x23,0x01,0x00,0xf8,0x7e,0x3c, - 0x3c,0x2b,0x22,0xc0,0x07,0xbe,0x00,0x01,0x78,0xd3, - 0x0b,0x08,0x00,0xc0,0x4d,0x9b,0xc0,0x30,0x1c,0x87, - 0xff,0x0f,0xea,0x42,0x99,0x5c,0x01,0x80,0x84,0x01, - 0xc0,0x74,0x91,0x38,0x4b,0x08,0x80,0x14,0x00,0x40, - 0x7a,0x8e,0x42,0xa6,0x00,0x40,0x46,0x01,0x80,0x9d, - 0x98,0x26,0x53,0x00,0xa0,0x04,0x00,0x60,0xcb,0x63, - 0x62,0xe3,0x00,0x50,0x2d,0x00,0x60,0x27,0x7f,0xe6, - 0xd3,0x00,0x80,0x9d,0xf8,0x99,0x7b,0x01,0x00,0x5b, - 0x94,0x21,0x15,0x01,0xa0,0x91,0x00,0x20,0x13,0x65, - 0x88,0x44,0x00,0x68,0x3b,0x00,0xac,0xcf,0x56,0x8a, - 0x45,0x00,0x58,0x30,0x00,0x14,0x66,0x4b,0xc4,0x39, - 0x00,0xd8,0x2d,0x00,0x30,0x49,0x57,0x66,0x48,0x00, - 0xb0,0xb7,0x00,0xc0,0xce,0x10,0x0b,0xb2,0x00,0x08, - 0x0c,0x00,0x30,0x51,0x88,0x85,0x29,0x00,0x04,0x7b, - 0x00,0x60,0xc8,0x23,0x23,0x78,0x00,0x84,0x99,0x00, - 0x14,0x46,0xf2,0x57,0x3c,0xf1,0x2b,0xae,0x10,0xe7, - 0x2a,0x00,0x00,0x78,0x99,0xb2,0x3c,0xb9,0x24,0x39, - 0x45,0x81,0x5b,0x08,0x2d,0x71,0x07,0x57,0x57,0x2e, - 0x1e,0x28,0xce,0x49,0x17,0x2b,0x14,0x36,0x61,0x02, - 0x61,0x9a,0x40,0x2e,0xc2,0x79,0x99,0x19,0x32,0x81, - 0x34,0x0f,0xe0,0xf3,0xcc,0x00,0x00,0xa0,0x91,0x15, - 0x11,0xe0,0x83,0xf3,0xfd,0x78,0xce,0x0e,0xae,0xce, - 0xce,0x36,0x8e,0xb6,0x0e,0x5f,0x2d,0xea,0xbf,0x06, - 0xff,0x22,0x62,0x62,0xe3,0xfe,0xe5,0xcf,0xab,0x70, - 0x40,0x00,0x00,0xe1,0x74,0x7e,0xd1,0xfe,0x2c,0x2f, - 0xb3,0x1a,0x80,0x3b,0x06,0x80,0x6d,0xfe,0xa2,0x25, - 0xee,0x04,0x68,0x5e,0x0b,0xa0,0x75,0xf7,0x8b,0x66, - 0xb2,0x0f,0x40,0xb5,0x00,0xa0,0xe9,0xda,0x57,0xf3, - 0x70,0xf8,0x7e,0x3c,0x3c,0x45,0xa1,0x90,0xb9,0xd9, - 0xd9,0xe5,0xe4,0xe4,0xd8,0x4a,0xc4,0x42,0x5b,0x61, - 0xca,0x57,0x7d,0xfe,0x67,0xc2,0x5f,0xc0,0x57,0xfd, - 0x6c,0xf9,0x7e,0x3c,0xfc,0xf7,0xf5,0xe0,0xbe,0xe2, - 0x24,0x81,0x32,0x5d,0x81,0x47,0x04,0xf8,0xe0,0xc2, - 0xcc,0xf4,0x4c,0xa5,0x1c,0xcf,0x92,0x09,0x84,0x62, - 0xdc,0xe6,0x8f,0x47,0xfc,0xb7,0x0b,0xff,0xfc,0x1d, - 0xd3,0x22,0xc4,0x49,0x62,0xb9,0x58,0x2a,0x14,0xe3, - 0x51,0x12,0x71,0x8e,0x44,0x9a,0x8c,0xf3,0x32,0xa5, - 0x22,0x89,0x42,0x92,0x29,0xc5,0x25,0xd2,0xff,0x64, - 0xe2,0xdf,0x2c,0xfb,0x03,0x3e,0xdf,0x35,0x00,0xb0, - 0x6a,0x3e,0x01,0x7b,0x91,0x2d,0xa8,0x5d,0x63,0x03, - 0xf6,0x4b,0x27,0x10,0x58,0x74,0xc0,0xe2,0xf7,0x00, - 0x00,0xf2,0xbb,0x6f,0xc1,0xd4,0x28,0x08,0x03,0x80, - 0x68,0x83,0xe1,0xcf,0x77,0xff,0xef,0x3f,0xfd,0x47, - 0xa0,0x25,0x00,0x80,0x66,0x49,0x92,0x71,0x00,0x00, - 0x5e,0x44,0x24,0x2e,0x54,0xca,0xb3,0x3f,0xc7,0x08, - 0x00,0x00,0x44,0xa0,0x81,0x2a,0xb0,0x41,0x1b,0xf4, - 0xc1,0x18,0x2c,0xc0,0x06,0x1c,0xc1,0x05,0xdc,0xc1, - 0x0b,0xfc,0x60,0x36,0x84,0x42,0x24,0xc4,0xc2,0x42, - 0x10,0x42,0x0a,0x64,0x80,0x1c,0x72,0x60,0x29,0xac, - 0x82,0x42,0x28,0x86,0xcd,0xb0,0x1d,0x2a,0x60,0x2f, - 0xd4,0x40,0x1d,0x34,0xc0,0x51,0x68,0x86,0x93,0x70, - 0x0e,0x2e,0xc2,0x55,0xb8,0x0e,0x3d,0x70,0x0f,0xfa, - 0x61,0x08,0x9e,0xc1,0x28,0xbc,0x81,0x09,0x04,0x41, - 0xc8,0x08,0x13,0x61,0x21,0xda,0x88,0x01,0x62,0x8a, - 0x58,0x23,0x8e,0x08,0x17,0x99,0x85,0xf8,0x21,0xc1, - 0x48,0x04,0x12,0x8b,0x24,0x20,0xc9,0x88,0x14,0x51, - 0x22,0x4b,0x91,0x35,0x48,0x31,0x52,0x8a,0x54,0x20, - 0x55,0x48,0x1d,0xf2,0x3d,0x72,0x02,0x39,0x87,0x5c, - 0x46,0xba,0x91,0x3b,0xc8,0x00,0x32,0x82,0xfc,0x86, - 0xbc,0x47,0x31,0x94,0x81,0xb2,0x51,0x3d,0xd4,0x0c, - 0xb5,0x43,0xb9,0xa8,0x37,0x1a,0x84,0x46,0xa2,0x0b, - 0xd0,0x64,0x74,0x31,0x9a,0x8f,0x16,0xa0,0x9b,0xd0, - 0x72,0xb4,0x1a,0x3d,0x8c,0x36,0xa1,0xe7,0xd0,0xab, - 0x68,0x0f,0xda,0x8f,0x3e,0x43,0xc7,0x30,0xc0,0xe8, - 0x18,0x07,0x33,0xc4,0x6c,0x30,0x2e,0xc6,0xc3,0x42, - 0xb1,0x38,0x2c,0x09,0x93,0x63,0xcb,0xb1,0x22,0xac, - 0x0c,0xab,0xc6,0x1a,0xb0,0x56,0xac,0x03,0xbb,0x89, - 0xf5,0x63,0xcf,0xb1,0x77,0x04,0x12,0x81,0x45,0xc0, - 0x09,0x36,0x04,0x77,0x42,0x20,0x61,0x1e,0x41,0x48, - 0x58,0x4c,0x58,0x4e,0xd8,0x48,0xa8,0x20,0x1c,0x24, - 0x34,0x11,0xda,0x09,0x37,0x09,0x03,0x84,0x51,0xc2, - 0x27,0x22,0x93,0xa8,0x4b,0xb4,0x26,0xba,0x11,0xf9, - 0xc4,0x18,0x62,0x32,0x31,0x87,0x58,0x48,0x2c,0x23, - 0xd6,0x12,0x8f,0x13,0x2f,0x10,0x7b,0x88,0x43,0xc4, - 0x37,0x24,0x12,0x89,0x43,0x32,0x27,0xb9,0x90,0x02, - 0x49,0xb1,0xa4,0x54,0xd2,0x12,0xd2,0x46,0xd2,0x6e, - 0x52,0x23,0xe9,0x2c,0xa9,0x9b,0x34,0x48,0x1a,0x23, - 0x93,0xc9,0xda,0x64,0x6b,0xb2,0x07,0x39,0x94,0x2c, - 0x20,0x2b,0xc8,0x85,0xe4,0x9d,0xe4,0xc3,0xe4,0x33, - 0xe4,0x1b,0xe4,0x21,0xf2,0x5b,0x0a,0x9d,0x62,0x40, - 0x71,0xa4,0xf8,0x53,0xe2,0x28,0x52,0xca,0x6a,0x4a, - 0x19,0xe5,0x10,0xe5,0x34,0xe5,0x06,0x65,0x98,0x32, - 0x41,0x55,0xa3,0x9a,0x52,0xdd,0xa8,0xa1,0x54,0x11, - 0x35,0x8f,0x5a,0x42,0xad,0xa1,0xb6,0x52,0xaf,0x51, - 0x87,0xa8,0x13,0x34,0x75,0x9a,0x39,0xcd,0x83,0x16, - 0x49,0x4b,0xa5,0xad,0xa2,0x95,0xd3,0x1a,0x68,0x17, - 0x68,0xf7,0x69,0xaf,0xe8,0x74,0xba,0x11,0xdd,0x95, - 0x1e,0x4e,0x97,0xd0,0x57,0xd2,0xcb,0xe9,0x47,0xe8, - 0x97,0xe8,0x03,0xf4,0x77,0x0c,0x0d,0x86,0x15,0x83, - 0xc7,0x88,0x67,0x28,0x19,0x9b,0x18,0x07,0x18,0x67, - 0x19,0x77,0x18,0xaf,0x98,0x4c,0xa6,0x19,0xd3,0x8b, - 0x19,0xc7,0x54,0x30,0x37,0x31,0xeb,0x98,0xe7,0x99, - 0x0f,0x99,0x6f,0x55,0x58,0x2a,0xb6,0x2a,0x7c,0x15, - 0x91,0xca,0x0a,0x95,0x4a,0x95,0x26,0x95,0x1b,0x2a, - 0x2f,0x54,0xa9,0xaa,0xa6,0xaa,0xde,0xaa,0x0b,0x55, - 0xf3,0x55,0xcb,0x54,0x8f,0xa9,0x5e,0x53,0x7d,0xae, - 0x46,0x55,0x33,0x53,0xe3,0xa9,0x09,0xd4,0x96,0xab, - 0x55,0xaa,0x9d,0x50,0xeb,0x53,0x1b,0x53,0x67,0xa9, - 0x3b,0xa8,0x87,0xaa,0x67,0xa8,0x6f,0x54,0x3f,0xa4, - 0x7e,0x59,0xfd,0x89,0x06,0x59,0xc3,0x4c,0xc3,0x4f, - 0x43,0xa4,0x51,0xa0,0xb1,0x5f,0xe3,0xbc,0xc6,0x20, - 0x0b,0x63,0x19,0xb3,0x78,0x2c,0x21,0x6b,0x0d,0xab, - 0x86,0x75,0x81,0x35,0xc4,0x26,0xb1,0xcd,0xd9,0x7c, - 0x76,0x2a,0xbb,0x98,0xfd,0x1d,0xbb,0x8b,0x3d,0xaa, - 0xa9,0xa1,0x39,0x43,0x33,0x4a,0x33,0x57,0xb3,0x52, - 0xf3,0x94,0x66,0x3f,0x07,0xe3,0x98,0x71,0xf8,0x9c, - 0x74,0x4e,0x09,0xe7,0x28,0xa7,0x97,0xf3,0x7e,0x8a, - 0xde,0x14,0xef,0x29,0xe2,0x29,0x1b,0xa6,0x34,0x4c, - 0xb9,0x31,0x65,0x5c,0x6b,0xaa,0x96,0x97,0x96,0x58, - 0xab,0x48,0xab,0x51,0xab,0x47,0xeb,0xbd,0x36,0xae, - 0xed,0xa7,0x9d,0xa6,0xbd,0x45,0xbb,0x59,0xfb,0x81, - 0x0e,0x41,0xc7,0x4a,0x27,0x5c,0x27,0x47,0x67,0x8f, - 0xce,0x05,0x9d,0xe7,0x53,0xd9,0x53,0xdd,0xa7,0x0a, - 0xa7,0x16,0x4d,0x3d,0x3a,0xf5,0xae,0x2e,0xaa,0x6b, - 0xa5,0x1b,0xa1,0xbb,0x44,0x77,0xbf,0x6e,0xa7,0xee, - 0x98,0x9e,0xbe,0x5e,0x80,0x9e,0x4c,0x6f,0xa7,0xde, - 0x79,0xbd,0xe7,0xfa,0x1c,0x7d,0x2f,0xfd,0x54,0xfd, - 0x6d,0xfa,0xa7,0xf5,0x47,0x0c,0x58,0x06,0xb3,0x0c, - 0x24,0x06,0xdb,0x0c,0xce,0x18,0x3c,0xc5,0x35,0x71, - 0x6f,0x3c,0x1d,0x2f,0xc7,0xdb,0xf1,0x51,0x43,0x5d, - 0xc3,0x40,0x43,0xa5,0x61,0x95,0x61,0x97,0xe1,0x84, - 0x91,0xb9,0xd1,0x3c,0xa3,0xd5,0x46,0x8d,0x46,0x0f, - 0x8c,0x69,0xc6,0x5c,0xe3,0x24,0xe3,0x6d,0xc6,0x6d, - 0xc6,0xa3,0x26,0x06,0x26,0x21,0x26,0x4b,0x4d,0xea, - 0x4d,0xee,0x9a,0x52,0x4d,0xb9,0xa6,0x29,0xa6,0x3b, - 0x4c,0x3b,0x4c,0xc7,0xcd,0xcc,0xcd,0xa2,0xcd,0xd6, - 0x99,0x35,0x9b,0x3d,0x31,0xd7,0x32,0xe7,0x9b,0xe7, - 0x9b,0xd7,0x9b,0xdf,0xb7,0x60,0x5a,0x78,0x5a,0x2c, - 0xb6,0xa8,0xb6,0xb8,0x65,0x49,0xb2,0xe4,0x5a,0xa6, - 0x59,0xee,0xb6,0xbc,0x6e,0x85,0x5a,0x39,0x59,0xa5, - 0x58,0x55,0x5a,0x5d,0xb3,0x46,0xad,0x9d,0xad,0x25, - 0xd6,0xbb,0xad,0xbb,0xa7,0x11,0xa7,0xb9,0x4e,0x93, - 0x4e,0xab,0x9e,0xd6,0x67,0xc3,0xb0,0xf1,0xb6,0xc9, - 0xb6,0xa9,0xb7,0x19,0xb0,0xe5,0xd8,0x06,0xdb,0xae, - 0xb6,0x6d,0xb6,0x7d,0x61,0x67,0x62,0x17,0x67,0xb7, - 0xc5,0xae,0xc3,0xee,0x93,0xbd,0x93,0x7d,0xba,0x7d, - 0x8d,0xfd,0x3d,0x07,0x0d,0x87,0xd9,0x0e,0xab,0x1d, - 0x5a,0x1d,0x7e,0x73,0xb4,0x72,0x14,0x3a,0x56,0x3a, - 0xde,0x9a,0xce,0x9c,0xee,0x3f,0x7d,0xc5,0xf4,0x96, - 0xe9,0x2f,0x67,0x58,0xcf,0x10,0xcf,0xd8,0x33,0xe3, - 0xb6,0x13,0xcb,0x29,0xc4,0x69,0x9d,0x53,0x9b,0xd3, - 0x47,0x67,0x17,0x67,0xb9,0x73,0x83,0xf3,0x88,0x8b, - 0x89,0x4b,0x82,0xcb,0x2e,0x97,0x3e,0x2e,0x9b,0x1b, - 0xc6,0xdd,0xc8,0xbd,0xe4,0x4a,0x74,0xf5,0x71,0x5d, - 0xe1,0x7a,0xd2,0xf5,0x9d,0x9b,0xb3,0x9b,0xc2,0xed, - 0xa8,0xdb,0xaf,0xee,0x36,0xee,0x69,0xee,0x87,0xdc, - 0x9f,0xcc,0x34,0x9f,0x29,0x9e,0x59,0x33,0x73,0xd0, - 0xc3,0xc8,0x43,0xe0,0x51,0xe5,0xd1,0x3f,0x0b,0x9f, - 0x95,0x30,0x6b,0xdf,0xac,0x7e,0x4f,0x43,0x4f,0x81, - 0x67,0xb5,0xe7,0x23,0x2f,0x63,0x2f,0x91,0x57,0xad, - 0xd7,0xb0,0xb7,0xa5,0x77,0xaa,0xf7,0x61,0xef,0x17, - 0x3e,0xf6,0x3e,0x72,0x9f,0xe3,0x3e,0xe3,0x3c,0x37, - 0xde,0x32,0xde,0x59,0x5f,0xcc,0x37,0xc0,0xb7,0xc8, - 0xb7,0xcb,0x4f,0xc3,0x6f,0x9e,0x5f,0x85,0xdf,0x43, - 0x7f,0x23,0xff,0x64,0xff,0x7a,0xff,0xd1,0x00,0xa7, - 0x80,0x25,0x01,0x67,0x03,0x89,0x81,0x41,0x81,0x5b, - 0x02,0xfb,0xf8,0x7a,0x7c,0x21,0xbf,0x8e,0x3f,0x3a, - 0xdb,0x65,0xf6,0xb2,0xd9,0xed,0x41,0x8c,0xa0,0xb9, - 0x41,0x15,0x41,0x8f,0x82,0xad,0x82,0xe5,0xc1,0xad, - 0x21,0x68,0xc8,0xec,0x90,0xad,0x21,0xf7,0xe7,0x98, - 0xce,0x91,0xce,0x69,0x0e,0x85,0x50,0x7e,0xe8,0xd6, - 0xd0,0x07,0x61,0xe6,0x61,0x8b,0xc3,0x7e,0x0c,0x27, - 0x85,0x87,0x85,0x57,0x86,0x3f,0x8e,0x70,0x88,0x58, - 0x1a,0xd1,0x31,0x97,0x35,0x77,0xd1,0xdc,0x43,0x73, - 0xdf,0x44,0xfa,0x44,0x96,0x44,0xde,0x9b,0x67,0x31, - 0x4f,0x39,0xaf,0x2d,0x4a,0x35,0x2a,0x3e,0xaa,0x2e, - 0x6a,0x3c,0xda,0x37,0xba,0x34,0xba,0x3f,0xc6,0x2e, - 0x66,0x59,0xcc,0xd5,0x58,0x9d,0x58,0x49,0x6c,0x4b, - 0x1c,0x39,0x2e,0x2a,0xae,0x36,0x6e,0x6c,0xbe,0xdf, - 0xfc,0xed,0xf3,0x87,0xe2,0x9d,0xe2,0x0b,0xe3,0x7b, - 0x17,0x98,0x2f,0xc8,0x5d,0x70,0x79,0xa1,0xce,0xc2, - 0xf4,0x85,0xa7,0x16,0xa9,0x2e,0x12,0x2c,0x3a,0x96, - 0x40,0x4c,0x88,0x4e,0x38,0x94,0xf0,0x41,0x10,0x2a, - 0xa8,0x16,0x8c,0x25,0xf2,0x13,0x77,0x25,0x8e,0x0a, - 0x79,0xc2,0x1d,0xc2,0x67,0x22,0x2f,0xd1,0x36,0xd1, - 0x88,0xd8,0x43,0x5c,0x2a,0x1e,0x4e,0xf2,0x48,0x2a, - 0x4d,0x7a,0x92,0xec,0x91,0xbc,0x35,0x79,0x24,0xc5, - 0x33,0xa5,0x2c,0xe5,0xb9,0x84,0x27,0xa9,0x90,0xbc, - 0x4c,0x0d,0x4c,0xdd,0x9b,0x3a,0x9e,0x16,0x9a,0x76, - 0x20,0x6d,0x32,0x3d,0x3a,0xbd,0x31,0x83,0x92,0x91, - 0x90,0x71,0x42,0xaa,0x21,0x4d,0x93,0xb6,0x67,0xea, - 0x67,0xe6,0x66,0x76,0xcb,0xac,0x65,0x85,0xb2,0xfe, - 0xc5,0x6e,0x8b,0xb7,0x2f,0x1e,0x95,0x07,0xc9,0x6b, - 0xb3,0x90,0xac,0x05,0x59,0x2d,0x0a,0xb6,0x42,0xa6, - 0xe8,0x54,0x5a,0x28,0xd7,0x2a,0x07,0xb2,0x67,0x65, - 0x57,0x66,0xbf,0xcd,0x89,0xca,0x39,0x96,0xab,0x9e, - 0x2b,0xcd,0xed,0xcc,0xb3,0xca,0xdb,0x90,0x37,0x9c, - 0xef,0x9f,0xff,0xed,0x12,0xc2,0x12,0xe1,0x92,0xb6, - 0xa5,0x86,0x4b,0x57,0x2d,0x1d,0x58,0xe6,0xbd,0xac, - 0x6a,0x39,0xb2,0x3c,0x71,0x79,0xdb,0x0a,0xe3,0x15, - 0x05,0x2b,0x86,0x56,0x06,0xac,0x3c,0xb8,0x8a,0xb6, - 0x2a,0x6d,0xd5,0x4f,0xab,0xed,0x57,0x97,0xae,0x7e, - 0xbd,0x26,0x7a,0x4d,0x6b,0x81,0x5e,0xc1,0xca,0x82, - 0xc1,0xb5,0x01,0x6b,0xeb,0x0b,0x55,0x0a,0xe5,0x85, - 0x7d,0xeb,0xdc,0xd7,0xed,0x5d,0x4f,0x58,0x2f,0x59, - 0xdf,0xb5,0x61,0xfa,0x86,0x9d,0x1b,0x3e,0x15,0x89, - 0x8a,0xae,0x14,0xdb,0x17,0x97,0x15,0x7f,0xd8,0x28, - 0xdc,0x78,0xe5,0x1b,0x87,0x6f,0xca,0xbf,0x99,0xdc, - 0x94,0xb4,0xa9,0xab,0xc4,0xb9,0x64,0xcf,0x66,0xd2, - 0x66,0xe9,0xe6,0xde,0x2d,0x9e,0x5b,0x0e,0x96,0xaa, - 0x97,0xe6,0x97,0x0e,0x6e,0x0d,0xd9,0xda,0xb4,0x0d, - 0xdf,0x56,0xb4,0xed,0xf5,0xf6,0x45,0xdb,0x2f,0x97, - 0xcd,0x28,0xdb,0xbb,0x83,0xb6,0x43,0xb9,0xa3,0xbf, - 0x3c,0xb8,0xbc,0x65,0xa7,0xc9,0xce,0xcd,0x3b,0x3f, - 0x54,0xa4,0x54,0xf4,0x54,0xfa,0x54,0x36,0xee,0xd2, - 0xdd,0xb5,0x61,0xd7,0xf8,0x6e,0xd1,0xee,0x1b,0x7b, - 0xbc,0xf6,0x34,0xec,0xd5,0xdb,0x5b,0xbc,0xf7,0xfd, - 0x3e,0xc9,0xbe,0xdb,0x55,0x01,0x55,0x4d,0xd5,0x66, - 0xd5,0x65,0xfb,0x49,0xfb,0xb3,0xf7,0x3f,0xae,0x89, - 0xaa,0xe9,0xf8,0x96,0xfb,0x6d,0x5d,0xad,0x4e,0x6d, - 0x71,0xed,0xc7,0x03,0xd2,0x03,0xfd,0x07,0x23,0x0e, - 0xb6,0xd7,0xb9,0xd4,0xd5,0x1d,0xd2,0x3d,0x54,0x52, - 0x8f,0xd6,0x2b,0xeb,0x47,0x0e,0xc7,0x1f,0xbe,0xfe, - 0x9d,0xef,0x77,0x2d,0x0d,0x36,0x0d,0x55,0x8d,0x9c, - 0xc6,0xe2,0x23,0x70,0x44,0x79,0xe4,0xe9,0xf7,0x09, - 0xdf,0xf7,0x1e,0x0d,0x3a,0xda,0x76,0x8c,0x7b,0xac, - 0xe1,0x07,0xd3,0x1f,0x76,0x1d,0x67,0x1d,0x2f,0x6a, - 0x42,0x9a,0xf2,0x9a,0x46,0x9b,0x53,0x9a,0xfb,0x5b, - 0x62,0x5b,0xba,0x4f,0xcc,0x3e,0xd1,0xd6,0xea,0xde, - 0x7a,0xfc,0x47,0xdb,0x1f,0x0f,0x9c,0x34,0x3c,0x59, - 0x79,0x4a,0xf3,0x54,0xc9,0x69,0xda,0xe9,0x82,0xd3, - 0x93,0x67,0xf2,0xcf,0x8c,0x9d,0x95,0x9d,0x7d,0x7e, - 0x2e,0xf9,0xdc,0x60,0xdb,0xa2,0xb6,0x7b,0xe7,0x63, - 0xce,0xdf,0x6a,0x0f,0x6f,0xef,0xba,0x10,0x74,0xe1, - 0xd2,0x45,0xff,0x8b,0xe7,0x3b,0xbc,0x3b,0xce,0x5c, - 0xf2,0xb8,0x74,0xf2,0xb2,0xdb,0xe5,0x13,0x57,0xb8, - 0x57,0x9a,0xaf,0x3a,0x5f,0x6d,0xea,0x74,0xea,0x3c, - 0xfe,0x93,0xd3,0x4f,0xc7,0xbb,0x9c,0xbb,0x9a,0xae, - 0xb9,0x5c,0x6b,0xb9,0xee,0x7a,0xbd,0xb5,0x7b,0x66, - 0xf7,0xe9,0x1b,0x9e,0x37,0xce,0xdd,0xf4,0xbd,0x79, - 0xf1,0x16,0xff,0xd6,0xd5,0x9e,0x39,0x3d,0xdd,0xbd, - 0xf3,0x7a,0x6f,0xf7,0xc5,0xf7,0xf5,0xdf,0x16,0xdd, - 0x7e,0x72,0x27,0xfd,0xce,0xcb,0xbb,0xd9,0x77,0x27, - 0xee,0xad,0xbc,0x4f,0xbc,0x5f,0xf4,0x40,0xed,0x41, - 0xd9,0x43,0xdd,0x87,0xd5,0x3f,0x5b,0xfe,0xdc,0xd8, - 0xef,0xdc,0x7f,0x6a,0xc0,0x77,0xa0,0xf3,0xd1,0xdc, - 0x47,0xf7,0x06,0x85,0x83,0xcf,0xfe,0x91,0xf5,0x8f, - 0x0f,0x43,0x05,0x8f,0x99,0x8f,0xcb,0x86,0x0d,0x86, - 0xeb,0x9e,0x38,0x3e,0x39,0x39,0xe2,0x3f,0x72,0xfd, - 0xe9,0xfc,0xa7,0x43,0xcf,0x64,0xcf,0x26,0x9e,0x17, - 0xfe,0xa2,0xfe,0xcb,0xae,0x17,0x16,0x2f,0x7e,0xf8, - 0xd5,0xeb,0xd7,0xce,0xd1,0x98,0xd1,0xa1,0x97,0xf2, - 0x97,0x93,0xbf,0x6d,0x7c,0xa5,0xfd,0xea,0xc0,0xeb, - 0x19,0xaf,0xdb,0xc6,0xc2,0xc6,0x1e,0xbe,0xc9,0x78, - 0x33,0x31,0x5e,0xf4,0x56,0xfb,0xed,0xc1,0x77,0xdc, - 0x77,0x1d,0xef,0xa3,0xdf,0x0f,0x4f,0xe4,0x7c,0x20, - 0x7f,0x28,0xff,0x68,0xf9,0xb1,0xf5,0x53,0xd0,0xa7, - 0xfb,0x93,0x19,0x93,0x93,0xff,0x04,0x03,0x98,0xf3, - 0xfc,0x63,0x33,0x2d,0xdb,0x00,0x00,0x00,0x04,0x67, - 0x41,0x4d,0x41,0x00,0x00,0xb1,0x8e,0x7c,0xfb,0x51, - 0x93,0x00,0x00,0x00,0x20,0x63,0x48,0x52,0x4d,0x00, - 0x00,0x7a,0x25,0x00,0x00,0x80,0x83,0x00,0x00,0xf9, - 0xff,0x00,0x00,0x80,0xe9,0x00,0x00,0x75,0x30,0x00, - 0x00,0xea,0x60,0x00,0x00,0x3a,0x98,0x00,0x00,0x17, - 0x6f,0x92,0x5f,0xc5,0x46,0x00,0x00,0x03,0x92,0x49, - 0x44,0x41,0x54,0x78,0xda,0xec,0x9b,0x4f,0x64,0x1c, - 0x51,0x1c,0xc7,0x3f,0xd9,0x24,0x94,0x10,0x21,0x44, - 0x09,0xb1,0xb4,0x56,0xd7,0xd4,0x5e,0x4a,0xa5,0x4d, - 0x4b,0x2b,0x69,0x2f,0xb5,0x95,0x48,0xf5,0x8f,0x56, - 0x7a,0x48,0x7a,0xc8,0xbf,0x5e,0x4a,0xc8,0x31,0x54, - 0xe9,0xb1,0x54,0xc9,0xb1,0x84,0x5e,0x4a,0x68,0x4a, - 0x88,0xd0,0x4b,0x09,0xb9,0x94,0x54,0x84,0x25,0xd4, - 0x12,0xd6,0x12,0x56,0x58,0x96,0x58,0xe9,0xe1,0xfd, - 0x96,0xb1,0x76,0xb3,0xb3,0x6f,0x66,0xe7,0xcd,0xce, - 0xe4,0xcb,0x58,0x3b,0xbb,0xc9,0xcc,0xef,0x93,0xf7, - 0x7e,0xef,0xf7,0xbe,0xbf,0x49,0xc7,0xd9,0xd9,0x19, - 0x51,0x56,0x8c,0x88,0xab,0x0b,0x20,0x9d,0x4e,0x9b, - 0xba,0xfe,0x00,0x70,0x0c,0x94,0x4d,0x5c,0x7c,0x63, - 0x63,0xc3,0xf8,0x08,0x98,0x05,0x26,0xa2,0x3a,0x05, - 0xfa,0x80,0x57,0x02,0x21,0x92,0x00,0x5e,0x03,0x3d, - 0x40,0x12,0x18,0x8b,0x1a,0x80,0x4b,0xc0,0x8c,0xed, - 0xfd,0x42,0xd4,0x00,0xbc,0x00,0xfa,0x6d,0xef,0x6f, - 0xca,0x11,0x09,0x00,0x9d,0xc0,0x5c,0x8d,0xf3,0x0b, - 0x51,0x01,0x30,0x01,0x0c,0xd6,0x38,0x3f,0x26,0xf9, - 0x20,0xf4,0x00,0x16,0x34,0x3f,0x0b,0x05,0x80,0x87, - 0x40,0xe2,0x9c,0xcf,0x1f,0x03,0x43,0x61,0x06,0xb0, - 0xe8,0x20,0x3f,0xcc,0x86,0x15,0xc0,0x2d,0xe0,0x86, - 0x83,0xef,0x3d,0x93,0x12,0x39,0x74,0x00,0x9c,0xce, - 0xef,0xea,0x1a,0x21,0x14,0x00,0x2c,0xe0,0x7e,0x13, - 0xdf,0x9f,0x02,0x7a,0xc3,0x04,0x60,0xb1,0xc9,0xef, - 0xf7,0x0a,0x84,0x50,0x00,0x18,0x02,0x1e,0x69,0xfc, - 0xdc,0x8c,0x4c,0x87,0xb6,0x07,0x30,0x2b,0xd9,0x5d, - 0xc7,0x2b,0x78,0xd2,0xee,0x00,0x06,0x24,0xab,0xeb, - 0x6a,0x4e,0x13,0x5e,0x60,0x00,0xb8,0x1d,0xc6,0x71, - 0xcd,0xe9,0x13,0x08,0x00,0x5e,0x25,0xb2,0xc5,0x56, - 0x02,0xe8,0xf2,0x60,0x5f,0x9f,0x90,0xcd,0x4d,0x3f, - 0x90,0x92,0xd7,0x41,0x39,0xef,0x45,0x12,0xb3,0x80, - 0xbf,0xc0,0x11,0x90,0x41,0x79,0x88,0x87,0x40,0x16, - 0x28,0x00,0x7b,0xad,0x04,0xd0,0x2d,0x3b,0xb4,0xcb, - 0x32,0x9f,0x2d,0x09,0x70,0x08,0xb8,0x82,0x72,0x74, - 0xfc,0x50,0xbf,0x0d,0x70,0x2d,0x1d,0xd7,0x01,0x74, - 0x0c,0xec,0x3b,0x01,0x90,0x94,0x32,0x35,0x29,0x17, - 0x8a,0xcb,0xd1,0x4b,0x7b,0xa8,0x11,0xa0,0x3c,0x90, - 0x03,0x0e,0x04,0xca,0x3f,0x60,0x1b,0xc8,0x55,0x00, - 0x64,0x81,0x15,0xe0,0x0e,0xe1,0xd4,0x80,0x1c,0x15, - 0x40,0x6b,0xc0,0x37,0x7b,0x12,0x2c,0x4a,0xc2,0xda, - 0x22,0xfc,0xfa,0x02,0x2c,0x21,0xbd,0x08,0xfb,0x2a, - 0x50,0x02,0xa6,0x81,0xf5,0x10,0x07,0xff,0x01,0x78, - 0x7f,0x5e,0x12,0x2c,0x03,0xf3,0xc0,0x09,0xca,0xb6, - 0x0e,0x93,0x96,0x64,0xe8,0x3b,0xaa,0x03,0x96,0x81, - 0x4f,0x21,0x09,0xfc,0x54,0xfe,0xa8,0x6b,0xcd,0x16, - 0x42,0x1f,0x25,0x31,0xb6,0xb3,0x4a,0xc0,0x9b,0xf3, - 0xa6,0x75,0xa3,0x4a,0x70,0xd5,0x9e,0x30,0xda,0x4c, - 0x45,0xe0,0x65,0xa3,0xc4,0xee,0xa4,0x14,0x5e,0x93, - 0x21,0x74,0xda,0x46,0xc1,0x17,0x80,0x49,0x60,0xc7, - 0xab,0xbd,0xc0,0x0f,0x59,0x21,0x4a,0x6d,0x10,0x7c, - 0x0e,0x18,0x77,0x5a,0x22,0x37,0xb3,0x19,0xda,0x06, - 0x9e,0xcb,0x0a,0x11,0x54,0x65,0x25,0xf8,0x4c,0xab, - 0x76,0x83,0xbb,0xc0,0x53,0x29,0x27,0x83,0xa6,0x0c, - 0xaa,0xaf,0x90,0x6d,0xf5,0x76,0x78,0x4f,0x28,0xe7, - 0x02,0x14,0xfc,0x1f,0xb9,0xa7,0xbc,0x5f,0x7e,0xc0, - 0x21,0x90,0x96,0x4d,0x85,0x69,0xfd,0x96,0x51,0x59, - 0xf0,0xdb,0x10,0x39,0x12,0xea,0x07,0x06,0x83,0xdf, - 0x92,0x3d,0x4c,0x51,0xf7,0x17,0xb8,0x75,0x84,0xf2, - 0xb2,0xdc,0x9c,0x1a,0x9a,0xf3,0xae,0x57,0x26,0x2f, - 0x2c,0xb1,0x1e,0x31,0x4e,0x4c,0x78,0x00,0xae,0x0b, - 0x34,0x2f,0x00,0x24,0x0d,0x0d,0xff,0x8a,0xf5,0x66, - 0x1c,0x40,0xca,0x60,0x0e,0xb0,0x82,0x00,0xc0,0x32, - 0x08,0xe0,0xfa,0xc5,0x08,0x30,0x0c,0xa0,0xcf,0x8b, - 0x79,0x68,0x12,0x7e,0xcc,0xf4,0x10,0x74,0xa9,0x4a, - 0x3f,0xc2,0x18,0x00,0x0b,0xf3,0xb2,0x4c,0x02,0x48, - 0x05,0x00,0x40,0x32,0xea,0x00,0x52,0xa6,0x00,0xf4, - 0xa0,0xba,0x47,0xba,0x2a,0xa0,0x3c,0xc7,0x55,0x97, - 0xa5,0xb4,0x31,0x00,0x09,0xf4,0x7a,0xf7,0x25,0x09, - 0x7a,0x58,0x5e,0x57,0x80,0xdb,0xe8,0xf7,0x23,0xe2, - 0xb8,0xe8,0x51,0xc6,0x7c,0x26,0xff,0x1d,0xb8,0x2b, - 0x41,0x9f,0x54,0xed,0x2c,0xe7,0x81,0x07,0x38,0xf0, - 0xf1,0xaa,0xd4,0x09,0x5c,0x0b,0x3a,0x80,0x1d,0x09, - 0xee,0xad,0x04,0x5b,0x4f,0xfb,0xb2,0xbb,0x9c,0xa2, - 0x09,0x5b,0xcb,0xcd,0x72,0xec,0x06,0x80,0x93,0xe5, - 0x27,0x83,0xb2,0xa6,0x27,0x69,0xd0,0xa6,0xae,0xd2, - 0x36,0x30,0x0a,0xbc,0xc3,0x99,0xcb,0x93,0xf2,0x1b, - 0x40,0x77,0x83,0xe5,0x27,0x2f,0x37,0x7f,0x0f,0xf8, - 0xa5,0x79,0x8d,0x32,0xaa,0x83,0x3b,0x82,0x6a,0xd2, - 0x14,0x5b,0x51,0x0b,0xe8,0x02,0xb8,0x5a,0xc7,0x03, - 0x28,0xca,0xcd,0x0e,0xcb,0xcd,0x7b,0xa1,0x22,0xaa, - 0x4d,0x37,0x02,0x7c,0xad,0xe3,0x01,0x24,0x75,0x3d, - 0x89,0x98,0x47,0xf3,0xbf,0x2c,0x37,0x37,0x2c,0x37, - 0xdb,0x8a,0xfe,0x41,0x1e,0xd5,0xb3,0x1c,0x05,0x36, - 0x6b,0x8c,0xc8,0x84,0x9f,0x00,0xec,0x43,0x6e,0x53, - 0x86,0xfa,0x32,0xfe,0xd8,0xe5,0x15,0x2b,0x6c,0x1c, - 0xe5,0x06,0xbb,0x4a,0x84,0x6e,0x46,0x40,0xc5,0x8a, - 0x9e,0x46,0xb9,0xc4,0x7e,0x6b,0x17,0xf5,0x08,0xdd, - 0x3c,0xca,0x9d,0xd6,0xca,0x03,0xba,0x4f,0x89,0x7d, - 0x96,0x4c,0x1d,0x04,0xad,0x03,0x3f,0x51,0x8f,0xe3, - 0x37,0xad,0x8e,0x8b,0x7f,0x9e,0x8e,0xb8,0x22,0x0f, - 0xe0,0xff,0x00,0x58,0x0b,0xa6,0xee,0x5b,0xdd,0x0e, - 0xa6,0x00,0x00,0x00,0x00,0x49,0x45,0x4e,0x44,0xae, - 0x42,0x60,0x82 + 0x00,0x0d,0x49,0x48,0x44,0x52,0x00,0x00,0x00,0x18, + 0x00,0x00,0x00,0x16,0x08,0x06,0x00,0x00,0x00,0xda, + 0x7d,0x5c,0x88,0x00,0x00,0x00,0x19,0x74,0x45,0x58, + 0x74,0x53,0x6f,0x66,0x74,0x77,0x61,0x72,0x65,0x00, + 0x41,0x64,0x6f,0x62,0x65,0x20,0x49,0x6d,0x61,0x67, + 0x65,0x52,0x65,0x61,0x64,0x79,0x71,0xc9,0x65,0x3c, + 0x00,0x00,0x03,0x24,0x69,0x54,0x58,0x74,0x58,0x4d, + 0x4c,0x3a,0x63,0x6f,0x6d,0x2e,0x61,0x64,0x6f,0x62, + 0x65,0x2e,0x78,0x6d,0x70,0x00,0x00,0x00,0x00,0x00, + 0x3c,0x3f,0x78,0x70,0x61,0x63,0x6b,0x65,0x74,0x20, + 0x62,0x65,0x67,0x69,0x6e,0x3d,0x22,0xef,0xbb,0xbf, + 0x22,0x20,0x69,0x64,0x3d,0x22,0x57,0x35,0x4d,0x30, + 0x4d,0x70,0x43,0x65,0x68,0x69,0x48,0x7a,0x72,0x65, + 0x53,0x7a,0x4e,0x54,0x63,0x7a,0x6b,0x63,0x39,0x64, + 0x22,0x3f,0x3e,0x20,0x3c,0x78,0x3a,0x78,0x6d,0x70, + 0x6d,0x65,0x74,0x61,0x20,0x78,0x6d,0x6c,0x6e,0x73, + 0x3a,0x78,0x3d,0x22,0x61,0x64,0x6f,0x62,0x65,0x3a, + 0x6e,0x73,0x3a,0x6d,0x65,0x74,0x61,0x2f,0x22,0x20, + 0x78,0x3a,0x78,0x6d,0x70,0x74,0x6b,0x3d,0x22,0x41, + 0x64,0x6f,0x62,0x65,0x20,0x58,0x4d,0x50,0x20,0x43, + 0x6f,0x72,0x65,0x20,0x35,0x2e,0x33,0x2d,0x63,0x30, + 0x31,0x31,0x20,0x36,0x36,0x2e,0x31,0x34,0x35,0x36, + 0x36,0x31,0x2c,0x20,0x32,0x30,0x31,0x32,0x2f,0x30, + 0x32,0x2f,0x30,0x36,0x2d,0x31,0x34,0x3a,0x35,0x36, + 0x3a,0x32,0x37,0x20,0x20,0x20,0x20,0x20,0x20,0x20, + 0x20,0x22,0x3e,0x20,0x3c,0x72,0x64,0x66,0x3a,0x52, + 0x44,0x46,0x20,0x78,0x6d,0x6c,0x6e,0x73,0x3a,0x72, + 0x64,0x66,0x3d,0x22,0x68,0x74,0x74,0x70,0x3a,0x2f, + 0x2f,0x77,0x77,0x77,0x2e,0x77,0x33,0x2e,0x6f,0x72, + 0x67,0x2f,0x31,0x39,0x39,0x39,0x2f,0x30,0x32,0x2f, + 0x32,0x32,0x2d,0x72,0x64,0x66,0x2d,0x73,0x79,0x6e, + 0x74,0x61,0x78,0x2d,0x6e,0x73,0x23,0x22,0x3e,0x20, + 0x3c,0x72,0x64,0x66,0x3a,0x44,0x65,0x73,0x63,0x72, + 0x69,0x70,0x74,0x69,0x6f,0x6e,0x20,0x72,0x64,0x66, + 0x3a,0x61,0x62,0x6f,0x75,0x74,0x3d,0x22,0x22,0x20, + 0x78,0x6d,0x6c,0x6e,0x73,0x3a,0x78,0x6d,0x70,0x3d, + 0x22,0x68,0x74,0x74,0x70,0x3a,0x2f,0x2f,0x6e,0x73, + 0x2e,0x61,0x64,0x6f,0x62,0x65,0x2e,0x63,0x6f,0x6d, + 0x2f,0x78,0x61,0x70,0x2f,0x31,0x2e,0x30,0x2f,0x22, + 0x20,0x78,0x6d,0x6c,0x6e,0x73,0x3a,0x78,0x6d,0x70, + 0x4d,0x4d,0x3d,0x22,0x68,0x74,0x74,0x70,0x3a,0x2f, + 0x2f,0x6e,0x73,0x2e,0x61,0x64,0x6f,0x62,0x65,0x2e, + 0x63,0x6f,0x6d,0x2f,0x78,0x61,0x70,0x2f,0x31,0x2e, + 0x30,0x2f,0x6d,0x6d,0x2f,0x22,0x20,0x78,0x6d,0x6c, + 0x6e,0x73,0x3a,0x73,0x74,0x52,0x65,0x66,0x3d,0x22, + 0x68,0x74,0x74,0x70,0x3a,0x2f,0x2f,0x6e,0x73,0x2e, + 0x61,0x64,0x6f,0x62,0x65,0x2e,0x63,0x6f,0x6d,0x2f, + 0x78,0x61,0x70,0x2f,0x31,0x2e,0x30,0x2f,0x73,0x54, + 0x79,0x70,0x65,0x2f,0x52,0x65,0x73,0x6f,0x75,0x72, + 0x63,0x65,0x52,0x65,0x66,0x23,0x22,0x20,0x78,0x6d, + 0x70,0x3a,0x43,0x72,0x65,0x61,0x74,0x6f,0x72,0x54, + 0x6f,0x6f,0x6c,0x3d,0x22,0x41,0x64,0x6f,0x62,0x65, + 0x20,0x50,0x68,0x6f,0x74,0x6f,0x73,0x68,0x6f,0x70, + 0x20,0x43,0x53,0x36,0x20,0x28,0x4d,0x61,0x63,0x69, + 0x6e,0x74,0x6f,0x73,0x68,0x29,0x22,0x20,0x78,0x6d, + 0x70,0x4d,0x4d,0x3a,0x49,0x6e,0x73,0x74,0x61,0x6e, + 0x63,0x65,0x49,0x44,0x3d,0x22,0x78,0x6d,0x70,0x2e, + 0x69,0x69,0x64,0x3a,0x36,0x46,0x44,0x45,0x41,0x33, + 0x43,0x43,0x39,0x44,0x38,0x41,0x31,0x31,0x45,0x33, + 0x41,0x39,0x31,0x44,0x42,0x44,0x46,0x44,0x34,0x30, + 0x39,0x39,0x32,0x45,0x45,0x33,0x22,0x20,0x78,0x6d, + 0x70,0x4d,0x4d,0x3a,0x44,0x6f,0x63,0x75,0x6d,0x65, + 0x6e,0x74,0x49,0x44,0x3d,0x22,0x78,0x6d,0x70,0x2e, + 0x64,0x69,0x64,0x3a,0x36,0x46,0x44,0x45,0x41,0x33, + 0x43,0x44,0x39,0x44,0x38,0x41,0x31,0x31,0x45,0x33, + 0x41,0x39,0x31,0x44,0x42,0x44,0x46,0x44,0x34,0x30, + 0x39,0x39,0x32,0x45,0x45,0x33,0x22,0x3e,0x20,0x3c, + 0x78,0x6d,0x70,0x4d,0x4d,0x3a,0x44,0x65,0x72,0x69, + 0x76,0x65,0x64,0x46,0x72,0x6f,0x6d,0x20,0x73,0x74, + 0x52,0x65,0x66,0x3a,0x69,0x6e,0x73,0x74,0x61,0x6e, + 0x63,0x65,0x49,0x44,0x3d,0x22,0x78,0x6d,0x70,0x2e, + 0x69,0x69,0x64,0x3a,0x36,0x46,0x44,0x45,0x41,0x33, + 0x43,0x41,0x39,0x44,0x38,0x41,0x31,0x31,0x45,0x33, + 0x41,0x39,0x31,0x44,0x42,0x44,0x46,0x44,0x34,0x30, + 0x39,0x39,0x32,0x45,0x45,0x33,0x22,0x20,0x73,0x74, + 0x52,0x65,0x66,0x3a,0x64,0x6f,0x63,0x75,0x6d,0x65, + 0x6e,0x74,0x49,0x44,0x3d,0x22,0x78,0x6d,0x70,0x2e, + 0x64,0x69,0x64,0x3a,0x36,0x46,0x44,0x45,0x41,0x33, + 0x43,0x42,0x39,0x44,0x38,0x41,0x31,0x31,0x45,0x33, + 0x41,0x39,0x31,0x44,0x42,0x44,0x46,0x44,0x34,0x30, + 0x39,0x39,0x32,0x45,0x45,0x33,0x22,0x2f,0x3e,0x20, + 0x3c,0x2f,0x72,0x64,0x66,0x3a,0x44,0x65,0x73,0x63, + 0x72,0x69,0x70,0x74,0x69,0x6f,0x6e,0x3e,0x20,0x3c, + 0x2f,0x72,0x64,0x66,0x3a,0x52,0x44,0x46,0x3e,0x20, + 0x3c,0x2f,0x78,0x3a,0x78,0x6d,0x70,0x6d,0x65,0x74, + 0x61,0x3e,0x20,0x3c,0x3f,0x78,0x70,0x61,0x63,0x6b, + 0x65,0x74,0x20,0x65,0x6e,0x64,0x3d,0x22,0x72,0x22, + 0x3f,0x3e,0xef,0x54,0xed,0xff,0x00,0x00,0x01,0x4f, + 0x49,0x44,0x41,0x54,0x78,0xda,0x62,0xac,0xaf,0xaf, + 0x67,0x20,0x12,0x4c,0x02,0xe2,0x40,0x20,0x7e,0x04, + 0xc4,0xf1,0x40,0x7c,0x07,0x24,0xd8,0xd0,0xd0,0x80, + 0x57,0x13,0x0b,0x91,0x86,0xa7,0x00,0x71,0x2e,0x94, + 0x2d,0x03,0xc4,0xab,0x80,0xd8,0x88,0x18,0x8d,0x4c, + 0x44,0x5a,0x50,0x83,0xc6,0x37,0x04,0x62,0x7b,0x6a, + 0x59,0x50,0x09,0xc4,0xf2,0x58,0xc4,0x57,0x50,0xcb, + 0x82,0x16,0x1c,0xe2,0x12,0x40,0xec,0x4d,0xa9,0x05, + 0x95,0x04,0xd4,0xf4,0x02,0x23,0x99,0x03,0x9f,0x01, + 0x8c,0xd0,0x54,0x64,0x0a,0xc4,0x8a,0x40,0x2c,0x02, + 0xc4,0x62,0x40,0xac,0x05,0xc4,0xaa,0x40,0x6c,0x40, + 0x84,0x0f,0x9f,0x01,0xf1,0x25,0x20,0xbe,0x06,0x65, + 0xbf,0x06,0xe2,0x57,0x40,0x8b,0x77,0xc0,0x2c,0x68, + 0x02,0xd2,0xb5,0x0c,0xd4,0x07,0x27,0x80,0x38,0x8e, + 0x89,0x46,0x86,0x83,0x80,0x05,0x10,0x57,0x33,0x31, + 0xd0,0x16,0xbc,0x00,0x59,0x10,0x49,0x23,0xc3,0x37, + 0x80,0x52,0x20,0x0b,0x34,0x3d,0xff,0x27,0x36,0x5d, + 0x13,0x09,0xd6,0x03,0x23,0x39,0x08,0x39,0x99,0xae, + 0x04,0x62,0x5f,0x2a,0x19,0x3e,0x1b,0x66,0x38,0x7a, + 0x3e,0xd8,0x02,0xcd,0xfe,0xef,0xc8,0x34,0xf8,0x0f, + 0x28,0x48,0x80,0x86,0xa7,0xe1,0xcb,0x68,0x87,0x80, + 0x78,0x31,0x99,0x16,0x7c,0x05,0x1a,0x5e,0x4b,0x4c, + 0x4e,0xd6,0x20,0xd3,0x02,0x7e,0xa0,0x05,0xda,0x84, + 0x2c,0xe0,0x02,0x62,0x5b,0x0a,0xc2,0xdf,0x90,0x90, + 0x05,0xca,0x50,0x4b,0xc8,0x05,0x62,0x84,0x2c,0x90, + 0xa0,0x30,0x05,0x29,0x10,0xb2,0x40,0x05,0x8f,0xe6, + 0xed,0x40,0x1c,0x02,0xc4,0xed,0x40,0xfc,0x05,0x4f, + 0xf1,0x80,0xd7,0x82,0x87,0x58,0x34,0x6d,0x84,0x96, + 0xfb,0x5e,0x40,0xbc,0x16,0x88,0xab,0x80,0x58,0x1d, + 0x88,0x27,0x03,0xf1,0x37,0x34,0xb5,0x0f,0x08,0x59, + 0xb0,0x0d,0xea,0xc2,0x4f,0x40,0x7c,0x15,0x88,0x7d, + 0x80,0x38,0x00,0x2a,0x8e,0x5e,0x44,0xe7,0x41,0x7d, + 0xbc,0x0c,0x88,0x3f,0x03,0xf1,0x61,0x20,0x2e,0x40, + 0xb7,0x00,0x20,0xc0,0x00,0x05,0x84,0x44,0xdb,0x7c, + 0x04,0x1f,0x70,0x00,0x00,0x00,0x00,0x49,0x45,0x4e, + 0x44,0xae,0x42,0x60,0x82 }; diff --git a/data/resources/help/a.png b/data/resources/help/a.png index a8aa1eb2e39feec697a28915ff0e619ad5087c50..0cfcece38e1f730528c0608e165ea145f93a80e9 100644 GIT binary patch literal 1534 zcmeAS@N?(olHy`uVBq!ia0vp^@*vE?1|rvqSpq4^64!{5;QX|b^2DN42FH~Aq*MjZ z+{EB@w}FfdWj%4dKI|^K-~-sHue<-iOJciB??KY z>6v-9O7C~?S5nAKu~iB;^)>Jbs{}UJ3djZt>nkaMm6T-LDnT3-;TxdfoL`ixV5(=Vn`~fcs9E!^lV%s6w~6GOr}DLN~8i8D@e@YH@N=Wx*A$ZZ2GPaY;}r!o64xE)J1T?`q ze0{Av^NLFn^O93NU2K(rX6R*RrdXL-x;UD-xdAClV7R*)J6amLIJvmFm>5`E8o9a} z!}Pl3Czs}?=9R$orXcj1jm8{S5|xp zXb-ufafri-yLUymMB@*2ri)vix28WxzA^Xby~6A4bw73*f3`EeUvvNWKH;+|MuOf~ z8`BE7t~6;0FxMY6`oXpAfW(g+;SDAaDnzz4#0AWMKF4T+!gB}v9}Mpr5;x4&-|;v( zhF48;f!(6XbN){;4qR)R|M>3wzBj(U31TrDP2V#yFR%%cIGJ6^vyOdcJll8XICqJY zw{~({eVQrH8aXe5$Ma76f@9fw>~bOnt3GSG&0mo@k12ghV@hm{^5d@8D*iD>-+!(Z z@W03|W;sozIIM7O%C^Mz-y0k=ZL%f0;~GO#{4)!n zzhBlflk<{(yKG1AwgVlX*#3Sw`Y`0?3)6^)KLoeWIq54`&0iOBWVX=f>8CWOPpL6H z{!vVs|Ax+n|+9-+bMP3l7pf1A6)+ZQg%i;w|D&ko)eYxnV3#B*KC<{ z^mdx3Y--yre$U`vcW$5bh>g?V^pWjF+3n2Bf24Pu(g_2Gp5MBSb9kR{UwC}|#ruOh zj?eyGT)Og-%QmqOqH8vPNz1jDQkgtg=YWz-`W(Tx&nK;ERI#3$x%4H^>zYZ0PPH1l vZU+32P>Jm6>gTe~DWM4fKWj%3 literal 3635 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 FV1h>YyG8&2 diff --git a/data/resources/help/b.png b/data/resources/help/b.png index 9fa8097aab5cd311bd129be29f9b096a73f2322e..0112405d17427f9788acb50d0f1be8f3bb24cdb9 100644 GIT binary patch literal 1522 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 qTwIYoqwBYIA3d+;f&t;ucLK6T>4zD8s literal 0 HcmV?d00001 diff --git a/data/resources/help/dpad_left_right.png b/data/resources/help/dpad_left_right.png new file mode 100644 index 0000000000000000000000000000000000000000..265e70d56a0a06a809edec3435427d2cdfa7646e GIT binary patch literal 16291 zcmeI3dvFuS9mmgBVz3PuS{H(OLDljy#toQi) zGAZN8kT(8pT zakVsj$&6{>pTXm()t8wI!p#9IM^?{qZas=NHa036l?v8VhvGV&4#fzRAmpHi+}q^h zD8Jn0ofrxdiDRa{b`Rs`7}h1_<5D%OkIRwC_=cia_`aNOn=RUu%NwQ#IHG>ajp7On zbvn^Ro?fnuj&(Ajr?;ZXO`~PBm-Tt-U8Lu6?)^fWX%DlQ zb`*G6XE0gZl*dc+6E{Z|nYq#I3KI=ZeLd5^Pv1_mpKGi?Ah;nUJN}z7>gO7Z9KjHG ztNkZPA>-v(Pg9)0cZgp;%IO#SmPUjI<}ryyxq(dAQ+9q~GI}XM-GF+zxUyK6LmqrX zp$Z9L>+l+i)~fAttq#-5Rce(+UW0)zyGBQ1c9p$`)J5aRxewe%V?FIMf|Xh&$CPrM ztiaWJg4AP#90T82q^rSN0|)W4wOk|Rp-pul$&8_`p)|5mNb~chQ|B`-2ixeK775tb zW8ld4ddgKtJB(<=F;W1#7*KxH8kqmZL3_Nc?KkG|EygCs|M#GUhO%!0MzXno!t!gd zKHo!AAdxFrw&7c*A6z>IITnaEQydK?1;`6b9Z8C4kWfu1hK+SFwM_|P^hqo}MqEue z1~_gxD2{rpDDidU;yCR3TGr#FI3wev>S)yMsxzRm!nm5zZCjtuHn1MhE!qgSs6@pH zy&}7q3G7zZ>>4k_u2sUW@iOch^PJ~mI3p2m z4JwZF;*Un55iJLg1GG_1l1kEm!o{#hDdVRbD$NWyF?sn-OQ{L_z(PXDs(~Eigs@|1 z;NlMM!3h#71&;;bi3E*4lJuK9(arL^{1dyQ?=mVBOKb!JB5aDdg!w?KhzkNDY>K#q z`9P|O3j!i+inxUNK&prf0wQdRxPK#q`9P|O3j!i+ zinxUNK&prf0wQdRxPK#q`9P|O3j!i+inxUNK&prf z0wQdRxPK#q`9P|O3j!i+inxUNK&prf0wQdRxPK#q`9P|O3j!i+inxUNK&prf0wQb*;!2CXrl_N{?Q!RkUpmf$5P9Q?fXz3b5!~Dk6vYN20oto_0`6+58Y=U z`bwsbTs30&yMf~!Y0~R&KOA-`_1=^C@Cn+jNP1v=^`sToYPOB7mwff9b>WG@Jt;Tk z_pY=&SN((A-G3<5O80DN?diO4s?O3nR?ochY}W4zH(jPW|1mSIZR1Pit(@#-)^TqH zX0#V&9^K58{rvj#PY1sDndD&lr8a9>d-vf~%Z+8%4(ueDNtUvv){pNU{nXT1cxJ-T z!FMxGo+w)sAfEnaWmWf{lwU68np+mUdOmC0xXR3qQwMimYq>sR&NnY?Ba#i7+aGq! zS(Q61dDM(GD#`l+S$a=Rb%uM&j+zHUcHb@SN?D9(mQ3!Nd*|=Tf9^b@9Iv?h!`~Rt zmQM~Yx?DUKF-k55eAXQYB==JctzX<;aoU=FdEx8q#933@w%zz^vf|jy%93Qs>w%&N zm8%>(JJ(y5Y~{XeI^%5B@9Nywb#l;OB+s`TDQa8O`rE9x>hRg)u#~YS=ILo;Gk#XO zMefveURl%o;->UAn|WdKYe~8CDYrK4yK~B_+z(2L@}K^C>6Di2ucqZLN!pscy!+&w z*5$LN+`dq=cF?T-qqi?uYuweweHJb>8t+r)+o=ovR7_yXOEqJ`Ql2g|MPXjKOaA=cUx+u z>lYiw9Ln#V*x`CGE9am0liH4)14A_g>z#T~o_tS|em=Y59#c0xbJ~*|3sz=7ll1$g z|K2yoPajq+9XaK4Z_@Pl-aP)?qg#{Fd1d7*7uFa3}M|{elhRCUSCs(oLnrp`07_pZL< zZ7$9nJwK0`aN)qI?)^iy%s8D^QU2kU;w@+GKWSfUzcI40QgUp0>atu3@|kq^#?-s1 Rjr?o$R!fO_e_r*={{e*A8`J;* literal 0 HcmV?d00001 diff --git a/data/resources/help/dpad_right.png b/data/resources/help/dpad_right.png new file mode 100644 index 0000000000000000000000000000000000000000..f86e5d489a5409b33341e7af10a4e8f5ccf72b81 GIT binary patch literal 1802 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 literal 0 HcmV?d00001 diff --git a/data/resources/help/dpad_up_down.png b/data/resources/help/dpad_up_down.png new file mode 100644 index 0000000000000000000000000000000000000000..8dd62451581fcf2ec620de0b1b123c2d31a0995d GIT binary patch literal 16306 zcmeI3e^3bUMkpu;eHYw3sWVBJ*sD(!2&%S%Vc{w&tCx3K0 zyTh^jywCf5-*-Rn`@HY&AG=7aO|+;7~|;Qy&Tq8M)xSLnnBu0c_eIZu?yxG0e#O(7vMDK1i}({P1cjpHwiq!=zkaSWBJB{;5; zt2DS$6gb5CIB=zPS*)6TV|Ji9VClr=Znsl|qLr1EX_c}x##M&mYPA~0q^MLX0W~CS zmBUSVB@Q;lFA~%-QY`7BooPqB>0MN*)8N_3&D6`*&4yL|$otQC~Q9aRd98NX1p z_AO*6#_4g{e4s5PO4%qoXom$1@TdTs<&2wQ%b8J{47q&}qc!ZNt)l?sJfntDUV4-; z&f^dB%_;v-YXKCqSu@{7gXvG$j11}F?#pD<14o*LwrH|3T%l6QGH_gqDbsO09ZQ#G zsx`rVfQW{gIJhLwXD zB5rl$1j(UUH{+^`aBv;smXC$h^5LaHhmC$hVj*rI(=`OiElhfr0MxZ8>y9W3ciA7o zHRP`l1-3<*u2kbHnS@l8ViK8DPDn~+RyDX%O4D(SkP{Rc)Q<=sy^YFp%Ap4G=?P>rx8&T z)&P%N7Q#(DkxFFU2ptQlu`(_@;nvf3qKrbFjxsG8E{v!d+O{>BjE!-DZc%!$MMW!) z8Wr5d3}Cn77F2e47Wx*{45Dm!DL0)1ISW|$H)a2>X&8OijF#m7`7&HTvh#es({fK8 z+;ak0xCq}8jcd^nWf3>+^A&NMq|M{2uaaWm0MEJL2!uwu;m~6K&`38N8jdV<&~Cjn z&>B=65yd?k`A2jicpaehN`*qE(4ufL9Fa$RDO-_|22V^Zw`s{#ff(2kHL!TJzz9bm z&_8ey5AMDR;x7fS1>lVY4ZV_#m^-1(^8369-_iG}3TX+AKtT9S0T(|X$SdH2fbg3F zE`C0cSHJ}U;Wq_b{CpsN|> zuYd~z!fy(=`1wFy0T%>>-xP51^MSkqE(i#}Dd6Jg19=5p5DhApE9) zi=PkV6>vd7_)P&9KOe{|;DUhgn*uI=K9EW?d;))A@~a5t!??CVPb-A z!owKd;E${=vnEYlUw(f6rXTFD+BtbmV(Qh2;`>B;>VnLh1-WSd9|`vB=D&Ahm+!R^ zS59>Gy!Erc^nbjpU;gyiu^0bz;EOH0y1x?LPnpqnSQEGSX5ZY-_DQ=XwI|{~Jv?^c zy}AqMMT1YxI3PMXw!%3+_w~Z_zcbyuK6T>r1M~ah_L#2Ajz}8!HPEF~yB_Y@aHh9p z*VV@j-SR5i$AihOzq*|2sa(tGs^28Pt;R2QGR`OnXpmQr!ugENhf z8WQ&%TKC}X*qhBsGR^7a)^nRL*r&E#n)ce+g6(sr^s!T}p}#&^(^cL5!q9Kp+CKBP z?5#5oO&>q|bXprZ^!q70uC3NC5v9jWym~o)`q|B&-W6qUt2~t0)LCNx=G(Zr_08nm zJCj$p&S~2B+`SEV=IFOBZ^|rK*51`yHtX!(bGB_{{M9X&bjl-Js?qM5`lFKeM?29? zLsdT+SbpxWvl^53V*Q(Py!$N!#YG!$Ib)RV-qh=dW)Mn-3@5zx~sW9_p*s_jYc}F0bA9&eqNrJa_)a z>Wd4G+`Za?bvRpZTw6XSr3tNn``q3Nt2XzAQ_6pgE3($RTe%5>8*0qB*dlNct+YK4X66eq}F-?avvP%*Z?={wVdSeQYZ+j-`@CVhG2E5Jf zAEq>&tVw86zQ2CXob9sN;{25_y;MB8Z+3cjYgc@)ck%J${oNgp7WB2xXFosq*i)-2 z&L=0e++dq`HDvd6zSE!D_;1s(-JY)g6Q(yyRwaJY_wdDOCwk7o~E4||rp>s|H!m)|JP{X%l+ k_Jsa|RW*$@Yo101CBHrMdj0vM+*kFctX$*4j5n(P1DZ@q-2eap literal 0 HcmV?d00001 diff --git a/data/resources/help/l.png b/data/resources/help/l.png new file mode 100644 index 0000000000000000000000000000000000000000..d4051920a9b6d7eb2e826151e0e849cf1d11c7ee GIT binary patch literal 1464 zcmeAS@N?(olHy`uVBq!ia0vp^8bB<}!3HEBIr}pMDajJoh?3y^w370~qErUQl>DSr z1<%~X^wgl##FWaylc_cg49ppsArU1JzCKpT`MG+DAT@dwxdlMo3=B5*6$OdO*{LN8 zNvY|XdA3ULckfqH$V{%1*XSQL?vFu&J;D8jzb> zlBiITo0C^;Rbi_HHrEQs1_|pcDS(xfWZNo192Makpx~Tel&WB=XRMoSU}&gdW~OIo zVrph)sH0$HU}&Uo07PcGh9*{~W>!Y#3Q(W~w5=#5%__*n4QdyVXRDM^Qc_^0uU}qX zu2*iXmtT~wZ)j<02{OaTNEfI=x41H|B(Xv_uUHvof=g;~a#3bMNoIbY0?5R~r2Ntn zTP2`NAzsKW@b!fooL3ADC}5E3S0onb8|oS8=jMX^1y)^L5|oN?23FO@A(aKG`a!A1 z`K3k4!1zd0hG_S-E|!LdhOWkrmWD1) zE^aO+29}mauC8#so_WP3iFwJXFncqB_CobKylcOS(cjOR+OKs01jcROe`)S>~o0T6mmjMALtl; zQ1U=ZE-)cr8U!)ni66*;XP?wOV4f)gW{yL-B2O6@7@v8%IEGZ*I&~w{m^#7!!u!VOhn_BSG%jEE`w)A{yMkvA<<3>!4=|d!#YWUgde?;xjlPJT zt4q&3l8j5Z{@38m&rhBd&Tyc^5@pBWLq!tj`7?hPq{-gf3*dgJdo>4WD0%P@Llj=@SP*mrvATmEO+k= zFCI%q|An&g7v>-3Kk`Lv(^{5m1xIssa#qBumkaFQ6j8yTDbJMm>g`M)S+xhOwiTJI z%jf7!&yk&wJNM3lDJM52ud|JAf6V@kN#sJxO^434w))rSu`l&mXSC$3Jol~*uWO_B z98{h5P^$FQmLw*>mxp)wGY0E1ORjsEGLz3x=gLa^JXVSDttNQpDfmrCuA? zY(3X}7fu&thJe$>P1EdZQ#) z)K=BnTc4y?oICuoZ`JI*?)v+*Pwy(fQ`N3!6I5RLV|v(=>jr^6O4t7zzc~0Pk@>Zd y-lE9n$CYzF=maU%`5MeOY&Z0&l0LSNftleDNAlVm%T|5^m8G7pelF{r5}E+jJr&RZ literal 0 HcmV?d00001 diff --git a/data/resources/help/left_right.png b/data/resources/help/left_right.png deleted file mode 100644 index 52b7469bef2b3ecd2947b14622bc1baa7360902a..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 3288 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 literal 0 HcmV?d00001 diff --git a/data/resources/help/select.png b/data/resources/help/select.png new file mode 100644 index 0000000000000000000000000000000000000000..8bb23ce38c20a5152e0ef7617ba8ef7330d15c93 GIT binary patch literal 1477 zcmeAS@N?(olHy`uVBq!ia0vp^8bB<8U}fi7AzZCsS=07?@QuLn2Bde0{8v^Kf6`()~Xj@TAnpKdC8`Lf!&sHg;q@=(~U%$M( zT(8_%FTW^V-_X+15@d#vkuFe$ZgFK^Nn(X=Ua>OF1ees}+T7#d8#0MoBXEYLU9GXQxBrqI_HztY@Xxa#7Ppj3o=u^L<)Qdy9y zACy|0Us{w5jJPyqkW~d%&PAz-CHX}m`T04pPz=b(FUc>?$S+WE4mMNJ@J&q4%mWE% zf_3=%T6yLbmn7yTr+T{BDgn*V%gju%GB9v+bTTnFwsf&HG&FQIcC<8fadL5UF)^^T zG;(z{hUs<5PcF?(%`1WFO+n~2!KoLN7;+1MHoK%2WtOF;xE1B+Du6w0m5JLehB(cG z>P^Az79*T`^?{Dj2SqJXRKtXT=?BDwCtM&0p7c}mfa$#mn6Njkc#y-uz+~>};uunK z>&(>njB|k!$It)19j%u+(e>Yv3EZuoy<5t*FPXCBO;)kzsn)8ENtxne;+LeuF6nJ4 zOU!D`@l2caCwhm2iQv}OMc3#5G`I7wtuK|Sj^C?#E_nXApSJt&7oYoX^W1X(|w2FM=S zsUy=Axj|6tp+QYc?gkF7f`i>V*KcD}+kHQm^G@UIdG8lS37g2yN)+01FmpwFokSCx z?gnGg9Rh3*=df+O>hqaxd*`j#%CyO{+%?(>Q;)<<%NNl*Xk?*zUqpA4t!RZ@(FUPB z?H#wJcR0@UUCYh(Pho?hM(-Y%nnvw;_kVp(Tyn#K^G%~~fq2+q%@>9B_xBxEm*B5C zthJK!tkI76$ed~GMZY<<&RhGhY`W&M>?YlHA!qd(j(^g4lv5ANa$g(&yyrCeyKnG^ zoS8RQ)kPb`xxLk!c#HAvAvOzU|EKkfKK%;wda&T1eRrt5n8~v5*Lmq#e_D zWmRvs;;_9}ug^AH)Awsw^KT{L=hI`d7jfH!t@hnhAJ=1+#`IfB>_$3Mbjki>Y0Fls qUQCT$9UR=@5aAf*bNPcmBOAj(kGe1Ht~tD*g4NU2&t;ucLK6TW?kRcz literal 0 HcmV?d00001 diff --git a/data/resources/help/start.png b/data/resources/help/start.png new file mode 100644 index 0000000000000000000000000000000000000000..7545c1e8196ffe52c0b753b22b86d40d621c65bf GIT binary patch literal 1446 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 ABLDyZ literal 0 HcmV?d00001 diff --git a/data/resources/help/y.png b/data/resources/help/y.png new file mode 100644 index 0000000000000000000000000000000000000000..db5fd21030459132ef168fcbaf8e0bfc45e091b3 GIT binary patch literal 1498 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 AXaE2J literal 3703 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 -inline std::string strToUpper(const char* from) -{ - std::string str(from); - for(unsigned int i = 0; i < str.size(); i++) - str[i] = toupper(from[i]); - return str; -} - -inline std::string& strToUpper(std::string& str) -{ - for(unsigned int i = 0; i < str.size(); i++) - str[i] = toupper(str[i]); - - return str; -} - -inline std::string strToUpper(const std::string& str) -{ - return strToUpper(str.c_str()); -} \ No newline at end of file +std::string strToUpper(const char* from); +std::string& strToUpper(std::string& str); +std::string strToUpper(const std::string& str); \ No newline at end of file diff --git a/src/components/ButtonComponent.h b/src/components/ButtonComponent.h index 1d3b8ce8e..d5d053487 100644 --- a/src/components/ButtonComponent.h +++ b/src/components/ButtonComponent.h @@ -19,6 +19,9 @@ public: void setText(const std::string& text, const std::string& helpText); + inline const std::string& getText() const { return mText; }; + inline const std::function& getPressedFunc() const { return mPressedFunc; }; + void onSizeChanged() override; void onFocusGained() override; void onFocusLost() override; diff --git a/src/components/HelpComponent.cpp b/src/components/HelpComponent.cpp index 63176cefd..14925f64e 100644 --- a/src/components/HelpComponent.cpp +++ b/src/components/HelpComponent.cpp @@ -7,12 +7,13 @@ #include static const std::map ICON_PATH_MAP = boost::assign::map_list_of - ("up/down", ":/help/up_down.png") - ("left/right", ":/help/left_right.png") - ("up/down/left/right", ":/help/dpad.png") + ("up/down", ":/help/dpad_up_down.png") + ("left/right", ":/help/dpad_left_right.png") + ("up/down/left/right", ":/help/dpad_all.png") ("a", ":/help/a.png") ("b", ":/help/b.png") - ("menu", ":/help/menu.png"); + ("menu", ":/help/start.png") + ("select", ":/help/select.png"); HelpComponent::HelpComponent(Window* window) : GuiComponent(window) { diff --git a/src/components/MenuComponent.cpp b/src/components/MenuComponent.cpp index 2ea74dd65..06f706c74 100644 --- a/src/components/MenuComponent.cpp +++ b/src/components/MenuComponent.cpp @@ -33,7 +33,7 @@ void MenuComponent::updateSize() if(height > Renderer::getScreenHeight() * 0.7f) height = Renderer::getScreenHeight() * 0.7f; - setSize(Renderer::getScreenWidth() * 0.4f, height); + setSize(Renderer::getScreenWidth() * 0.5f, height); } void MenuComponent::onSizeChanged() diff --git a/src/components/OptionListComponent.h b/src/components/OptionListComponent.h index 1c9ac6d07..ca6a47ba8 100644 --- a/src/components/OptionListComponent.h +++ b/src/components/OptionListComponent.h @@ -46,7 +46,7 @@ private: for(auto it = mParent->mEntries.begin(); it != mParent->mEntries.end(); it++) { row.elements.clear(); - row.addElement(std::make_shared(mWindow, it->name, font, 0x777777FF), true); + row.addElement(std::make_shared(mWindow, strToUpper(it->name), font, 0x777777FF), true); OptionListData& e = *it; @@ -102,6 +102,11 @@ private: return GuiComponent::input(config, input); } + + std::vector getHelpPrompts() override + { + return mMenu.getHelpPrompts(); + } }; public: @@ -251,7 +256,7 @@ private: { // display # selected std::stringstream ss; - ss << getSelectedObjects().size() << " selected"; + ss << getSelectedObjects().size() << " SELECTED"; mText.setText(ss.str()); mText.setSize(0, mText.getSize().y()); setSize(mText.getSize().x() + mRightArrow.getSize().x() + 16, mText.getSize().y()); @@ -263,7 +268,7 @@ private: { if(it->selected) { - mText.setText(it->name); + mText.setText(strToUpper(it->name)); mText.setSize(0, mText.getSize().y()); setSize(mText.getSize().x() + mLeftArrow.getSize().x() + mRightArrow.getSize().x() + 16, mText.getSize().y()); if(mParent) // hack since theres no "on child size changed" callback atm... @@ -293,4 +298,3 @@ private: std::vector mEntries; }; - diff --git a/src/guis/GuiMsgBox.cpp b/src/guis/GuiMsgBox.cpp index 255d1c21f..e7d85ae28 100644 --- a/src/guis/GuiMsgBox.cpp +++ b/src/guis/GuiMsgBox.cpp @@ -3,6 +3,7 @@ #include "../components/TextComponent.h" #include "../components/ButtonComponent.h" #include "../components/MenuComponent.h" // for makeButtonGrid +#include "../Util.h" #define BUTTON_VERT_PADDING 32.0f @@ -24,6 +25,21 @@ GuiMsgBox::GuiMsgBox(Window* window, const std::string& text, if(!name3.empty()) mButtons.push_back(std::make_shared(mWindow, name3, name3, std::bind(&GuiMsgBox::deleteMeAndCall, this, func3))); + // set accelerator automatically (button to press when "b" is pressed) + if(mButtons.size() == 1) + { + mAcceleratorFunc = mButtons.front()->getPressedFunc(); + }else{ + for(auto it = mButtons.begin(); it != mButtons.end(); it++) + { + if(strToUpper((*it)->getText()) == "OK" || strToUpper((*it)->getText()) == "NO") + { + mAcceleratorFunc = (*it)->getPressedFunc(); + break; + } + } + } + // put the buttons into a ComponentGrid mButtonGrid = makeButtonGrid(mWindow, mButtons); @@ -52,6 +68,17 @@ GuiMsgBox::GuiMsgBox(Window* window, const std::string& text, addChild(&mGrid); } +bool GuiMsgBox::input(InputConfig* config, Input input) +{ + if(mAcceleratorFunc && config->isMappedTo("b", input) && input.value != 0) + { + mAcceleratorFunc(); + return true; + } + + return GuiComponent::input(config, input); +} + void GuiMsgBox::onSizeChanged() { mGrid.setSize(mSize); diff --git a/src/guis/GuiMsgBox.h b/src/guis/GuiMsgBox.h index 148d3ca04..bd95889de 100644 --- a/src/guis/GuiMsgBox.h +++ b/src/guis/GuiMsgBox.h @@ -15,6 +15,7 @@ public: const std::string& name2 = "", const std::function& func2 = nullptr, const std::string& name3 = "", const std::function& func3 = nullptr); + bool input(InputConfig* config, Input input); void onSizeChanged() override; private: @@ -27,5 +28,5 @@ private: std::shared_ptr mMsg; std::vector< std::shared_ptr > mButtons; std::shared_ptr mButtonGrid; - + std::function mAcceleratorFunc; }; diff --git a/src/guis/GuiScraperStart.cpp b/src/guis/GuiScraperStart.cpp index e20cf4cb5..59a08495e 100644 --- a/src/guis/GuiScraperStart.cpp +++ b/src/guis/GuiScraperStart.cpp @@ -30,6 +30,7 @@ GuiScraperStart::GuiScraperStart(Window* window) : GuiComponent(window), mMenu.addWithLabel("User decides on conflicts", mApproveResults); mMenu.addButton("START", "start scraping", std::bind(&GuiScraperStart::pressedStart, this)); + mMenu.addButton("BACK", "cancel", [&] { delete this; }); mMenu.setPosition((Renderer::getScreenWidth() - mMenu.getSize().x()) / 2, Renderer::getScreenHeight() * 0.15f); }