New icon + splash screen.

Fixed window icon being upside down.
This commit is contained in:
Aloshi 2014-05-28 16:43:23 -05:00
parent 23b826c4d3
commit 2d9fbfaf6f
30 changed files with 2526 additions and 510 deletions

View file

@ -311,8 +311,8 @@ set(ES_SOURCES
${CMAKE_CURRENT_SOURCE_DIR}/src/animations/AnimationController.cpp
${CMAKE_CURRENT_SOURCE_DIR}/data/ResourceUtil.cpp
${CMAKE_CURRENT_SOURCE_DIR}/data/converted/ES_logo_16_png.cpp
${CMAKE_CURRENT_SOURCE_DIR}/data/converted/ES_logo_32_png.cpp
${CMAKE_CURRENT_SOURCE_DIR}/data/converted/splash_svg.cpp
${CMAKE_CURRENT_SOURCE_DIR}/data/converted/window_icon_256_png.cpp
${CMAKE_CURRENT_SOURCE_DIR}/data/converted/button_png.cpp
${CMAKE_CURRENT_SOURCE_DIR}/data/converted/button_filled_png.cpp
${CMAKE_CURRENT_SOURCE_DIR}/data/converted/textinput_ninepatch_png.cpp

View file

@ -13,8 +13,6 @@ const Res2hEntry res2hFiles[res2hNrOfFiles] = {
{":/button_filled.png", button_filled_png_size, button_filled_png_data},
{":/checkbox_checked.svg", checkbox_checked_svg_size, checkbox_checked_svg_data},
{":/checkbox_unchecked.svg", checkbox_unchecked_svg_size, checkbox_unchecked_svg_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},
{":/fav_add.svg", fav_add_svg_size, fav_add_svg_data},
{":/fav_remove.svg", fav_remove_svg_size, fav_remove_svg_data},
{":/frame.png", frame_png_size, frame_png_data},
@ -25,10 +23,12 @@ const Res2hEntry res2hFiles[res2hNrOfFiles] = {
{":/option_arrow.svg", option_arrow_svg_size, option_arrow_svg_data},
{":/scroll_gradient.png", scroll_gradient_png_size, scroll_gradient_png_data},
{":/slider_knob.svg", slider_knob_svg_size, slider_knob_svg_data},
{":/splash.svg", splash_svg_size, splash_svg_data},
{":/star_filled.svg", star_filled_svg_size, star_filled_svg_data},
{":/star_unfilled.svg", star_unfilled_svg_size, star_unfilled_svg_data},
{":/textinput_ninepatch.png", textinput_ninepatch_png_size, textinput_ninepatch_png_data},
{":/textinput_ninepatch_active.png", textinput_ninepatch_active_png_size, textinput_ninepatch_active_png_data},
{":/window_icon_256.png", window_icon_256_png_size, window_icon_256_png_data},
{":/help/button_a.svg", help_button_a_svg_size, help_button_a_svg_data},
{":/help/button_b.svg", help_button_b_svg_size, help_button_b_svg_data},
{":/help/button_l.svg", help_button_l_svg_size, help_button_l_svg_data},
@ -56,22 +56,22 @@ res2hMapType::value_type mapTemp[] = {
std::make_pair(":/button_filled.png", res2hFiles[6]),
std::make_pair(":/checkbox_checked.svg", res2hFiles[7]),
std::make_pair(":/checkbox_unchecked.svg", res2hFiles[8]),
std::make_pair(":/ES_logo_16.png", res2hFiles[9]),
std::make_pair(":/ES_logo_32.png", res2hFiles[10]),
std::make_pair(":/fav_add.svg", res2hFiles[11]),
std::make_pair(":/fav_remove.svg", res2hFiles[12]),
std::make_pair(":/frame.png", res2hFiles[13]),
std::make_pair(":/off.svg", res2hFiles[14]),
std::make_pair(":/on.svg", res2hFiles[15]),
std::make_pair(":/opensans_hebrew_condensed_light.ttf", res2hFiles[16]),
std::make_pair(":/opensans_hebrew_condensed_regular.ttf", res2hFiles[17]),
std::make_pair(":/option_arrow.svg", res2hFiles[18]),
std::make_pair(":/scroll_gradient.png", res2hFiles[19]),
std::make_pair(":/slider_knob.svg", res2hFiles[20]),
std::make_pair(":/star_filled.svg", res2hFiles[21]),
std::make_pair(":/star_unfilled.svg", res2hFiles[22]),
std::make_pair(":/textinput_ninepatch.png", res2hFiles[23]),
std::make_pair(":/textinput_ninepatch_active.png", res2hFiles[24]),
std::make_pair(":/fav_add.svg", res2hFiles[9]),
std::make_pair(":/fav_remove.svg", res2hFiles[10]),
std::make_pair(":/frame.png", res2hFiles[11]),
std::make_pair(":/off.svg", res2hFiles[12]),
std::make_pair(":/on.svg", res2hFiles[13]),
std::make_pair(":/opensans_hebrew_condensed_light.ttf", res2hFiles[14]),
std::make_pair(":/opensans_hebrew_condensed_regular.ttf", res2hFiles[15]),
std::make_pair(":/option_arrow.svg", res2hFiles[16]),
std::make_pair(":/scroll_gradient.png", res2hFiles[17]),
std::make_pair(":/slider_knob.svg", res2hFiles[18]),
std::make_pair(":/splash.svg", res2hFiles[19]),
std::make_pair(":/star_filled.svg", res2hFiles[20]),
std::make_pair(":/star_unfilled.svg", res2hFiles[21]),
std::make_pair(":/textinput_ninepatch.png", res2hFiles[22]),
std::make_pair(":/textinput_ninepatch_active.png", res2hFiles[23]),
std::make_pair(":/window_icon_256.png", res2hFiles[24]),
std::make_pair(":/help/button_a.svg", res2hFiles[25]),
std::make_pair(":/help/button_b.svg", res2hFiles[26]),
std::make_pair(":/help/button_l.svg", res2hFiles[27]),

View file

@ -32,12 +32,6 @@ extern const unsigned char checkbox_checked_svg_data[];
extern const size_t checkbox_unchecked_svg_size;
extern const unsigned char checkbox_unchecked_svg_data[];
extern const size_t ES_logo_16_png_size;
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 fav_add_svg_size;
extern const unsigned char fav_add_svg_data[];
@ -68,6 +62,9 @@ extern const unsigned char scroll_gradient_png_data[];
extern const size_t slider_knob_svg_size;
extern const unsigned char slider_knob_svg_data[];
extern const size_t splash_svg_size;
extern const unsigned char splash_svg_data[];
extern const size_t star_filled_svg_size;
extern const unsigned char star_filled_svg_data[];
@ -80,6 +77,9 @@ extern const unsigned char textinput_ninepatch_png_data[];
extern const size_t textinput_ninepatch_active_png_size;
extern const unsigned char textinput_ninepatch_active_png_data[];
extern const size_t window_icon_256_png_size;
extern const unsigned char window_icon_256_png_data[];
extern const size_t help_button_a_svg_size;
extern const unsigned char help_button_a_svg_data[];

View file

@ -1,103 +0,0 @@
//this file was auto-generated from "ES_logo_16.png" by res2h
#include "../Resources.h"
const size_t ES_logo_16_png_size = 954;
const unsigned char ES_logo_16_png_data[954] = {
0x89,0x50,0x4e,0x47,0x0d,0x0a,0x1a,0x0a,0x00,0x00,
0x00,0x0d,0x49,0x48,0x44,0x52,0x00,0x00,0x00,0x10,
0x00,0x00,0x00,0x10,0x08,0x06,0x00,0x00,0x00,0x1f,
0xf3,0xff,0x61,0x00,0x00,0x00,0x04,0x73,0x42,0x49,
0x54,0x08,0x08,0x08,0x08,0x7c,0x08,0x64,0x88,0x00,
0x00,0x00,0x09,0x70,0x48,0x59,0x73,0x00,0x00,0x00,
0xc0,0x00,0x00,0x00,0xc0,0x01,0x30,0x77,0xdf,0x5e,
0x00,0x00,0x00,0x19,0x74,0x45,0x58,0x74,0x53,0x6f,
0x66,0x74,0x77,0x61,0x72,0x65,0x00,0x77,0x77,0x77,
0x2e,0x69,0x6e,0x6b,0x73,0x63,0x61,0x70,0x65,0x2e,
0x6f,0x72,0x67,0x9b,0xee,0x3c,0x1a,0x00,0x00,0x03,
0x37,0x49,0x44,0x41,0x54,0x38,0x8d,0x75,0x93,0x5d,
0x68,0x9b,0x75,0x14,0xc6,0x9f,0xf3,0xcf,0x67,0xb3,
0xb6,0xf2,0xe6,0xa3,0x1b,0xef,0x3a,0xa9,0x59,0x43,
0xda,0x24,0x14,0xd2,0x37,0xe8,0xfc,0xa0,0x6e,0xdd,
0x86,0x48,0xb7,0xc9,0x36,0x64,0xe2,0xc0,0x0e,0xa3,
0xa0,0x5d,0xd7,0x8b,0x3a,0xe8,0xc5,0xae,0xd4,0x5d,
0x88,0x17,0xbb,0x08,0xf3,0xca,0x4d,0xe8,0x6e,0x62,
0xaf,0xf4,0xca,0x0f,0xba,0x6a,0x19,0x8c,0x81,0xeb,
0x9a,0x20,0xcb,0xd6,0x60,0xa1,0x29,0x34,0x25,0xf6,
0x6d,0xdf,0xb4,0x91,0x9a,0xbc,0x69,0xde,0xff,0xf1,
0xc2,0xb5,0x9b,0x50,0x1f,0x38,0x70,0x2e,0xce,0x81,
0xe7,0x70,0x7e,0x0f,0x31,0x33,0x76,0x53,0xb2,0x7d,
0x64,0xa2,0xbb,0x1a,0x8f,0x03,0xc0,0xe3,0xa6,0x4c,
0xe6,0xe6,0x52,0xea,0xdc,0x6e,0x73,0xf6,0xed,0x26,
0x91,0x48,0x38,0x74,0x3d,0x96,0xb2,0xdb,0x97,0xaf,
0x85,0x64,0xeb,0xd1,0x23,0xb5,0x37,0xa2,0xa7,0x8d,
0x0b,0x21,0x00,0xb0,0x7c,0x8d,0xfa,0xc9,0x17,0x4e,
0x7e,0x64,0x8a,0x47,0x53,0x6a,0xa3,0x31,0xfa,0x30,
0x10,0x18,0x99,0x99,0x99,0xd9,0x02,0x00,0x30,0x33,
0x34,0x4d,0x73,0xa8,0xea,0xd8,0xa4,0x10,0x15,0x56,
0x94,0x74,0x51,0x75,0x16,0xb2,0xf3,0x90,0x9c,0xb5,
0xad,0x73,0xd6,0xb6,0xce,0xf3,0x90,0x9c,0x73,0x9e,
0xcd,0xa6,0x15,0xa5,0x58,0x11,0x82,0xc7,0x54,0x75,
0x52,0xd3,0x34,0x07,0x33,0xff,0xeb,0x40,0xd7,0x63,
0xa9,0x52,0xe9,0xca,0x31,0x29,0x9b,0x51,0x2e,0xbf,
0xad,0x92,0x77,0xbc,0xfe,0xe9,0x9e,0x07,0xb7,0xca,
0x36,0x7d,0x16,0x00,0x7c,0x96,0xbf,0xb7,0x6f,0x73,
0xba,0x6f,0xd0,0x28,0xab,0x02,0xc0,0x95,0x52,0xe9,
0x58,0xc9,0x6e,0x4f,0x01,0xf8,0x18,0xcc,0x8c,0x60,
0xf0,0x78,0x48,0x51,0xd2,0x45,0xa0,0xc1,0xaa,0x7a,
0xf9,0x7e,0x67,0x67,0xff,0x41,0x66,0xc6,0xb3,0xd5,
0xdf,0xd9,0x79,0xf0,0xb2,0xaa,0xde,0x6f,0x00,0x9c,
0x56,0x94,0xe2,0xf1,0x60,0x30,0xc4,0xcc,0x10,0x00,
0xc0,0xb1,0xd6,0xc3,0x9b,0x47,0x5e,0xd6,0xbd,0xbe,
0xf1,0x42,0x6b,0xeb,0xdd,0xf7,0x85,0x58,0x72,0x84,
0xc3,0xe1,0xae,0x58,0x2c,0xb6,0x0f,0x00,0x22,0x91,
0x48,0xe8,0x4f,0x97,0xcb,0xf5,0x9b,0xdb,0xfd,0xee,
0xb8,0xd7,0x5b,0xe8,0x61,0xe8,0xa6,0xdf,0xdf,0x0f,
0x00,0xb4,0xff,0xd2,0xa5,0x89,0x6a,0x4f,0x4f,0xd4,
0x48,0x26,0xa3,0x07,0x2e,0x0e,0xdf,0xf2,0xfc,0x32,
0xb5,0x48,0x44,0x9f,0x00,0xa8,0x02,0xc8,0x01,0xc8,
0x03,0x38,0x01,0x80,0x88,0xe8,0xea,0xfe,0x7d,0xea,
0x8b,0xaf,0xbd,0x72,0xf8,0xbd,0xc7,0xf9,0x47,0xb9,
0x35,0x43,0xcf,0x89,0x6a,0x3c,0x1e,0x37,0x92,0xc9,
0xa8,0xad,0x52,0x81,0x6d,0x55,0x9f,0x15,0x42,0x88,
0x27,0xcb,0xbf,0x12,0xd1,0x0f,0x00,0xc2,0x00,0x74,
0x22,0xfa,0x5e,0x4a,0xf9,0x5d,0xad,0x66,0xce,0xd6,
0xeb,0x75,0x74,0x87,0x23,0xd1,0x80,0xaf,0x2d,0xbe,
0xf3,0xc6,0x67,0x45,0x44,0x0d,0x66,0x2e,0x49,0x29,
0x8b,0x42,0x88,0xab,0x00,0x4e,0x4b,0x29,0x4f,0x10,
0x51,0x03,0xc0,0xfc,0x7f,0x38,0x68,0xca,0x64,0x32,
0x5e,0xcb,0xaa,0x1b,0xc9,0x64,0xd4,0x0a,0xf8,0x7b,
0xa5,0x94,0x8b,0x44,0xd4,0x02,0xe0,0x1d,0x22,0x3a,
0xc4,0xcc,0x2e,0x00,0x3e,0x22,0x22,0x66,0xce,0xb8,
0xdd,0xae,0xd7,0x9d,0x4e,0x27,0xb6,0x4f,0x20,0x66,
0x46,0xf0,0xdc,0x5b,0x1f,0x16,0xbf,0x34,0x2f,0x36,
0x4f,0xad,0x3c,0xd7,0x76,0xa3,0x71,0x4a,0xae,0x99,
0x5b,0x4f,0x9c,0x54,0x4c,0xd3,0x34,0x3c,0x1e,0x4f,
0x37,0x11,0x2d,0xee,0x75,0x9b,0xca,0xf9,0x2e,0xe3,
0xf6,0xa1,0x03,0xbc,0x31,0x74,0x27,0xfc,0xd5,0xf4,
0xdd,0x7b,0x5f,0x0b,0x00,0xa0,0xf2,0x1f,0xd3,0x7b,
0xee,0xad,0x04,0x8c,0x41,0x57,0x47,0xe5,0x55,0xfa,
0x46,0xb6,0x3b,0xb7,0xf2,0xf9,0xfc,0xdc,0xdc,0xdc,
0xdc,0xf2,0xc2,0xc2,0x42,0x2d,0x97,0xcb,0x65,0xf6,
0xba,0x4d,0xa5,0xb7,0xed,0xef,0x6f,0x07,0xa3,0x46,
0xc7,0xef,0x25,0x04,0x9c,0xd6,0xca,0xf4,0x0e,0xca,
0x0d,0xd5,0x36,0xba,0x31,0xe0,0x54,0x21,0x80,0xe5,
0x2f,0x3c,0x09,0xdf,0x78,0xed,0xf6,0xd0,0xd0,0xf3,
0x77,0x56,0x57,0x6d,0xb3,0x00,0x10,0xf0,0x5b,0xbd,
0xe7,0xbb,0x36,0xfb,0x06,0xa3,0x46,0x87,0x20,0x60,
0x20,0xb8,0xa1,0xfe,0x54,0x68,0x19,0xdd,0x01,0x49,
0xd3,0x34,0x87,0x3a,0xd6,0x33,0x29,0x2a,0x2f,0xb1,
0x92,0x8e,0x17,0xcf,0x2c,0x84,0xb2,0xd2,0x02,0xaf,
0x97,0x6d,0xbc,0x5e,0xb6,0xb1,0xb4,0xc0,0x85,0xcf,
0x9d,0xd9,0xf4,0x05,0xa5,0x58,0xf9,0x4c,0xf0,0xd8,
0xc0,0x53,0x94,0x69,0x3b,0x8d,0x89,0x44,0xc2,0xa1,
0xc7,0xcc,0x94,0x7d,0xd9,0xba,0x16,0x69,0x36,0x8f,
0x9e,0x7a,0x73,0x63,0xf8,0x83,0xe4,0x5a,0x14,0x00,
0x6e,0xdc,0xf4,0xe5,0x7e,0xfe,0xb1,0xe5,0x7a,0x65,
0x59,0x4c,0xa9,0x4d,0x8d,0xd1,0x87,0x7f,0x3d,0x0d,
0x13,0xfd,0x5f,0x9c,0x47,0x86,0xdb,0x27,0xe2,0x5a,
0x35,0x0e,0x00,0x99,0x07,0x4d,0x99,0xd4,0xf5,0xa5,
0x5d,0xe3,0xfc,0x0f,0x8e,0x59,0x81,0x6e,0x31,0xc1,
0x05,0xe7,0x00,0x00,0x00,0x00,0x49,0x45,0x4e,0x44,
0xae,0x42,0x60,0x82
};

View file

@ -1,228 +0,0 @@
//this file was auto-generated from "ES_logo_32.png" by res2h
#include "../Resources.h"
const size_t ES_logo_32_png_size = 2205;
const unsigned char ES_logo_32_png_data[2205] = {
0x89,0x50,0x4e,0x47,0x0d,0x0a,0x1a,0x0a,0x00,0x00,
0x00,0x0d,0x49,0x48,0x44,0x52,0x00,0x00,0x00,0x20,
0x00,0x00,0x00,0x20,0x08,0x06,0x00,0x00,0x00,0x73,
0x7a,0x7a,0xf4,0x00,0x00,0x00,0x04,0x73,0x42,0x49,
0x54,0x08,0x08,0x08,0x08,0x7c,0x08,0x64,0x88,0x00,
0x00,0x00,0x09,0x70,0x48,0x59,0x73,0x00,0x00,0x01,
0x80,0x00,0x00,0x01,0x80,0x01,0x68,0xe3,0xfb,0xb4,
0x00,0x00,0x00,0x19,0x74,0x45,0x58,0x74,0x53,0x6f,
0x66,0x74,0x77,0x61,0x72,0x65,0x00,0x77,0x77,0x77,
0x2e,0x69,0x6e,0x6b,0x73,0x63,0x61,0x70,0x65,0x2e,
0x6f,0x72,0x67,0x9b,0xee,0x3c,0x1a,0x00,0x00,0x08,
0x1a,0x49,0x44,0x41,0x54,0x58,0x85,0x95,0x57,0x59,
0x6c,0x54,0xe7,0x15,0xfe,0xfe,0xbb,0xcc,0x9d,0xc5,
0xcb,0x60,0x9c,0xc1,0xf6,0xd4,0x0d,0xc3,0x5c,0x8f,
0xb9,0x37,0x21,0xe0,0xf1,0x40,0x6a,0x82,0x0d,0x08,
0xca,0xf2,0xc0,0x43,0xd5,0x56,0x95,0x9a,0x87,0x8a,
0x96,0x2e,0xaa,0xe4,0xd0,0xa8,0x08,0x48,0x2a,0x11,
0xc3,0x03,0x9b,0x50,0x5b,0x12,0xa5,0x45,0x4e,0x52,
0x54,0x81,0xd4,0x87,0x06,0xb5,0x52,0xd5,0x84,0xa4,
0x05,0x11,0xda,0x82,0xc0,0xc6,0x66,0x69,0x66,0xc0,
0xc6,0x9a,0x20,0xef,0xc3,0xe0,0xb1,0xc7,0x9e,0xf5,
0x2e,0xa7,0x0f,0x5e,0x34,0x8b,0x07,0xca,0x91,0xce,
0xc3,0x3d,0xf7,0xfc,0xe7,0x3b,0xff,0x39,0xdf,0x7f,
0xff,0x73,0x19,0x11,0xe1,0x79,0xa4,0xa5,0xa1,0x75,
0x17,0x07,0xee,0x04,0x07,0x56,0x26,0x98,0xa2,0x08,
0x00,0x3a,0xa7,0x69,0x26,0x68,0xc6,0x84,0x79,0xe0,
0x7a,0xff,0xbf,0xfe,0xf6,0x3c,0xf1,0x84,0xe7,0x42,
0x07,0x20,0x90,0xb0,0xe5,0xe7,0xe3,0x87,0x94,0x75,
0x33,0x9b,0xf2,0xec,0x37,0xcb,0xae,0xe0,0x77,0xcb,
0x8e,0x6c,0x01,0xf0,0x5c,0x09,0x70,0xa5,0x5e,0x04,
0x02,0x01,0x51,0x55,0xd5,0xb6,0x42,0xbb,0x01,0xdd,
0xca,0x53,0x71,0xde,0x3c,0x09,0x30,0xa0,0x5b,0x0b,
0xed,0xaa,0xaa,0xb6,0x05,0x02,0x01,0xb1,0x14,0x0e,
0x5b,0xac,0x05,0xb2,0x2c,0xbb,0x38,0xae,0xf6,0x73,
0x4d,0xab,0xf5,0x88,0xe2,0xf0,0x7b,0x15,0x15,0x99,
0xa3,0x89,0x29,0xdb,0xfe,0xa5,0xe0,0x76,0x2f,0xcf,
0xf8,0xec,0x6f,0x8e,0x1c,0xaf,0x76,0x1a,0x55,0x79,
0x6b,0x26,0xf9,0x09,0xfc,0xa6,0xee,0x60,0xf4,0x2b,
0xa9,0x2f,0x49,0x88,0x9c,0xcd,0x54,0x3a,0x4e,0x4a,
0xf1,0xf8,0xdb,0x6e,0x4d,0x6b,0x1f,0x15,0x84,0xf0,
0x28,0xd1,0xb6,0x87,0x0f,0x1f,0x46,0x8a,0xc0,0x88,
0x28,0x4f,0x1b,0x1b,0x1b,0x5f,0x91,0xe5,0xb6,0x21,
0xbb,0xbd,0xcb,0x00,0x74,0x72,0xbb,0xdb,0x63,0xb2,
0xdc,0x1a,0x71,0x3a,0xcf,0xa5,0x7f,0xcf,0x52,0xa1,
0x87,0x30,0xe9,0x69,0x1a,0x62,0x23,0xa1,0x73,0x4e,
0x67,0xba,0x55,0x96,0x23,0xed,0x6e,0x77,0x4c,0x07,
0xe8,0x96,0xcd,0x66,0x6c,0x94,0xe5,0xc1,0xc6,0xc6,
0xc6,0x57,0x0a,0xf1,0xf2,0x1e,0xbc,0x5e,0xaf,0x4b,
0x96,0x5b,0x87,0x45,0xf1,0x11,0x01,0x66,0x8e,0x1a,
0x04,0x98,0xb4,0x02,0xe6,0x8d,0x79,0xa0,0x3b,0xfc,
0x14,0x5d,0xb0,0x5f,0xa7,0x0b,0xf6,0xeb,0x74,0x87,
0x9f,0x5a,0x48,0xe0,0x09,0x0e,0xdc,0x30,0x01,0x32,
0x00,0x32,0x73,0x74,0x48,0x14,0x69,0xa3,0x2c,0x0f,
0x7a,0xbd,0x5e,0x57,0x2e,0xe6,0x42,0x0b,0x02,0x81,
0x80,0x18,0x8f,0xdb,0xba,0x86,0x87,0x7f,0xbd,0x2a,
0x99,0x0c,0x2c,0xca,0x0d,0x9b,0xad,0x47,0xdf,0xb5,
0xb4,0x73,0x62,0xc8,0x1a,0x12,0x75,0xa6,0x27,0x44,
0x12,0x7b,0x01,0x40,0x63,0x5a,0x93,0x40,0x82,0x63,
0x45,0xba,0x51,0xdb,0xfb,0xe4,0xcf,0x55,0xcd,0xa9,
0xa9,0x45,0xc9,0xdd,0x6b,0xb3,0x99,0x7b,0xdd,0xee,
0x7b,0xa9,0xca,0xca,0xb5,0xdd,0xdd,0xdd,0x1a,0x90,
0x73,0x0a,0x12,0x89,0xc4,0x5a,0x4d,0x5b,0xe1,0x49,
0x26,0xfd,0x45,0xe0,0x8c,0x65,0xe0,0x72,0x9d,0x4a,
0x56,0x54,0x5c,0x1c,0xbc,0xcd,0x1e,0xef,0xc9,0x66,
0xb3,0xdd,0xe1,0x70,0x38,0x9d,0xeb,0xe3,0xf1,0x78,
0xac,0x51,0xfb,0x78,0xe0,0x17,0x36,0xd7,0x87,0x3b,
0xe2,0xd6,0xfa,0x7d,0x91,0x88,0x5d,0x2a,0xe0,0xd7,
0xea,0x54,0x8a,0xab,0xd3,0x75,0xcf,0xdd,0x44,0x62,
0x2d,0x80,0x6b,0x45,0x1c,0x90,0xe5,0x0d,0x1d,0x6e,
0x77,0x7b,0x2c,0xb7,0xfc,0x92,0xf4,0x80,0xbc,0xde,
0xad,0x31,0x9f,0xaf,0xe5,0x30,0x00,0xbe,0xb0,0x87,
0x45,0x3d,0x05,0xf8,0x16,0x9f,0xef,0xf0,0x56,0xaf,
0x37,0xf6,0x40,0x92,0xf2,0xda,0xd0,0xee,0x76,0xc7,
0x36,0xc8,0x72,0x47,0x49,0x0e,0x34,0x37,0x37,0xdb,
0x65,0xb9,0x6d,0x7c,0xbe,0xe7,0x8c,0xa5,0xc8,0xeb,
0xdd,0x1a,0x53,0x14,0xc5,0xff,0x2c,0xe0,0x42,0x55,
0x14,0xc5,0xbf,0xd5,0xeb,0x8d,0xa5,0x18,0xa3,0x79,
0x4e,0xb4,0xc9,0xf2,0x78,0x73,0x73,0xb3,0x3d,0xd7,
0x2f,0xaf,0xdc,0x53,0x09,0xdb,0xfe,0x68,0xf4,0xc7,
0x95,0x00,0x03,0x00,0xb8,0x5c,0xa7,0x92,0x3c,0x9f,
0x78,0x37,0x18,0x0c,0xf6,0x2c,0xd6,0xd3,0xa7,0x49,
0x30,0x18,0xec,0x49,0xf0,0xfc,0xbb,0xa7,0x5c,0xae,
0x24,0x30,0x1b,0xf1,0x67,0xd1,0x68,0xa5,0x34,0x3d,
0xbd,0x3f,0xd7,0x2f,0x9f,0x2c,0x2e,0x6e,0xf7,0xd4,
0xe5,0xef,0x84,0x71,0x1a,0x71,0xdb,0x99,0x1e,0x7f,
0x45,0xc5,0xc5,0xc1,0xbe,0xbe,0xeb,0x47,0x54,0x55,
0x7d,0x19,0x80,0x5c,0x08,0x22,0x49,0xd2,0x95,0xde,
0xde,0xde,0x49,0x00,0xf0,0xf9,0x7c,0x0a,0xcf,0xf3,
0x5b,0x89,0x28,0xc9,0x71,0x5c,0xbf,0x28,0x8a,0xb7,
0xee,0xf6,0xf5,0x1d,0xe1,0x1a,0x1a,0xbe,0xb7,0x33,
0x1e,0xf7,0xd6,0xdb,0x1d,0x3d,0xd9,0xcd,0xdb,0x2b,
0x52,0x03,0xa1,0x1f,0x02,0xe8,0x58,0x48,0xa0,0xa1,
0xb5,0x75,0x17,0x09,0xc2,0x16,0xe8,0xba,0x35,0xbb,
0x72,0xa5,0x9d,0x6a,0xa4,0xaf,0xe3,0x18,0xb0,0xf4,
0x49,0x67,0x84,0x5d,0x7d,0xbc,0x87,0x88,0x0c,0x45,
0x51,0xfe,0x02,0xa0,0xa6,0x00,0x5f,0x48,0xa5,0x52,
0xef,0x34,0x34,0x34,0x9c,0x11,0x04,0xe1,0x36,0xcf,
0xf3,0x0e,0x22,0xaa,0x66,0x8c,0x31,0x22,0x8a,0x67,
0xb3,0xd9,0x5e,0x22,0xda,0xdc,0xd8,0xd8,0xb8,0xe7,
0xad,0xc0,0xda,0x0b,0xaf,0xb5,0x7d,0x73,0x1d,0x00,
0x38,0xa3,0xa3,0x51,0xbf,0xdf,0x7f,0x86,0x31,0x96,
0x82,0x8e,0xcb,0x02,0x38,0xee,0xc4,0xf8,0xa1,0x43,
0x0a,0x09,0x02,0xd2,0xaa,0xba,0x10,0xdd,0xfa,0x20,
0x24,0x66,0xb3,0xd9,0xee,0xb9,0x47,0x1e,0x40,0x19,
0x80,0x09,0x00,0xfa,0x7c,0x01,0x00,0x44,0x45,0x51,
0xfc,0x11,0x11,0xd5,0x12,0x51,0x9a,0x31,0x36,0x06,
0xc0,0x04,0x60,0x03,0x50,0x0e,0x00,0xd9,0x6c,0xb6,
0x3b,0x3a,0x3d,0xbd,0xf0,0x29,0x7e,0x35,0xd0,0x52,
0x1d,0x9b,0x9c,0xf8,0x29,0x99,0x84,0xae,0xde,0x1b,
0xdb,0x05,0x00,0x8e,0x99,0x4d,0x9b,0xf2,0xb6,0xc6,
0x4f,0x4f,0x83,0xe9,0x7a,0xa2,0xf0,0xa8,0x01,0x30,
0x19,0x63,0xfb,0x00,0x68,0xa6,0x69,0xea,0xb5,0xb5,
0xb5,0x7f,0x1d,0x1b,0x1b,0xfb,0x07,0x00,0x2b,0x63,
0x2c,0x41,0x44,0xbf,0x05,0xf0,0x99,0x28,0x8a,0x31,
0x22,0x92,0x00,0x20,0x1c,0x0e,0xa7,0xd7,0xac,0x5e,
0x93,0xc8,0x6a,0xd9,0x25,0x16,0xd1,0x02,0xab,0x64,
0x45,0xed,0xb2,0x3a,0x00,0x00,0xeb,0x65,0x65,0x9c,
0x69,0xb1,0x14,0x5d,0x14,0x52,0x30,0x08,0x12,0x67,
0x3f,0x32,0x05,0xe2,0x24,0xa2,0x4e,0x22,0x3a,0xcb,
0x18,0xfb,0xc3,0xd8,0xd8,0xd8,0x6b,0x00,0xfe,0x08,
0x20,0x09,0x60,0x29,0x80,0x63,0x8c,0xb1,0x4b,0xba,
0xae,0xff,0x53,0xd7,0xf5,0x05,0xce,0x70,0x3c,0xd7,
0x1b,0x9b,0x9c,0x28,0x0a,0xc6,0x71,0x9c,0x58,0xf2,
0x36,0x2c,0x21,0xd3,0x00,0x12,0x73,0xca,0x88,0x28,
0x56,0x53,0x53,0x73,0x9e,0x88,0x0e,0x03,0x18,0x61,
0x8c,0x4d,0xcc,0x25,0xe2,0x63,0x8c,0x7d,0xc4,0x18,
0x63,0xcf,0x0a,0x28,0x70,0xd9,0xac,0x56,0x68,0xcc,
0xa8,0x2a,0x98,0xa6,0x35,0x2d,0xe2,0x6f,0xa4,0xd3,
0xe9,0xfa,0xdc,0xd6,0xa8,0xaa,0xfa,0x2d,0x00,0xf7,
0x1d,0x0e,0xc7,0xf2,0xe9,0xe9,0xe9,0x35,0x1c,0xc7,
0x9d,0x07,0xe0,0x03,0x60,0x91,0x65,0x79,0x05,0x80,
0x01,0xd3,0x30,0x9b,0x96,0x38,0xab,0x8a,0x82,0x99,
0xa6,0xa9,0x09,0x00,0x12,0x65,0x57,0xae,0x60,0x9e,
0x84,0x46,0x55,0x15,0x8c,0xf2,0x72,0x90,0x20,0x38,
0x3c,0x1e,0x8f,0x35,0x17,0x8c,0x31,0x26,0x58,0xad,
0xd6,0x41,0x45,0x51,0x40,0x44,0x02,0xc7,0x71,0x9d,
0x44,0xd4,0xca,0x18,0x7b,0x39,0x91,0x48,0xcc,0xf0,
0x3c,0xaf,0x13,0x91,0x7d,0xce,0x3d,0xdd,0xdf,0xdf,
0x3f,0xe0,0xf1,0x78,0xac,0x4b,0x9c,0x4b,0x1c,0x16,
0xd1,0x32,0x6b,0xcc,0xa4,0x11,0x9b,0x9c,0x00,0x99,
0x04,0x02,0xcd,0x08,0x30,0xcd,0x03,0xcb,0x8e,0x1c,
0x99,0x3f,0x86,0xdf,0x1e,0xec,0xec,0xac,0x06,0x80,
0xb4,0xe2,0xd5,0xec,0xe3,0xe3,0x01,0x00,0xff,0x06,
0x60,0x00,0x48,0x10,0x91,0x08,0x60,0x9e,0x33,0x1c,
0x11,0xbd,0x00,0xa0,0x1f,0x80,0x97,0x88,0x9c,0x98,
0x65,0x7f,0x0c,0x40,0x04,0xc0,0x09,0x00,0xb0,0x58,
0x2c,0x81,0xea,0x25,0xe5,0x0b,0x55,0xbe,0xd1,0x7d,
0x3d,0x3a,0x19,0x8b,0x7d,0xcc,0x78,0x96,0x66,0x06,
0xbb,0x9c,0x37,0x90,0x34,0x6c,0xdc,0xf8,0x68,0xe0,
0xb3,0x8e,0x24,0x49,0x9d,0x71,0x5b,0xcf,0x80,0xff,
0x6b,0x7b,0x67,0x06,0xfa,0xff,0x13,0x7a,0x49,0x51,
0x14,0x05,0x8b,0x7c,0x88,0x00,0xdc,0x08,0x06,0x83,
0xa3,0x2b,0x57,0xae,0xf4,0x70,0x1c,0xf7,0x2a,0x80,
0x5a,0xd3,0x34,0x6f,0x1b,0x86,0x71,0xad,0xbf,0xbf,
0x3f,0xc3,0x18,0xe3,0x5f,0x5b,0xd3,0xf0,0xe5,0xe9,
0xcd,0x43,0xde,0xfa,0x6a,0x47,0xcf,0xa7,0xc9,0xed,
0x15,0xa7,0x3f,0x09,0xd9,0x7b,0x7a,0x6e,0xbd,0xb8,
0xc0,0x81,0xfc,0xa6,0x4c,0x9c,0xad,0xfc,0xf8,0x97,
0x07,0x27,0x5f,0x97,0xa4,0x94,0x9f,0x47,0x7c,0x87,
0xa5,0xde,0x67,0xaa,0x87,0x82,0xd7,0xbe,0x7c,0x07,
0xc0,0x7f,0x17,0x49,0x00,0x00,0x70,0xff,0xfe,0xfd,
0x30,0x80,0x70,0xa1,0xbd,0x65,0xb5,0xef,0xd0,0x8e,
0xe5,0x53,0xf5,0x7e,0x57,0x4a,0x00,0x52,0xeb,0xf8,
0xa1,0xbf,0x67,0x6c,0xe4,0x3a,0x9e,0xeb,0x93,0x77,
0x0a,0x2a,0x53,0xd2,0xc9,0xea,0x0f,0x32,0x53,0x98,
0x2b,0x4a,0x64,0x9f,0xd5,0x6e,0x38,0xf0,0x86,0xaa,
0xaa,0xfe,0x52,0xe0,0xa5,0x44,0x55,0x55,0xbf,0x43,
0x34,0xde,0xd8,0x17,0x88,0xd8,0x01,0x80,0x00,0x7c,
0x70,0xaf,0x7a,0x2a,0xc3,0x97,0x9f,0x2c,0x99,0xc0,
0x94,0x2d,0xb5,0x3f,0xb5,0x9a,0xb7,0xcc,0xdd,0x45,
0x20,0x89,0x61,0xe8,0x7d,0x87,0x33,0xeb,0x66,0x97,
0x1a,0xd7,0xbf,0x74,0x98,0x31,0xc6,0x3f,0x0b,0x98,
0x31,0xc6,0xaf,0x5f,0xd3,0x78,0xd8,0xed,0xc8,0x5e,
0x7a,0x7f,0xcb,0x90,0x53,0xe2,0x67,0x77,0xc3,0x00,
0xac,0xae,0x4e,0x59,0x6c,0x34,0x95,0x77,0x19,0x2d,
0x70,0x40,0x51,0x94,0xf5,0xe9,0x55,0xfc,0xa7,0x5f,
0xfd,0xa9,0xbc,0xa2,0x70,0x56,0x66,0x19,0x82,0xeb,
0x54,0x3a,0x59,0x71,0x31,0x3b,0xc8,0x1e,0x1b,0x25,
0x07,0x12,0x8b,0xc5,0x12,0x78,0xc1,0x4e,0x1f,0xee,
0x58,0x1e,0xaf,0xdf,0x17,0x88,0xd8,0xe7,0xc1,0xe7,
0xc5,0x24,0xe0,0xfb,0x9f,0x2c,0x8f,0xdf,0x8d,0x5a,
0x77,0x86,0x42,0xa1,0x6b,0x40,0x0e,0x07,0x1c,0x0e,
0x47,0x97,0x31,0x9a,0x0a,0xdb,0x7b,0xf4,0x55,0xc9,
0x80,0x90,0x97,0x02,0x49,0x0c,0xe3,0xbf,0xb2,0xd9,
0xd3,0x3b,0x05,0xef,0x77,0x3b,0xc7,0x2f,0x3c,0x08,
0x59,0xc5,0xf5,0x2d,0xbe,0x84,0x68,0xa1,0xd9,0x91,
0x2c,0xcb,0x9a,0xea,0xeb,0x05,0x87,0xd2,0x90,0xd4,
0x7e,0x52,0xf9,0xa4,0x6a,0xb6,0xe7,0xc5,0x72,0xe7,
0xb1,0xcd,0x1c,0x49,0x08,0x61,0x87,0xc3,0xd1,0x55,
0x54,0x01,0x60,0x76,0x1c,0x67,0x75,0x96,0xde,0x47,
0xe7,0xcb,0xeb,0xb4,0xfa,0x9c,0x1c,0x68,0xb6,0x86,
0x07,0xcc,0xe1,0x9b,0xc7,0xd8,0xe0,0x3a,0x00,0x98,
0x9e,0xe6,0x11,0x0c,0x4a,0x00,0x00,0x55,0xcd,0xa0,
0xbc,0xdc,0x98,0xf5,0xfd,0x08,0x37,0xf1,0x04,0xeb,
0xe6,0x96,0x2c,0xc8,0xc8,0x8c,0x88,0xd7,0x2f,0xbe,
0x38,0x34,0x34,0x49,0xcd,0x79,0xe3,0xf9,0xa2,0x63,
0x79,0x9b,0x32,0x64,0xef,0x0a,0x18,0xd0,0xbf,0x41,
0xee,0xf6,0x55,0x31,0xb9,0x55,0x89,0x38,0xcf,0x35,
0xa5,0x47,0x92,0x62,0xc8,0x34,0x40,0x4f,0xd3,0xd4,
0x3d,0x16,0x3a,0xf7,0x03,0x67,0xba,0xb5,0x49,0x8e,
0xb4,0x6f,0x73,0xc7,0xf4,0xa3,0xa0,0x5b,0x6f,0xda,
0x8c,0x8d,0xcd,0x8b,0x8f,0xe5,0xa5,0x7f,0x4c,0x6a,
0xa5,0xcf,0xb5,0x5a,0xe6,0x11,0x87,0xcd,0xf7,0x2a,
0x32,0xf6,0xa3,0x09,0x5b,0x6a,0xbf,0x8b,0xcb,0xee,
0xf6,0xf9,0x32,0xf6,0xe3,0xc7,0x46,0xaa,0xab,0xaa,
0x8c,0xbc,0x35,0x13,0x13,0x3c,0x0e,0xbe,0x55,0x17,
0xed,0xeb,0x93,0x92,0xe6,0x0c,0xce,0xa6,0x58,0xe5,
0x49,0xc9,0x88,0xbf,0xed,0x2e,0xd3,0xda,0x47,0x13,
0x42,0x78,0x34,0xfe,0x7f,0xfe,0x98,0xe4,0xcc,0x87,
0xa2,0xa2,0x28,0x6d,0x85,0xf6,0x0d,0x1b,0xbc,0x67,
0xae,0x7e,0xe1,0x28,0xda,0xf9,0xd5,0x2f,0x1c,0xb4,
0x61,0x83,0xf7,0xcc,0x22,0xb3,0x61,0x5b,0x73,0x73,
0xb3,0x58,0x0a,0xa7,0xe4,0xcf,0xe9,0xdc,0xdc,0x7e,
0xb5,0xd0,0x2e,0x08,0x48,0xeb,0x46,0xf1,0x25,0xa7,
0x1b,0x0c,0x82,0x80,0xc2,0xf9,0x01,0xc1,0x60,0xb0,
0x28,0x46,0x5e,0xbc,0xa7,0xbd,0x5c,0x4c,0x74,0x9d,
0x5d,0xea,0xe8,0xa8,0xd9,0xc6,0x18,0xca,0x44,0xd1,
0x14,0x01,0x40,0xd3,0x38,0x8d,0x08,0x33,0xa6,0x89,
0x4b,0xcf,0x1b,0xef,0x7f,0x25,0x1d,0xc4,0x52,0xa8,
0x9f,0x66,0x66,0x00,0x00,0x00,0x00,0x49,0x45,0x4e,
0x44,0xae,0x42,0x60,0x82
};

File diff suppressed because it is too large Load diff

View file

@ -0,0 +1,494 @@
//this file was auto-generated from "window_icon_256.png" by res2h
#include "../Resources.h"
const size_t window_icon_256_png_size = 4870;
const unsigned char window_icon_256_png_data[4870] = {
0x89,0x50,0x4e,0x47,0x0d,0x0a,0x1a,0x0a,0x00,0x00,
0x00,0x0d,0x49,0x48,0x44,0x52,0x00,0x00,0x01,0x00,
0x00,0x00,0x01,0x00,0x08,0x06,0x00,0x00,0x00,0x5c,
0x72,0xa8,0x66,0x00,0x00,0x00,0x19,0x74,0x45,0x58,
0x74,0x53,0x6f,0x66,0x74,0x77,0x61,0x72,0x65,0x00,
0x41,0x64,0x6f,0x62,0x65,0x20,0x49,0x6d,0x61,0x67,
0x65,0x52,0x65,0x61,0x64,0x79,0x71,0xc9,0x65,0x3c,
0x00,0x00,0x12,0xa8,0x49,0x44,0x41,0x54,0x78,0xda,
0xec,0x9d,0x09,0x78,0x14,0x55,0xba,0x40,0xff,0xce,
0x46,0x20,0x04,0xc3,0x16,0xf6,0x00,0x51,0x10,0xd9,
0x41,0x04,0x05,0x64,0x95,0xcd,0x05,0x14,0x14,0x45,
0x19,0xc5,0xe1,0x9b,0x0c,0x38,0xe8,0x73,0x26,0xcf,
0x65,0x06,0x1e,0x22,0x2e,0xe3,0x8c,0xa2,0x8c,0x0f,
0x41,0xd4,0x11,0x44,0x05,0x9e,0x28,0xca,0x22,0x82,
0x02,0x61,0x49,0xd8,0x44,0x96,0x04,0x10,0x88,0x42,
0x08,0x61,0x09,0x04,0xb2,0xef,0x49,0x67,0xaa,0x9a,
0x38,0x83,0x79,0x0a,0xdd,0xd0,0x75,0xbb,0xab,0xea,
0x1c,0xbf,0x8a,0x22,0xdf,0x97,0x9b,0x5a,0xce,0xe9,
0xaa,0x4e,0x72,0xaf,0xa3,0xa2,0xa2,0x42,0x00,0xc0,
0x9e,0x38,0x08,0x00,0x00,0x01,0x00,0x00,0x02,0x00,
0x00,0x04,0x00,0x00,0x08,0x00,0x00,0x10,0x00,0x00,
0x20,0x00,0x00,0x40,0x00,0x00,0x80,0x00,0x00,0x00,
0x01,0x00,0x00,0x02,0x00,0x00,0x04,0x00,0x00,0x08,
0x00,0x00,0x10,0x00,0x00,0x20,0x00,0x00,0x40,0x00,
0x00,0x80,0x00,0x00,0x00,0x01,0x00,0x00,0x02,0x00,
0x00,0x04,0x00,0x00,0x08,0x00,0x00,0x10,0x00,0x00,
0x20,0x00,0x00,0x40,0x00,0x00,0x80,0x00,0x00,0x00,
0x01,0x00,0x00,0x02,0x00,0x00,0x04,0x00,0x00,0x08,
0x00,0x00,0x10,0x00,0x00,0x20,0x00,0x00,0x40,0x00,
0x00,0x80,0x00,0x00,0x00,0x01,0x00,0x00,0x02,0x00,
0x00,0x04,0x00,0x00,0x08,0x00,0x80,0xed,0x03,0xa0,
0x74,0xb4,0xe1,0xb1,0x4d,0xb5,0x8f,0x77,0x68,0xdb,
0x40,0x6d,0xeb,0xac,0x6d,0x51,0xda,0x56,0x8d,0xd3,
0x00,0x60,0x28,0x4e,0x6d,0x4b,0xd5,0xb6,0x35,0xda,
0x36,0x43,0x96,0xcf,0x48,0x56,0x17,0x80,0xe1,0xb1,
0xfa,0x18,0x77,0x6a,0xdb,0x13,0x95,0xe2,0x3b,0x38,
0x1f,0x00,0x3e,0xa3,0x5c,0xdb,0x9e,0xd6,0x22,0xf0,
0xba,0xf1,0x01,0x18,0x1e,0x3b,0xc8,0x55,0x1c,0x91,
0x0e,0x1c,0x77,0x00,0xbf,0x22,0x56,0x8f,0x80,0xc3,
0x20,0xf1,0xc3,0xb5,0x8f,0x6f,0x6a,0xdb,0x38,0x8e,
0x33,0x80,0xdf,0xde,0x09,0xb4,0x75,0x18,0x20,0x7f,
0x13,0xed,0xe3,0x97,0xda,0xd6,0x89,0x63,0x0c,0xe0,
0xd7,0xcc,0x75,0x78,0x59,0x7e,0xfd,0x4d,0xbe,0x0d,
0xda,0x76,0x2d,0xc7,0x16,0xc0,0xef,0x49,0x71,0x20,
0x3f,0x80,0x6d,0x71,0x3a,0x90,0x1f,0xc0,0xbe,0x38,
0x90,0x1f,0x80,0x00,0x20,0x3f,0x00,0x01,0x40,0x7e,
0x00,0x02,0x80,0xfc,0x00,0x04,0x00,0xf9,0x01,0x08,
0x00,0xf2,0x03,0xd8,0x3e,0x00,0xc8,0x0f,0x60,0xd3,
0x00,0x20,0x3f,0x80,0x4d,0x03,0x80,0xfc,0x00,0x36,
0x0d,0x00,0xf2,0x03,0xd8,0x34,0x00,0xc8,0x0f,0x60,
0xd3,0x00,0x20,0x3f,0x80,0x4d,0x03,0x80,0xfc,0x00,
0x36,0x0d,0xc0,0xf0,0xd8,0x5a,0xda,0xc7,0x04,0x6d,
0x6b,0xcf,0xa1,0x01,0xb0,0x3e,0x01,0x55,0xfe,0x3c,
0x0b,0xf9,0x01,0xec,0x78,0x07,0x30,0x3c,0x76,0x88,
0xf6,0x71,0x35,0x87,0x04,0xc0,0x6e,0x01,0x18,0x1e,
0xab,0xdf,0x09,0x24,0x6a,0x5b,0x3b,0x0e,0x09,0x80,
0x7d,0x08,0xfa,0xe9,0xf5,0xdf,0x6a,0xf2,0x07,0x38,
0x1c,0xd2,0xa6,0x49,0x3d,0x69,0x17,0xd5,0x50,0xea,
0xd7,0x0a,0x93,0x90,0xa0,0x40,0xdb,0x9e,0xe4,0xb2,
0x72,0xa7,0x9c,0xcc,0xcc,0x91,0xf5,0x49,0x47,0x24,
0x2b,0xbf,0xd0,0xe7,0x5f,0x4f,0xa4,0x76,0x3e,0x3a,
0xb5,0x68,0x24,0xcd,0x23,0x23,0xa4,0x66,0xa8,0xbd,
0xd7,0x85,0xd1,0xcf,0xc7,0xb7,0x3f,0xa4,0xc9,0xfe,
0xe3,0x67,0x7c,0x1a,0x80,0x27,0xac,0x70,0x30,0x83,
0x03,0x03,0x65,0x68,0xa7,0x68,0x19,0xd3,0xa7,0x8b,
0x0c,0xe9,0xd6,0x4e,0xea,0x84,0x87,0x91,0xf8,0x8b,
0xc8,0xd1,0x2e,0xb6,0x51,0x7f,0x9d,0x27,0x6b,0xb5,
0x10,0xa8,0xe6,0xfa,0x46,0x75,0xe4,0x91,0x7e,0x5d,
0xe5,0xce,0xee,0xed,0xa5,0x43,0x74,0x53,0x4e,0x46,
0x15,0xde,0x5d,0xb5,0x59,0x62,0xe6,0x2e,0xf3,0xc1,
0x23,0xc0,0xf0,0xd8,0x66,0xda,0xbf,0x8f,0x89,0x89,
0x57,0xec,0xa9,0x1e,0x1c,0x24,0x13,0x07,0xdf,0x24,
0x7f,0xbc,0xa7,0xbf,0x34,0xad,0x5f,0x87,0xab,0xe9,
0x12,0x2c,0xd9,0xbc,0x4b,0x46,0xbf,0xb6,0x50,0xd9,
0x78,0x7d,0xda,0x44,0xc9,0xe4,0xfb,0x06,0xca,0xe0,
0x6e,0x3c,0x5d,0x5e,0x8e,0x3a,0x0f,0x4e,0x91,0xcc,
0xfc,0x22,0xe5,0x77,0x00,0x77,0x9a,0x59,0xfe,0x7b,
0x6e,0x6a,0x23,0x33,0x63,0xee,0x91,0xa8,0xc8,0xba,
0x5c,0x41,0x6e,0x70,0x28,0x4d,0xcd,0xad,0x66,0x93,
0x3a,0xe1,0xf2,0xd6,0xef,0x46,0xc8,0x88,0x9e,0x9d,
0x39,0xe8,0x6e,0x70,0xfa,0x7c,0xb6,0x64,0x17,0x14,
0xfb,0xe4,0x11,0x60,0x80,0x19,0x0f,0x98,0xfe,0x4c,
0x3f,0xfb,0x77,0x77,0xc9,0xf8,0xa1,0xbd,0xb9,0x7a,
0xdc,0xe4,0xe4,0xb9,0x2c,0x99,0xb9,0x72,0x8b,0xe1,
0xe3,0xdc,0xd5,0xb5,0x95,0x2c,0x88,0xfd,0x8d,0x44,
0xd4,0xac,0xc1,0x41,0x77,0x93,0x67,0xde,0x5f,0x2e,
0x4e,0x1f,0xac,0xd4,0xad,0x07,0xa0,0x8b,0xd9,0x0e,
0x56,0x8d,0x90,0x60,0x59,0xfe,0xe7,0x87,0x65,0x60,
0xd7,0x1b,0xb8,0x72,0x3c,0x78,0xfe,0xbf,0x73,0xfa,
0xbb,0x72,0x2e,0xaf,0xc0,0xd0,0x71,0x62,0x06,0xde,
0x28,0x73,0x26,0x3d,0x20,0x01,0x01,0xac,0x01,0xeb,
0x2e,0x2f,0x2f,0xfa,0x4a,0x16,0x6c,0xde,0xeb,0x93,
0xb1,0xf5,0x00,0x34,0x33,0x9b,0xfc,0x2b,0x27,0x3f,
0x22,0xfd,0x3b,0xb7,0xe1,0xca,0xf1,0x40,0xfe,0xc1,
0x53,0xe7,0xc8,0xee,0x94,0x74,0x43,0xc7,0x99,0x38,
0xa8,0x9b,0xcc,0xd6,0xe4,0x07,0xf7,0xf9,0xdb,0x27,
0x6b,0x64,0xf2,0xe2,0x75,0x3e,0x1b,0x5f,0xff,0xfe,
0x7f,0x08,0xf2,0x5b,0x5f,0xfe,0xed,0x3f,0x9c,0x44,
0x7e,0x3f,0x94,0xff,0xd9,0x8f,0xbf,0xf1,0xe9,0xd7,
0x10,0x80,0xfc,0xc8,0x8f,0xfc,0xf6,0x94,0xdf,0x34,
0x01,0x40,0x7e,0xe4,0x47,0x7e,0x9b,0x06,0x00,0xf9,
0x91,0x1f,0xf9,0x6d,0x1a,0x00,0xe4,0x47,0x7e,0xe4,
0xb7,0x69,0x00,0x90,0x1f,0xf9,0x91,0xdf,0xa6,0x01,
0x40,0x7e,0xe4,0x47,0x7e,0x9b,0x06,0x00,0xf9,0x91,
0x1f,0xf9,0x6d,0x1a,0x00,0xe4,0x47,0x7e,0xe4,0x57,
0x4b,0x10,0xf2,0x9b,0x97,0x8c,0xec,0x5c,0xb9,0x6d,
0xca,0x1c,0xd9,0x9b,0x7a,0x06,0xf9,0x91,0xdf,0xbc,
0x01,0x40,0xfe,0x2b,0x93,0x7f,0xc0,0xe4,0xd9,0x92,
0x74,0xfc,0x2c,0xf2,0x23,0xbf,0x79,0x1f,0x01,0x90,
0x1f,0xf9,0x91,0xdf,0xa6,0x01,0x40,0x7e,0xe4,0x47,
0x7e,0x9b,0x06,0x00,0xf9,0x91,0x1f,0xf9,0x6d,0xfa,
0x1e,0x40,0x48,0x60,0x00,0xf2,0x7b,0x88,0x3e,0x63,
0xcc,0xe0,0xa9,0x6f,0x1b,0x2e,0xff,0xa3,0xfd,0x3a,
0x23,0xbf,0x87,0x3c,0xb7,0x60,0x85,0x4c,0xff,0x6c,
0xa3,0x29,0xbf,0x76,0xf5,0x01,0xa8,0xa8,0x90,0xb9,
0xbf,0x1f,0x81,0xfc,0x1e,0x10,0x9f,0x74,0x58,0x1e,
0x9c,0xb1,0x50,0x8e,0x67,0xe6,0x19,0x3a,0xce,0xad,
0xad,0x9b,0xc8,0xdc,0xc7,0xc7,0x70,0xc0,0xdd,0x24,
0x3b,0xbf,0x40,0x26,0xbc,0xb9,0x50,0x16,0x6f,0x3b,
0x68,0xda,0x7d,0x08,0x52,0x2d,0xff,0xc8,0xae,0xd1,
0x32,0x6e,0x48,0x2f,0xae,0x1e,0x37,0x38,0x97,0x93,
0x27,0xcf,0xcd,0xfb,0x5c,0xde,0x5e,0xb7,0x5b,0xca,
0x1d,0xc6,0x3e,0xad,0xd5,0x0c,0x74,0xba,0xa6,0xf1,
0x0a,0xb6,0xf1,0xf4,0xe9,0x9e,0xb0,0x70,0xed,0x16,
0x79,0x66,0xde,0x0a,0x49,0xcb,0x2b,0x35,0xf5,0x7e,
0x04,0xa9,0x94,0xbf,0x7a,0x59,0x81,0xcc,0x7c,0x8c,
0xdb,0xcb,0xcb,0x71,0x2c,0x3d,0x43,0xde,0xfa,0x7c,
0xad,0xcc,0x5d,0xb1,0x41,0x72,0x1c,0xa1,0x22,0x81,
0x06,0x9f,0xa6,0x92,0x42,0x79,0xf6,0xc1,0xc1,0xd2,
0xa2,0x61,0x3d,0x0e,0xfe,0x25,0x28,0x2e,0x2d,0x93,
0x25,0x71,0xdb,0xe5,0xd5,0xc5,0x5f,0x4a,0xe2,0x89,
0xf3,0x22,0xa1,0x35,0x4d,0xbf,0x4f,0x41,0xaa,0xe4,
0x97,0xfc,0x2c,0x99,0x38,0x72,0xa0,0x34,0x63,0xf6,
0xde,0xff,0x47,0x59,0x79,0xb9,0xec,0x3f,0x7a,0x42,
0xd6,0xef,0x3a,0x20,0xcb,0x13,0x76,0xc9,0xa6,0xc4,
0x83,0xe2,0xd4,0x27,0x6a,0x0e,0xab,0xad,0x44,0xfe,
0x7a,0xc1,0x15,0x12,0x7b,0xff,0xed,0x9c,0x88,0x5f,
0xe0,0x44,0x46,0xa6,0x6c,0xdd,0x97,0x2c,0xab,0xb6,
0xed,0x95,0xcf,0x37,0xef,0x94,0x2c,0x7d,0x4e,0xc5,
0xd0,0x30,0x4b,0xc8,0xaf,0x26,0x00,0x95,0xf2,0x07,
0x4b,0xb9,0xfc,0x71,0xf4,0x50,0xa5,0x3b,0xb7,0x7a,
0x47,0xa2,0x7c,0xbe,0x69,0xa7,0x1c,0x4c,0x3d,0xe5,
0xfa,0x91,0x59,0x7f,0xa3,0x42,0xfb,0x27,0x33,0x37,
0x5f,0x4e,0x9d,0xcb,0x92,0xd2,0xb2,0xf2,0xff,0xfc,
0x45,0x40,0x80,0x32,0xf9,0xa5,0x20,0x47,0x26,0x3d,
0x3a,0x52,0x42,0x43,0x82,0x95,0xed,0x77,0x6a,0xfa,
0x39,0xf9,0xf0,0xeb,0x78,0x49,0x48,0x4a,0x96,0xf4,
0xcc,0x6c,0x71,0x3a,0x2b,0xfc,0xee,0xdc,0x14,0x14,
0x17,0xcb,0xd9,0xac,0x5c,0xd7,0xf9,0xf9,0x19,0x16,
0x92,0xdf,0xf8,0x00,0x54,0xca,0x2f,0x65,0x25,0x32,
0xa4,0x67,0x17,0x65,0x8b,0x76,0xe8,0xd5,0x1e,0xf3,
0xfc,0x5b,0xb2,0x39,0xf1,0x90,0xf9,0xce,0x88,0x62,
0xf9,0xf5,0xd9,0x7b,0xc7,0xdf,0xd1,0x57,0xd9,0xee,
0xbd,0xf0,0xc1,0x17,0xf2,0xd2,0x87,0xcb,0x5c,0xb7,
0xd3,0xa6,0xc3,0x62,0xf2,0x1b,0x1b,0x00,0x97,0xfc,
0x99,0x9a,0xfc,0x17,0xde,0x24,0x79,0xf0,0xb6,0x5b,
0x94,0xec,0xd0,0x49,0x4d,0xfe,0x9b,0x27,0x4c,0x93,
0xb4,0xb3,0xe7,0x91,0xff,0x32,0xf2,0xeb,0xf4,0xee,
0x70,0xbd,0xb2,0x30,0x4f,0x98,0x31,0x4f,0xe6,0x2e,
0x5f,0x6f,0x4e,0x53,0x2c,0x28,0xbf,0xeb,0x92,0x53,
0x21,0xbf,0xfe,0x2a,0x33,0xf8,0xa6,0x0e,0x4a,0x76,
0x68,0xec,0x8b,0x6f,0x23,0xbf,0x9b,0xf2,0xeb,0x0c,
0xed,0xde,0x51,0xc9,0xee,0x2d,0x5e,0xb7,0x0d,0xf9,
0x6d,0x11,0x80,0x2a,0xf2,0xeb,0xb4,0x6a,0xda,0x50,
0xea,0xd6,0x32,0xfe,0x00,0x6e,0xdc,0x73,0x50,0xe2,
0x76,0x1f,0x40,0x7e,0x37,0xe5,0xd7,0xb9,0xa5,0xfd,
0x75,0x4a,0x76,0x71,0xda,0xfc,0xa5,0xc8,0x6f,0xf9,
0x00,0xfc,0x82,0xfc,0x3a,0xed,0x5a,0x34,0x51,0xb2,
0x33,0xfa,0xbb,0xb4,0xc8,0xef,0xbe,0xfc,0x3a,0x6d,
0x9b,0x1b,0x7f,0x6e,0x0e,0xa4,0x9c,0x90,0x43,0xa9,
0xa7,0x90,0xdf,0xd2,0x01,0xf8,0x15,0xf9,0x75,0xea,
0x47,0xd4,0x52,0xb2,0x33,0x87,0x8f,0x9f,0x46,0x7e,
0x0f,0xe4,0xbf,0x70,0x6e,0xc2,0x0d,0xdf,0xcd,0xe4,
0xb4,0x74,0xe4,0xb7,0x74,0x00,0x2e,0x21,0xbf,0x4e,
0xf5,0x6a,0x6a,0x16,0x1f,0x2a,0x2c,0x2e,0x41,0x7e,
0x0f,0xe4,0xd7,0x71,0x38,0x8c,0x5f,0xc3,0x2f,0x2b,
0x2f,0x1f,0xf9,0x2d,0x1b,0x80,0xcb,0xc8,0x0f,0xfe,
0x2b,0x3f,0xd8,0x5b,0xfe,0xab,0x0f,0x00,0xf2,0x23,
0x3f,0xf2,0xdb,0x34,0x00,0xc8,0x8f,0xfc,0xc8,0x6f,
0xd3,0x00,0x20,0x3f,0xf2,0x23,0xbf,0x4d,0x03,0x80,
0xfc,0xc8,0x8f,0xfc,0x36,0x0d,0x00,0xf2,0x23,0x3f,
0xf2,0x5b,0x8a,0x20,0xe4,0x47,0x7e,0x5b,0x52,0x5d,
0x13,0xbf,0x5a,0x18,0x97,0x28,0xf2,0x23,0x3f,0xf2,
0x13,0x00,0xe4,0x47,0x7e,0xe4,0x27,0x00,0xc8,0x8f,
0xfc,0xc8,0x4f,0x00,0x90,0x1f,0xf9,0x91,0xdf,0xc6,
0x01,0x30,0xa9,0xfc,0x61,0xd5,0xab,0x21,0xbf,0x87,
0xfc,0x6c,0x2a,0x32,0x83,0xa8,0x77,0x4d,0x38,0xf2,
0x9b,0x26,0x00,0x26,0x7e,0xe5,0x6f,0xdf,0xb2,0x29,
0xf2,0x7b,0x88,0x3e,0x27,0x9f,0xd1,0xdc,0xd0,0xbc,
0x31,0xf2,0x9b,0x22,0x00,0x26,0xbf,0xed,0x1f,0xdd,
0xbf,0x07,0xf2,0x7b,0x48,0xd2,0x91,0xe3,0x86,0x1f,
0xa2,0xe8,0xc6,0x91,0xd2,0xed,0xfa,0x96,0xc8,0xef,
0xd7,0x01,0xb0,0xc0,0x33,0x7f,0xd7,0xd6,0x2d,0xe4,
0xde,0x7e,0xdd,0x91,0xdf,0x03,0xf4,0x99,0x79,0x55,
0xf0,0x72,0xcc,0x68,0x25,0xbf,0x7a,0x8c,0xfc,0x57,
0x12,0x80,0x7f,0xcf,0xde,0x6b,0xfe,0x37,0xfc,0xde,
0x7b,0x7a,0xbc,0x74,0x88,0x6e,0x86,0xfc,0x6e,0xb2,
0x6a,0xdb,0x1e,0x25,0xe7,0x65,0x50,0xb7,0xf6,0x32,
0xfd,0xb7,0xa3,0x90,0xdf,0x2f,0x03,0x50,0x39,0x75,
0xb7,0x15,0xb8,0x26,0xac,0x86,0xc4,0xcf,0xfa,0x1f,
0x79,0x68,0x50,0x4f,0xe3,0x5e,0x71,0x2c,0xf4,0x6e,
0xff,0xee,0xe4,0x63,0xf2,0xfd,0xb1,0x93,0x4a,0xce,
0xcd,0x94,0x87,0x47,0xc8,0xfc,0x3f,0xc7,0x18,0xfb,
0xa6,0x20,0xf2,0x7b,0x84,0x43,0x06,0x8e,0xaf,0x90,
0xd2,0x62,0x43,0x07,0x79,0xf2,0xbe,0xa1,0xf2,0xc6,
0xa4,0x87,0x94,0xef,0x9c,0x7e,0x61,0x2f,0xdd,0xf4,
0xad,0x6b,0x61,0x90,0xbc,0xc2,0x22,0xef,0x7d,0xe2,
0xe0,0x50,0x2d,0x02,0x57,0xbf,0x86,0x5e,0x59,0xb9,
0x53,0xd2,0xb3,0xf3,0x64,0xdf,0xf1,0xb3,0x52,0x58,
0x75,0x9e,0x7c,0x85,0xdf,0xea,0xfb,0xaf,0x7b,0x87,
0xc8,0xcc,0xc7,0xc7,0x2a,0x3b,0x2f,0xfa,0x22,0x2d,
0xcb,0x12,0x76,0x69,0x8f,0x1f,0x87,0xe5,0x4c,0x66,
0x8e,0x6b,0x81,0x14,0xef,0x84,0x59,0x0b,0x72,0xb0,
0x77,0xbe,0x13,0x54,0x50,0x52,0x2a,0x67,0x73,0xf2,
0xe5,0xfb,0x13,0x19,0x52,0x54,0x5a,0x6e,0xe1,0x00,
0xf4,0x19,0x6b,0xf8,0xb2,0x2c,0xbe,0x0a,0x80,0x59,
0xc8,0x2f,0x2a,0x96,0xc5,0x1b,0xbe,0x95,0xa9,0x8b,
0xd7,0xca,0x49,0x7d,0x05,0xe0,0xe2,0x02,0x91,0xc2,
0x5c,0x65,0xe3,0xd7,0xac,0x1e,0x2a,0x29,0x9f,0xbc,
0xa1,0x64,0xe6,0x66,0xb3,0x51,0xee,0x74,0x6a,0x77,
0x49,0xa9,0xf2,0xd5,0xce,0xfd,0xb2,0x28,0x21,0x51,
0x0b,0xc2,0x39,0x4b,0xed,0x5f,0xa0,0x34,0xef,0x38,
0xcd,0xe8,0x41,0x6e,0x6e,0x77,0x9d,0xb2,0xf9,0xe7,
0xcd,0x48,0x48,0x50,0x90,0x74,0xbd,0x2e,0x4a,0x1e,
0xee,0x77,0xa3,0x24,0xec,0x3d,0x20,0xc7,0x8f,0xa7,
0x29,0x1d,0xbf,0xa4,0xac,0x4c,0x8a,0xb4,0x57,0xbc,
0x61,0x3d,0x3a,0x71,0x32,0xaa,0xde,0x54,0x68,0x8f,
0x91,0x8d,0xeb,0x45,0x48,0xdf,0x8e,0xad,0xe5,0x0f,
0x77,0xdc,0x2a,0x83,0x3a,0xb4,0x94,0x8c,0xec,0x5c,
0x39,0x7c,0xfa,0xbc,0x35,0xf6,0x8f,0x53,0xec,0x3f,
0xe8,0x33,0xf4,0xae,0x98,0xfe,0x98,0xb4,0x6c,0xa4,
0x7e,0x95,0xde,0x39,0xcb,0xd6,0xb9,0xde,0x0f,0x80,
0x4b,0xd3,0xab,0x7d,0x2b,0x59,0x36,0x35,0x46,0xe2,
0x5f,0xfa,0xbd,0x74,0x6d,0xd1,0x80,0x00,0x80,0x77,
0xa9,0x53,0x2b,0x5c,0x5e,0x9d,0x70,0xbf,0xf2,0x71,
0xf5,0x9f,0x08,0x1c,0xfb,0xe2,0x1c,0xc9,0x2d,0x28,
0xe2,0x24,0xb8,0x41,0x4f,0xed,0xae,0x76,0xfb,0xeb,
0x7f,0x92,0x67,0xef,0xee,0xad,0xf6,0xdb,0x9b,0x04,
0xc0,0xfa,0x8c,0xec,0xdb,0x43,0x22,0x6b,0xd7,0x52,
0x3e,0xae,0xbe,0x80,0xc7,0x7d,0xcf,0xbd,0xa9,0xe4,
0xc7,0x83,0xad,0x40,0x50,0x60,0xa0,0xfc,0xf5,0xd1,
0xbb,0xe5,0xfd,0xc7,0xee,0x91,0xc0,0x80,0x00,0x02,
0x00,0xde,0x41,0x7f,0x45,0xe9,0xdd,0xa1,0xb5,0x4f,
0xc6,0x5e,0xb3,0x23,0x49,0xee,0x9d,0x4a,0x04,0x3c,
0x61,0xdc,0xe0,0x9e,0xb2,0xe0,0xf1,0x51,0xa6,0x8c,
0x00,0x01,0xf0,0x53,0x1a,0xd5,0x8d,0xf0,0xd9,0xd8,
0xcb,0x13,0x76,0x11,0x01,0x0f,0x79,0x70,0x40,0x0f,
0x53,0x46,0x80,0x00,0xf8,0x29,0xc1,0x41,0x41,0x3e,
0x1d,0x9f,0x08,0xd8,0x23,0x02,0x04,0x00,0x88,0x80,
0x8d,0x23,0x40,0x00,0x80,0x08,0xd8,0x38,0x02,0x04,
0x00,0x88,0x80,0x8d,0x23,0x40,0x00,0x80,0x08,0xd8,
0x38,0x02,0x04,0x00,0x88,0x80,0x8d,0x23,0x40,0x00,
0x80,0x08,0xd8,0x38,0x02,0x04,0x00,0x88,0x80,0x8d,
0x23,0x40,0x00,0x80,0x08,0xd8,0x38,0x02,0x04,0x00,
0x88,0x80,0x8d,0x23,0x40,0x00,0x80,0x08,0xd8,0x38,
0x02,0x04,0xc0,0x4f,0x29,0x2d,0x2b,0x23,0x02,0x44,
0x80,0x00,0xd8,0x95,0xd3,0xe7,0xb3,0x4d,0xf5,0xf5,
0x12,0x01,0x73,0x46,0x80,0x00,0xf8,0x21,0x15,0x15,
0x15,0x12,0x9f,0x78,0xd8,0x94,0x8f,0x03,0x77,0x4f,
0x7e,0x43,0x0a,0x8a,0x4a,0x38,0x89,0x1e,0x44,0x60,
0xfe,0xa4,0x91,0x3e,0x9b,0x54,0x84,0x00,0xf8,0x21,
0x5f,0xc4,0x7f,0xa7,0x64,0xc9,0x2e,0x23,0x58,0xb5,
0x6d,0xaf,0xf4,0x79,0xe2,0x45,0x39,0x72,0xf2,0x0c,
0x27,0xd2,0x4d,0xc6,0x0e,0xbc,0x59,0xa6,0x8f,0xee,
0x4f,0x00,0x40,0x24,0x2b,0x2f,0x5f,0x9e,0x9a,0xbd,
0xc8,0xd4,0xfb,0xf0,0xdd,0xa1,0xa3,0xd2,0xe9,0xb7,
0x93,0xe5,0x1f,0x9f,0xae,0xe1,0x91,0xc0,0x4d,0xfe,
0xf2,0xc0,0x30,0xe9,0xd3,0x26,0x8a,0x00,0xd8,0x99,
0xf3,0x39,0xb9,0x72,0xd7,0xb3,0xaf,0xcb,0x8f,0x16,
0x78,0xf5,0xd4,0xd7,0x61,0x78,0xf2,0x7f,0x3f,0x92,
0xb6,0x0f,0x3f,0x23,0xef,0xac,0x88,0x93,0xc2,0x62,
0x1e,0x0b,0x2e,0x29,0x62,0x80,0x43,0xde,0x9a,0x30,
0x4a,0x82,0x02,0xd5,0x2a,0xc9,0xb4,0xe0,0x7e,0x40,
0x51,0x49,0x89,0x7c,0xfc,0xd5,0x06,0x19,0x3d,0xf5,
0x4d,0xd9,0x77,0xec,0x94,0xb5,0xa2,0x96,0x9b,0x2f,
0x2b,0xb7,0xec,0x96,0x59,0x4b,0xd7,0x6a,0x8f,0x05,
0x67,0xf5,0x95,0x28,0xa4,0x49,0xbd,0xda,0x12,0x12,
0x1c,0xc4,0x89,0xaf,0x82,0x3e,0x0f,0x64,0xca,0xc9,
0x74,0xd9,0x93,0x72,0x5a,0xd9,0x98,0x96,0x3e,0x0b,
0xc9,0x69,0xa7,0x65,0xe9,0xa6,0x9d,0x72,0xf8,0xf8,
0x69,0xed,0x42,0xcc,0xf3,0xce,0x27,0xd5,0x97,0x50,
0x2b,0xf5,0xce,0xab,0x99,0xbe,0x22,0xce,0x99,0xf3,
0x59,0x92,0x98,0x9c,0x22,0xf9,0x15,0xda,0xa9,0x08,
0x0a,0xb1,0xec,0xb9,0xc8,0xce,0x2f,0x90,0x77,0x57,
0xc6,0xb9,0x36,0xfd,0xd5,0x2e,0xba,0x51,0xa4,0x34,
0x6f,0x58,0x4f,0xc2,0x6b,0x84,0x9a,0x6a,0x3f,0xf4,
0x25,0xe8,0x5f,0x18,0x7f,0xaf,0x61,0x9f,0xff,0xe9,
0x51,0x03,0x65,0xfe,0xc6,0xbd,0xae,0x37,0x82,0x09,
0xc0,0x55,0xdc,0x7e,0x4e,0x9a,0xb9,0x40,0x3e,0xfc,
0x3a,0x5e,0x9c,0x4e,0x2f,0x1e,0xc8,0xd2,0x42,0x91,
0xe2,0x42,0xef,0x7f,0xc1,0xa1,0x35,0x2d,0x2d,0x7f,
0x55,0xf4,0x73,0xf2,0xc3,0x89,0x74,0xd7,0x66,0x36,
0xb2,0x72,0x0b,0x0c,0xfd,0xfc,0x6d,0xa2,0x1a,0x49,
0x9f,0x36,0xcd,0x64,0xe3,0xf7,0xa9,0xbc,0x07,0x70,
0x25,0xe8,0xeb,0xce,0xf5,0x9e,0xf4,0x82,0x7c,0xb0,
0x7a,0x33,0xf2,0x83,0x29,0x79,0xa8,0x4f,0x17,0x75,
0xef,0x3d,0x58,0xed,0xe0,0xc5,0xbc,0xf6,0xbe,0xec,
0xfd,0xc1,0xcb,0xf5,0x44,0x7e,0x50,0xc8,0xb0,0x9b,
0xda,0x11,0x80,0x2b,0x61,0xd7,0xe1,0x14,0xf9,0x24,
0x6e,0x3b,0xf2,0x83,0xa9,0x69,0x5a,0xbf,0x8e,0xb4,
0xa8,0x5f,0x9b,0x00,0x78,0xca,0x92,0x0d,0x3b,0xbc,
0xfb,0xe6,0x09,0xf2,0x83,0x8f,0x68,0x1f,0xd5,0x80,
0x00,0x78,0xca,0xbe,0xa3,0x69,0xc8,0x0f,0x96,0xa0,
0x61,0xed,0x9a,0x04,0xc0,0x53,0xf2,0xbc,0xb5,0xb0,
0x25,0xf2,0x83,0x8f,0xa9,0x19,0x5a,0x8d,0x00,0xf8,
0x04,0xe4,0x07,0x1b,0x41,0x00,0x90,0x1f,0x08,0x00,
0x20,0x3f,0x10,0x00,0xe4,0x47,0x7e,0x20,0x00,0xc8,
0x8f,0xfc,0x40,0x00,0x90,0x1f,0xf9,0x81,0x00,0x20,
0x3f,0xf2,0x03,0x01,0x40,0x7e,0xe4,0x07,0x02,0x80,
0xfc,0xc8,0x0f,0x04,0x00,0xf9,0x91,0x1f,0x08,0x00,
0xf2,0x23,0x3f,0x10,0x80,0xcb,0xa0,0x6a,0x42,0xc8,
0xd0,0x90,0x60,0xe4,0x07,0xdf,0x5c,0x63,0x5e,0xa6,
0xa0,0xb8,0xd4,0x3a,0x01,0xc8,0xc8,0xce,0x55,0xb2,
0x33,0xad,0x9a,0x36,0x44,0x7e,0x30,0x94,0xd6,0xcd,
0x1a,0x2a,0x19,0x27,0x23,0x37,0xdf,0x3a,0x01,0xf0,
0xea,0xaf,0xe9,0x5e,0x82,0x7b,0xfa,0xdc,0x88,0xfc,
0x60,0x28,0x77,0xdf,0x7a,0xa3,0x92,0x71,0xf6,0xa7,
0x9e,0xb1,0x4e,0x00,0xf4,0xd9,0x79,0xcf,0xe7,0xe4,
0x19,0x3e,0x4e,0xff,0x2e,0x6d,0xa5,0x6f,0xe7,0x36,
0xc8,0x0f,0x86,0xa0,0x5f,0x5b,0xfa,0x35,0x66,0x34,
0xe7,0x34,0x57,0x92,0x4f,0x65,0x58,0x27,0x00,0xfa,
0xe4,0x9c,0x6b,0xbe,0x4d,0x52,0xb2,0x43,0x1f,0x4e,
0x9e,0x20,0x8d,0xaf,0xa9,0x8e,0xfc,0xe0,0x55,0x1a,
0xd7,0xab,0x2d,0x1f,0x4d,0x99,0xa8,0x64,0xac,0xaf,
0xbf,0x3b,0x20,0x4e,0x45,0xd3,0x82,0x2b,0xfb,0x2e,
0xc0,0xe2,0x75,0xdb,0x94,0x8c,0xd3,0x2c,0xb2,0xae,
0x6c,0x7d,0xe7,0x25,0xe9,0xd9,0xe9,0x06,0xe4,0x07,
0xaf,0xd0,0xab,0x43,0x6b,0xd9,0x3a,0xfb,0x39,0xd7,
0x5c,0x7d,0x2a,0x58,0xb4,0x69,0xb7,0xb2,0x7d,0x73,
0x48,0x9f,0xb1,0x4a,0x52,0x13,0x1c,0x14,0x28,0x29,
0xff,0xf7,0x86,0xab,0xa4,0xaa,0xf8,0x2a,0x61,0xa7,
0x7c,0xb6,0x3e,0x41,0x0e,0x1c,0x49,0xbd,0xba,0xef,
0x44,0x04,0x55,0xd3,0x36,0x6f,0x2c,0xa1,0xa0,0xf5,
0xd6,0xb5,0x0a,0xec,0x85,0x95,0x60,0x9d,0x15,0x4e,
0xc9,0xcc,0x2d,0x90,0xd3,0xe7,0xb3,0xfc,0x6a,0x0d,
0xbd,0xb0,0xd0,0x6a,0xae,0xf3,0x14,0xa6,0x68,0x56,
0x1a,0x7f,0xa4,0x7a,0xb5,0x60,0x69,0xdb,0xa2,0x89,
0xdc,0xdb,0xaf,0xbb,0xd2,0x55,0xad,0x4e,0x64,0x64,
0x4a,0xcb,0x98,0x57,0xa4,0xb4,0xbc,0xdc,0x5a,0x01,
0xd0,0x79,0x6a,0xcc,0x1d,0xf2,0xf7,0x09,0x0f,0xf0,
0x92,0x52,0x05,0x5d,0xfe,0xa4,0x23,0xc7,0x25,0x6e,
0xf7,0x01,0x59,0x9e,0xb0,0x5b,0x36,0x27,0x1e,0x52,
0xb6,0x32,0x4c,0xd5,0xbb,0xa7,0x77,0x9f,0x1a,0x2f,
0x83,0xba,0xb5,0x77,0xad,0xde,0x03,0xea,0x79,0xea,
0xbd,0xa5,0xf2,0xda,0x8a,0x2d,0xd6,0xbb,0x03,0xb8,
0x50,0xd5,0x10,0x49,0x5e,0xf8,0x9a,0x6b,0x6d,0x38,
0xf8,0x75,0x52,0x4e,0x67,0xc8,0xac,0xa5,0xdf,0xc8,
0xdc,0xe5,0xeb,0x5d,0xab,0x1c,0xa9,0x62,0xde,0xb3,
0x31,0x32,0x6e,0xd8,0xad,0x9c,0x00,0x1f,0xa1,0xbf,
0xfa,0xb7,0x9a,0xf0,0x37,0x29,0x2c,0x2d,0x53,0x36,
0xa6,0xd2,0x9f,0x04,0xd4,0x6f,0xc3,0xf5,0x15,0x63,
0xe1,0xd2,0xb4,0x68,0x58,0x4f,0x5e,0x7b,0x6c,0x8c,
0x1c,0x59,0xfc,0xba,0x4c,0x1c,0x31,0x50,0xd9,0xab,
0x71,0x49,0x59,0x19,0x07,0xdf,0x87,0x3c,0xf9,0xce,
0x52,0xa5,0xf2,0x2b,0x0f,0x80,0xce,0xa7,0x1b,0x76,
0xc8,0x82,0x35,0xf1,0x9c,0x6d,0x37,0xa8,0x1f,0x11,
0x2e,0xb3,0xff,0x34,0x4e,0xe2,0x66,0xfe,0x45,0xc9,
0x1b,0x50,0xfa,0x5d,0x87,0x3f,0xbd,0x17,0x61,0x27,
0x16,0x7c,0xb3,0x55,0x3e,0xdd,0xfe,0xbd,0xf2,0x71,
0x7d,0xf2,0xbb,0x00,0x31,0xaf,0xfe,0x53,0xe2,0x93,
0x0e,0x73,0xd6,0xdd,0xa4,0x4f,0xa7,0x36,0xb2,0xfd,
0xed,0x69,0xd2,0x21,0xba,0x99,0xa1,0xe3,0xe8,0xef,
0x43,0x4c,0x98,0x31,0x8f,0x03,0xae,0x98,0xf8,0x7d,
0xc9,0x12,0x33,0x77,0x99,0x4f,0xc6,0x0e,0x94,0xe6,
0x1d,0xa7,0xa9,0x1e,0xb4,0xdc,0xe9,0x94,0xa5,0x1b,
0x77,0xca,0x80,0xae,0x6d,0xa5,0x89,0xa2,0x6f,0xad,
0x98,0x9d,0xf0,0x1a,0xd5,0xe5,0xbe,0xfe,0xdd,0x65,
0xf5,0xf6,0x44,0x39,0x93,0x99,0x63,0xd8,0x38,0xbb,
0x93,0x8f,0xb9,0x3e,0xff,0x1d,0xb7,0x74,0xe6,0xa0,
0x2b,0x60,0xc7,0xc1,0xa3,0x32,0x6c,0xfa,0xfb,0x92,
0xaf,0xe8,0x67,0xff,0xfd,0x22,0x00,0x3a,0xc5,0xa5,
0xa5,0xb2,0x24,0x6e,0x07,0x11,0xf0,0x80,0x1a,0xa1,
0xd5,0x94,0x44,0x60,0xe7,0xa1,0xa3,0x44,0x40,0x91,
0xfc,0x83,0xa7,0xbd,0x27,0xd9,0x85,0xc5,0x3e,0xfb,
0x1a,0x7c,0x16,0x00,0x22,0x40,0x04,0x90,0xdf,0xb7,
0xf2,0xfb,0x3c,0x00,0x44,0x80,0x08,0x20,0xbf,0xd8,
0x3b,0x00,0x44,0x80,0x08,0x20,0xbf,0xcd,0x03,0x40,
0x04,0x88,0x80,0x1d,0xd8,0x7a,0xe0,0x47,0x19,0xfa,
0xfc,0x3f,0xfd,0x46,0x7e,0xbf,0x0a,0x00,0x11,0x20,
0x02,0x56,0x26,0x6e,0xcf,0x41,0x19,0x3a,0x7d,0x9e,
0xe4,0x29,0x9a,0x1d,0xcb,0x94,0x01,0xb8,0x38,0x02,
0x3d,0xda,0xb4,0x94,0x96,0x8d,0x23,0xb9,0x72,0x88,
0x80,0x25,0xe4,0xbf,0xf3,0xa5,0x0f,0xa4,0xa0,0xa4,
0xd4,0xef,0xbe,0x36,0xbf,0x0b,0x80,0x2b,0x02,0xf9,
0xd9,0xb2,0x64,0x75,0x9c,0xeb,0x57,0x7a,0x5b,0x36,
0x6e,0xc0,0x15,0x44,0x04,0x90,0xdf,0x36,0x01,0x28,
0x29,0xd0,0xb6,0x22,0xd7,0x8f,0xa4,0x2e,0x59,0x1b,
0x4f,0x04,0x88,0x00,0xf2,0xdb,0x26,0x00,0x95,0xf2,
0xff,0x04,0x11,0x20,0x02,0xc8,0x6f,0x97,0x00,0x54,
0x91,0x9f,0x08,0x10,0x01,0xe4,0xb7,0x4b,0x00,0x7e,
0x45,0x7e,0x22,0x40,0x04,0x90,0xdf,0xea,0x01,0xb8,
0x8c,0xfc,0x44,0x80,0x08,0x20,0xbf,0x55,0x03,0xe0,
0xa6,0xfc,0x44,0x80,0x08,0x20,0xbf,0x21,0x14,0xfb,
0x2e,0x00,0x1e,0xca,0x4f,0x04,0xcc,0x11,0x81,0xf4,
0xcc,0x6c,0xb9,0xbd,0x47,0x67,0x71,0x38,0x1c,0xc8,
0xef,0xff,0x1c,0xf5,0x4d,0x00,0xae,0x50,0xfe,0x8b,
0x23,0xb0,0x68,0xcd,0x46,0x89,0x6a,0x18,0x29,0x9d,
0x5b,0x47,0x63,0xb8,0x9b,0x11,0xb8,0xab,0x57,0x17,
0x99,0xff,0xd5,0x66,0x29,0x32,0xf0,0x42,0xd5,0x23,
0x90,0x78,0x24,0x55,0x86,0xf5,0xe8,0xa8,0x6c,0x1d,
0x3d,0x5f,0xf2,0xc1,0xd7,0x5b,0xe4,0xfe,0x19,0x8b,
0xa4,0xc8,0x9c,0x33,0x29,0xc5,0xa9,0x0f,0xc0,0x55,
0xca,0xff,0x13,0xfa,0xa4,0x22,0x5f,0x6c,0xd8,0xea,
0x9a,0xf2,0xbb,0x67,0xa7,0xb6,0x52,0x2b,0xac,0x06,
0x96,0x5f,0x86,0x5a,0x61,0xd5,0x5d,0xf2,0x6f,0xd8,
0x63,0xec,0xd4,0x53,0x07,0x53,0x4f,0xc9,0xc2,0xb5,
0x5b,0xa5,0x55,0x93,0x06,0xd2,0xba,0x59,0x23,0x4b,
0x1e,0x4b,0x7d,0x02,0xcf,0xf1,0xaf,0xce,0x97,0x97,
0x97,0x25,0x48,0x79,0x85,0x69,0x77,0x63,0x96,0xda,
0x00,0x78,0x49,0xfe,0x8b,0xd1,0x03,0xf0,0xf6,0x67,
0xab,0x24,0x27,0xbf,0x40,0xda,0x5f,0xdb,0xdc,0x35,
0x73,0x0e,0xfc,0x3a,0x67,0xb3,0x72,0x65,0xc9,0x86,
0x1d,0x86,0x8f,0x93,0x9d,0x5f,0x28,0x8b,0xd6,0x6d,
0x75,0x4d,0xfd,0xa6,0xcf,0x02,0x1d,0x6d,0x91,0x1f,
0xeb,0x3e,0x75,0x2e,0x4b,0x5e,0x5c,0xf0,0x85,0xfc,
0xe6,0x95,0xf7,0x65,0x6f,0x7a,0x6e,0xe5,0x3a,0x0f,
0xa6,0x44,0xcf,0xd6,0x63,0xea,0xa6,0x05,0x37,0x40,
0xfe,0xaa,0x84,0x04,0x07,0xc9,0xed,0xbd,0x6e,0x92,
0x87,0x86,0xf5,0x93,0xdb,0x7a,0x74,0x91,0x88,0xf0,
0x30,0x8c,0xbf,0x88,0xdc,0x82,0x42,0x19,0x35,0xe5,
0x1f,0xf2,0xcd,0x77,0xfb,0x95,0x8f,0xad,0x2f,0xb2,
0xf1,0xf0,0x90,0xde,0x32,0xbc,0x57,0x57,0xb9,0xa1,
0x79,0x63,0x53,0x1d,0xb7,0xac,0xbc,0x02,0x59,0xbb,
0x73,0x9f,0x7c,0xbc,0x76,0x8b,0xac,0xda,0xb6,0x57,
0x4a,0x2a,0x02,0x44,0xc2,0x22,0xcc,0x2c,0xbf,0xeb,
0xf6,0x5f,0x96,0xcf,0x18,0xa0,0x26,0x00,0x0a,0xe4,
0xaf,0x4a,0x60,0x40,0x80,0xb4,0x8d,0x8e,0x92,0x76,
0xd7,0x46,0x49,0x64,0xed,0x08,0x5b,0x2f,0x74,0xa1,
0xaf,0x31,0x92,0x76,0x26,0x43,0x36,0xec,0x3b,0x22,
0xe7,0xf2,0x7d,0xff,0xab,0xa8,0x8d,0xea,0x46,0x48,
0xe7,0xeb,0x9a,0x4b,0x54,0x83,0xba,0xae,0xb5,0x22,
0xfc,0x11,0xa7,0xf6,0x88,0x79,0x26,0x2b,0x47,0xf6,
0x1f,0x3d,0x21,0x07,0x52,0x4e,0xb8,0x1e,0x39,0x5d,
0xe8,0xcb,0xc3,0x99,0x5f,0x7e,0x9d,0x51,0x5a,0x00,
0x96,0x1a,0x1f,0x00,0x1f,0xc8,0x0f,0xbf,0x00,0x6b,
0x1b,0x5e,0x3d,0xd6,0x91,0x5f,0xbf,0x05,0xec,0xa8,
0x05,0xc0,0x19,0x80,0xfc,0xc8,0x0f,0xb6,0x92,0x5f,
0xe7,0xbf,0x75,0xf9,0xf5,0xff,0x08,0x40,0x7e,0xe4,
0x07,0x5b,0xc9,0xff,0x91,0x26,0xff,0xea,0x9f,0xfe,
0x10,0x80,0xfc,0xc8,0x0f,0xb6,0x91,0x7f,0x9f,0xb6,
0xfd,0xe1,0xe2,0xff,0x11,0x80,0xfc,0xc8,0x0f,0xb6,
0x90,0xff,0x47,0x6d,0x1b,0xa6,0xbd,0xfa,0xe7,0x18,
0x17,0x00,0xe4,0x47,0x7e,0xe4,0xf7,0x57,0xf9,0xfb,
0x69,0xf2,0xa7,0x55,0xfd,0x8b,0x00,0xe4,0x47,0x7e,
0xb0,0xa7,0xfc,0xde,0x0b,0x00,0xf2,0x23,0x3f,0xf2,
0x9b,0x4e,0x7e,0xef,0x04,0x00,0xf9,0x91,0x1f,0xf9,
0x4d,0x29,0xff,0xd5,0x07,0x00,0xf9,0x91,0x1f,0xf9,
0x4d,0x2b,0xff,0xd5,0x05,0x00,0xf9,0x91,0x1f,0xf9,
0x4d,0x2d,0xff,0x95,0x07,0x00,0xf9,0x91,0x1f,0xf9,
0x4d,0x2f,0xff,0x95,0x05,0x00,0xf9,0x91,0x1f,0xf9,
0x2d,0x21,0xbf,0xe7,0x01,0x40,0x7e,0xe4,0x47,0x7e,
0xcb,0xc8,0xef,0x59,0x00,0x90,0x1f,0xf9,0x91,0xdf,
0x52,0xf2,0xbb,0x1f,0x00,0xe4,0x47,0x7e,0xe4,0xb7,
0x9c,0xfc,0xee,0x05,0x00,0xf9,0x91,0x1f,0xf9,0x2d,
0x29,0xff,0xe5,0x03,0x80,0xfc,0xc8,0x8f,0xfc,0x96,
0x95,0xff,0x42,0x00,0x1c,0xe2,0x44,0x7e,0xe4,0x47,
0x7e,0xfb,0xc9,0x5f,0x79,0x07,0xe0,0x48,0x47,0x7e,
0xe4,0x47,0x7e,0xfb,0xc9,0x5f,0x79,0x07,0xe0,0x58,
0x8f,0xfc,0xc8,0x8f,0xfc,0x7e,0xcf,0x5e,0x6d,0xeb,
0xeb,0x4d,0xf9,0x2b,0x03,0x10,0xf8,0xca,0xbf,0x1f,
0x03,0x90,0x1f,0xf9,0x91,0xdf,0x1f,0x99,0xaf,0x6d,
0xb7,0x6a,0xf2,0x9f,0xf0,0xf6,0x27,0xbe,0x70,0x74,
0xfa,0x3d,0x32,0x55,0x8a,0x72,0x9f,0x47,0x7e,0xe4,
0x47,0x7e,0xbf,0x22,0x49,0xdb,0x62,0x35,0xf1,0xbf,
0x31,0x6a,0x80,0xff,0x1c,0xa1,0xee,0x23,0xfe,0x2e,
0xe5,0xa5,0xb1,0x52,0x21,0x01,0x5c,0x41,0xc8,0x8f,
0xfc,0x3e,0x43,0x9f,0xa6,0x7f,0x9d,0xb6,0xbd,0xa9,
0x6d,0x2b,0x35,0xf9,0x0d,0x9d,0xb6,0xff,0xe7,0x47,
0xa9,0xc7,0xc8,0x1b,0xc5,0x59,0x36,0x45,0xdb,0x7a,
0x69,0x5f,0x46,0x5d,0x11,0x62,0x80,0xfc,0xc8,0x6f,
0x30,0xfa,0x4a,0x2d,0xa9,0xda,0xb6,0xa7,0x52,0xfc,
0x2f,0xbd,0xfd,0x9c,0x7f,0xc9,0x00,0x54,0x54,0x54,
0x70,0xe1,0x00,0xd8,0x14,0x02,0x00,0x40,0x00,0x00,
0x80,0x00,0x00,0x00,0x01,0x00,0x00,0x02,0x00,0x00,
0x04,0x00,0x00,0x08,0x00,0x00,0x10,0x00,0x00,0x20,
0x00,0x00,0x40,0x00,0x00,0x80,0x00,0x00,0x00,0x01,
0x00,0x00,0x02,0x00,0x00,0x04,0x00,0x00,0x08,0x00,
0x00,0x10,0x00,0x00,0x20,0x00,0x00,0x40,0x00,0x00,
0x80,0x00,0x00,0x00,0x01,0x00,0x00,0x02,0x00,0x00,
0x04,0x00,0x00,0x08,0x00,0x00,0x10,0x00,0x00,0x20,
0x00,0x00,0x40,0x00,0x00,0x80,0x00,0x00,0x00,0x01,
0x00,0x00,0x02,0x00,0x00,0x04,0x00,0x00,0x08,0x00,
0x00,0x10,0x00,0x00,0x20,0x00,0x00,0x40,0x00,0x00,
0x80,0x00,0x00,0x00,0x01,0x00,0x00,0x02,0x00,0x40,
0x00,0x08,0x00,0x80,0x7d,0xf9,0x97,0x00,0x03,0x00,
0x21,0xc5,0x64,0xe3,0xe4,0x8c,0x4c,0xec,0x00,0x00,
0x00,0x00,0x49,0x45,0x4e,0x44,0xae,0x42,0x60,0x82
};

BIN
data/es_icon.ico Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 272 KiB

Binary file not shown.

Binary file not shown.

Before

Width:  |  Height:  |  Size: 51 KiB

View file

@ -1,134 +0,0 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="210mm"
height="297mm"
id="svg6610"
version="1.1"
inkscape:version="0.48.4 r9939"
sodipodi:docname="ES_logo.svg">
<defs
id="defs6612" />
<sodipodi:namedview
id="base"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="0.35"
inkscape:cx="350"
inkscape:cy="520"
inkscape:document-units="px"
inkscape:current-layer="layer1"
showgrid="false"
inkscape:window-width="1280"
inkscape:window-height="972"
inkscape:window-x="-8"
inkscape:window-y="-8"
inkscape:window-maximized="1" />
<metadata
id="metadata6615">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title></dc:title>
</cc:Work>
</rdf:RDF>
</metadata>
<g
inkscape:label="Ebene 1"
inkscape:groupmode="layer"
id="layer1">
<g
transform="translate(-370,-484.28571)"
id="g6569"
inkscape:export-filename="C:\Users\kr.ERPA\Desktop\Privat\ES_logo_16.png"
inkscape:export-xdpi="4.8792887"
inkscape:export-ydpi="4.8792887">
<g
id="g6559">
<path
inkscape:connector-curvature="0"
style="fill:#807b83;fill-opacity:1;stroke:none"
d="m 660.03125,618.3125 -28.4375,11.8125 c 4.4933,10.80365 6.96875,22.66327 6.96875,35.09375 0,12.43048 -2.47545,24.2901 -6.96875,35.09375 l 28.4375,11.8125 c 0,0 4.36531,-11.8715 5.875,-18.125 l 22.28125,0 c 1.89071,-9.30365 2.9375,-18.92217 2.9375,-28.78125 0,-9.85908 -1.04679,-19.4776 -2.9375,-28.78125 l -22.28125,0 c -1.50969,-6.2535 -5.875,-18.125 -5.875,-18.125 z"
id="path58241-8" />
<path
inkscape:connector-curvature="0"
style="fill:#fe0000;fill-opacity:1;stroke:none"
d="m 626.53125,545.125 -15.75,15.75 c -5.48941,-3.35438 -16.96875,-8.65625 -16.96875,-8.65625 l -11.75,28.46875 c 22.41211,9.27267 40.32796,27.20932 49.59375,49.625 l 28.5,-11.75 c 0,0 -5.30187,-11.47934 -8.65625,-16.96875 l 15.75,-15.75 c -5.24174,-7.91561 -11.34108,-15.46608 -18.3125,-22.4375 -6.97142,-6.97142 -14.49064,-13.03951 -22.40625,-18.28125 z"
id="path58241-0-20" />
<path
inkscape:connector-curvature="0"
style="fill:#dc00fe;fill-opacity:1;stroke:none"
d="m 547.15625,521.25 c -9.85908,0 -19.50885,1.04679 -28.8125,2.9375 l 0,22.25 c -6.2535,1.50969 -18.125,5.875 -18.125,5.875 l 11.8125,28.46875 c 10.81375,-4.50319 22.64884,-7 35.09375,-7 12.43467,0 24.28717,2.50383 35.09375,7 L 594.0625,552.3125 c 0,0 -11.8715,-4.36531 -18.125,-5.875 l 0,-22.25 c -9.30365,-1.89071 -18.92217,-2.9375 -28.78125,-2.9375 z"
id="path58241-0-6-5" />
<path
inkscape:connector-curvature="0"
style="fill:#0000fe;fill-opacity:1;stroke:none"
d="m 467.78125,545.125 c -7.91561,5.24174 -15.46608,11.30983 -22.4375,18.28125 -6.97142,6.97142 -13.03951,14.52189 -18.28125,22.4375 l 15.71875,15.75 c -3.35438,5.48941 -8.625,16.96875 -8.625,16.96875 l 28.46875,11.75 c 9.26948,-22.42459 27.20041,-40.35552 49.625,-49.625 L 500.5,552.21875 c 0,0 -11.47934,5.30187 -16.96875,8.65625 l -15.75,-15.75 z"
id="path58241-0-2-52" />
<path
inkscape:connector-curvature="0"
style="fill:#00fefe;fill-opacity:1;stroke:none"
d="m 434.25,618.3125 c 0,0 -4.36531,11.8715 -5.875,18.125 l -22.28125,0 c -1.89071,9.30365 -2.90625,18.92217 -2.90625,28.78125 0,9.85908 1.01554,19.4776 2.90625,28.78125 l 22.28125,0 c 1.50969,6.2535 5.875,18.125 5.875,18.125 l 28.4375,-11.8125 c -4.4933,-10.80365 -6.96875,-22.66327 -6.96875,-35.09375 0,-12.43048 2.47545,-24.2901 6.96875,-35.09375 L 434.25,618.3125 z"
id="path58241-0-6-4-7" />
<path
inkscape:connector-curvature="0"
style="fill:#00fe38;fill-opacity:1;stroke:none"
d="m 462.625,700.125 -28.46875,11.75 c 0,0 5.27062,11.47934 8.625,16.96875 l -15.71875,15.75 c 5.24174,7.91561 11.30983,15.46608 18.28125,22.4375 6.97142,6.97142 14.52189,13.03951 22.4375,18.28125 l 15.75,-15.75 c 5.48941,3.35438 16.96875,8.65625 16.96875,8.65625 L 512.25,749.75 c -22.42459,-9.26948 -40.35552,-27.20041 -49.625,-49.625 z"
id="path58241-0-2-5-6" />
<path
inkscape:connector-curvature="0"
style="fill:#fefd00;fill-opacity:1;stroke:none"
d="M 512.0625,749.65625 500.21875,778.125 c 0,0 11.8715,4.36531 18.125,5.875 l 0,22.25 c 9.30365,1.89071 18.95342,2.9375 28.8125,2.9375 9.85908,0 19.4776,-1.04679 28.78125,-2.9375 l 0,-22.25 c 6.2535,-1.50969 18.125,-5.875 18.125,-5.875 L 582.25,749.65625 c -10.81375,4.50319 -22.68009,7 -35.125,7 -12.43467,0 -24.25592,-2.50383 -35.0625,-7 z"
id="path58241-0-6-4-8-7" />
<path
inkscape:connector-curvature="0"
style="fill:#fe8700;fill-opacity:1;stroke:none"
d="m 631.65625,700.125 c -9.26579,22.41568 -27.18164,40.35233 -49.59375,49.625 l 11.75,28.46875 c 0,0 11.47934,-5.30187 16.96875,-8.65625 l 15.75,15.75 c 7.91561,-5.24174 15.43483,-11.30983 22.40625,-18.28125 6.97142,-6.97142 13.07076,-14.52189 18.3125,-22.4375 l -15.75,-15.75 c 3.35438,-5.48941 8.65625,-16.96875 8.65625,-16.96875 l -28.5,-11.75 z"
id="path58241-0-2-5-8-8" />
</g>
<path
sodipodi:nodetypes="cccscccccscccccscccccscccccscccccscccccscccccsccc"
inkscape:connector-curvature="0"
d="m 660.143,618.56413 c 0,0 -5.29922,-11.48057 -8.6536,-16.96998 l 15.74772,-15.74772 c -5.24174,-7.91561 -11.32138,-15.45715 -18.2928,-22.42857 -6.97142,-6.97142 -14.51296,-13.05106 -22.42857,-18.2928 l -15.74772,15.74772 c -5.48941,-3.35438 -16.8411,-8.60021 -16.8411,-8.60021 0,0 -11.73622,-4.3175 -17.98972,-5.82719 l 0,-22.27064 c -9.30365,-1.89071 -18.93528,-2.92443 -28.79436,-2.92443 -9.85908,0 -19.49071,1.03372 -28.79436,2.92443 l 0,22.27064 c -6.2535,1.50969 -17.98972,5.82719 -17.98972,5.82719 0,0 -11.35169,5.24583 -16.8411,8.60021 l -15.74772,-15.74772 c -7.91561,5.24174 -15.45715,11.32138 -22.42857,18.2928 -6.97142,6.97142 -13.05106,14.51296 -18.2928,22.42857 l 15.74772,15.74772 c -3.35438,5.48941 -8.60022,16.8411 -8.60022,16.8411 0,0 -4.31749,11.73622 -5.82718,17.98972 l -22.27063,0 c -1.89071,9.30365 -2.92443,18.93528 -2.92443,28.79436 0,9.85908 1.03372,19.49071 2.92443,28.79436 l 22.27063,0 c 1.50969,6.2535 5.82719,17.98972 5.82719,17.98972 0,0 5.24583,11.35169 8.60021,16.8411 l -15.74772,15.74772 c 5.24174,7.91561 11.32138,15.45715 18.2928,22.4286 6.97142,6.9714 14.51296,13.051 22.42857,18.2928 l 15.74772,-15.7478 c 5.48941,3.3544 16.8411,8.60025 16.8411,8.60025 0,0 11.73622,4.31755 17.98972,5.82715 l 0,22.2707 c 9.30365,1.8907 18.93528,2.9244 28.79436,2.9244 9.85908,0 19.49071,-1.0337 28.79436,-2.9244 l 0,-22.2707 c 6.2535,-1.5096 17.98972,-5.82715 17.98972,-5.82715 0,0 11.35169,-5.24585 16.8411,-8.60025 l 15.74772,15.7478 c 7.91561,-5.2418 15.45715,-11.3214 22.42857,-18.2928 6.97142,-6.97145 13.05106,-14.51299 18.2928,-22.4286 L 651.4894,728.84451 c 3.35438,-5.48941 8.60022,-16.84109 8.60022,-16.84109 0,0 4.31749,-11.73623 5.82718,-17.98973 l 22.27064,0 c 1.89071,-9.30365 2.92443,-18.93528 2.92443,-28.79436 0,-9.85908 -1.03372,-19.49071 -2.92443,-28.79436 l -22.27064,0 c -1.50969,-6.2535 -5.88057,-18.11861 -5.88057,-18.11861"
style="fill:none;stroke:#282828;stroke-width:7.19899988;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:162"
id="path58241-0-2-5-8-2-7" />
<g
id="g6555">
<path
inkscape:connector-curvature="0"
id="path2990-8-1"
style="font-size:144px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#282828;fill-opacity:1;stroke:#282828;stroke-width:7.28403759;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;font-family:DejaVu Sans;-inkscape-font-specification:DejaVu Sans"
d="m 488.14083,629.05926 50.26131,0 0,14.07704 -31.63705,0 0,13.44816 29.75045,0 0,14.07704 -29.75045,0 0,16.54416 32.7013,0 0,14.07703 -51.32556,0 z" />
<path
inkscape:connector-curvature="0"
id="path2992-9-6"
style="font-size:144px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#282828;fill-opacity:1;stroke:#282828;stroke-width:7.28403759;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;font-family:DejaVu Sans;-inkscape-font-specification:DejaVu Sans"
d="m 605.39505,631.33287 0,15.28641 c -3.96678,-1.77368 -7.83676,-3.11205 -11.60993,-4.0151 -3.77327,-0.90294 -7.33687,-1.35443 -10.69081,-1.3545 -4.45051,7e-5 -7.73998,0.61281 -9.86844,1.83825 -2.12851,1.22554 -3.19275,3.12828 -3.19273,5.70821 -2e-5,1.93504 0.71753,3.44272 2.15267,4.52303 1.43509,1.08042 4.03926,2.0076 7.81252,2.78155 l 7.93345,1.59636 c 8.03015,1.61254 13.73836,4.06352 17.12465,7.35296 3.38616,3.28951 5.07928,7.96573 5.07934,14.02867 -6e-5,7.96571 -2.36236,13.89161 -7.08689,17.7777 -4.72466,3.8861 -11.94054,5.82915 -21.64769,5.82915 -4.5795,0 -9.17509,-0.43538 -13.78679,-1.30612 -4.61173,-0.87074 -9.22345,-2.16073 -13.83516,-3.86997 l 0,-15.72178 c 4.61171,2.451 9.07024,4.2973 13.3756,5.5389 4.30533,1.24163 8.45749,1.86244 12.45649,1.86243 4.06344,10e-6 7.17554,-0.67724 9.33632,-2.03174 2.16069,-1.35447 3.24106,-3.28946 3.2411,-5.80497 -4e-5,-2.25746 -0.73372,-3.99895 -2.20105,-5.22447 -1.4674,-1.22546 -4.39407,-2.32195 -8.78001,-3.28948 l -7.20782,-1.59636 c -7.22398,-1.54795 -12.50488,-4.01507 -15.84272,-7.40133 -3.33786,-3.38619 -5.00679,-7.94953 -5.00678,-13.69004 -10e-6,-7.19165 2.32197,-12.72248 6.96595,-16.59252 4.64396,-3.86991 11.31966,-5.80489 20.02713,-5.80497 3.96669,8e-5 8.04629,0.29838 12.2388,0.89494 4.19243,0.59669 8.53002,1.49162 13.0128,2.68479 z" />
</g>
<path
d="m 638.56688,665.21936 c 0,50.49461 -40.93397,91.42857 -91.42857,91.42857 -50.49461,0 -91.42858,-40.93396 -91.42858,-91.42857 0,-50.49461 40.93397,-91.42857 91.42858,-91.42857 50.4946,0 91.42857,40.93396 91.42857,91.42857 z"
sodipodi:ry="91.428574"
sodipodi:rx="91.428574"
sodipodi:cy="665.21936"
sodipodi:cx="547.13831"
id="path6453"
style="fill:#ffffff;fill-opacity:0;stroke:#282828;stroke-width:8;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
sodipodi:type="arc"
transform="translate(-2.0556641e-6,-4.1259766e-6)" />
</g>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 11 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 74 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 8.8 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 954 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.4 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 17 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.2 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.4 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 36 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 4.6 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 954 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.2 KiB

175
data/resources/splash.svg Normal file
View file

@ -0,0 +1,175 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 16.0.3, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<svg version="1.1" id="Ebene_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
width="1280px" height="720px" viewBox="0 0 1280 720" enable-background="new 0 0 1280 720" xml:space="preserve">
<g>
<polygon fill="#C90012" points="431.177,441.967 431.177,441.967 431.177,441.967 "/>
<polygon fill="#C90012" points="431.177,359.086 431.177,359.086 431.177,359.086 "/>
<polygon fill="#C90012" points="431.177,276.176 431.177,276.176 431.177,276.176 "/>
<polygon fill="#C90012" points="431.177,317.624 431.177,317.624 431.177,317.624 "/>
<polygon fill="#C90012" points="431.177,483.415 431.177,483.415 431.177,483.415 "/>
<polygon fill="#C90012" points="431.177,400.511 431.177,400.511 431.177,400.511 "/>
<polygon fill="#C90012" points="431.177,234.712 431.177,234.712 431.177,234.712 "/>
<path fill="#004E73" d="M431.177,245.821c0-6.11-4.999-11.108-11.106-11.108H69.211c-6.112,0-14.643,3.534-18.963,7.855
l-25.745,25.745c-4.321,4.321-7.854,12.854-7.854,18.963v226.468c0,6.112,4.999,11.11,11.106,11.11h350.86
c6.108,0,14.643-3.536,18.963-7.854l25.741-25.737c4.321-4.317,7.854-12.852,7.854-18.964L431.177,245.821z"/>
<g opacity="0.2">
<path d="M295.712,524.855c6.112,0,11.122-0.012,11.133-0.023c0.015-0.015,3.559-3.563,7.88-7.88l67.143-67.132
c4.321-4.316,7.853-12.852,7.853-18.963v-19.235c0-6.112-3.532-14.646-7.853-18.963l-25.73-25.73
c-4.32-4.318-12.855-7.853-18.963-7.851h-19.247c-6.112,0.001-11.11,0.001-11.11,0.001s3.532-3.534,7.853-7.855l67.197-67.193
c4.321-4.321,2.855-7.855-3.253-7.855H276.48c-6.112,0-14.643,3.534-18.963,7.855L24.79,516.73
c-4.321,4.317-7.915,7.914-7.991,7.987c-0.073,0.076,4.864,0.138,10.973,0.138H295.712z"/>
</g>
<path fill="#FFFFFF" d="M276.473,400.519c-6.108,0-14.643-3.536-18.96-7.857l-25.71-25.718c-4.321-4.321-7.857-12.855-7.865-18.966
l-0.012-19.246c-0.008-6.11,3.525-14.643,7.846-18.964l25.741-25.737c4.321-4.321,12.852-7.855,18.963-7.855h102.139
c6.108,0,7.574,3.534,3.253,7.855l-25.741,25.737c-4.321,4.321-12.852,7.855-18.963,7.855h-60.687
c-6.112,0-11.11,4.998-11.11,11.108v19.246c0,6.11,4.998,11.108,11.106,11.106l60.702-0.007c6.108-0.002,14.643,3.533,18.963,7.851
l25.73,25.73c4.321,4.316,7.853,12.851,7.853,18.963v19.235c0,6.111-3.532,14.646-7.853,18.963l-25.741,25.741
c-4.321,4.317-12.852,7.854-18.963,7.854h-60.687c-6.112,0-14.643-3.536-18.963-7.854l-25.741-25.741
c-4.321-4.316-2.859-7.853,3.253-7.853h102.139c6.112,0,11.11-4.999,11.11-11.11v-19.235c0-6.112,0-11.11,0.003-11.11
c0.004,0-4.994,0-11.102,0L276.473,400.519z"/>
<g opacity="0.2">
<path d="M16.657,370.748c0-6.111,0-11.238,0-11.393s3.532-3.818,7.854-8.138l67.185-67.186c4.321-4.321,12.855-7.855,18.963-7.855
h102.15c6.108,0,7.574,3.534,3.253,7.855l-67.197,67.182c-4.321,4.321-7.853,7.855-7.853,7.855s4.998,0.002,11.11,0.006
l19.228,0.007c6.108,0.004,10.75,4.993,10.318,11.086l-1.114,15.592c-0.433,6.092-1.707,11.998-2.833,13.123
c-1.125,1.125-5.576,5.58-9.896,9.896l-25.202,25.202c-4.32,4.316-7.884,7.884-7.922,7.918c-0.034,0.034,4.933,0.065,11.041,0.062
h17.98c6.108-0.004,14.784,3.379,19.281,7.517l26.836,24.696c4.497,4.137,8.071,7.623,7.949,7.75
c-0.126,0.126-3.766,3.762-8.087,8.083l-27.012,26.996c-4.321,4.321-12.855,7.854-18.967,7.854H27.771
c-6.108,0-11.106-4.998-11.106-11.11L16.657,370.748z"/>
</g>
<path fill="#FFFFFF" d="M110.659,441.967c-6.108,0-11.106-4.999-11.106-11.11v-19.235c0-6.112,4.998-11.11,11.106-11.11h60.69
c6.108,0,11.106-4.998,11.106-11.11v-19.204c0-6.112-4.998-11.11-11.106-11.11h-60.69c-6.108,0-11.106-4.998-11.106-11.108v-19.246
c0-6.11,4.998-11.108,11.106-11.108h60.69c6.108,0,14.643-3.534,18.964-7.854l25.749-25.741c4.321-4.319,2.855-7.853-3.253-7.853
h-102.15c-6.108,0-14.643,3.534-18.963,7.855l-25.738,25.737c-4.32,4.321-7.857,12.854-7.857,18.964v102.125
c0,6.111,3.537,14.646,7.857,18.963l25.738,25.741c4.321,4.317,12.855,7.854,18.963,7.854h102.142c6.112,0,7.574-3.536,3.253-7.857
l-25.741-25.744c-4.321-4.321-12.855-7.857-18.964-7.857L110.659,441.967z"/>
<g>
<path d="M558.253,326.432c-1.623,3.8-3.85,7.115-6.682,9.943c-2.832,2.836-6.146,5.06-9.947,6.682
c-3.796,1.623-7.838,2.434-12.117,2.434h-8.496c-4.283,0-8.324-0.812-12.121-2.434c-3.8-1.623-7.115-3.846-9.943-6.682
c-2.836-2.828-5.063-6.143-6.682-9.943c-1.626-3.796-2.434-7.838-2.434-12.121v-47.858c0-4.282,0.808-8.324,2.434-12.12
c1.619-3.801,3.846-7.115,6.682-9.947c2.828-2.833,6.143-5.056,9.943-6.682c3.796-1.619,7.838-2.434,12.121-2.434h8.496
c4.279,0,8.32,0.815,12.117,2.434c3.8,1.626,7.115,3.85,9.947,6.682c2.832,2.832,5.06,6.146,6.682,9.947
c1.623,3.796,2.434,7.838,2.434,12.12v24.964h-58.115v23.618c0,2.556,0.482,4.956,1.451,7.202
c0.964,2.243,2.277,4.195,3.934,5.852c1.661,1.657,3.609,2.97,5.856,3.938c2.243,0.964,4.642,1.447,7.199,1.447h8.496
c2.553,0,4.952-0.482,7.199-1.447c2.243-0.968,4.195-2.281,5.852-3.938c1.657-1.657,2.97-3.609,3.938-5.852
c0.964-2.246,1.451-4.646,1.451-7.202v-7.042l12.74,2.07v4.248C560.687,318.594,559.875,322.635,558.253,326.432z
M547.947,265.726c0-2.553-0.486-4.952-1.451-7.199c-0.968-2.243-2.281-4.194-3.938-5.852s-3.609-2.97-5.852-3.938
c-2.247-0.964-4.646-1.45-7.199-1.45h-8.496c-2.557,0-4.956,0.486-7.199,1.45c-2.247,0.969-4.195,2.281-5.856,3.938
c-1.657,1.657-2.97,3.609-3.934,5.852c-0.968,2.247-1.451,4.646-1.451,7.199v15.745h45.375V265.726z"/>
<path d="M698.154,343.42v-77.695c0-2.553-0.482-4.952-1.45-7.199c-0.969-2.243-2.277-4.194-3.938-5.852
c-1.653-1.657-3.609-2.97-5.852-3.938c-2.247-0.964-4.646-1.45-7.199-1.45h-6.318c-2.557,0-4.956,0.486-7.202,1.45
c-2.243,0.969-4.21,2.281-5.902,3.938c-1.695,1.657-3.023,3.609-3.991,5.852c-0.965,2.247-1.446,4.646-1.446,7.199v77.695h-12.642
v-77.695c0-2.553-0.482-4.952-1.45-7.199c-0.968-2.243-2.296-4.194-3.988-5.852c-1.691-1.657-3.658-2.97-5.905-3.938
c-2.242-0.964-4.642-1.45-7.199-1.45h-6.318c-2.557,0-4.956,0.486-7.199,1.45c-2.247,0.969-4.195,2.281-5.855,3.938
c-1.657,1.657-2.97,3.609-3.935,5.852c-0.968,2.247-1.45,4.646-1.45,7.199v77.695h-12.741V237.344h4.244l6.943,10.773
c2.9-3.938,6.54-7.061,10.93-9.376c4.382-2.312,9.166-3.471,14.344-3.471h1.037c6.009,0,11.428,1.485,16.266,4.455
c4.833,2.97,8.561,6.908,11.186,11.811c1.313-2.419,2.936-4.627,4.869-6.629c1.933-2.005,4.075-3.712,6.422-5.128
c2.35-1.416,4.906-2.522,7.669-3.318c2.76-0.792,5.626-1.19,8.596-1.19h1.037c4.279,0,8.32,0.815,12.121,2.434
c3.796,1.626,7.114,3.85,9.946,6.682c2.828,2.832,5.056,6.146,6.683,9.947c1.618,3.796,2.434,7.838,2.434,12.12v76.968H698.154z"
/>
<path d="M802.991,343.42l-7.046-10.773c-2.901,3.938-6.525,7.061-10.877,9.376c-4.348,2.312-9.116,3.467-14.294,3.467h-3.211
c-4.287,0-8.324-0.812-12.121-2.434c-3.8-1.623-7.114-3.846-9.946-6.682c-2.832-2.828-5.06-6.143-6.683-9.943
c-1.623-3.796-2.434-7.838-2.434-12.121v-76.967h12.744v77.691c0,2.556,0.482,4.956,1.446,7.202
c0.969,2.243,2.281,4.195,3.938,5.852c1.657,1.657,3.609,2.97,5.852,3.938c2.242,0.964,4.646,1.447,7.203,1.447h8.496
c2.549,0,4.952-0.482,7.194-1.447c2.243-0.968,4.198-2.281,5.855-3.938c1.657-1.657,2.97-3.609,3.935-5.852
c0.969-2.246,1.454-4.646,1.454-7.202v-77.691h12.737V343.42H802.991z"/>
<path d="M836.967,343.42V194.87h12.74v148.55H836.967z"/>
<path d="M946.052,343.42l-7.046-10.567c-2.9,3.8-6.525,6.854-10.881,9.17c-4.348,2.312-9.116,3.467-14.29,3.467h-3.215
c-4.282,0-8.32-0.812-12.116-2.434c-3.805-1.623-7.119-3.846-9.947-6.682c-2.836-2.828-5.063-6.143-6.682-9.943
c-1.627-3.796-2.435-7.838-2.435-12.121v-1.037c0-4.279,0.808-8.32,2.435-12.121c1.618-3.796,3.846-7.111,6.682-9.943
c2.828-2.832,6.143-5.06,9.947-6.682c3.796-1.623,7.834-2.434,12.116-2.434h26.936v-16.369c0-2.553-0.482-4.952-1.45-7.199
c-0.969-2.243-2.277-4.194-3.938-5.852c-1.653-1.657-3.609-2.97-5.852-3.938c-2.247-0.964-4.646-1.45-7.199-1.45h-7.459
c-2.557,0-4.956,0.486-7.198,1.45c-2.247,0.969-4.195,2.281-5.856,3.938c-1.653,1.657-2.97,3.609-3.934,5.852
c-0.969,2.247-1.451,4.646-1.451,7.199v3.835l-12.74-2.075v-1.033c0-4.282,0.812-8.324,2.435-12.12
c1.622-3.801,3.85-7.115,6.682-9.947c2.828-2.833,6.146-5.056,9.943-6.682c3.796-1.619,7.838-2.434,12.12-2.434h7.459
c4.279,0,8.32,0.815,12.117,2.434c3.8,1.626,7.114,3.85,9.95,6.682c2.828,2.832,5.056,6.146,6.679,9.947
c1.622,3.796,2.434,7.838,2.434,12.12v76.968H946.052z M937.556,292.037h-26.936c-2.557,0-4.956,0.486-7.199,1.451
c-2.246,0.968-4.194,2.296-5.852,3.988c-1.661,1.695-2.97,3.663-3.938,5.905c-0.969,2.247-1.451,4.646-1.451,7.203v4.451
c0,2.556,0.482,4.956,1.451,7.202c0.968,2.243,2.276,4.195,3.938,5.852c1.657,1.657,3.605,2.97,5.852,3.938
c2.243,0.964,4.643,1.447,7.199,1.447h8.496c2.553,0,4.952-0.482,7.199-1.447c2.242-0.968,4.198-2.281,5.852-3.938
c1.661-1.657,2.97-3.609,3.938-5.852c0.968-2.246,1.45-4.646,1.45-7.202V292.037z"/>
<path d="M1014.42,343.42c-3.865,0-7.509-0.724-10.931-2.174c-3.418-1.451-6.388-3.456-8.909-6.009
c-2.519-2.557-4.524-5.526-6.009-8.91c-1.485-3.383-2.224-7.007-2.224-10.876V249.46h-19.063v-12.117h19.063v-25.485l12.74-2.07
v27.555h26.936v12.117h-26.936v66.611c0,2.143,0.398,4.129,1.194,5.955c0.788,1.833,1.879,3.437,3.261,4.818
c1.382,1.381,3.004,2.472,4.868,3.264c1.867,0.792,3.865,1.19,6.009,1.19h11.604v12.121H1014.42z"/>
<path d="M1052.645,211.859V194.87h14.815v16.989H1052.645z M1053.682,343.42V237.344h12.741V343.42H1053.682z"/>
<path d="M1164.578,326.432c-1.623,3.8-3.851,7.115-6.679,9.943c-2.836,2.836-6.15,5.06-9.95,6.682
c-3.797,1.623-7.838,2.434-12.117,2.434h-8.496c-4.282,0-8.32-0.812-12.116-2.434c-3.805-1.623-7.119-3.846-9.947-6.682
c-2.836-2.828-5.063-6.143-6.682-9.943c-1.627-3.796-2.435-7.838-2.435-12.121v-47.858c0-4.282,0.808-8.324,2.435-12.12
c1.619-3.801,3.846-7.115,6.682-9.947c2.828-2.833,6.143-5.056,9.947-6.682c3.796-1.619,7.834-2.434,12.116-2.434h8.496
c4.279,0,8.32,0.815,12.117,2.434c3.8,1.626,7.114,3.85,9.95,6.682c2.828,2.832,5.056,6.146,6.679,9.947
c1.622,3.796,2.434,7.838,2.434,12.12v47.858C1167.011,318.594,1166.2,322.635,1164.578,326.432z M1154.271,265.726
c0-2.553-0.482-4.952-1.45-7.199c-0.969-2.243-2.277-4.194-3.938-5.852c-1.653-1.657-3.608-2.97-5.852-3.938
c-2.246-0.964-4.646-1.45-7.199-1.45h-8.496c-2.557,0-4.956,0.486-7.198,1.45c-2.247,0.969-4.195,2.281-5.852,3.938
c-1.661,1.657-2.971,3.609-3.938,5.852c-0.969,2.247-1.45,4.646-1.45,7.199v49.309c0,2.556,0.481,4.956,1.45,7.202
c0.968,2.243,2.277,4.195,3.938,5.852c1.656,1.657,3.604,2.97,5.852,3.938c2.242,0.964,4.642,1.447,7.198,1.447h8.496
c2.553,0,4.953-0.482,7.199-1.447c2.243-0.968,4.198-2.281,5.852-3.938c1.661-1.657,2.97-3.609,3.938-5.852
c0.968-2.246,1.45-4.646,1.45-7.202V265.726z"/>
<path d="M1250.612,343.42v-77.695c0-2.553-0.486-4.952-1.451-7.199c-0.968-2.243-2.28-4.194-3.934-5.852
c-1.661-1.657-3.613-2.97-5.856-3.938c-2.242-0.964-4.646-1.45-7.198-1.45h-8.492c-2.557,0-4.96,0.486-7.203,1.45
c-2.242,0.969-4.194,2.281-5.855,3.938c-1.653,1.657-2.97,3.609-3.935,5.852c-0.968,2.247-1.45,4.646-1.45,7.199v77.695h-12.74
V237.344h4.248l6.938,10.773c2.901-3.938,6.541-7.061,10.931-9.376c4.382-2.312,9.166-3.471,14.348-3.471h3.211
c4.282,0,8.32,0.815,12.12,2.434c3.797,1.626,7.111,3.85,9.943,6.682c2.832,2.832,5.06,6.146,6.682,9.947
c1.623,3.796,2.435,7.838,2.435,12.12v76.968H1250.612z"/>
<path d="M562.757,496.128c0,4.278-0.865,8.198-2.587,11.757c-1.73,3.56-4.076,6.613-7.046,9.17s-6.406,4.539-10.307,5.955
c-3.903,1.416-7.995,2.12-12.277,2.12h-8.492c-4.283,0-8.377-0.812-12.277-2.434c-3.904-1.623-7.321-3.843-10.257-6.683
c-2.936-2.824-5.281-6.139-7.042-9.943c-1.76-3.796-2.641-7.838-2.641-12.116v-4.248l12.74-2.074v7.042
c0,2.557,0.532,4.96,1.604,7.202c1.071,2.243,2.503,4.194,4.301,5.855c1.795,1.653,3.866,2.97,6.216,3.935
c2.346,0.965,4.799,1.447,7.355,1.447h8.492c2.557,0,5.006-0.376,7.356-1.134c2.346-0.765,4.436-1.852,6.269-3.268
c1.829-1.416,3.28-3.123,4.351-5.129c1.068-1.997,1.604-4.278,1.604-6.835c0-3.797-0.827-6.904-2.488-9.323
c-1.657-2.419-3.85-4.439-6.575-6.062c-2.729-1.623-5.836-2.963-9.323-4.034c-3.49-1.071-7.065-2.144-10.724-3.215
c-3.663-1.071-7.237-2.296-10.724-3.674c-3.486-1.386-6.594-3.2-9.323-5.442c-2.729-2.242-4.918-5.06-6.575-8.442
c-1.661-3.384-2.488-7.593-2.488-12.638c0-4.278,0.827-8.197,2.488-11.757c1.657-3.56,3.9-6.613,6.732-9.17
s6.127-4.539,9.893-5.955c3.762-1.416,7.785-2.128,12.067-2.128h7.459c4.283,0,8.324,0.819,12.121,2.435
c3.796,1.63,7.115,3.85,9.947,6.682c2.828,2.833,5.056,6.146,6.682,9.951c1.619,3.796,2.434,7.838,2.434,12.116v0.414
l-12.744,2.074v-3.215c0-2.549-0.482-4.953-1.451-7.195s-2.277-4.194-3.934-5.855c-1.657-1.653-3.609-2.97-5.855-3.935
c-2.243-0.964-4.643-1.454-7.199-1.454h-7.459c-2.553,0-4.956,0.383-7.199,1.141c-2.243,0.766-4.195,1.853-5.852,3.261
c-1.657,1.424-2.97,3.13-3.938,5.128c-0.969,2.006-1.451,4.287-1.451,6.843c0,3.659,0.831,6.645,2.488,8.956
c1.657,2.319,3.85,4.271,6.579,5.855c2.725,1.592,5.833,2.916,9.323,3.987c3.487,1.072,7.042,2.174,10.67,3.314
c3.625,1.141,7.18,2.435,10.67,3.889c3.486,1.446,6.594,3.314,9.323,5.588c2.729,2.28,4.922,5.128,6.579,8.55
C561.931,486.859,562.757,491.084,562.757,496.128z"/>
<path d="M625.844,523.064c-3.865,0-7.509-0.728-10.926-2.174c-3.421-1.454-6.392-3.46-8.91-6.009
c-2.522-2.557-4.523-5.526-6.008-8.909c-1.485-3.384-2.228-7.012-2.228-10.877V429.1h-19.059v-12.117h19.059v-25.48l12.74-2.074
v27.555h26.936V429.1h-26.936v66.615c0,2.143,0.398,4.125,1.194,5.955c0.792,1.829,1.879,3.437,3.261,4.814
c1.381,1.385,3.004,2.472,4.868,3.269c1.868,0.788,3.869,1.187,6.008,1.187h11.604v12.124H625.844z"/>
<path d="M727.469,523.064l-7.042-10.57c-2.9,3.804-6.528,6.857-10.876,9.169c-4.352,2.313-9.116,3.468-14.299,3.468h-3.207
c-4.286,0-8.328-0.812-12.124-2.434c-3.801-1.623-7.114-3.843-9.943-6.683c-2.836-2.824-5.063-6.139-6.682-9.943
c-1.627-3.796-2.435-7.838-2.435-12.116v-1.041c0-4.278,0.808-8.32,2.435-12.116c1.618-3.797,3.846-7.111,6.682-9.943
c2.829-2.832,6.143-5.06,9.943-6.682c3.796-1.623,7.838-2.435,12.124-2.435h26.932v-16.372c0-2.549-0.486-4.953-1.45-7.195
c-0.969-2.242-2.281-4.194-3.935-5.855c-1.661-1.653-3.613-2.97-5.855-3.935c-2.242-0.964-4.646-1.454-7.199-1.454h-7.459
c-2.557,0-4.956,0.49-7.202,1.454c-2.243,0.965-4.194,2.281-5.852,3.935c-1.657,1.661-2.97,3.613-3.935,5.855
c-0.969,2.242-1.45,4.646-1.45,7.195v3.834l-12.745-2.074v-1.033c0-4.278,0.812-8.32,2.435-12.116
c1.623-3.805,3.85-7.118,6.683-9.951c2.832-2.832,6.146-5.052,9.946-6.682c3.796-1.615,7.838-2.435,12.12-2.435h7.459
c4.283,0,8.32,0.819,12.121,2.435c3.797,1.63,7.11,3.85,9.942,6.682c2.832,2.833,5.06,6.146,6.683,9.951
c1.623,3.796,2.434,7.838,2.434,12.116v76.972H727.469z M718.977,471.68h-26.932c-2.561,0-4.96,0.482-7.202,1.447
c-2.247,0.972-4.194,2.296-5.855,3.988c-1.657,1.699-2.97,3.666-3.935,5.908c-0.969,2.243-1.45,4.646-1.45,7.203v4.447
c0,2.557,0.481,4.96,1.45,7.202c0.965,2.243,2.277,4.194,3.935,5.855c1.661,1.653,3.608,2.97,5.855,3.935
c2.242,0.965,4.642,1.447,7.202,1.447h8.492c2.553,0,4.957-0.482,7.199-1.447s4.194-2.281,5.855-3.935
c1.653-1.661,2.966-3.612,3.935-5.855c0.964-2.242,1.45-4.646,1.45-7.202V471.68z"/>
<path d="M795.841,523.064c-3.869,0-7.513-0.728-10.927-2.174c-3.421-1.454-6.391-3.46-8.909-6.009
c-2.526-2.557-4.523-5.526-6.009-8.909c-1.485-3.384-2.228-7.012-2.228-10.877V429.1H748.71v-12.117h19.059v-25.48l12.741-2.074
v27.555h26.931V429.1H780.51v66.615c0,2.143,0.394,4.125,1.189,5.955c0.796,1.829,1.883,3.437,3.265,4.814
c1.382,1.385,3.005,2.472,4.868,3.269c1.864,0.788,3.869,1.187,6.009,1.187h11.6v12.124H795.841z"/>
<path d="M834.067,391.502v-16.988h14.814v16.988H834.067z M835.104,523.064V416.983h12.74v106.081H835.104z"/>
<path d="M945.999,506.071c-1.623,3.805-3.85,7.119-6.682,9.943c-2.832,2.84-6.146,5.06-9.943,6.683
c-3.801,1.622-7.838,2.434-12.12,2.434h-8.493c-4.286,0-8.327-0.812-12.124-2.434c-3.796-1.623-7.11-3.843-9.942-6.683
c-2.832-2.824-5.06-6.139-6.683-9.943c-1.623-3.796-2.435-7.838-2.435-12.116v-47.862c0-4.278,0.812-8.32,2.435-12.116
c1.623-3.805,3.851-7.118,6.683-9.951c2.832-2.832,6.146-5.052,9.942-6.682c3.797-1.615,7.838-2.435,12.124-2.435h8.493
c4.282,0,8.319,0.819,12.12,2.435c3.797,1.63,7.111,3.85,9.943,6.682c2.832,2.833,5.059,6.146,6.682,9.951
c1.623,3.796,2.434,7.838,2.434,12.116v47.862C948.432,498.233,947.622,502.275,945.999,506.071z M935.692,445.366
c0-2.549-0.485-4.953-1.45-7.195c-0.968-2.242-2.281-4.194-3.935-5.855c-1.661-1.653-3.612-2.97-5.855-3.935
c-2.242-0.964-4.646-1.454-7.198-1.454h-8.493c-2.557,0-4.96,0.49-7.202,1.454c-2.243,0.965-4.194,2.281-5.855,3.935
c-1.653,1.661-2.97,3.613-3.935,5.855c-0.968,2.242-1.45,4.646-1.45,7.195v49.309c0,2.557,0.482,4.96,1.45,7.202
c0.965,2.243,2.281,4.194,3.935,5.855c1.661,1.653,3.612,2.97,5.855,3.935c2.242,0.965,4.646,1.447,7.202,1.447h8.493
c2.553,0,4.956-0.482,7.198-1.447c2.243-0.965,4.194-2.281,5.855-3.935c1.653-1.661,2.967-3.612,3.935-5.855
c0.965-2.242,1.45-4.646,1.45-7.202V445.366z"/>
<path d="M1032.033,523.064v-77.698c0-2.549-0.482-4.953-1.45-7.195c-0.969-2.242-2.277-4.194-3.938-5.855
c-1.653-1.653-3.609-2.97-5.852-3.935c-2.247-0.964-4.646-1.454-7.199-1.454h-8.496c-2.557,0-4.956,0.49-7.199,1.454
c-2.246,0.965-4.194,2.281-5.852,3.935c-1.661,1.661-2.97,3.613-3.938,5.855c-0.969,2.242-1.451,4.646-1.451,7.195v77.698h-12.74
V416.983h4.244l6.942,10.777c2.901-3.941,6.545-7.064,10.931-9.376s9.17-3.476,14.344-3.476h3.215
c4.278,0,8.32,0.819,12.117,2.435c3.8,1.63,7.114,3.85,9.95,6.682c2.828,2.833,5.056,6.146,6.679,9.951
c1.622,3.796,2.434,7.838,2.434,12.116v76.972H1032.033z"/>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 17 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.8 KiB

View file

@ -20,7 +20,7 @@ BEGIN
BLOCK "040904E4"
BEGIN
VALUE "Comments", "\0"
VALUE "FileDescription", "EmulationStation multi-emulator frontend\0"
VALUE "FileDescription", "EmulationStation - emulator frontend\0"
VALUE "FileVersion", RESOURCE_VERSION_STRING
VALUE "InternalName", "emulationstation.exe\0"
VALUE "LegalCopyright", "\0"
@ -36,4 +36,4 @@ BEGIN
END
END
IDI_ES_LOGO ICON DISCARDABLE "../data/logo/ES_logo.ico"
IDI_ES_LOGO ICON DISCARDABLE "../data/es_icon.ico"

View file

@ -76,3 +76,18 @@ std::vector<unsigned char> ImageIO::loadFromMemoryRGBA32(const unsigned char * d
}
return rawData;
}
void ImageIO::flipPixelsVert(unsigned char* imagePx, const size_t& width, const size_t& height)
{
unsigned int temp;
unsigned int* arr = (unsigned int*)imagePx;
for(size_t y = 0; y < height / 2; y++)
{
for(size_t x = 0; x < width; x++)
{
temp = arr[x + (y * width)];
arr[x + (y * width)] = arr[x + (height * width) - ((y + 1) * width)];
arr[x + (height * width) - ((y + 1) * width)] = temp;
}
}
}

View file

@ -8,4 +8,5 @@ class ImageIO
{
public:
static std::vector<unsigned char> loadFromMemoryRGBA32(const unsigned char * data, const size_t size, size_t & width, size_t & height);
static void flipPixelsVert(unsigned char* imagePx, const size_t& width, const size_t& height);
};

View file

@ -75,9 +75,11 @@ namespace Renderer
//set an icon for the window
size_t width = 0;
size_t height = 0;
std::vector<unsigned char> rawData = ImageIO::loadFromMemoryRGBA32(ES_logo_32_png_data, ES_logo_32_png_size, width, height);
std::vector<unsigned char> rawData = ImageIO::loadFromMemoryRGBA32(window_icon_256_png_data, window_icon_256_png_size, width, height);
if (!rawData.empty())
{
ImageIO::flipPixelsVert(rawData.data(), width, height);
//SDL interprets each pixel as a 32-bit number, so our masks must depend on the endianness (byte order) of the machine
#if SDL_BYTEORDER == SDL_BIG_ENDIAN
Uint32 rmask = 0xff000000; Uint32 gmask = 0x00ff0000; Uint32 bmask = 0x0000ff00; Uint32 amask = 0x000000ff;

View file

@ -232,11 +232,18 @@ void Window::renderLoadingScreen()
{
Eigen::Affine3f trans = Eigen::Affine3f::Identity();
Renderer::setMatrix(trans);
Renderer::drawRect(0, 0, Renderer::getScreenWidth(), Renderer::getScreenHeight(), 0x000000FF);
Renderer::drawRect(0, 0, Renderer::getScreenWidth(), Renderer::getScreenHeight(), 0xFFFFFFFF);
auto& font = mDefaultFonts.at(2);
TextCache* cache = font->buildTextCache("LOADING", 0, 0, 0xFFFFFFFF);
trans.translation() = Eigen::Vector3f((Renderer::getScreenWidth() - cache->metrics.size.x())/2, (Renderer::getScreenHeight() - cache->metrics.size.y())/2, 0);
ImageComponent splash(this);
splash.setResize(Renderer::getScreenWidth() * 0.6f, 0.0f);
splash.setImage(":/splash.svg");
splash.setPosition((Renderer::getScreenWidth() - splash.getSize().x()) / 2, (Renderer::getScreenHeight() - splash.getSize().y()) / 2 * 0.6f);
splash.render(trans);
auto& font = mDefaultFonts.at(1);
TextCache* cache = font->buildTextCache("LOADING...", 0, 0, 0x656565FF);
trans = trans.translate(Eigen::Vector3f(round((Renderer::getScreenWidth() - cache->metrics.size.x()) / 2.0f),
round(Renderer::getScreenHeight() * 0.835f), 0.0f));
Renderer::setMatrix(trans);
font->renderTextCache(cache);
delete cache;

View file

@ -3,6 +3,7 @@
#include "../nanosvg/nanosvgrast.h"
#include "../Log.h"
#include "../Util.h"
#include "../ImageIO.h"
#define DPI 96
@ -77,18 +78,7 @@ void SVGResource::rasterizeAt(size_t width, size_t height)
nsvgRasterize(rast, mSVGImage, 0, 0, height / mSVGImage->height, imagePx, width, height, width * 4);
nsvgDeleteRasterizer(rast);
// flip the pixels
unsigned int temp;
unsigned int* arr = (unsigned int*)imagePx;
for(size_t y = 0; y < height / 2; y++)
{
for(size_t x = 0; x < width; x++)
{
temp = arr[x + (y * width)];
arr[x + (y * width)] = arr[x + (height * width) - ((y + 1) * width)];
arr[x + (height * width) - ((y + 1) * width)] = temp;
}
}
ImageIO::flipPixelsVert(imagePx, width, height);
initFromPixels(imagePx, width, height);
free(imagePx);