mirror of
https://github.com/RetroDECK/ES-DE.git
synced 2024-11-21 21:55:38 +00:00
Began work on the metadata editor.
This commit is contained in:
parent
421797929d
commit
b5fe2cc8fc
|
@ -143,11 +143,13 @@ set(ES_HEADERS
|
|||
${CMAKE_CURRENT_SOURCE_DIR}/src/components/SliderComponent.h
|
||||
${CMAKE_CURRENT_SOURCE_DIR}/src/components/SwitchComponent.h
|
||||
${CMAKE_CURRENT_SOURCE_DIR}/src/components/TextComponent.h
|
||||
${CMAKE_CURRENT_SOURCE_DIR}/src/components/TextEditComponent.h
|
||||
${CMAKE_CURRENT_SOURCE_DIR}/src/components/TextListComponent.h
|
||||
${CMAKE_CURRENT_SOURCE_DIR}/src/components/ThemeComponent.h
|
||||
${CMAKE_CURRENT_SOURCE_DIR}/src/components/GuiBox.h
|
||||
${CMAKE_CURRENT_SOURCE_DIR}/src/components/GuiDetectDevice.h
|
||||
${CMAKE_CURRENT_SOURCE_DIR}/src/components/GuiFastSelect.h
|
||||
${CMAKE_CURRENT_SOURCE_DIR}/src/components/GuiGameEd.h
|
||||
${CMAKE_CURRENT_SOURCE_DIR}/src/components/GuiGameList.h
|
||||
${CMAKE_CURRENT_SOURCE_DIR}/src/components/GuiInputConfig.h
|
||||
${CMAKE_CURRENT_SOURCE_DIR}/src/components/GuiMenu.h
|
||||
|
@ -187,10 +189,12 @@ set(ES_SOURCES
|
|||
${CMAKE_CURRENT_SOURCE_DIR}/src/components/SliderComponent.cpp
|
||||
${CMAKE_CURRENT_SOURCE_DIR}/src/components/SwitchComponent.cpp
|
||||
${CMAKE_CURRENT_SOURCE_DIR}/src/components/TextComponent.cpp
|
||||
${CMAKE_CURRENT_SOURCE_DIR}/src/components/TextEditComponent.cpp
|
||||
${CMAKE_CURRENT_SOURCE_DIR}/src/components/ThemeComponent.cpp
|
||||
${CMAKE_CURRENT_SOURCE_DIR}/src/components/GuiBox.cpp
|
||||
${CMAKE_CURRENT_SOURCE_DIR}/src/components/GuiDetectDevice.cpp
|
||||
${CMAKE_CURRENT_SOURCE_DIR}/src/components/GuiFastSelect.cpp
|
||||
${CMAKE_CURRENT_SOURCE_DIR}/src/components/GuiGameEd.cpp
|
||||
${CMAKE_CURRENT_SOURCE_DIR}/src/components/GuiGameList.cpp
|
||||
${CMAKE_CURRENT_SOURCE_DIR}/src/components/GuiInputConfig.cpp
|
||||
${CMAKE_CURRENT_SOURCE_DIR}/src/components/GuiMenu.cpp
|
||||
|
@ -204,6 +208,10 @@ set(ES_SOURCES
|
|||
${CMAKE_CURRENT_SOURCE_DIR}/data/converted/ES_logo_32_png.cpp
|
||||
${CMAKE_CURRENT_SOURCE_DIR}/data/converted/bar_png.cpp
|
||||
${CMAKE_CURRENT_SOURCE_DIR}/data/converted/corner_png.cpp
|
||||
${CMAKE_CURRENT_SOURCE_DIR}/data/converted/glow_hor_png.cpp
|
||||
${CMAKE_CURRENT_SOURCE_DIR}/data/converted/glow_vert_png.cpp
|
||||
${CMAKE_CURRENT_SOURCE_DIR}/data/converted/glow_off_hor_png.cpp
|
||||
${CMAKE_CURRENT_SOURCE_DIR}/data/converted/glow_off_vert_png.cpp
|
||||
)
|
||||
|
||||
SOURCE_GROUP(resources FILES ResourceUtil.cpp)
|
||||
|
|
|
@ -2,19 +2,27 @@
|
|||
|
||||
#include "Resources.h"
|
||||
|
||||
const size_t res2hNrOfFiles = 4;
|
||||
const size_t res2hNrOfFiles = 8;
|
||||
const Res2hEntry res2hFiles[res2hNrOfFiles] = {
|
||||
{":/bar.png", bar_png_size, bar_png_data},
|
||||
{":/corner.png", corner_png_size, corner_png_data},
|
||||
{":/ES_logo_16.png", ES_logo_16_png_size, ES_logo_16_png_data},
|
||||
{":/ES_logo_32.png", ES_logo_32_png_size, ES_logo_32_png_data}
|
||||
{":/ES_logo_32.png", ES_logo_32_png_size, ES_logo_32_png_data},
|
||||
{":/glow_hor.png", glow_hor_png_size, glow_hor_png_data},
|
||||
{":/glow_off_hor.png", glow_off_hor_png_size, glow_off_hor_png_data},
|
||||
{":/glow_off_vert.png", glow_off_vert_png_size, glow_off_vert_png_data},
|
||||
{":/glow_vert.png", glow_vert_png_size, glow_vert_png_data}
|
||||
};
|
||||
|
||||
res2hMapType::value_type mapTemp[] = {
|
||||
std::make_pair(":/bar.png", res2hFiles[0]),
|
||||
std::make_pair(":/corner.png", res2hFiles[1]),
|
||||
std::make_pair(":/ES_logo_16.png", res2hFiles[2]),
|
||||
std::make_pair(":/ES_logo_32.png", res2hFiles[3])
|
||||
std::make_pair(":/ES_logo_32.png", res2hFiles[3]),
|
||||
std::make_pair(":/glow_hor.png", res2hFiles[4]),
|
||||
std::make_pair(":/glow_off_hor.png", res2hFiles[5]),
|
||||
std::make_pair(":/glow_off_vert.png", res2hFiles[6]),
|
||||
std::make_pair(":/glow_vert.png", res2hFiles[7])
|
||||
};
|
||||
|
||||
res2hMapType res2hMap(mapTemp, mapTemp + sizeof mapTemp / sizeof mapTemp[0]);
|
||||
|
|
|
@ -17,6 +17,18 @@ extern const unsigned char ES_logo_16_png_data[];
|
|||
extern const size_t ES_logo_32_png_size;
|
||||
extern const unsigned char ES_logo_32_png_data[];
|
||||
|
||||
extern const size_t glow_hor_png_size;
|
||||
extern const unsigned char glow_hor_png_data[];
|
||||
|
||||
extern const size_t glow_off_hor_png_size;
|
||||
extern const unsigned char glow_off_hor_png_data[];
|
||||
|
||||
extern const size_t glow_off_vert_png_size;
|
||||
extern const unsigned char glow_off_vert_png_data[];
|
||||
|
||||
extern const size_t glow_vert_png_size;
|
||||
extern const unsigned char glow_vert_png_data[];
|
||||
|
||||
struct Res2hEntry {
|
||||
const std::string relativeFileName;
|
||||
const size_t size;
|
||||
|
|
296
data/converted/glow_hor_png.cpp
Normal file
296
data/converted/glow_hor_png.cpp
Normal file
|
@ -0,0 +1,296 @@
|
|||
//this file was auto-generated from "glow_hor.png" by res2h
|
||||
|
||||
#include "../Resources.h"
|
||||
|
||||
const size_t glow_hor_png_size = 2884;
|
||||
const unsigned char glow_hor_png_data[2884] = {
|
||||
0x89,0x50,0x4e,0x47,0x0d,0x0a,0x1a,0x0a,0x00,0x00,
|
||||
0x00,0x0d,0x49,0x48,0x44,0x52,0x00,0x00,0x00,0x08,
|
||||
0x00,0x00,0x00,0x08,0x08,0x06,0x00,0x00,0x00,0xc4,
|
||||
0x0f,0xbe,0x8b,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,0x00,0x5f,0x49,
|
||||
0x44,0x41,0x54,0x78,0xda,0x84,0xcf,0xb1,0x0a,0xc2,
|
||||
0x40,0x00,0x03,0xd0,0x77,0x72,0x08,0x5a,0x1c,0x5c,
|
||||
0xec,0xe8,0x39,0xfa,0xff,0x5f,0xe4,0xd8,0x2e,0x0e,
|
||||
0xd2,0x16,0x4a,0xe1,0xba,0x5c,0xc1,0xe9,0x2e,0x10,
|
||||
0x12,0x48,0x32,0x24,0xe4,0x9c,0xd5,0x70,0xd2,0x40,
|
||||
0xb3,0x10,0xff,0xf4,0x86,0x6b,0xf1,0x1b,0x66,0xfc,
|
||||
0x22,0x2e,0x78,0x14,0xde,0x71,0xc6,0x8a,0x2f,0xc6,
|
||||
0x58,0x82,0x17,0x12,0xfa,0x32,0x58,0x30,0xa0,0x3b,
|
||||
0x0a,0x09,0x6f,0x3c,0xd1,0x61,0xc2,0x07,0x02,0xaa,
|
||||
0x3f,0xf7,0x01,0x00,0x3d,0x79,0x0e,0xf7,0x63,0xad,
|
||||
0x98,0x43,0x00,0x00,0x00,0x00,0x49,0x45,0x4e,0x44,
|
||||
0xae,0x42,0x60,0x82
|
||||
};
|
290
data/converted/glow_off_hor_png.cpp
Normal file
290
data/converted/glow_off_hor_png.cpp
Normal file
|
@ -0,0 +1,290 @@
|
|||
//this file was auto-generated from "glow_off_hor.png" by res2h
|
||||
|
||||
#include "../Resources.h"
|
||||
|
||||
const size_t glow_off_hor_png_size = 2823;
|
||||
const unsigned char glow_off_hor_png_data[2823] = {
|
||||
0x89,0x50,0x4e,0x47,0x0d,0x0a,0x1a,0x0a,0x00,0x00,
|
||||
0x00,0x0d,0x49,0x48,0x44,0x52,0x00,0x00,0x00,0x08,
|
||||
0x00,0x00,0x00,0x08,0x08,0x06,0x00,0x00,0x00,0xc4,
|
||||
0x0f,0xbe,0x8b,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,0x00,0x22,0x49,
|
||||
0x44,0x41,0x54,0x78,0xda,0x62,0xfc,0xff,0xff,0x3f,
|
||||
0x03,0x3e,0xc0,0xc4,0x40,0x00,0x0c,0x09,0x05,0x8c,
|
||||
0x0c,0x0c,0x0c,0x78,0xfd,0x09,0x00,0x00,0x00,0xff,
|
||||
0xff,0x03,0x00,0x35,0x25,0x04,0x0b,0x6a,0x13,0x74,
|
||||
0xa7,0x00,0x00,0x00,0x00,0x49,0x45,0x4e,0x44,0xae,
|
||||
0x42,0x60,0x82
|
||||
};
|
290
data/converted/glow_off_vert_png.cpp
Normal file
290
data/converted/glow_off_vert_png.cpp
Normal file
|
@ -0,0 +1,290 @@
|
|||
//this file was auto-generated from "glow_off_vert.png" by res2h
|
||||
|
||||
#include "../Resources.h"
|
||||
|
||||
const size_t glow_off_vert_png_size = 2821;
|
||||
const unsigned char glow_off_vert_png_data[2821] = {
|
||||
0x89,0x50,0x4e,0x47,0x0d,0x0a,0x1a,0x0a,0x00,0x00,
|
||||
0x00,0x0d,0x49,0x48,0x44,0x52,0x00,0x00,0x00,0x08,
|
||||
0x00,0x00,0x00,0x08,0x08,0x06,0x00,0x00,0x00,0xc4,
|
||||
0x0f,0xbe,0x8b,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,0x00,0x20,0x49,
|
||||
0x44,0x41,0x54,0x78,0xda,0x62,0xfc,0xff,0xff,0x3f,
|
||||
0x03,0x2e,0xc0,0xc8,0xc8,0xf8,0x9f,0x89,0x81,0x00,
|
||||
0x18,0x1e,0x0a,0x00,0x00,0x00,0x00,0xff,0xff,0x03,
|
||||
0x00,0x02,0x48,0x04,0x0f,0x3d,0x1a,0xc2,0xf4,0x00,
|
||||
0x00,0x00,0x00,0x49,0x45,0x4e,0x44,0xae,0x42,0x60,
|
||||
0x82
|
||||
};
|
296
data/converted/glow_vert_png.cpp
Normal file
296
data/converted/glow_vert_png.cpp
Normal file
|
@ -0,0 +1,296 @@
|
|||
//this file was auto-generated from "glow_vert.png" by res2h
|
||||
|
||||
#include "../Resources.h"
|
||||
|
||||
const size_t glow_vert_png_size = 2889;
|
||||
const unsigned char glow_vert_png_data[2889] = {
|
||||
0x89,0x50,0x4e,0x47,0x0d,0x0a,0x1a,0x0a,0x00,0x00,
|
||||
0x00,0x0d,0x49,0x48,0x44,0x52,0x00,0x00,0x00,0x08,
|
||||
0x00,0x00,0x00,0x08,0x08,0x06,0x00,0x00,0x00,0xc4,
|
||||
0x0f,0xbe,0x8b,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,0x00,0x64,0x49,
|
||||
0x44,0x41,0x54,0x78,0xda,0x6c,0xce,0xb1,0x0a,0xc2,
|
||||
0x30,0x00,0x04,0xd0,0x17,0x09,0x42,0x95,0x0e,0x2e,
|
||||
0x75,0x6c,0x3b,0xfa,0xff,0x7f,0xe1,0x5f,0x38,0xd6,
|
||||
0xc5,0x41,0x6c,0x41,0x0a,0xe9,0x92,0x42,0x09,0xb9,
|
||||
0xf5,0x1e,0xc7,0x85,0x94,0x92,0x22,0x0d,0x3a,0x74,
|
||||
0x21,0x84,0x67,0x2c,0xca,0x98,0xcb,0x11,0x03,0x9c,
|
||||
0x0a,0xd0,0x66,0x30,0xe0,0x51,0x03,0x17,0xdc,0x70,
|
||||
0x47,0x5f,0x03,0x11,0xe7,0xfc,0xe3,0x5a,0x03,0x2b,
|
||||
0xfe,0x58,0xf0,0xab,0x81,0x19,0x1f,0x4c,0x78,0xed,
|
||||
0x93,0xc7,0x7c,0xf1,0xde,0xe7,0x61,0x1b,0x00,0xbc,
|
||||
0x94,0x0e,0xc2,0x22,0xe1,0x7c,0x16,0x00,0x00,0x00,
|
||||
0x00,0x49,0x45,0x4e,0x44,0xae,0x42,0x60,0x82
|
||||
};
|
BIN
data/resources/glow_hor.png
Normal file
BIN
data/resources/glow_hor.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 2.8 KiB |
BIN
data/resources/glow_off_hor.png
Normal file
BIN
data/resources/glow_off_hor.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 2.8 KiB |
BIN
data/resources/glow_off_vert.png
Normal file
BIN
data/resources/glow_off_vert.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 2.8 KiB |
BIN
data/resources/glow_vert.png
Normal file
BIN
data/resources/glow_vert.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 2.8 KiB |
|
@ -62,7 +62,7 @@ void GameData::incTimesPlayed()
|
|||
int timesPlayed = metadata()->getInt("playcount");
|
||||
timesPlayed++;
|
||||
|
||||
std::stringstream ss();
|
||||
std::stringstream ss;
|
||||
metadata()->set("playcount", std::to_string(static_cast<long long>(timesPlayed)));
|
||||
}
|
||||
|
||||
|
|
|
@ -54,6 +54,9 @@ public:
|
|||
virtual std::string getValue() const;
|
||||
virtual void setValue(const std::string& value);
|
||||
|
||||
virtual void onFocusGained() {};
|
||||
virtual void onFocusLost() {};
|
||||
|
||||
protected:
|
||||
void renderChildren(const Eigen::Affine3f& transform) const;
|
||||
|
||||
|
|
|
@ -1,6 +1,7 @@
|
|||
#include "MetaData.h"
|
||||
#include "components/TextComponent.h"
|
||||
#include "Log.h"
|
||||
#include "components/TextEditComponent.h"
|
||||
|
||||
MetaDataList::MetaDataList()
|
||||
{
|
||||
|
@ -15,12 +16,13 @@ MetaDataList::MetaDataList(const std::vector<MetaDataDecl>& mdd)
|
|||
std::vector<MetaDataDecl> MetaDataList::getDefaultGameMDD()
|
||||
{
|
||||
MetaDataDecl decls[] = {
|
||||
{"name", MD_STRING, ""},
|
||||
{"desc", MD_STRING, ""},
|
||||
{"image", MD_IMAGE_PATH, ""},
|
||||
{"rating", MD_RATING, "0"},
|
||||
{"timesplayed", MD_INT, "0"},
|
||||
{"playcount", MD_TIME, "0"}
|
||||
{"name", MD_STRING, ""},
|
||||
{"desc", MD_MULTILINE_STRING, ""},
|
||||
{"image", MD_IMAGE_PATH, ""},
|
||||
{"rating", MD_RATING, "0"},
|
||||
{"userrating", MD_RATING, "0"},
|
||||
{"playcount", MD_INT, "0"},
|
||||
{"lastplayed", MD_TIME, "0"}
|
||||
};
|
||||
|
||||
std::vector<MetaDataDecl> mdd(decls, decls + sizeof(decls) / sizeof(decls[0]));
|
||||
|
@ -106,21 +108,7 @@ GuiComponent* MetaDataList::makeEditor(Window* window, MetaDataType as)
|
|||
switch(as)
|
||||
{
|
||||
default:
|
||||
TextComponent* comp = new TextComponent(window);
|
||||
TextEditComponent* comp = new TextEditComponent(window);
|
||||
return comp;
|
||||
}
|
||||
}
|
||||
|
||||
GuiComponent* MetaDataList::makeDisplay(Window* window, MetaDataDecl from)
|
||||
{
|
||||
GuiComponent* comp = makeDisplay(window, from.type);
|
||||
comp->setValue(get(from.key));
|
||||
return comp;
|
||||
}
|
||||
|
||||
GuiComponent* MetaDataList::makeEditor(Window* window, MetaDataDecl from)
|
||||
{
|
||||
GuiComponent* comp = makeEditor(window, from.type);
|
||||
comp->setValue(get(from.key));
|
||||
return comp;
|
||||
}
|
||||
|
|
|
@ -14,6 +14,7 @@ enum MetaDataType
|
|||
MD_FLOAT,
|
||||
|
||||
//specialized types
|
||||
MD_MULTILINE_STRING,
|
||||
MD_IMAGE_PATH,
|
||||
MD_RATING,
|
||||
MD_TIME
|
||||
|
@ -42,11 +43,8 @@ public:
|
|||
float getFloat(const std::string& key) const;
|
||||
std::time_t getTime(const std::string& key) const;
|
||||
|
||||
GuiComponent* makeDisplay(Window* window, MetaDataType as);
|
||||
GuiComponent* makeDisplay(Window* window, MetaDataDecl from);
|
||||
|
||||
GuiComponent* makeEditor(Window* window, MetaDataType as);
|
||||
GuiComponent* makeEditor(Window* window, MetaDataDecl from);
|
||||
static GuiComponent* makeDisplay(Window* window, MetaDataType as);
|
||||
static GuiComponent* makeEditor(Window* window, MetaDataType as);
|
||||
|
||||
void appendToXML(pugi::xml_node parent, const std::vector<MetaDataDecl>& ignoreDefaults = std::vector<MetaDataDecl>()) const;
|
||||
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
|
||||
#define INITIAL_CELL_SIZE 12
|
||||
|
||||
ComponentListComponent::ComponentListComponent(Window* window, Eigen::Vector2i gridDimensions) : GuiComponent(window), mGrid(NULL), mColumnWidths(NULL), mRowHeights(NULL)
|
||||
ComponentListComponent::ComponentListComponent(Window* window, Eigen::Vector2i gridDimensions) : GuiComponent(window), mGrid(NULL), mColumnWidths(NULL), mRowHeights(NULL), mCursor(-1, -1)
|
||||
{
|
||||
mEntries.reserve(gridDimensions.x() * gridDimensions.y());
|
||||
makeCells(gridDimensions);
|
||||
|
@ -180,6 +180,16 @@ bool ComponentListComponent::input(InputConfig* config, Input input)
|
|||
moveCursor(Eigen::Vector2i(0, -1));
|
||||
return true;
|
||||
}
|
||||
if(config->isMappedTo("left", input))
|
||||
{
|
||||
moveCursor(Eigen::Vector2i(-1, 0));
|
||||
return true;
|
||||
}
|
||||
if(config->isMappedTo("right", input))
|
||||
{
|
||||
moveCursor(Eigen::Vector2i(1, 0));
|
||||
return true;
|
||||
}
|
||||
|
||||
return false;
|
||||
}
|
||||
|
@ -192,7 +202,9 @@ void ComponentListComponent::resetCursor()
|
|||
return;
|
||||
}
|
||||
|
||||
const Eigen::Vector2i origCursor = mCursor;
|
||||
mCursor << mEntries.at(0).pos[0], mEntries.at(0).pos[1];
|
||||
onCursorMoved(origCursor, mCursor);
|
||||
}
|
||||
|
||||
void ComponentListComponent::moveCursor(Eigen::Vector2i dir)
|
||||
|
@ -203,15 +215,21 @@ void ComponentListComponent::moveCursor(Eigen::Vector2i dir)
|
|||
return;
|
||||
}
|
||||
|
||||
Eigen::Vector2i origCursor = mCursor;
|
||||
|
||||
if(!cursorValid())
|
||||
{
|
||||
resetCursor();
|
||||
|
||||
if(!cursorValid())
|
||||
{
|
||||
if(mCursor != origCursor)
|
||||
onCursorMoved(origCursor, mCursor);
|
||||
|
||||
return;
|
||||
}
|
||||
}
|
||||
|
||||
Eigen::Vector2i origCursor = mCursor;
|
||||
|
||||
Eigen::Vector2i searchAxis(dir.x() == 0, dir.y() == 0);
|
||||
|
||||
while(mCursor.x() >= 0 && mCursor.y() >= 0 && mCursor.x() < mGridSize.x() && mCursor.y() < mGridSize.y())
|
||||
|
@ -224,7 +242,10 @@ void ComponentListComponent::moveCursor(Eigen::Vector2i dir)
|
|||
while(mCursor.x() < mGridSize.x() && mCursor.y() < mGridSize.y())
|
||||
{
|
||||
if(cursorValid() && getCell(mCursor.x(), mCursor.y())->canFocus)
|
||||
{
|
||||
onCursorMoved(origCursor, mCursor);
|
||||
return;
|
||||
}
|
||||
|
||||
mCursor += searchAxis;
|
||||
}
|
||||
|
@ -234,7 +255,10 @@ void ComponentListComponent::moveCursor(Eigen::Vector2i dir)
|
|||
while(mCursor.x() >= 0 && mCursor.y() >= 0)
|
||||
{
|
||||
if(cursorValid() && getCell(mCursor.x(), mCursor.y())->canFocus)
|
||||
{
|
||||
onCursorMoved(origCursor, mCursor);
|
||||
return;
|
||||
}
|
||||
|
||||
mCursor -= searchAxis;
|
||||
}
|
||||
|
@ -327,3 +351,12 @@ GuiComponent* ComponentListComponent::getSelectedComponent()
|
|||
return NULL;
|
||||
return getCell(mCursor.x(), mCursor.y())->component;
|
||||
}
|
||||
|
||||
void ComponentListComponent::onCursorMoved(Eigen::Vector2i from, Eigen::Vector2i to)
|
||||
{
|
||||
if(from != Eigen::Vector2i(-1, -1))
|
||||
getCell(from.x(), from.y())->component->onFocusLost();
|
||||
|
||||
if(to != Eigen::Vector2i(-1, -1))
|
||||
getCell(to.x(), to.y())->component->onFocusGained();
|
||||
}
|
||||
|
|
|
@ -18,7 +18,8 @@ public:
|
|||
};
|
||||
|
||||
//DO NOT USE NEGATIVE NUMBERS FOR POSITION OR SIZE.
|
||||
void setEntry(Eigen::Vector2i pos, Eigen::Vector2i size, GuiComponent* component, bool canFocus, AlignmentType align, Eigen::Matrix<bool, 1, 2> autoFit, UpdateBehavior updateType = UpdateAlways);
|
||||
void setEntry(Eigen::Vector2i pos, Eigen::Vector2i size, GuiComponent* component, bool canFocus, AlignmentType align,
|
||||
Eigen::Matrix<bool, 1, 2> autoFit = Eigen::Matrix<bool, 1, 2>(true, true), UpdateBehavior updateType = UpdateAlways);
|
||||
|
||||
void onPositionChanged() override;
|
||||
|
||||
|
@ -76,6 +77,7 @@ private:
|
|||
void updateSize();
|
||||
|
||||
void moveCursor(Eigen::Vector2i dir);
|
||||
void onCursorMoved(Eigen::Vector2i from, Eigen::Vector2i to);
|
||||
Eigen::Vector2i mCursor;
|
||||
|
||||
void updateComponentOffsets();
|
||||
|
|
|
@ -128,3 +128,9 @@ bool GuiBox::hasBackground()
|
|||
{
|
||||
return mBackgroundImage.hasImage();
|
||||
}
|
||||
|
||||
void GuiBox::onSizeChanged()
|
||||
{
|
||||
mHorizontalImage.setResize(mSize.x(), getHorizontalBorderWidth(), true);
|
||||
mVerticalImage.setResize(getVerticalBorderWidth(), mSize.y(), true);
|
||||
}
|
|
@ -35,6 +35,7 @@ public:
|
|||
|
||||
void render(const Eigen::Affine3f& parentTrans) override;
|
||||
|
||||
void onSizeChanged() override;
|
||||
private:
|
||||
ImageComponent mBackgroundImage, mHorizontalImage, mVerticalImage, mCornerImage;
|
||||
|
||||
|
|
97
src/components/GuiGameEd.cpp
Normal file
97
src/components/GuiGameEd.cpp
Normal file
|
@ -0,0 +1,97 @@
|
|||
#include "GuiGameEd.h"
|
||||
#include "../Renderer.h"
|
||||
#include "../Log.h"
|
||||
|
||||
#define MDED_RESERVED_ROWS 2
|
||||
|
||||
GuiGameEd::GuiGameEd(Window* window, GameData* game, const std::vector<MetaDataDecl>& mdd) : GuiComponent(window),
|
||||
mBox(mWindow, 0, 0, 0, 0),
|
||||
mList(window, Eigen::Vector2i(2, mdd.size() + MDED_RESERVED_ROWS)),
|
||||
mPathDisp(window),
|
||||
mGame(game)
|
||||
{
|
||||
LOG(LogInfo) << "Creating GuiGameEd";
|
||||
|
||||
//set size to 80% by 80% of the window
|
||||
mSize << Renderer::getScreenWidth() * 0.8f, Renderer::getScreenHeight() * 0.8f;
|
||||
|
||||
//center us
|
||||
mPosition << (Renderer::getScreenWidth() - mSize.x()) / 2, (Renderer::getScreenHeight() - mSize.y()) / 2, 0.0f;
|
||||
|
||||
addChild(&mBox);
|
||||
mBox.setVerticalImage(":/bar.png");
|
||||
mBox.setHorizontalImage(":/bar.png");
|
||||
mBox.setCornerImage(":/corner.png");
|
||||
mBox.setBorderColor(0x666666FF);
|
||||
mBox.setPosition(0, 0);
|
||||
mBox.setSize(mSize);
|
||||
mBox.setBackgroundImage(":/bar.png");
|
||||
mBox.setBackgroundColor(0xAAAAAAAA);
|
||||
|
||||
//initialize path display
|
||||
addChild(&mPathDisp);
|
||||
mPathDisp.setPosition(0, 0);
|
||||
mPathDisp.setSize(mSize.x(), 0);
|
||||
mPathDisp.setCentered(true);
|
||||
mPathDisp.setText(mGame->getBaseName());
|
||||
|
||||
//initialize metadata list
|
||||
addChild(&mList);
|
||||
mList.setPosition(0, mPathDisp.getSize().y() + 4);
|
||||
mList.setSize(mSize.x(), mSize.y() - mList.getPosition().y());
|
||||
populateList(mdd);
|
||||
}
|
||||
|
||||
GuiGameEd::~GuiGameEd()
|
||||
{
|
||||
LOG(LogInfo) << "Deleted GuiGameEd";
|
||||
}
|
||||
|
||||
void GuiGameEd::populateList(const std::vector<MetaDataDecl>& mdd)
|
||||
{
|
||||
// PATH //(centered, not part of componentlist)
|
||||
|
||||
//---GAME NAME--- //(at 1,1; size 3,1) (TextEditComponent)
|
||||
//DEL SCRP --- //(buttons)
|
||||
//Fav: Y/N --- //metadata start
|
||||
//Desc: ... --- //multiline texteditcomponent
|
||||
//Img: ... ---
|
||||
//--- SAVE ---
|
||||
|
||||
using namespace Eigen;
|
||||
|
||||
int y = 0;
|
||||
|
||||
TextComponent* del = new TextComponent(mWindow);
|
||||
del->setText("DELETE");
|
||||
del->setColor(0xFF0000FF);
|
||||
mList.setEntry(Vector2i(0, y), Vector2i(1, 1), del, true, ComponentListComponent::AlignCenter);
|
||||
mGeneratedComponents.push_back(del);
|
||||
|
||||
TextComponent* fetch = new TextComponent(mWindow);
|
||||
fetch->setText("FETCH");
|
||||
mList.setEntry(Vector2i(1, y), Vector2i(1, 1), fetch, true, ComponentListComponent::AlignCenter);
|
||||
mGeneratedComponents.push_back(fetch);
|
||||
|
||||
y++;
|
||||
|
||||
for(auto iter = mdd.begin(); iter != mdd.end(); iter++)
|
||||
{
|
||||
TextComponent* label = new TextComponent(mWindow);
|
||||
label->setText(iter->key);
|
||||
mList.setEntry(Vector2i(0, y), Vector2i(1, 1), label, false, ComponentListComponent::AlignLeft);
|
||||
mGeneratedComponents.push_back(label);
|
||||
|
||||
GuiComponent* ed = MetaDataList::makeEditor(mWindow, iter->type);
|
||||
ed->setValue(mGame->metadata()->get(iter->key));
|
||||
mList.setEntry(Vector2i(1, y), Vector2i(1, 1), ed, true, ComponentListComponent::AlignRight);
|
||||
mGeneratedComponents.push_back(ed);
|
||||
|
||||
y++;
|
||||
}
|
||||
|
||||
|
||||
|
||||
//force list reflow
|
||||
mList.onPositionChanged();
|
||||
}
|
28
src/components/GuiGameEd.h
Normal file
28
src/components/GuiGameEd.h
Normal file
|
@ -0,0 +1,28 @@
|
|||
#pragma once
|
||||
|
||||
#include "../GuiComponent.h"
|
||||
#include "ComponentListComponent.h"
|
||||
#include "../MetaData.h"
|
||||
#include "TextComponent.h"
|
||||
#include "../GameData.h"
|
||||
#include "GuiBox.h"
|
||||
|
||||
class GuiGameEd : public GuiComponent
|
||||
{
|
||||
public:
|
||||
GuiGameEd(Window* window, GameData* game, const std::vector<MetaDataDecl>& mdd);
|
||||
virtual ~GuiGameEd();
|
||||
|
||||
private:
|
||||
void populateList(const std::vector<MetaDataDecl>& mdd);
|
||||
|
||||
GuiBox mBox;
|
||||
|
||||
ComponentListComponent mList;
|
||||
|
||||
TextComponent mPathDisp;
|
||||
|
||||
std::vector<GuiComponent*> mGeneratedComponents;
|
||||
|
||||
GameData* mGame;
|
||||
};
|
|
@ -6,7 +6,7 @@
|
|||
#include <boost/filesystem.hpp>
|
||||
#include "../Log.h"
|
||||
#include "../Settings.h"
|
||||
|
||||
#include "GuiGameEd.h"
|
||||
|
||||
std::vector<FolderData::SortState> GuiGameList::sortStates;
|
||||
|
||||
|
@ -123,6 +123,12 @@ bool GuiGameList::input(InputConfig* config, Input input)
|
|||
|
||||
mList.input(config, input);
|
||||
|
||||
if(input.id == SDLK_F3)
|
||||
{
|
||||
mWindow->pushGui(new GuiGameEd(mWindow, (GameData*)mSystem->getRootFolder()->getFile(0), MetaDataList::getDefaultGameMDD()));
|
||||
return true;
|
||||
}
|
||||
|
||||
if(config->isMappedTo("a", input) && mFolder->getFileCount() > 0 && input.value != 0)
|
||||
{
|
||||
//play select sound
|
||||
|
|
|
@ -56,9 +56,10 @@ GuiSettingsMenu::GuiSettingsMenu(Window* window) : GuiComponent(window),
|
|||
|
||||
//center list
|
||||
mList.setPosition(Renderer::getScreenWidth() / 2 - mList.getSize().x() / 2, Renderer::getScreenHeight() / 2 - mList.getSize().y() / 2);
|
||||
|
||||
//set up borders/background
|
||||
mBox.setPosition(mList.getPosition());
|
||||
mBox.setSize(mList.getSize());
|
||||
|
||||
mBox.setCornerImage(":/corner.png");
|
||||
mBox.setVerticalImage(":/bar.png");
|
||||
mBox.setHorizontalImage(":/bar.png");
|
||||
|
|
46
src/components/TextEditComponent.cpp
Normal file
46
src/components/TextEditComponent.cpp
Normal file
|
@ -0,0 +1,46 @@
|
|||
#include "TextEditComponent.h"
|
||||
#include "../Log.h"
|
||||
|
||||
TextEditComponent::TextEditComponent(Window* window) : GuiComponent(window),
|
||||
mBox(window, 0, 0, 0, 0)
|
||||
{
|
||||
addChild(&mBox);
|
||||
|
||||
onFocusLost();
|
||||
|
||||
setSize(48, 22);
|
||||
}
|
||||
|
||||
void TextEditComponent::onFocusGained()
|
||||
{
|
||||
mBox.setHorizontalImage(":/glow_hor.png");
|
||||
mBox.setVerticalImage(":/glow_vert.png");
|
||||
mBox.setBorderColor(0x51CCFFFF);
|
||||
}
|
||||
|
||||
void TextEditComponent::onFocusLost()
|
||||
{
|
||||
mBox.setHorizontalImage(":/glow_off_hor.png");
|
||||
mBox.setVerticalImage(":/glow_off_vert.png");
|
||||
mBox.setBorderColor(0xFFFFFFFF);
|
||||
}
|
||||
|
||||
void TextEditComponent::onSizeChanged()
|
||||
{
|
||||
mBox.setSize(mSize);
|
||||
}
|
||||
|
||||
void TextEditComponent::setValue(const std::string& val)
|
||||
{
|
||||
mText = val;
|
||||
}
|
||||
|
||||
std::string TextEditComponent::getValue() const
|
||||
{
|
||||
return mText;
|
||||
}
|
||||
|
||||
bool TextEditComponent::input(InputConfig* config, Input input)
|
||||
{
|
||||
return GuiComponent::input(config, input);
|
||||
}
|
25
src/components/TextEditComponent.h
Normal file
25
src/components/TextEditComponent.h
Normal file
|
@ -0,0 +1,25 @@
|
|||
#pragma once
|
||||
|
||||
#include "../GuiComponent.h"
|
||||
#include "GuiBox.h"
|
||||
|
||||
class TextEditComponent : public GuiComponent
|
||||
{
|
||||
public:
|
||||
TextEditComponent(Window* window);
|
||||
|
||||
bool input(InputConfig* config, Input input) override;
|
||||
|
||||
void onFocusGained() override;
|
||||
void onFocusLost() override;
|
||||
|
||||
void onSizeChanged() override;
|
||||
|
||||
void setValue(const std::string& val) override;
|
||||
std::string getValue() const override;
|
||||
private:
|
||||
std::string mText;
|
||||
bool mAllowNewlines;
|
||||
|
||||
GuiBox mBox;
|
||||
};
|
Loading…
Reference in a new issue