mirror of
https://github.com/RetroDECK/ES-DE.git
synced 2024-11-21 21:55:38 +00:00
Added on-screen help system.
Very intrusive right now. You can turn it off in the Settings menu until that gets worked out.
This commit is contained in:
parent
752746b020
commit
4ef5f64ff3
|
@ -164,6 +164,7 @@ set(ES_HEADERS
|
|||
${CMAKE_CURRENT_SOURCE_DIR}/src/components/ButtonComponent.h
|
||||
${CMAKE_CURRENT_SOURCE_DIR}/src/components/ComponentListComponent.h
|
||||
${CMAKE_CURRENT_SOURCE_DIR}/src/components/DateTimeComponent.h
|
||||
${CMAKE_CURRENT_SOURCE_DIR}/src/components/HelpComponent.h
|
||||
${CMAKE_CURRENT_SOURCE_DIR}/src/components/ImageComponent.h
|
||||
${CMAKE_CURRENT_SOURCE_DIR}/src/components/ImageGridComponent.h
|
||||
${CMAKE_CURRENT_SOURCE_DIR}/src/components/NinePatchComponent.h
|
||||
|
@ -243,6 +244,7 @@ set(ES_SOURCES
|
|||
${CMAKE_CURRENT_SOURCE_DIR}/src/components/ButtonComponent.cpp
|
||||
${CMAKE_CURRENT_SOURCE_DIR}/src/components/ComponentListComponent.cpp
|
||||
${CMAKE_CURRENT_SOURCE_DIR}/src/components/DateTimeComponent.cpp
|
||||
${CMAKE_CURRENT_SOURCE_DIR}/src/components/HelpComponent.cpp
|
||||
${CMAKE_CURRENT_SOURCE_DIR}/src/components/ImageComponent.cpp
|
||||
${CMAKE_CURRENT_SOURCE_DIR}/src/components/NinePatchComponent.cpp
|
||||
${CMAKE_CURRENT_SOURCE_DIR}/src/components/RatingComponent.cpp
|
||||
|
@ -292,6 +294,12 @@ set(ES_SOURCES
|
|||
${CMAKE_CURRENT_SOURCE_DIR}/data/converted/textbox_glow_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
|
||||
)
|
||||
|
||||
SOURCE_GROUP(resources FILES ResourceUtil.cpp)
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
|
||||
#include "Resources.h"
|
||||
|
||||
const size_t res2hNrOfFiles = 8;
|
||||
const size_t res2hNrOfFiles = 14;
|
||||
const Res2hEntry res2hFiles[res2hNrOfFiles] = {
|
||||
{":/button.png", button_png_size, button_png_data},
|
||||
{":/ES_logo_16.png", ES_logo_16_png_size, ES_logo_16_png_data},
|
||||
|
@ -11,7 +11,13 @@ const Res2hEntry res2hFiles[res2hNrOfFiles] = {
|
|||
{":/star_filled.png", star_filled_png_size, star_filled_png_data},
|
||||
{":/star_unfilled.png", star_unfilled_png_size, star_unfilled_png_data},
|
||||
{":/textbox.png", textbox_png_size, textbox_png_data},
|
||||
{":/textbox_glow.png", textbox_glow_png_size, textbox_glow_png_data}
|
||||
{":/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}
|
||||
};
|
||||
|
||||
res2hMapType::value_type mapTemp[] = {
|
||||
|
@ -22,7 +28,13 @@ res2hMapType::value_type mapTemp[] = {
|
|||
std::make_pair(":/star_filled.png", res2hFiles[4]),
|
||||
std::make_pair(":/star_unfilled.png", res2hFiles[5]),
|
||||
std::make_pair(":/textbox.png", res2hFiles[6]),
|
||||
std::make_pair(":/textbox_glow.png", res2hFiles[7])
|
||||
std::make_pair(":/textbox_glow.png", res2hFiles[7]),
|
||||
std::make_pair(":/help/a.png", res2hFiles[8]),
|
||||
std::make_pair(":/help/b.png", res2hFiles[9]),
|
||||
std::make_pair(":/help/dpad.png", res2hFiles[10]),
|
||||
std::make_pair(":/help/left_right.png", res2hFiles[11]),
|
||||
std::make_pair(":/help/menu.png", res2hFiles[12]),
|
||||
std::make_pair(":/help/up_down.png", res2hFiles[13])
|
||||
};
|
||||
|
||||
res2hMapType res2hMap(mapTemp, mapTemp + sizeof mapTemp / sizeof mapTemp[0]);
|
||||
|
|
|
@ -29,6 +29,24 @@ extern const unsigned char textbox_png_data[];
|
|||
extern const size_t textbox_glow_png_size;
|
||||
extern const unsigned char textbox_glow_png_data[];
|
||||
|
||||
extern const size_t help_a_png_size;
|
||||
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_left_right_png_size;
|
||||
extern const unsigned char help_left_right_png_data[];
|
||||
|
||||
extern const size_t help_menu_png_size;
|
||||
extern const unsigned char help_menu_png_data[];
|
||||
|
||||
extern const size_t help_up_down_png_size;
|
||||
extern const unsigned char help_up_down_png_data[];
|
||||
|
||||
struct Res2hEntry {
|
||||
const std::string relativeFileName;
|
||||
const size_t size;
|
||||
|
|
371
data/converted/help_a_png.cpp
Normal file
371
data/converted/help_a_png.cpp
Normal file
|
@ -0,0 +1,371 @@
|
|||
//this file was auto-generated from "a.png" by res2h
|
||||
|
||||
#include "../Resources.h"
|
||||
|
||||
const size_t help_a_png_size = 3635;
|
||||
const unsigned char help_a_png_data[3635] = {
|
||||
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
|
||||
};
|
378
data/converted/help_b_png.cpp
Normal file
378
data/converted/help_b_png.cpp
Normal file
|
@ -0,0 +1,378 @@
|
|||
//this file was auto-generated from "b.png" by res2h
|
||||
|
||||
#include "../Resources.h"
|
||||
|
||||
const size_t help_b_png_size = 3708;
|
||||
const unsigned char help_b_png_data[3708] = {
|
||||
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
|
||||
};
|
367
data/converted/help_dpad_png.cpp
Normal file
367
data/converted/help_dpad_png.cpp
Normal file
|
@ -0,0 +1,367 @@
|
|||
//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
|
||||
};
|
336
data/converted/help_left_right_png.cpp
Normal file
336
data/converted/help_left_right_png.cpp
Normal file
|
@ -0,0 +1,336 @@
|
|||
//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
|
||||
};
|
351
data/converted/help_menu_png.cpp
Normal file
351
data/converted/help_menu_png.cpp
Normal file
|
@ -0,0 +1,351 @@
|
|||
//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
|
||||
};
|
337
data/converted/help_up_down_png.cpp
Normal file
337
data/converted/help_up_down_png.cpp
Normal file
|
@ -0,0 +1,337 @@
|
|||
//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
|
||||
};
|
BIN
data/resources/help/a.png
Normal file
BIN
data/resources/help/a.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 3.5 KiB |
BIN
data/resources/help/b.png
Normal file
BIN
data/resources/help/b.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 3.6 KiB |
BIN
data/resources/help/dpad.png
Normal file
BIN
data/resources/help/dpad.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 3.5 KiB |
BIN
data/resources/help/left_right.png
Normal file
BIN
data/resources/help/left_right.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 3.2 KiB |
BIN
data/resources/help/menu.png
Normal file
BIN
data/resources/help/menu.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 3.4 KiB |
BIN
data/resources/help/up_down.png
Normal file
BIN
data/resources/help/up_down.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 3.2 KiB |
|
@ -262,3 +262,17 @@ void GuiComponent::applyTheme(const std::shared_ptr<ThemeData>& theme, const std
|
|||
if(properties & ThemeFlags::SIZE && elem->has("size"))
|
||||
setSize(elem->get<Eigen::Vector2f>("size").cwiseProduct(scale));
|
||||
}
|
||||
|
||||
void GuiComponent::updateHelpPrompts()
|
||||
{
|
||||
if(getParent())
|
||||
{
|
||||
getParent()->updateHelpPrompts();
|
||||
return;
|
||||
}
|
||||
|
||||
std::vector<HelpPrompt> prompts = getHelpPrompts();
|
||||
|
||||
if(mWindow->peekGui() == this)
|
||||
mWindow->setHelpPrompts(prompts);
|
||||
}
|
||||
|
|
|
@ -10,6 +10,8 @@ class Animation;
|
|||
class AnimationController;
|
||||
class ThemeData;
|
||||
|
||||
typedef std::pair<const char*, const char*> HelpPrompt;
|
||||
|
||||
class GuiComponent
|
||||
{
|
||||
public:
|
||||
|
@ -74,6 +76,12 @@ public:
|
|||
// You probably want to keep this behavior for any derived classes as well as add your own.
|
||||
virtual void applyTheme(const std::shared_ptr<ThemeData>& theme, const std::string& view, const std::string& element, unsigned int properties);
|
||||
|
||||
// Returns a list of help prompts.
|
||||
virtual std::vector<HelpPrompt> getHelpPrompts() { return std::vector<HelpPrompt>(); };
|
||||
|
||||
// Called whenever help prompts change.
|
||||
void updateHelpPrompts();
|
||||
|
||||
protected:
|
||||
void renderChildren(const Eigen::Affine3f& transform) const;
|
||||
|
||||
|
|
|
@ -33,6 +33,7 @@ void Settings::setDefaults()
|
|||
mBoolMap["DEBUG"] = false;
|
||||
mBoolMap["WINDOWED"] = false;
|
||||
mBoolMap["DISABLESOUNDS"] = false;
|
||||
mBoolMap["DISABLEHELP"] = false;
|
||||
mBoolMap["DisableGamelistWrites"] = false;
|
||||
mBoolMap["ScrapeRatings"] = true;
|
||||
|
||||
|
|
|
@ -7,12 +7,14 @@
|
|||
#include "Settings.h"
|
||||
#include <iomanip>
|
||||
#include "views/ViewController.h"
|
||||
#include "components/HelpComponent.h"
|
||||
|
||||
Window::Window() : mNormalizeNextUpdate(false), mFrameTimeElapsed(0), mFrameCountElapsed(0), mAverageDeltaTime(10),
|
||||
mAllowSleep(true)
|
||||
{
|
||||
mInputManager = new InputManager(this);
|
||||
mViewController = new ViewController(this);
|
||||
mHelp = new HelpComponent(this);
|
||||
pushGui(mViewController);
|
||||
}
|
||||
|
||||
|
@ -24,12 +26,14 @@ Window::~Window()
|
|||
while(peekGui())
|
||||
delete peekGui();
|
||||
|
||||
delete mHelp;
|
||||
delete mInputManager;
|
||||
}
|
||||
|
||||
void Window::pushGui(GuiComponent* gui)
|
||||
{
|
||||
mGuiStack.push_back(gui);
|
||||
setHelpPrompts(gui->getHelpPrompts());
|
||||
}
|
||||
|
||||
void Window::removeGui(GuiComponent* gui)
|
||||
|
@ -38,7 +42,11 @@ void Window::removeGui(GuiComponent* gui)
|
|||
{
|
||||
if(*i == gui)
|
||||
{
|
||||
mGuiStack.erase(i);
|
||||
i = mGuiStack.erase(i);
|
||||
|
||||
if(i == mGuiStack.end() && mGuiStack.size()) // we just popped the stack and the stack is not empty
|
||||
setHelpPrompts(mGuiStack.back()->getHelpPrompts());
|
||||
|
||||
return;
|
||||
}
|
||||
}
|
||||
|
@ -49,7 +57,7 @@ GuiComponent* Window::peekGui()
|
|||
if(mGuiStack.size() == 0)
|
||||
return NULL;
|
||||
|
||||
return mGuiStack.at(mGuiStack.size() - 1);
|
||||
return mGuiStack.back();
|
||||
}
|
||||
|
||||
bool Window::init(unsigned int width, unsigned int height)
|
||||
|
@ -72,6 +80,10 @@ bool Window::init(unsigned int width, unsigned int height)
|
|||
mDefaultFonts.push_back(Font::get(FONT_SIZE_LARGE));
|
||||
}
|
||||
|
||||
// update our help because font sizes probably changed
|
||||
if(peekGui())
|
||||
setHelpPrompts(peekGui()->getHelpPrompts());
|
||||
|
||||
return true;
|
||||
}
|
||||
|
||||
|
@ -138,6 +150,8 @@ void Window::render()
|
|||
mGuiStack.at(i)->render(transform);
|
||||
}
|
||||
|
||||
mHelp->render(transform);
|
||||
|
||||
if(Settings::getInstance()->getBool("DRAWFRAMERATE"))
|
||||
{
|
||||
Renderer::setMatrix(Eigen::Affine3f::Identity());
|
||||
|
@ -167,3 +181,16 @@ void Window::renderLoadingScreen()
|
|||
mDefaultFonts.at(2)->drawCenteredText("LOADING", 0, (Renderer::getScreenHeight() - mDefaultFonts.at(2)->getHeight()) / 2.0f , 0xFFFFFFFF);
|
||||
Renderer::swapBuffers();
|
||||
}
|
||||
|
||||
void Window::setHelpPrompts(const std::vector<HelpPrompt>& prompts)
|
||||
{
|
||||
mHelp->clearPrompts();
|
||||
|
||||
std::map<std::string, bool> seenMap;
|
||||
for(auto it = prompts.begin(); it != prompts.end(); it++)
|
||||
{
|
||||
// only add it if the same icon hasn't already been added
|
||||
if(seenMap.insert(std::make_pair<std::string, bool>(it->first, true)).second)
|
||||
mHelp->addPrompt(it->first, it->second);
|
||||
}
|
||||
}
|
||||
|
|
|
@ -7,6 +7,7 @@
|
|||
#include "resources/Font.h"
|
||||
|
||||
class ViewController;
|
||||
class HelpComponent;
|
||||
|
||||
class Window
|
||||
{
|
||||
|
@ -35,9 +36,12 @@ public:
|
|||
|
||||
void renderLoadingScreen();
|
||||
|
||||
void setHelpPrompts(const std::vector<HelpPrompt>& prompts);
|
||||
|
||||
private:
|
||||
InputManager* mInputManager;
|
||||
ViewController* mViewController;
|
||||
HelpComponent* mHelp;
|
||||
std::vector<GuiComponent*> mGuiStack;
|
||||
|
||||
std::vector< std::shared_ptr<Font> > mDefaultFonts;
|
||||
|
|
|
@ -42,3 +42,10 @@ void AsyncReqComponent::render(const Eigen::Affine3f& parentTrans)
|
|||
Eigen::Vector3f point(cos(mTime * 0.01f) * 12, sin(mTime * 0.01f) * 12, 0);
|
||||
Renderer::drawRect((int)point.x(), (int)point.y(), 8, 8, 0x0000FFFF);
|
||||
}
|
||||
|
||||
std::vector<HelpPrompt> AsyncReqComponent::getHelpPrompts()
|
||||
{
|
||||
std::vector<HelpPrompt> prompts;
|
||||
prompts.push_back(HelpPrompt("b", "cancel"));
|
||||
return prompts;
|
||||
}
|
||||
|
|
|
@ -35,6 +35,7 @@ public:
|
|||
void update(int deltaTime) override;
|
||||
void render(const Eigen::Affine3f& parentTrans) override;
|
||||
|
||||
virtual std::vector<HelpPrompt> getHelpPrompts() override;
|
||||
private:
|
||||
std::function<void(std::shared_ptr<HttpReq>)> mSuccessFunc;
|
||||
std::function<void()> mCancelFunc;
|
||||
|
|
|
@ -32,9 +32,10 @@ bool ButtonComponent::input(InputConfig* config, Input input)
|
|||
return GuiComponent::input(config, input);
|
||||
}
|
||||
|
||||
void ButtonComponent::setText(const std::string& text, unsigned int focusedColor, unsigned int unfocusedColor)
|
||||
void ButtonComponent::setText(const std::string& text, const std::string& helpText, unsigned int focusedColor, unsigned int unfocusedColor)
|
||||
{
|
||||
mText = text;
|
||||
mHelpText = helpText;
|
||||
mTextColorFocused = focusedColor;
|
||||
mTextColorUnfocused = unfocusedColor;
|
||||
|
||||
|
@ -42,6 +43,8 @@ void ButtonComponent::setText(const std::string& text, unsigned int focusedColor
|
|||
mTextCache = std::unique_ptr<TextCache>(f->buildTextCache(mText, 0, 0, getCurTextColor()));
|
||||
|
||||
setSize(mTextCache->metrics.size + Eigen::Vector2f(12, 12));
|
||||
|
||||
updateHelpPrompts();
|
||||
}
|
||||
|
||||
void ButtonComponent::onFocusGained()
|
||||
|
@ -86,3 +89,10 @@ unsigned int ButtonComponent::getCurTextColor() const
|
|||
else
|
||||
return mTextColorFocused;
|
||||
}
|
||||
|
||||
std::vector<HelpPrompt> ButtonComponent::getHelpPrompts()
|
||||
{
|
||||
std::vector<HelpPrompt> prompts;
|
||||
prompts.push_back(HelpPrompt("a", mHelpText.empty() ? mText.c_str() : mHelpText.c_str()));
|
||||
return prompts;
|
||||
}
|
||||
|
|
|
@ -15,12 +15,14 @@ public:
|
|||
bool input(InputConfig* config, Input input) override;
|
||||
void render(const Eigen::Affine3f& parentTrans) override;
|
||||
|
||||
void setText(const std::string& text, unsigned int focusedTextColor, unsigned int unfocusedTextColor = 0x555555FF);
|
||||
void setText(const std::string& text, const std::string& helpText, unsigned int focusedTextColor, unsigned int unfocusedTextColor = 0x555555FF);
|
||||
|
||||
void onSizeChanged() override;
|
||||
void onFocusGained() override;
|
||||
void onFocusLost() override;
|
||||
|
||||
virtual std::vector<HelpPrompt> getHelpPrompts() override;
|
||||
|
||||
private:
|
||||
std::shared_ptr<Font> getFont();
|
||||
std::function<void()> mPressedFunc;
|
||||
|
@ -33,6 +35,7 @@ private:
|
|||
unsigned int getCurTextColor() const;
|
||||
|
||||
std::string mText;
|
||||
std::string mHelpText;
|
||||
std::unique_ptr<TextCache> mTextCache;
|
||||
NinePatchComponent mBox;
|
||||
};
|
||||
|
|
|
@ -484,4 +484,40 @@ void ComponentListComponent::onCursorMoved(Eigen::Vector2i from, Eigen::Vector2i
|
|||
|
||||
if(to != Eigen::Vector2i(-1, -1))
|
||||
getCell(to.x(), to.y())->component->onFocusGained();
|
||||
|
||||
updateHelpPrompts();
|
||||
}
|
||||
|
||||
std::vector<HelpPrompt> ComponentListComponent::getHelpPrompts()
|
||||
{
|
||||
std::vector<HelpPrompt> prompts;
|
||||
if(cursorValid())
|
||||
prompts = getSelectedComponent()->getHelpPrompts();
|
||||
|
||||
bool canScrollVert = true;
|
||||
bool canScrollHoriz = true;
|
||||
for(auto it = prompts.begin(); it != prompts.end(); it++)
|
||||
{
|
||||
if(it->first == "up/down/left/right")
|
||||
{
|
||||
canScrollHoriz = false;
|
||||
canScrollVert = false;
|
||||
break;
|
||||
}else if(it->first == "up/down")
|
||||
{
|
||||
canScrollVert = false;
|
||||
}else if(it->first == "left/right")
|
||||
{
|
||||
canScrollHoriz = false;
|
||||
}
|
||||
}
|
||||
|
||||
if(canScrollHoriz && canScrollVert)
|
||||
prompts.push_back(HelpPrompt("up/down/left/right", "move cursor"));
|
||||
else if(canScrollHoriz)
|
||||
prompts.push_back(HelpPrompt("left/right", "move cursor"));
|
||||
else if(canScrollVert)
|
||||
prompts.push_back(HelpPrompt("up/down", "move cursor"));
|
||||
|
||||
return prompts;
|
||||
}
|
||||
|
|
|
@ -43,6 +43,8 @@ public:
|
|||
|
||||
void moveCursor(Eigen::Vector2i dir);
|
||||
|
||||
virtual std::vector<HelpPrompt> getHelpPrompts() override;
|
||||
|
||||
private:
|
||||
class ComponentEntry
|
||||
{
|
||||
|
|
|
@ -41,10 +41,11 @@ GuiGameScraper::GuiGameScraper(Window* window, ScraperSearchParams params, std::
|
|||
float sw = (float)Renderer::getScreenWidth();
|
||||
float sh = (float)Renderer::getScreenHeight();
|
||||
|
||||
float colWidth = sw * 0.35f;
|
||||
|
||||
mList.forceColumnWidth(0, (unsigned int)colWidth);
|
||||
mList.forceColumnWidth(1, (unsigned int)colWidth);
|
||||
float listWidth = sw * 0.7f;
|
||||
float col1Width = listWidth * 0.7f;
|
||||
float col2Width = listWidth * 0.3f;
|
||||
mList.forceColumnWidth(0, (unsigned int)col1Width);
|
||||
mList.forceColumnWidth(1, (unsigned int)col2Width);
|
||||
|
||||
using namespace Eigen;
|
||||
|
||||
|
@ -57,20 +58,19 @@ GuiGameScraper::GuiGameScraper(Window* window, ScraperSearchParams params, std::
|
|||
mList.setEntry(Vector2i(0, 1), Vector2i(1, 1), &mResultName, false, ComponentListComponent::AlignLeft);
|
||||
|
||||
mResultDesc.setText(params.game->metadata.get("desc"));
|
||||
mResultDesc.setSize(colWidth, 0);
|
||||
mResultDesc.setSize(col1Width, 0);
|
||||
mResultInfo.addChild(&mResultDesc);
|
||||
mResultInfo.setSize(mResultDesc.getSize().x(), mResultDesc.getFont()->getHeight() * 3.0f);
|
||||
mList.setEntry(Vector2i(0, 2), Vector2i(1, 1), &mResultInfo, false, ComponentListComponent::AlignLeft);
|
||||
|
||||
mResultThumbnail.setOrigin(0.5f, 0.5f);
|
||||
mResultThumbnail.setMaxSize(colWidth, mResultInfo.getSize().y() + mResultName.getSize().y());
|
||||
mList.setEntry(Vector2i(1, 1), Vector2i(1, 2), &mResultThumbnail, false, ComponentListComponent::AlignCenter);
|
||||
mResultThumbnail.setMaxSize(col2Width, mResultInfo.getSize().y());
|
||||
mList.setEntry(Vector2i(1, 2), Vector2i(1, 1), &mResultThumbnail, false, ComponentListComponent::AlignCenter);
|
||||
|
||||
//y = 3 is a spacer row
|
||||
|
||||
mList.setEntry(Vector2i(0, 4), Vector2i(1, 1), &mSearchLabel, false, ComponentListComponent::AlignLeft);
|
||||
mSearchText.setValue(!params.nameOverride.empty() ? params.nameOverride : getCleanFileName(params.game->getPath()));
|
||||
mSearchText.setSize(colWidth * 2 - mSearchLabel.getSize().x() - 20, mSearchText.getSize().y());
|
||||
mSearchText.setSize(listWidth - mSearchLabel.getSize().x() - 20, mSearchText.getSize().y());
|
||||
mList.setEntry(Vector2i(1, 4), Vector2i(1, 1), &mSearchText, true, ComponentListComponent::AlignRight);
|
||||
|
||||
//y = 5 is a spacer row
|
||||
|
@ -216,4 +216,15 @@ void GuiGameScraper::updateThumbnail()
|
|||
}
|
||||
|
||||
mThumbnailReq.reset();
|
||||
mList.onPositionChanged(); // a hack to fix the thumbnail position since its size changed
|
||||
}
|
||||
|
||||
std::vector<HelpPrompt> GuiGameScraper::getHelpPrompts()
|
||||
{
|
||||
std::vector<HelpPrompt> prompts = mList.getHelpPrompts();
|
||||
if(getSelectedIndex() != -1)
|
||||
prompts.push_back(HelpPrompt("a", "accept result"));
|
||||
|
||||
prompts.push_back(HelpPrompt("b", "cancel/skip"));
|
||||
return prompts;
|
||||
}
|
||||
|
|
|
@ -22,6 +22,9 @@ public:
|
|||
void update(int deltaTime) override;
|
||||
|
||||
void search();
|
||||
|
||||
virtual std::vector<HelpPrompt> getHelpPrompts() override;
|
||||
|
||||
private:
|
||||
int getSelectedIndex();
|
||||
void onSearchDone(std::vector<MetaDataList> results);
|
||||
|
|
|
@ -29,7 +29,7 @@ GuiMetaDataEd::GuiMetaDataEd(Window* window, MetaDataList* md, const std::vector
|
|||
mHeader.setText(header);
|
||||
|
||||
//initialize buttons
|
||||
mDeleteButton.setText("DELETE", mDeleteFunc ? 0xFF0000FF : 0x555555FF);
|
||||
mDeleteButton.setText("DELETE", "delete file", mDeleteFunc ? 0xFF0000FF : 0x555555FF);
|
||||
if(mDeleteFunc)
|
||||
{
|
||||
std::function<void()> deleteFileAndSelf = [&] { mDeleteFunc(); delete this; };
|
||||
|
@ -37,10 +37,10 @@ GuiMetaDataEd::GuiMetaDataEd(Window* window, MetaDataList* md, const std::vector
|
|||
mDeleteButton.setPressedFunc(pressedFunc);
|
||||
}
|
||||
|
||||
mFetchButton.setText("FETCH", 0x00FF00FF);
|
||||
mFetchButton.setText("FETCH", "download metadata", 0x00FF00FF);
|
||||
mFetchButton.setPressedFunc(std::bind(&GuiMetaDataEd::fetch, this));
|
||||
|
||||
mSaveButton.setText("SAVE", 0x0000FFFF);
|
||||
mSaveButton.setText("SAVE", "save", 0x0000FFFF);
|
||||
mSaveButton.setPressedFunc([&] { save(); delete this; });
|
||||
|
||||
//initialize metadata list
|
||||
|
@ -184,3 +184,10 @@ bool GuiMetaDataEd::input(InputConfig* config, Input input)
|
|||
|
||||
return false;
|
||||
}
|
||||
|
||||
std::vector<HelpPrompt> GuiMetaDataEd::getHelpPrompts()
|
||||
{
|
||||
std::vector<HelpPrompt> prompts = mList.getHelpPrompts();
|
||||
prompts.push_back(HelpPrompt("b", "discard changes"));
|
||||
return prompts;
|
||||
}
|
||||
|
|
|
@ -18,6 +18,8 @@ public:
|
|||
|
||||
bool input(InputConfig* config, Input input) override;
|
||||
|
||||
virtual std::vector<HelpPrompt> getHelpPrompts() override;
|
||||
|
||||
private:
|
||||
void save();
|
||||
void fetch();
|
||||
|
|
|
@ -44,7 +44,7 @@ GuiScraperStart::GuiScraperStart(Window* window) : GuiComponent(window),
|
|||
mList.setEntry(Vector2i(0, 2), Vector2i(1, 1), &mManualLabel, false, ComponentListComponent::AlignRight);
|
||||
mList.setEntry(Vector2i(1, 2), Vector2i(1, 1), &mManualSwitch, true, ComponentListComponent::AlignLeft);
|
||||
|
||||
mStartButton.setText("GO GO GO GO", 0x00FF00FF);
|
||||
mStartButton.setText("GO GO GO GO", "begin", 0x00FF00FF);
|
||||
mStartButton.setPressedFunc(std::bind(&GuiScraperStart::pressedStart, this));
|
||||
mList.setEntry(Vector2i(0, 3), Vector2i(2, 1), &mStartButton, true, ComponentListComponent::AlignCenter);
|
||||
|
||||
|
@ -116,3 +116,10 @@ bool GuiScraperStart::input(InputConfig* config, Input input)
|
|||
|
||||
return false;
|
||||
}
|
||||
|
||||
std::vector<HelpPrompt> GuiScraperStart::getHelpPrompts()
|
||||
{
|
||||
std::vector<HelpPrompt> prompts = mList.getHelpPrompts();
|
||||
prompts.push_back(HelpPrompt("b", "cancel"));
|
||||
return prompts;
|
||||
}
|
||||
|
|
|
@ -22,6 +22,8 @@ public:
|
|||
|
||||
bool input(InputConfig* config, Input input) override;
|
||||
|
||||
virtual std::vector<HelpPrompt> getHelpPrompts() override;
|
||||
|
||||
private:
|
||||
void pressedStart();
|
||||
void start();
|
||||
|
|
|
@ -7,7 +7,7 @@
|
|||
#include "../scrapers/GamesDBScraper.h"
|
||||
|
||||
GuiSettingsMenu::GuiSettingsMenu(Window* window) : GuiComponent(window),
|
||||
mList(window, Eigen::Vector2i(2, 7)),
|
||||
mList(window, Eigen::Vector2i(2, 8)),
|
||||
mBox(mWindow, ":/frame.png", 0x444444FF),
|
||||
mDrawFramerateSwitch(window),
|
||||
mVolumeSlider(window, 0, 100, 1, "%"),
|
||||
|
@ -15,6 +15,7 @@ GuiSettingsMenu::GuiSettingsMenu(Window* window) : GuiComponent(window),
|
|||
mScraperOptList(window),
|
||||
mScrapeRatingsSwitch(window),
|
||||
mDimSlider(window, 0, 60, 1, "s"),
|
||||
mDisableHelpSwitch(window),
|
||||
mSaveButton(window)
|
||||
{
|
||||
loadStates();
|
||||
|
@ -87,14 +88,20 @@ GuiSettingsMenu::GuiSettingsMenu(Window* window) : GuiComponent(window),
|
|||
label->setColor(0x0000FFFF);
|
||||
mLabels.push_back(label);
|
||||
mList.setEntry(Vector2i(0, 5), Vector2i(1, 1), label, false, ComponentListComponent::AlignRight);
|
||||
|
||||
// dim slider
|
||||
mList.setEntry(Vector2i(1, 5), Vector2i(1, 1), &mDimSlider, true, ComponentListComponent::AlignCenter);
|
||||
|
||||
// disable help switch
|
||||
label = new TextComponent(mWindow);
|
||||
label->setText("Disable help: ");
|
||||
label->setColor(0x0000FFFF);
|
||||
mLabels.push_back(label);
|
||||
mList.setEntry(Vector2i(0, 6), Vector2i(1, 1), label, false, ComponentListComponent::AlignRight);
|
||||
mList.setEntry(Vector2i(1, 6), Vector2i(1, 1), &mDisableHelpSwitch, true, ComponentListComponent::AlignCenter);
|
||||
|
||||
//save button
|
||||
mSaveButton.setText("SAVE", 0x00FF00FF);
|
||||
mSaveButton.setText("SAVE", "apply & save", 0x00FF00FF);
|
||||
mSaveButton.setPressedFunc([this] () { applyStates(); delete this; });
|
||||
mList.setEntry(Vector2i(0, 6), Vector2i(2, 1), &mSaveButton, true, ComponentListComponent::AlignCenter, Matrix<bool, 1, 2>(false, true));
|
||||
mList.setEntry(Vector2i(0, 7), Vector2i(2, 1), &mSaveButton, true, ComponentListComponent::AlignCenter, Matrix<bool, 1, 2>(false, true));
|
||||
|
||||
//center list
|
||||
mList.setPosition(Renderer::getScreenWidth() / 2 - mList.getSize().x() / 2, Renderer::getScreenHeight() / 2 - mList.getSize().y() / 2);
|
||||
|
@ -139,6 +146,8 @@ void GuiSettingsMenu::loadStates()
|
|||
mScrapeRatingsSwitch.setState(s->getBool("ScrapeRatings"));
|
||||
|
||||
mDimSlider.setValue((float)(s->getInt("DIMTIME") / 1000));
|
||||
|
||||
mDisableHelpSwitch.setState(s->getBool("DISABLEHELP"));
|
||||
}
|
||||
|
||||
void GuiSettingsMenu::applyStates()
|
||||
|
@ -157,5 +166,14 @@ void GuiSettingsMenu::applyStates()
|
|||
|
||||
s->setInt("DIMTIME", (int)(mDimSlider.getValue() * 1000));
|
||||
|
||||
s->setBool("DISABLEHELP", mDisableHelpSwitch.getState());
|
||||
|
||||
s->saveFile();
|
||||
}
|
||||
|
||||
std::vector<HelpPrompt> GuiSettingsMenu::getHelpPrompts()
|
||||
{
|
||||
std::vector<HelpPrompt> prompts = mList.getHelpPrompts();
|
||||
prompts.push_back(HelpPrompt("b", "discard changes"));
|
||||
return prompts;
|
||||
}
|
||||
|
|
|
@ -20,6 +20,8 @@ public:
|
|||
|
||||
bool input(InputConfig* config, Input input) override;
|
||||
|
||||
std::vector<HelpPrompt> getHelpPrompts() override;
|
||||
|
||||
private:
|
||||
void loadStates();
|
||||
void applyStates();
|
||||
|
@ -34,6 +36,7 @@ private:
|
|||
OptionListComponent< std::shared_ptr<Scraper> > mScraperOptList;
|
||||
SwitchComponent mScrapeRatingsSwitch;
|
||||
SliderComponent mDimSlider;
|
||||
SwitchComponent mDisableHelpSwitch;
|
||||
ButtonComponent mSaveButton;
|
||||
|
||||
std::vector<GuiComponent*> mLabels;
|
||||
|
|
92
src/components/HelpComponent.cpp
Normal file
92
src/components/HelpComponent.cpp
Normal file
|
@ -0,0 +1,92 @@
|
|||
#include "HelpComponent.h"
|
||||
#include "../Renderer.h"
|
||||
#include "ImageComponent.h"
|
||||
#include "../resources/Font.h"
|
||||
#include "../Settings.h"
|
||||
#include "../Log.h"
|
||||
#include <boost/assign.hpp>
|
||||
|
||||
static const std::map<std::string, const char*> 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")
|
||||
("a", ":/help/a.png")
|
||||
("b", ":/help/b.png")
|
||||
("menu", ":/help/menu.png");
|
||||
|
||||
HelpComponent::HelpComponent(Window* window) : GuiComponent(window)
|
||||
{
|
||||
}
|
||||
|
||||
void HelpComponent::clearPrompts()
|
||||
{
|
||||
mPrompts.clear();
|
||||
}
|
||||
|
||||
void HelpComponent::addPrompt(const char* icon, const char* text)
|
||||
{
|
||||
if(Settings::getInstance()->getBool("DISABLEHELP"))
|
||||
return;
|
||||
|
||||
Prompt p;
|
||||
|
||||
std::shared_ptr<Font> font = getFont();
|
||||
|
||||
// make the icon
|
||||
p.icon = std::shared_ptr<ImageComponent>(new ImageComponent(mWindow));
|
||||
p.icon->setResize(0, (float)FONT_SIZE_SMALL);
|
||||
p.icon->setImage(getIconTexture(icon));
|
||||
p.icon->setPosition(0.0f, mPrompts.size() ? mPrompts.back().icon->getPosition().y() + mPrompts.back().icon->getSize().y() + 10 : 0);
|
||||
p.icon->setOpacity(0xEE);
|
||||
|
||||
// make the text
|
||||
const float textY = (p.icon->getSize().y() - (float)font->getHeight())/2;
|
||||
p.textCache = std::shared_ptr<TextCache>(font->buildTextCache(text, p.icon->getSize().x() + 6, textY, 0x888888EE));
|
||||
|
||||
mPrompts.push_back(p);
|
||||
|
||||
setPosition(0, (float)Renderer::getScreenHeight() - (p.icon->getPosition().y() + p.icon->getSize().y() + 6));
|
||||
}
|
||||
|
||||
std::shared_ptr<Font> HelpComponent::getFont() const
|
||||
{
|
||||
// font size controls icon height
|
||||
return Font::get(FONT_SIZE_SMALL);
|
||||
}
|
||||
|
||||
std::shared_ptr<TextureResource> HelpComponent::getIconTexture(const char* name)
|
||||
{
|
||||
auto it = mIconCache.find(name);
|
||||
if(it != mIconCache.end())
|
||||
return it->second;
|
||||
|
||||
auto pathLookup = ICON_PATH_MAP.find(name);
|
||||
if(pathLookup == ICON_PATH_MAP.end())
|
||||
{
|
||||
LOG(LogError) << "Unknown help icon \"" << name << "\"!";
|
||||
return nullptr;
|
||||
}
|
||||
if(!ResourceManager::getInstance()->fileExists(pathLookup->second))
|
||||
{
|
||||
LOG(LogError) << "Help icon \"" << name << "\" - corresponding image file \"" << pathLookup->second << "\" misisng!";
|
||||
return nullptr;
|
||||
}
|
||||
|
||||
std::shared_ptr<TextureResource> tex = TextureResource::get(pathLookup->second);
|
||||
mIconCache[std::string(name)] = tex;
|
||||
return tex;
|
||||
}
|
||||
|
||||
void HelpComponent::render(const Eigen::Affine3f& parentTrans)
|
||||
{
|
||||
Eigen::Affine3f trans = parentTrans * getTransform();
|
||||
|
||||
std::shared_ptr<Font> font = getFont();
|
||||
for(auto it = mPrompts.begin(); it != mPrompts.end(); it++)
|
||||
{
|
||||
it->icon->render(trans);
|
||||
// we actually depend on it->icon->render to call Renderer::setMatrix to draw at the right Y offset (efficiency!)
|
||||
// if for some reason this breaks in the future, it should be equivalent to translating parentTrans by it->icon->getPosition()
|
||||
font->renderTextCache(it->textCache.get());
|
||||
}
|
||||
}
|
33
src/components/HelpComponent.h
Normal file
33
src/components/HelpComponent.h
Normal file
|
@ -0,0 +1,33 @@
|
|||
#pragma once
|
||||
|
||||
#include "../GuiComponent.h"
|
||||
|
||||
class ImageComponent;
|
||||
class TextureResource;
|
||||
class TextCache;
|
||||
class Font;
|
||||
|
||||
class HelpComponent : public GuiComponent
|
||||
{
|
||||
public:
|
||||
HelpComponent(Window* window);
|
||||
|
||||
void clearPrompts();
|
||||
void addPrompt(const char* icon, const char* text);
|
||||
|
||||
void render(const Eigen::Affine3f& parent) override;
|
||||
|
||||
private:
|
||||
std::shared_ptr<Font> getFont() const;
|
||||
std::shared_ptr<TextureResource> getIconTexture(const char* name);
|
||||
|
||||
std::map< std::string, std::shared_ptr<TextureResource> > mIconCache;
|
||||
|
||||
struct Prompt
|
||||
{
|
||||
std::shared_ptr<ImageComponent> icon;
|
||||
std::shared_ptr<TextCache> textCache;
|
||||
};
|
||||
|
||||
std::vector<Prompt> mPrompts;
|
||||
};
|
|
@ -136,3 +136,10 @@ void RatingComponent::applyTheme(const std::shared_ptr<ThemeData>& theme, const
|
|||
if(properties & PATH && elem->has("unfilledPath"))
|
||||
mUnfilledTexture = TextureResource::get(elem->get<std::string>("unfilledPath"), true);
|
||||
}
|
||||
|
||||
std::vector<HelpPrompt> RatingComponent::getHelpPrompts()
|
||||
{
|
||||
std::vector<HelpPrompt> prompts;
|
||||
prompts.push_back(HelpPrompt("a", "+1 star"));
|
||||
return prompts;
|
||||
}
|
||||
|
|
|
@ -23,6 +23,8 @@ public:
|
|||
|
||||
virtual void applyTheme(const std::shared_ptr<ThemeData>& theme, const std::string& view, const std::string& element, unsigned int properties) override;
|
||||
|
||||
virtual std::vector<HelpPrompt> getHelpPrompts() override;
|
||||
|
||||
private:
|
||||
void updateVertices();
|
||||
|
||||
|
|
|
@ -142,3 +142,10 @@ void SliderComponent::onValueChanged()
|
|||
mValueCache->metrics.size[0] = w; // fudge the width
|
||||
}
|
||||
}
|
||||
|
||||
std::vector<HelpPrompt> SliderComponent::getHelpPrompts()
|
||||
{
|
||||
std::vector<HelpPrompt> prompts;
|
||||
prompts.push_back(HelpPrompt("left/right", "adjust"));
|
||||
return prompts;
|
||||
}
|
||||
|
|
|
@ -20,6 +20,8 @@ public:
|
|||
void render(const Eigen::Affine3f& parentTrans) override;
|
||||
|
||||
void onSizeChanged() override;
|
||||
|
||||
virtual std::vector<HelpPrompt> getHelpPrompts() override;
|
||||
|
||||
private:
|
||||
void onValueChanged();
|
||||
|
|
|
@ -45,3 +45,10 @@ void SwitchComponent::setState(bool state)
|
|||
{
|
||||
mState = state;
|
||||
}
|
||||
|
||||
std::vector<HelpPrompt> SwitchComponent::getHelpPrompts()
|
||||
{
|
||||
std::vector<HelpPrompt> prompts;
|
||||
prompts.push_back(HelpPrompt("a", "toggle"));
|
||||
return prompts;
|
||||
}
|
||||
|
|
|
@ -15,6 +15,8 @@ public:
|
|||
bool getState();
|
||||
void setState(bool state);
|
||||
|
||||
virtual std::vector<HelpPrompt> getHelpPrompts() override;
|
||||
|
||||
private:
|
||||
bool mState;
|
||||
};
|
||||
|
|
|
@ -79,6 +79,7 @@ bool TextEditComponent::input(InputConfig* config, Input input)
|
|||
if(config->isMappedTo("a", input) && mFocused && !mEditing)
|
||||
{
|
||||
mEditing = true;
|
||||
updateHelpPrompts();
|
||||
return true;
|
||||
}
|
||||
|
||||
|
@ -87,9 +88,12 @@ bool TextEditComponent::input(InputConfig* config, Input input)
|
|||
if(config->getDeviceId() == DEVICE_KEYBOARD && input.id == SDLK_RETURN)
|
||||
{
|
||||
if(isMultiline())
|
||||
{
|
||||
textInput("\n");
|
||||
else
|
||||
}else{
|
||||
mEditing = false;
|
||||
updateHelpPrompts();
|
||||
}
|
||||
|
||||
return true;
|
||||
}
|
||||
|
@ -97,6 +101,7 @@ bool TextEditComponent::input(InputConfig* config, Input input)
|
|||
if((config->getDeviceId() == DEVICE_KEYBOARD && input.id == SDLK_ESCAPE) || (config->getDeviceId() != DEVICE_KEYBOARD && config->isMappedTo("b", input)))
|
||||
{
|
||||
mEditing = false;
|
||||
updateHelpPrompts();
|
||||
return true;
|
||||
}
|
||||
|
||||
|
@ -222,3 +227,16 @@ bool TextEditComponent::isEditing() const
|
|||
{
|
||||
return mEditing;
|
||||
}
|
||||
|
||||
std::vector<HelpPrompt> TextEditComponent::getHelpPrompts()
|
||||
{
|
||||
std::vector<HelpPrompt> prompts;
|
||||
if(mEditing)
|
||||
{
|
||||
prompts.push_back(HelpPrompt("up/down/left/right", "move cursor"));
|
||||
prompts.push_back(HelpPrompt("b", "stop editing"));
|
||||
}else{
|
||||
prompts.push_back(HelpPrompt("a", "edit"));
|
||||
}
|
||||
return prompts;
|
||||
}
|
||||
|
|
|
@ -26,6 +26,8 @@ public:
|
|||
|
||||
bool isEditing() const;
|
||||
|
||||
virtual std::vector<HelpPrompt> getHelpPrompts() override;
|
||||
|
||||
private:
|
||||
void onTextChanged();
|
||||
void onCursorChanged();
|
||||
|
|
|
@ -81,3 +81,10 @@ bool SystemView::input(InputConfig* config, Input input)
|
|||
|
||||
return GuiComponent::input(config, input);
|
||||
}
|
||||
|
||||
std::vector<HelpPrompt> SystemView::getHelpPrompts()
|
||||
{
|
||||
std::vector<HelpPrompt> prompts;
|
||||
prompts.push_back(HelpPrompt("a", "select"));
|
||||
return prompts;
|
||||
}
|
||||
|
|
|
@ -16,6 +16,8 @@ public:
|
|||
|
||||
bool input(InputConfig* config, Input input) override;
|
||||
|
||||
std::vector<HelpPrompt> getHelpPrompts() override;
|
||||
|
||||
private:
|
||||
SystemData* mSystem;
|
||||
|
||||
|
|
|
@ -31,6 +31,7 @@ void ViewController::goToSystemView(SystemData* system)
|
|||
{
|
||||
mState.viewing = SYSTEM_SELECT;
|
||||
mCurrentView = getSystemView(system);
|
||||
updateHelpPrompts();
|
||||
playViewTransition();
|
||||
}
|
||||
|
||||
|
@ -56,6 +57,7 @@ void ViewController::goToGameList(SystemData* system)
|
|||
mState.data.system = system;
|
||||
|
||||
mCurrentView = getGameListView(system);
|
||||
updateHelpPrompts();
|
||||
playViewTransition();
|
||||
}
|
||||
|
||||
|
@ -250,3 +252,15 @@ void ViewController::reloadGameListView(IGameListView* view, bool reloadTheme)
|
|||
}
|
||||
}
|
||||
}
|
||||
|
||||
std::vector<HelpPrompt> ViewController::getHelpPrompts()
|
||||
{
|
||||
std::vector<HelpPrompt> prompts;
|
||||
if(!mCurrentView)
|
||||
return prompts;
|
||||
|
||||
prompts = mCurrentView->getHelpPrompts();
|
||||
prompts.push_back(HelpPrompt("menu", "open menu"));
|
||||
|
||||
return prompts;
|
||||
}
|
||||
|
|
|
@ -60,6 +60,8 @@ public:
|
|||
|
||||
inline const State& getState() const { return mState; }
|
||||
|
||||
virtual std::vector<HelpPrompt> getHelpPrompts() override;
|
||||
|
||||
private:
|
||||
void playViewTransition();
|
||||
std::shared_ptr<IGameListView> getGameListView(SystemData* system);
|
||||
|
|
|
@ -70,3 +70,13 @@ void BasicGameListView::launch(FileData* game)
|
|||
{
|
||||
mWindow->getViewController()->launch(game);
|
||||
}
|
||||
|
||||
std::vector<HelpPrompt> BasicGameListView::getHelpPrompts()
|
||||
{
|
||||
std::vector<HelpPrompt> prompts;
|
||||
prompts.push_back(HelpPrompt("left/right", "change systems"));
|
||||
prompts.push_back(HelpPrompt("up/down", "scroll"));
|
||||
prompts.push_back(HelpPrompt("a", "play"));
|
||||
prompts.push_back(HelpPrompt("b", "back"));
|
||||
return prompts;
|
||||
}
|
||||
|
|
|
@ -18,6 +18,8 @@ public:
|
|||
|
||||
virtual const char* getName() const override { return "basic"; }
|
||||
|
||||
virtual std::vector<HelpPrompt> getHelpPrompts() override;
|
||||
|
||||
protected:
|
||||
virtual void populateList(const std::vector<FileData*>& files) override;
|
||||
virtual void launch(FileData* game) override;
|
||||
|
|
|
@ -54,3 +54,12 @@ void GridGameListView::launch(FileData* game)
|
|||
{
|
||||
mWindow->getViewController()->launch(game);
|
||||
}
|
||||
|
||||
std::vector<HelpPrompt> GridGameListView::getHelpPrompts()
|
||||
{
|
||||
std::vector<HelpPrompt> prompts;
|
||||
prompts.push_back(HelpPrompt("up/down/left/right", "scroll"));
|
||||
prompts.push_back(HelpPrompt("a", "launch"));
|
||||
prompts.push_back(HelpPrompt("b", "back"));
|
||||
return prompts;
|
||||
}
|
||||
|
|
|
@ -19,6 +19,8 @@ public:
|
|||
|
||||
virtual const char* getName() const override { return "grid"; }
|
||||
|
||||
virtual std::vector<HelpPrompt> getHelpPrompts() override;
|
||||
|
||||
protected:
|
||||
virtual void populateList(const std::vector<FileData*>& files) override;
|
||||
virtual void launch(FileData* game) override;
|
||||
|
|
Loading…
Reference in a new issue