Merge branch 'unstable'

This commit is contained in:
Aloshi 2014-10-25 21:18:12 -05:00
commit d89ab913ab
330 changed files with 75558 additions and 9060 deletions

View file

@ -0,0 +1,163 @@
# Locate SDL2 library
# This module defines
# SDL2_LIBRARY, the name of the library to link against
# SDL2_FOUND, if false, do not try to link to SDL2
# SDL2_INCLUDE_DIR, where to find SDL.h
#
# This module responds to the the flag:
# SDL2_BUILDING_LIBRARY
# If this is defined, then no SDL2main will be linked in because
# only applications need main().
# Otherwise, it is assumed you are building an application and this
# module will attempt to locate and set the the proper link flags
# as part of the returned SDL2_LIBRARY variable.
#
# Don't forget to include SDLmain.h and SDLmain.m your project for the
# OS X framework based version. (Other versions link to -lSDL2main which
# this module will try to find on your behalf.) Also for OS X, this
# module will automatically add the -framework Cocoa on your behalf.
#
#
# Additional Note: If you see an empty SDL2_LIBRARY_TEMP in your configuration
# and no SDL2_LIBRARY, it means CMake did not find your SDL2 library
# (SDL2.dll, libsdl2.so, SDL2.framework, etc).
# Set SDL2_LIBRARY_TEMP to point to your SDL2 library, and configure again.
# Similarly, if you see an empty SDL2MAIN_LIBRARY, you should set this value
# as appropriate. These values are used to generate the final SDL2_LIBRARY
# variable, but when these values are unset, SDL2_LIBRARY does not get created.
#
#
# $SDL2DIR is an environment variable that would
# correspond to the ./configure --prefix=$SDL2DIR
# used in building SDL2.
# l.e.galup 9-20-02
#
# Modified by Eric Wing.
# Added code to assist with automated building by using environmental variables
# and providing a more controlled/consistent search behavior.
# Added new modifications to recognize OS X frameworks and
# additional Unix paths (FreeBSD, etc).
# Also corrected the header search path to follow "proper" SDL guidelines.
# Added a search for SDL2main which is needed by some platforms.
# Added a search for threads which is needed by some platforms.
# Added needed compile switches for MinGW.
#
# On OSX, this will prefer the Framework version (if found) over others.
# People will have to manually change the cache values of
# SDL2_LIBRARY to override this selection or set the CMake environment
# CMAKE_INCLUDE_PATH to modify the search paths.
#
# Note that the header path has changed from SDL2/SDL.h to just SDL.h
# This needed to change because "proper" SDL convention
# is #include "SDL.h", not <SDL2/SDL.h>. This is done for portability
# reasons because not all systems place things in SDL2/ (see FreeBSD).
#=============================================================================
# Copyright 2003-2009 Kitware, Inc.
#
# Distributed under the OSI-approved BSD License (the "License");
# see accompanying file Copyright.txt for details.
#
# This software is distributed WITHOUT ANY WARRANTY; without even the
# implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
# See the License for more information.
#=============================================================================
# (To distribute this file outside of CMake, substitute the full
# License text for the above reference.)
SET(SDL2_SEARCH_PATHS
~/Library/Frameworks
/Library/Frameworks
/usr/local
/usr
/sw # Fink
/opt/local # DarwinPorts
/opt/csw # Blastwave
/opt
)
FIND_PATH(SDL2_INCLUDE_DIR SDL.h
HINTS
$ENV{SDL2DIR}
PATH_SUFFIXES include/SDL2 include
PATHS ${SDL2_SEARCH_PATHS}
)
FIND_LIBRARY(SDL2_LIBRARY_TEMP
NAMES SDL2
HINTS
$ENV{SDL2DIR}
PATH_SUFFIXES lib64 lib
PATHS ${SDL2_SEARCH_PATHS}
)
IF(NOT SDL2_BUILDING_LIBRARY)
IF(NOT ${SDL2_INCLUDE_DIR} MATCHES ".framework")
# Non-OS X framework versions expect you to also dynamically link to
# SDL2main. This is mainly for Windows and OS X. Other (Unix) platforms
# seem to provide SDL2main for compatibility even though they don't
# necessarily need it.
FIND_LIBRARY(SDL2MAIN_LIBRARY
NAMES SDL2main
HINTS
$ENV{SDL2DIR}
PATH_SUFFIXES lib64 lib
PATHS ${SDL2_SEARCH_PATHS}
)
ENDIF(NOT ${SDL2_INCLUDE_DIR} MATCHES ".framework")
ENDIF(NOT SDL2_BUILDING_LIBRARY)
# SDL2 may require threads on your system.
# The Apple build may not need an explicit flag because one of the
# frameworks may already provide it.
# But for non-OSX systems, I will use the CMake Threads package.
IF(NOT APPLE)
FIND_PACKAGE(Threads)
ENDIF(NOT APPLE)
# MinGW needs an additional library, mwindows
# It's total link flags should look like -lmingw32 -lSDL2main -lSDL2 -lmwindows
# (Actually on second look, I think it only needs one of the m* libraries.)
IF(MINGW)
SET(MINGW32_LIBRARY mingw32 CACHE STRING "mwindows for MinGW")
ENDIF(MINGW)
IF(SDL2_LIBRARY_TEMP)
# For SDL2main
IF(NOT SDL2_BUILDING_LIBRARY)
IF(SDL2MAIN_LIBRARY)
SET(SDL2_LIBRARY_TEMP ${SDL2MAIN_LIBRARY} ${SDL2_LIBRARY_TEMP})
ENDIF(SDL2MAIN_LIBRARY)
ENDIF(NOT SDL2_BUILDING_LIBRARY)
# For OS X, SDL2 uses Cocoa as a backend so it must link to Cocoa.
# CMake doesn't display the -framework Cocoa string in the UI even
# though it actually is there if I modify a pre-used variable.
# I think it has something to do with the CACHE STRING.
# So I use a temporary variable until the end so I can set the
# "real" variable in one-shot.
IF(APPLE)
SET(SDL2_LIBRARY_TEMP ${SDL2_LIBRARY_TEMP} "-framework Cocoa")
ENDIF(APPLE)
# For threads, as mentioned Apple doesn't need this.
# In fact, there seems to be a problem if I used the Threads package
# and try using this line, so I'm just skipping it entirely for OS X.
IF(NOT APPLE)
SET(SDL2_LIBRARY_TEMP ${SDL2_LIBRARY_TEMP} ${CMAKE_THREAD_LIBS_INIT})
ENDIF(NOT APPLE)
# For MinGW library
IF(MINGW)
SET(SDL2_LIBRARY_TEMP ${MINGW32_LIBRARY} ${SDL2_LIBRARY_TEMP})
ENDIF(MINGW)
# Set the final string here so the GUI reflects the final state.
SET(SDL2_LIBRARY ${SDL2_LIBRARY_TEMP} CACHE STRING "Where the SDL2 Library can be found")
# Set the temp variable to INTERNAL so it is not seen in the CMake GUI
SET(SDL2_LIBRARY_TEMP "${SDL2_LIBRARY_TEMP}" CACHE INTERNAL "")
ENDIF(SDL2_LIBRARY_TEMP)
INCLUDE(FindPackageHandleStandardArgs)
FIND_PACKAGE_HANDLE_STANDARD_ARGS(SDL2 REQUIRED_VARS SDL2_LIBRARY SDL2_INCLUDE_DIR)

View file

@ -1,6 +1,6 @@
cmake_minimum_required(VERSION 2.6)
cmake_minimum_required(VERSION 2.8)
project(emulationstation)
project(emulationstation-all)
#-------------------------------------------------------------------------------
#add local find scripts to CMAKE path
@ -34,9 +34,10 @@ else()
endif()
find_package(Freetype REQUIRED)
find_package(FreeImage REQUIRED)
find_package(SDL REQUIRED)
find_package(Boost REQUIRED COMPONENTS system filesystem)
find_package(SDL2 REQUIRED)
find_package(Boost REQUIRED COMPONENTS system filesystem date_time)
find_package(Eigen3 REQUIRED)
find_package(CURL REQUIRED)
#add ALSA for Linux
if(${CMAKE_SYSTEM_NAME} MATCHES "Linux")
@ -49,6 +50,8 @@ if(DEFINED BCMHOST)
add_definitions(-D_RPI_)
endif()
#-------------------------------------------------------------------------------
if(MSVC)
set(CMAKE_DEBUG_POSTFIX "d")
add_definitions(-D_CRT_SECURE_NO_DEPRECATE)
@ -63,9 +66,10 @@ if(CMAKE_COMPILER_IS_GNUCXX)
if (G++_VERSION VERSION_LESS 4.7)
message(SEND_ERROR "You need at least G++ 4.7 to compile EmulationStation!")
endif()
#set up compiler flags for GCC
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -std=c++11 -O2") #support C++11 for std::, optimize
set(CMAKE_EXE_LINKER_FLAGS "${CMAKE_EXE_LINKER_FLAGS} -s") #strip binary
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -std=c++11 -Wno-attributes -O3") #support C++11 for std::, optimize
set(CMAKE_EXE_LINKER_FLAGS "${CMAKE_EXE_LINKER_FLAGS} -O3") #-s = strip binary
endif()
if(${GLSystem} MATCHES "Desktop OpenGL")
@ -78,23 +82,26 @@ add_definitions(-DEIGEN_DONT_ALIGN)
#-------------------------------------------------------------------------------
#add include directories
set(ES_INCLUDE_DIRS
set(COMMON_INCLUDE_DIRS
${FREETYPE_INCLUDE_DIRS}
${FreeImage_INCLUDE_DIRS}
${SDL_INCLUDE_DIR}
${SDL2_INCLUDE_DIR}
${Boost_INCLUDE_DIRS}
${EIGEN3_INCLUDE_DIR}
${CURL_INCLUDE_DIR}
${CMAKE_CURRENT_SOURCE_DIR}/external
${CMAKE_CURRENT_SOURCE_DIR}/es-core/src
)
#add ALSA for Linux
if(${CMAKE_SYSTEM_NAME} MATCHES "Linux")
LIST(APPEND ES_INCLUDE_DIRS
LIST(APPEND COMMON_INCLUDE_DIRS
${ALSA_INCLUDE_DIRS}
)
endif()
if(DEFINED BCMHOST)
LIST(APPEND ES_INCLUDE_DIRS
LIST(APPEND COMMON_INCLUDE_DIRS
"/opt/vc/include"
"/opt/vc/include/interface/vcos"
"/opt/vc/include/interface/vmcs_host/linux"
@ -102,129 +109,16 @@ if(DEFINED BCMHOST)
)
else()
if(${GLSystem} MATCHES "Desktop OpenGL")
LIST(APPEND ES_INCLUDE_DIRS
LIST(APPEND COMMON_INCLUDE_DIRS
${OPENGL_INCLUDE_DIR}
)
else()
LIST(APPEND ES_INCLUDE_DIRS
LIST(APPEND COMMON_INCLUDE_DIRS
${OPENGLES_INCLUDE_DIR}
)
endif()
endif()
#-------------------------------------------------------------------------------
#define basic sources and headers
set(ES_HEADERS
${CMAKE_CURRENT_SOURCE_DIR}/src/AudioManager.h
${CMAKE_CURRENT_SOURCE_DIR}/src/EmulationStation.h
${CMAKE_CURRENT_SOURCE_DIR}/src/FileData.h
${CMAKE_CURRENT_SOURCE_DIR}/src/FolderData.h
${CMAKE_CURRENT_SOURCE_DIR}/src/Font.h
${CMAKE_CURRENT_SOURCE_DIR}/src/GameData.h
${CMAKE_CURRENT_SOURCE_DIR}/src/GuiComponent.h
${CMAKE_CURRENT_SOURCE_DIR}/src/ImageIO.h
${CMAKE_CURRENT_SOURCE_DIR}/src/InputConfig.h
${CMAKE_CURRENT_SOURCE_DIR}/src/InputManager.h
${CMAKE_CURRENT_SOURCE_DIR}/src/Log.h
${CMAKE_CURRENT_SOURCE_DIR}/src/MathExp.h
${CMAKE_CURRENT_SOURCE_DIR}/src/platform.h
${CMAKE_CURRENT_SOURCE_DIR}/src/Renderer.h
${CMAKE_CURRENT_SOURCE_DIR}/src/Settings.h
${CMAKE_CURRENT_SOURCE_DIR}/src/Sound.h
${CMAKE_CURRENT_SOURCE_DIR}/src/SystemData.h
${CMAKE_CURRENT_SOURCE_DIR}/src/VolumeControl.h
${CMAKE_CURRENT_SOURCE_DIR}/src/Window.h
${CMAKE_CURRENT_SOURCE_DIR}/src/XMLReader.h
${CMAKE_CURRENT_SOURCE_DIR}/src/components/AnimationComponent.h
${CMAKE_CURRENT_SOURCE_DIR}/src/components/ComponentListComponent.h
${CMAKE_CURRENT_SOURCE_DIR}/src/components/ImageComponent.h
${CMAKE_CURRENT_SOURCE_DIR}/src/components/ScrollableContainer.h
${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/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/GuiGameList.h
${CMAKE_CURRENT_SOURCE_DIR}/src/components/GuiInputConfig.h
${CMAKE_CURRENT_SOURCE_DIR}/src/components/GuiMenu.h
${CMAKE_CURRENT_SOURCE_DIR}/src/components/GuiSettingsMenu.h
${CMAKE_CURRENT_SOURCE_DIR}/src/pugiXML/pugiconfig.hpp
${CMAKE_CURRENT_SOURCE_DIR}/src/pugiXML/pugixml.hpp
${CMAKE_CURRENT_SOURCE_DIR}/src/resources/ResourceManager.h
${CMAKE_CURRENT_SOURCE_DIR}/src/resources/TextureResource.h
${CMAKE_CURRENT_SOURCE_DIR}/data/Resources.h
)
set(ES_SOURCES
${CMAKE_CURRENT_SOURCE_DIR}/src/AudioManager.cpp
${CMAKE_CURRENT_SOURCE_DIR}/src/FolderData.cpp
${CMAKE_CURRENT_SOURCE_DIR}/src/Font.cpp
${CMAKE_CURRENT_SOURCE_DIR}/src/GameData.cpp
${CMAKE_CURRENT_SOURCE_DIR}/src/GuiComponent.cpp
${CMAKE_CURRENT_SOURCE_DIR}/src/ImageIO.cpp
${CMAKE_CURRENT_SOURCE_DIR}/src/InputConfig.cpp
${CMAKE_CURRENT_SOURCE_DIR}/src/InputManager.cpp
${CMAKE_CURRENT_SOURCE_DIR}/src/Log.cpp
${CMAKE_CURRENT_SOURCE_DIR}/src/main.cpp
${CMAKE_CURRENT_SOURCE_DIR}/src/MathExp.cpp
${CMAKE_CURRENT_SOURCE_DIR}/src/platform.cpp
${CMAKE_CURRENT_SOURCE_DIR}/src/Renderer_draw_gl.cpp
${CMAKE_CURRENT_SOURCE_DIR}/src/Renderer_init.cpp
${CMAKE_CURRENT_SOURCE_DIR}/src/Settings.cpp
${CMAKE_CURRENT_SOURCE_DIR}/src/Sound.cpp
${CMAKE_CURRENT_SOURCE_DIR}/src/SystemData.cpp
${CMAKE_CURRENT_SOURCE_DIR}/src/VolumeControl.cpp
${CMAKE_CURRENT_SOURCE_DIR}/src/Window.cpp
${CMAKE_CURRENT_SOURCE_DIR}/src/XMLReader.cpp
${CMAKE_CURRENT_SOURCE_DIR}/src/components/AnimationComponent.cpp
${CMAKE_CURRENT_SOURCE_DIR}/src/components/ComponentListComponent.cpp
${CMAKE_CURRENT_SOURCE_DIR}/src/components/ImageComponent.cpp
${CMAKE_CURRENT_SOURCE_DIR}/src/components/ScrollableContainer.cpp
${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/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/GuiGameList.cpp
${CMAKE_CURRENT_SOURCE_DIR}/src/components/GuiInputConfig.cpp
${CMAKE_CURRENT_SOURCE_DIR}/src/components/GuiMenu.cpp
${CMAKE_CURRENT_SOURCE_DIR}/src/components/GuiSettingsMenu.cpp
${CMAKE_CURRENT_SOURCE_DIR}/src/pugiXML/pugixml.cpp
${CMAKE_CURRENT_SOURCE_DIR}/src/resources/ResourceManager.cpp
${CMAKE_CURRENT_SOURCE_DIR}/src/resources/TextureResource.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/bar_png.cpp
${CMAKE_CURRENT_SOURCE_DIR}/data/converted/corner_png.cpp
)
SOURCE_GROUP(resources FILES ResourceUtil.cpp)
#add open gl specific sources
if(${GLSystem} MATCHES "Desktop OpenGL")
LIST(APPEND ES_SOURCES
${CMAKE_CURRENT_SOURCE_DIR}/src/Renderer_init_sdlgl.cpp
)
else()
LIST(APPEND ES_SOURCES
${CMAKE_CURRENT_SOURCE_DIR}/src/Renderer_init_rpi.cpp
)
endif()
#-------------------------------------------------------------------------------
#define OS specific sources and headers
if(MSVC)
LIST(APPEND ES_SOURCES
${CMAKE_CURRENT_SOURCE_DIR}/src/EmulationStation.rc
)
endif()
#-------------------------------------------------------------------------------
#define libraries and directories
if(DEFINED BCMHOST)
@ -238,64 +132,56 @@ else()
)
endif()
set(ES_LIBRARIES
set(COMMON_LIBRARIES
${Boost_LIBRARIES}
${FREETYPE_LIBRARIES}
${FreeImage_LIBRARIES}
${SDL_LIBRARY}
${SDLMAIN_LIBRARY}
${SDL2_LIBRARY}
${CURL_LIBRARIES}
pugixml
nanosvg
)
#add ALSA for Linux
if(${CMAKE_SYSTEM_NAME} MATCHES "Linux")
LIST(APPEND ES_LIBRARIES
LIST(APPEND COMMON_LIBRARIES
${ALSA_LIBRARY}
)
endif()
if(DEFINED BCMHOST)
LIST(APPEND ES_LIBRARIES
LIST(APPEND COMMON_LIBRARIES
bcm_host
EGL
${OPENGLES_LIBRARIES}
)
else()
if(MSVC)
LIST(APPEND ES_LIBRARIES
LIST(APPEND COMMON_LIBRARIES
winmm
)
endif()
if(${GLSystem} MATCHES "Desktop OpenGL")
LIST(APPEND ES_LIBRARIES
LIST(APPEND COMMON_LIBRARIES
${OPENGL_LIBRARIES}
)
else()
LIST(APPEND ES_LIBRARIES
LIST(APPEND COMMON_LIBRARIES
${OPENGLES_LIBRARIES}
)
endif()
endif()
#-------------------------------------------------------------------------------
#set up build directories
# set up build directories
set(dir ${CMAKE_CURRENT_SOURCE_DIR})
set(EXECUTABLE_OUTPUT_PATH ${dir} CACHE PATH "Build directory" FORCE)
set(LIBRARY_OUTPUT_PATH ${dir} CACHE PATH "Build directory" FORCE)
#-------------------------------------------------------------------------------
#define target
include_directories(${ES_INCLUDE_DIRS})
add_executable(emulationstation ${ES_SOURCES} ${ES_HEADERS})
target_link_libraries(emulationstation ${ES_LIBRARIES})
#special properties for windows builds
if(MSVC)
#show console in debug builds, but not in proper release builds
#Note that up to CMake 2.8.10 this feature is broken: http://public.kitware.com/Bug/view.php?id=12566
set_target_properties(emulationstation PROPERTIES LINK_FLAGS_DEBUG "/SUBSYSTEM:CONSOLE")
set_target_properties(emulationstation PROPERTIES COMPILE_DEFINITIONS_DEBUG "_CONSOLE")
set_target_properties(emulationstation PROPERTIES LINK_FLAGS_RELWITHDEBINFO "/SUBSYSTEM:CONSOLE")
set_target_properties(emulationstation PROPERTIES COMPILE_DEFINITIONS_RELWITHDEBINFO "_CONSOLE")
set_target_properties(emulationstation PROPERTIES LINK_FLAGS_RELEASE "/SUBSYSTEM:WINDOWS")
set_target_properties(emulationstation PROPERTIES LINK_FLAGS_MINSIZEREL "/SUBSYSTEM:WINDOWS")
endif()
#-------------------------------------------------------------------------------
# add each component
add_subdirectory("external")
add_subdirectory("es-core")
add_subdirectory("es-app")

View file

@ -1,14 +1,17 @@
Programming
Alec "Aloshi" Lofquist - http://www.aloshi.com
UI Art & Design
Nils Bonenberger
Resources
Libraries
=========
PugiXML
http://pugixml.org/
SDL 1.2
SDL 2
http://www.libsdl.org/
FreeImage
@ -16,3 +19,18 @@ FreeImage
FreeType
http://www.freetype.org
cURL
http://curl.haxx.se/
Boost
http://www.boost.org/
nanosvg
https://github.com/memononen/nanosvg
Resources
=========
Open Sans font
http://www.google.com/fonts/specimen/Open+Sans

45
DEVNOTES.md Normal file
View file

@ -0,0 +1,45 @@
Also known as "Really Bad Technical Documentation"
These are mostly notes I create as I go along, marking potential gotchas for people who might try to extend my code.
Some day I'll try and add an overview of the code structure, what each class does, etc.
Development Environment
=======================
I personally launch ES in windowed mode with a smaller resolution than my monitor and with debug text enabled.
`emulationstation --windowed --debug --resolution 1280 720`
Creating a new GuiComponent
===========================
You probably want to override:
`bool input(InputConfig* config, Input input);`
Check if some input is mapped to some action with `config->isMappedTo("a", input);`.
Check if an input is "pressed" with `input.value != 0` (input.value *can* be negative in the case of axes).
`void update(int deltaTime);`
`deltaTime` is in milliseconds.
`void render(const Eigen::Affine3f& parentTrans);`
You probably want to do `Eigen::Affine3f trans = parentTrans * getTransform();` to get your final "modelview" matrix.
Apply the modelview matrix with `Renderer::setMatrix(const Eigen::Affine3f&)`.
Render any children the component may have with `renderChildren(parentTrans);`.
Creating a new GameListView Class
=================================
1. Don't allow the user to navigate to the root node's parent. If you use a stack of some sort to keep track of past cursor states this will be a natural side effect.
Creating a new Component
========================
If your component is not made up of other components, and you draw something to the screen with OpenGL, make sure:
* Your vertex positions are rounded before you render (you can use round(float) in Util.h to do this).
* Your transform matrix's translation is rounded (you can use roundMatrix(affine3f) in Util.h to do this).

87
GAMELISTS.md Normal file
View file

@ -0,0 +1,87 @@
Gamelists
=========
The gamelist.xml file for a system defines metadata for a system's games, such as a name, image (like a screenshot or box art), description, release date, and rating.
ES will check three places for a gamelist.xml in the following order, using the first one it finds:
* `[SYSTEM_PATH]/gamelist.xml`
* `~/.emulationstation/gamelists/[SYSTEM_NAME]/gamelist.xml`
* `/etc/emulationstation/gamelists/[SYSTEM_NAME]/gamelist.xml`
An example gamelist.xml:
```xml
<gameList>
<game>
<path>/home/pi/ROMs/nes/mm2.nes</path>
<name>Mega Man 2</name>
<desc>Mega Man 2 is a classic NES game which follows Mega Man as he murders eight robot masters in cold blood.</desc>
<image>~/.emulationstation/downloaded_images/nes/Mega Man 2-image.png</image>
</game>
</gameList>
```
Everything is enclosed in a `<gameList>` tag. The information for each game or folder is enclosed in a corresponding tag (`<game>` or `<folder>`). Each piece of metadata is encoded as a string.
Reference
=========
(if you suspect this section is out of date, check out `src/MetaData.cpp`)
There are a few types of metadata:
* `string` - just text.
* `image_path` - a path to an image. This path should be either the absolute to the image, a path relative to the system games folder that starts with "./" (e.g. `./mm2_image.png`), or a path relative to the home directory that starts with "~/" (e.g. `~/.emulationstation/downloaded_images/nes/mm2-image.png`). Images will be automatically resized by OpenGL to fit the corresponding `<image>` tag in the current theme. Smaller images will load faster, so try to keep resolution low!
* `float` - a floating-point decimal value (written as a string).
* `integer` - an integer value (written as a string).
* `datetime` - a date and, potentially, a time. These are encoded as an ISO string, in the following format: "%Y%m%dT%H%M%S%F%q". For example, the release date for Chrono Trigger is encoded as "19950311T000000" (no time specified).
Some metadata is also marked as "statistic" - these are kept track of by ES and do not show up in the metadata editor. They are shown in certain views (for example, the detailed view shows both `playcount` and `lastplayed`).
#### `<game>`
* `name` - string, the displayed name for the game.
* `desc` - string, a description of the game. Longer descriptions will automatically scroll, so don't worry about size.
* `image` - image_path, the path to an image to display for the game (like box art or a screenshot).
* `thumbnail` - image_path, the path to a smaller image, displayed in image lists like the grid view. Should be small to ensure quick loading. *Currently not used.*
* `rating` - float, the rating for the game, expressed as a floating point number between 0 and 1. Arbitrary values are fine (ES can display half-stars, quarter-stars, etc).
* `releasedate` - datetime, the date the game was released. Displayed as date only, time is ignored.
* `developer` - string, the developer for the game.
* `publisher` - string, the publisher for the game.
* `genre` - string, the (primary) genre for the game.
* `players` - integer, the number of players the game supports.
* `playcount` - statistic, integer, the number of times this game has been played
* `lastplayed` - statistic, datetime, the last date and time this game was played.
#### `<folder>`
* `name` - string, the displayed name for the folder.
* `desc` - string, the description for the folder.
* `image` - image_path, the path to an image to display for the folder.
* `thumbnail` - image_path, the path to a smaller image to display for the folder. *Currently not used.*
Things to be Aware Of
=====================
* You can use ES's built-in [scraping](http://en.wikipedia.org/wiki/Web_scraping) tools to avoid creating a gamelist.xml by hand, as described in README.md.
* ES will try to write any image paths as relative to the current system games path or relative to the current home directory if it can. This is done to try and keep installations portable (so you can copy them between computers).
* One thing to be aware of: the EmulationStation text rendering code doesn't currently support Unicode. If I fix this in the future, it will probably use UTF-8. For now, you'll just have to convert names and descriptions to ASCII. Sorry!
* If a value matches the default for a particular piece of metadata, ES will not write it to the gamelist.xml (for example, if `genre` isn't specified, ES won't write an empty genre tag; if `players` is 1, ES won't write a `players` tag).
* A `game` can actually point to a folder/directory if the the folder has a matching extension.
* `folder` metadata will only be used if a game is found inside of that folder.
* ES will keep entries for games and folders that it can't find the files for.
* The switch `--gamelist-only` can be used to skip automatic searching, and only display games defined in the system's gamelist.xml.
* The switch `--ignore-gamelist` can be used to ignore the gamelist and force ES to use the non-detailed view.
* If at least one game in a system has an image specified, ES will use the detailed view for that system (which displays metadata alongside the game list).
* If you want to write your own scraper, the built-in scraping system is actually pretty extendable if you can get past the ugly function declarations and your instinctual fear of C++. Check out `src/scrapers/GamesDBScraper.cpp` for an example (it's less than a hundred lines of actual code). An offline scraper is also possible (though you'll have to subclass `ScraperRequest`). I hope to write a more complete guide on how to do this in the future.

View file

@ -1,4 +1,4 @@
Copyright (c) 2013 Alec Lofquist
Copyright (c) 2014 Alec Lofquist
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal

190
README.md
View file

@ -3,168 +3,214 @@ EmulationStation
A cross-platform graphical front-end for emulators with controller navigation.
Project website: http://emulationstation.org
**Raspberry Pi users:**
A cool guy named petrockblog made a script which automatically installs many emulators and ES. It also includes options for configuring your RPi and setting it up to boot directly into ES. You can find it here: https://github.com/petrockblog/RetroPie-Setup
Download
========
Download a pre-compiled version at [emulationstation.org](http://emulationstation.org#download).
I found a bug! I have a problem!
================================
- First, try to check the [issue list](https://github.com/Aloshi/EmulationStation/issues?state=open) for some entries that might match your problem. Make sure to check closed issues too!
- If you're running EmulationStation on a on Raspberry Pi and have problems with config file changes not taking effect, content missing after editing, etc., check if your SD card is corrupted (see issues [#78](https://github.com/Aloshi/EmulationStation/issues/78) and [#107](https://github.com/Aloshi/EmulationStation/issues/107)). You can do this with free tools like [h2testw](http://www.heise.de/download/h2testw.html) or [F3](http://oss.digirati.com.br/f3/).
- Try to update to the latest version of EmulationStation using git (you might need to delete your `es_input.cfg` and `es_settings.cfg` after that to reset them to default values):
```
cd EmulationStation
```bash
cd YourEmulationStationDirectory
git pull
export CXX=g++-4.7
cmake .
make
```
- If your problem still isn't gone, the best way to report a bug is to post an issue on GitHub. Try to post the simplest steps possible to reproduce the bug. Include files you think might be related (except for ROMs, of course). If you haven't re-run ES since the crash, the log file `~/.emulationstation/es_log.txt` is also helpful.
Building
========
EmulationStation uses some C++11 code, which means you'll need to install at least g++-4.7 on Linux, or VS2010 on Windows.
For installing and switching to g++-4.7 see [here](http://lektiondestages.blogspot.de/2013/05/installing-and-switching-gccg-versions.html). You can also just use `export CXX=g++-4.7` to explicitly specify the compiler for CMake (make sure you delete your CMake cache files if it's not working).
EmulationStation uses some C++11 code, which means you'll need to use at least g++-4.7 on Linux, or VS2010 on Windows, to compile.
EmulationStation has a few dependencies. For building, you'll need SDL 1.2, Boost.System, Boost.Filesystem, FreeImage, FreeType, and Eigen 3. You'll also need the DejaVu TrueType font on Linux to run ES.
EmulationStation has a few dependencies. For building, you'll need SDL2, Boost (System, Filesystem, DateTime), FreeImage, FreeType, Eigen3, and cURL.
**On Linux:**
**On Debian/Ubuntu:**
All of this be easily installed with apt-get:
```
sudo apt-get install libsdl1.2-dev libboost-system-dev libboost-filesystem-dev libfreeimage-dev libfreetype6-dev libeigen3-dev ttf-dejavu
```bash
sudo apt-get install libsdl2-dev libboost-system-dev libboost-filesystem-dev libboost-date-time-dev libfreeimage-dev libfreetype6-dev libeigen3-dev libcurl4-openssl-dev libasound2-dev libgl1-mesa-dev
```
On "desktop" Linux (that is, *not* the Raspberry Pi), you'll also need OpenGL. Try installing the MESA development package with:
```
sudo apt-get install libgl1-mesa-dev
```
On the Raspberry Pi, there are also a few special libraries, located in /opt/vc/: the Broadcom libraries, libEGL, and GLES. You shouldn't need to install them.
**Generate and Build Makefile with CMake:**
```
cd EmulationStation
export CXX=g++-4.7
Then, generate and build the Makefile with CMake:
```bash
cd YourEmulationStationDirectory
cmake .
make
```
**On the Raspberry Pi:**
Complete Raspberry Pi build instructions at [emulationstation.org](http://emulationstation.org/gettingstarted.html#install_rpi_standalone).
**On Windows:**
[Boost](http://www.boost.org/users/download/) (you'll need to compile for Boost.Filesystem)
[Boost](http://www.boost.org/users/download/) (you'll need to compile yourself or get the pre-compiled binaries)
[Eigen 3](http://eigen.tuxfamily.org/index.php?title=Main_Page)
[Eigen3](http://eigen.tuxfamily.org/index.php?title=Main_Page)
[FreeImage](http://downloads.sourceforge.net/freeimage/FreeImage3154Win32.zip)
[FreeType2](http://download.savannah.gnu.org/releases/freetype/freetype-2.4.9.tar.bz2) (you'll need to compile)
[SDL-1.2](http://www.libsdl.org/release/SDL-devel-1.2.15-VC.zip)
[SDL2](http://www.libsdl.org/release/SDL2-devel-2.0.0-VC.zip)
(remember to copy necessary .DLLs into the same folder as the executable: FreeImage.dll, freetype6.dll, SDL.dll, and zlib1.dll)
[CURL](http://curl.haxx.se/download.html) (you'll need to compile or get the pre-compiled (DLL version))
(remember to copy necessary .DLLs into the same folder as the executable: FreeImage.dll, freetype6.dll, SDL2.dll, libcurl.dll, and zlib1.dll)
[CMake](http://www.cmake.org/cmake/resources/software.html) (this is used for generating the Visual Studio project)
(If you don't know how to use CMake, here are some hints: run cmake-gui and point it at your EmulationStation folder. Point the "build" directory somewhere - I use EmulationStation/build. Click configure, choose "Visual Studio 2010 Project", fill in red fields as they appear, then click Generate.)
(If you don't know how to use CMake, here are some hints: run cmake-gui and point it at your EmulationStation folder. Point the "build" directory somewhere - I use EmulationStation/build. Click configure, choose "Visual Studio [year] Project", fill in red fields as they appear and keep clicking Configure, then click Generate.)
Configuring
===========
**~/.emulationstation/es_systems.cfg:**
When first run, an example systems configuration file will be created at $HOME/.emulationstation/es_systems.cfg. This example has some comments explaining how to write the configuration file, and an example RetroArch launch command. See the "Writing an es_systems.cfg" section for more information.
When first run, an example systems configuration file will be created at `~/.emulationstation/es_systems.cfg`. `~` is `$HOME` on Linux, and `%HOMEPATH%` on Windows. This example has some comments explaining how to write the configuration file. See the "Writing an es_systems.cfg" section for more information.
**Keep in mind you'll have to set up your emulator separately from EmulationStation!**
**~/.emulationstation/es_input.cfg:**
When you first start EmulationStation, you will be prompted to configure any input devices you wish to use. The process is thus:
When you first start EmulationStation, you will be prompted to configure an input device. The process is thus:
1. Press a button on any device you wish to use. *This includes the keyboard.* If you are unable to configure a device, hold a button on the first device to continue to step 2.
1. Hold a button on the device you want to configure. This includes the keyboard.
2. Press the displayed input for each device in sequence. You will be prompted for Up, Down, Left, Right, A (Select), B (Back), Menu, Select (fast select), PageUp, and PageDown, Volume up and Volume down. If your controller doesn't have enough buttons to map PageUp/PageDown, it will be skipped.
2. Press the buttons as they appear in the list. Some inputs can be skipped by holding any button down for a few seconds (e.g. page up/page down).
3. Your config will be saved to `~/.emulationstation/es_input.cfg`. If you wish to reconfigure, just delete this file.
3. You can review your mappings by pressing up and down, making any changes by pressing A.
*NOTE: If `~/.emulationstation/es_input.cfg` is present but does not contain any available joysticks or a keyboard, an emergency default keyboard mapping will be provided.*
4. Choose "SAVE" to save this device and close the input configuration screen.
As long as ES hasn't frozen, you can always press F4 to close the application.
The new configuration will be added to the `~/.emulationstation/es_input.cfg` file.
**Both new and old devices can be (re)configured at any time by pressing the Start button and choosing "CONFIGURE INPUT".** From here, you may unplug the device you used to open the menu and plug in a new one, if necessary. New devices will be appended to the existing input configuration file, so your old devices will remain configured.
**If your controller stops working, you can delete the `~/.emulationstation/es_input.cfg` file to make the input configuration screen re-appear on next run.**
**Keep in mind you'll have to set up your emulator separately from EmulationStation.**
I am currently also working on a stand-alone tool, [ES-config](https://github.com/Aloshi/ES-config), that will help make configuring emulators easier.
After you launch a game, EmulationStation will return once your system's command terminates (i.e. your emulator closes).
You can use `--help` to view a list of command-line options. Briefly outlined here:
You can use `--help` or `-h` to view a list of command-line options. Briefly outlined here:
```
-w [width] - specify resolution width.
-h [height] - specify resolution height.
--resolution [width] [height] - try and force a particular resolution
--gamelist-only - only display games defined in a gamelist.xml file.
--ignore-gamelist - do not parse any gamelist.xml files.
--draw-framerate - draw the framerate.
--no-exit - do not display 'exit' in the ES menu.
--debug - print additional output to the console, primarily about input.
--dimtime [seconds] - delay before dimming the screen and entering sleep mode. Default is 30, use 0 for never.
--windowed - run ES in a window.
--windowed - run ES in a window, works best in conjunction with --resolution [w] [h].
--scrape - run the interactive command-line metadata scraper.
```
As long as ES hasn't frozen, you can always press F4 to close the application.
Writing an es_systems.cfg
=========================
The file `~/.emulationstation/es_systems.cfg` contains the system configuration data for EmulationStation. A system is a NAME, DESCNAME, PATH, EXTENSION, and COMMAND. You can define any number of systems, just use every required variable again. You can switch between systems by pressing left and right. They will cycle in the order they are defined.
The NAME is what ES will use to internally identify the system. Theme.xml and gamelist.xml files will also be searched for in `~/.emulationstation/NAME/` if not found at the root of PATH. It is recommended that you abbreviate here if necessary, e.g. "nes".
Complete configuration instructions at [emulationstation.org](http://emulationstation.org/gettingstarted.html#config).
The DESCNAME is a "pretty" name for the system - it show up in a header if one is displayed. It is optional; if not supplied, it will copy NAME (note: DESCNAME must also *not* be the last tag you define for a system! This is due to the nature of how optional tags are implemented.).
The `es_systems.cfg` file contains the system configuration data for EmulationStation, written in XML. This tells EmulationStation what systems you have, what platform they correspond to (for scraping), and where the games are located.
The PATH is where ES will start the search for ROMs. All subdirectories (and links!) will be included.
ES will check two places for an es_systems.cfg file, in the following order, stopping after it finds one that works:
* `~/.emulationstation/es_systems.cfg`
* `/etc/emulationstation/es_systems.cfg`
**NOTE:** A system *must* have at least one game present in its PATH directory, or ES will ignore it.
The order EmulationStation displays systems reflects the order you define them in.
The EXTENSION is a list of extensions ES will consider valid and add to the list when searching. Each extension *must* start with a period. The list is delimited by a space.
**NOTE:** A system *must* have at least one game present in its "path" directory, or ES will ignore it! If no valid systems are found, ES will report an error and quit!
The COMMAND is the shell command ES will execute to start your emulator. As it is evaluated by the shell (i.e. bash), you can do some clever tricks if need be.
Here's an example es_systems.cfg:
The following "tags" are replaced by ES in COMMANDs:
```xml
<!-- This is the EmulationStation Systems configuration file.
All systems must be contained within the <systemList> tag.-->
<systemList>
<!-- Here's an example system to get you started. -->
<system>
<!-- A short name, used internally. -->
<name>snes</name>
<!-- A "pretty" name, displayed in the menus and such. This one is optional. -->
<fullname>Super Nintendo Entertainment System</fullname>
<!-- The path to start searching for ROMs in. '~' will be expanded to $HOME or %HOMEPATH%, depending on platform.
All subdirectories (and non-recursive links) will be included. -->
<path>~/roms/snes</path>
<!-- A list of extensions to search for, delimited by any of the whitespace characters (", \r\n\t").
You MUST include the period at the start of the extension! It's also case sensitive. -->
<extension>.smc .sfc .SMC .SFC</extension>
<!-- The shell command executed when a game is selected. A few special tags are replaced if found in a command, like %ROM% (see below). -->
<command>snesemulator %ROM%</command>
<!-- This example would run the bash command "snesemulator /home/user/roms/snes/Super\ Mario\ World.sfc". -->
<!-- The platform(s) to use when scraping. You can see the full list of accepted platforms in src/PlatformIds.cpp.
It's case sensitive, but everything is lowercase. This tag is optional.
You can use multiple platforms too, delimited with any of the whitespace characters (", \r\n\t"), eg: "genesis, megadrive" -->
<platform>snes</platform>
<!-- The theme to load from the current theme set. See THEMES.md for more information.
This tag is optional; if not set, it will use the value of <name>. -->
<theme>snes</theme>
</system>
</systemList>
```
The following "tags" are replaced by ES in launch commands:
`%ROM%` - Replaced with absolute path to the selected ROM, with most Bash special characters escaped with a backslash.
`%BASENAME%` - Replaced with the "base" name of the path to the selected ROM. For example, a path of "/foo/bar.rom", this tag would be "bar". This tag is useful for setting up AdvanceMAME.
`%ROM_RAW%` - Replaced with the unescaped absolute path to the selected ROM. If your emulator is picky about paths, you might want to use this instead of %ROM%, but enclosed in quotes.
`%ROM_RAW%` - Replaced with the unescaped, absolute path to the selected ROM. If your emulator is picky about paths, you might want to use this instead of %ROM%, but enclosed in quotes.
gamelist.xml
============
The gamelist.xml for a system defines metadata for a system's games. This metadata includes an image (e.g. screenshot or box art), description, and name.
The gamelist.xml file for a system defines metadata for games, such as a name, image (like a screenshot or box art), description, release date, and rating.
**Making a gamelist.xml by hand sucks, so a cool guy named Pendor made a python script which automatically generates a gamelist.xml for you, with boxart automatically downloaded. It can be found here:** https://github.com/elpendor/ES-scraper
If at least one game in a system has an image specified, ES will use the detailed view for that system (which displays metadata alongside the game list).
If a file named gamelist.xml is found in the root of a system's search directory OR within `~/.emulationstation/%NAME%/`, game metadata will be loaded from it. This allows you to define images, descriptions, and different names for files. Note that only standard ASCII characters are supported for text (if you see a weird [X] symbol, you're probably using unicode!).
Images will be automatically resized to fit within the left column of the screen. Smaller images will load faster, so try to keep your resolution low.
An example gamelist.xml:
```
<gameList>
<game>
<path>/home/pi/ROMs/nes/mm2.nes</path>
<name>Mega Man 2</name>
<desc>Mega Man 2 is a classic NES game which follows Mega Man as he murders eight robot masters.</desc>
<image>/home/pi/Screenshots/megaman2.png</image>
</game>
</gameList>
```
*You can use ES's [scraping](http://en.wikipedia.org/wiki/Web_scraping) tools to avoid creating a gamelist.xml by hand.* There are two ways to run the scraper:
The path element should be the absolute path of the ROM. Special characters SHOULD NOT be escaped. The image element is the path to an image to display above the description (like a screenshot or boxart). Most formats can be used (including png, jpg, gif, etc.). Not all elements need to be used.
* **If you want to scrape multiple games:** press start to open the menu and choose the "SCRAPER" option. Adjust your settings and press "SCRAPE NOW".
* **If you just want to scrape one game:** find the game on the game list in ES and press select. Choose "EDIT THIS GAME'S METADATA" and then press the "SCRAPE" button at the bottom of the metadata editor.
You can also edit metadata within ES by using the metadata editor - just find the game you wish to edit on the gamelist, press Select, and choose "EDIT THIS GAME'S METADATA."
A command-line version of the scraper is also provided - just run emulationstation with `--scrape` *(currently broken)*.
The switch `--ignore-gamelist` can be used to ignore the gamelist and force ES to use the non-detailed view.
If you're writing a tool to generate or parse gamelist.xml files, you should check out [GAMELISTS.md](GAMELISTS.md) for more detailed documentation.
The switch `--gamelist-only` can be used to skip automatic searching, and only display games defined in the system's gamelist.xml.
The switch `--ignore-gamelist` can be used to ignore the gamelist and use the non-detailed view.
Themes
======
By default, EmulationStation looks pretty ugly. You can fix that. If you want to know more about making your own themes (or editing existing ones), read THEMES.md!
By default, EmulationStation looks pretty ugly. You can fix that. If you want to know more about making your own themes (or editing existing ones), read [THEMES.md](THEMES.md)!
I've put some themes up for download on my EmulationStation webpage: http://aloshi.com/emulationstation#themes
If you're using RetroPie, you should already have a nice set of themes automatically installed!
-Aloshi
-Alec "Aloshi" Lofquist
http://www.aloshi.com
http://www.emulationstation.org

621
THEMES.md
View file

@ -1,199 +1,480 @@
Themes
======
EmulationStation allows each system to have its own "theme." A theme is a collection of display settings and images defined in an XML document.
EmulationStation allows each system to have its own "theme." A theme is a collection **views** that define some **elements**, each with their own **properties**.
ES will check 3 places for a theme, in the following order:
- a theme.xml file in the root of a system's %PATH% directory.
- $HOME/.emulationstation/%NAME%/theme.xml
- $HOME/.emulationstation/es_theme.xml
The first place ES will check for a theme is in the system's `<path>` folder, for a theme.xml file:
* `[SYSTEM_PATH]/theme.xml`
Almost all positions, dimensions, origins, etc. work in percentages - that is, they are a decimal between 0 and 1, representing the percentage of the screen on that axis to use. This ensures that themes look similar at every resolution.
If that file doesn't exist, ES will try to find the theme in the current **theme set**. Theme sets are just a collection of individual system themes arranged in the "themes" folder under some name. Here's an example:
Colors are hex values, either 6 or 8 characters, defined as RRGGBB or RRGGBBAA. If alpha is not included, a default value of FF will be assumed (not transparent).
Example
=======
Here's a theme that defines some colors, displays a background, and displays a logo in the top left corner:
```
...
themes/
my_theme_set/
snes/
theme.xml
my_cool_background.jpg
nes/
theme.xml
my_other_super_cool_background.jpg
common_resources/
scroll_sound.wav
another_theme_set/
snes/
theme.xml
some_resource.svg
```
The theme set system makes it easy for users to try different themes and allows distributions to include multiple theme options. Users can change the currently active theme set in the "UI Settings" menu. The option is only visible if at least one theme set exists.
There are two places ES can load theme sets from:
* `[HOME]/.emulationstation/themes/[CURRENT_THEME_SET]/[SYSTEM_THEME]/theme.xml`
* `/etc/emulationstation/themes/[CURRENT_THEME_SET]/[SYSTEM_THEME]/theme.xml`
`[SYSTEM_THEME]` is the `<theme>` tag for the system, as defined in `es_systems.cfg`. If the `<theme>` tag is not set, ES will use the system's `<name>`.
If both files happen to exist, ES will pick the first one (the one located in the home directory).
Again, the `[CURRENT_THEME_SET]` value is set in the "UI Settings" menu. If it has not been set yet or the previously selected theme set is missing, the first available theme set will be used as the default.
Simple Example
==============
Here is a very simple theme that changes the description text's color:
```xml
<theme>
<listPrimaryColor>0000FF</listPrimaryColor>
<listSecondaryColor>00FF00</listSecondaryColor>
<component>
<type>image</type>
<path>./theme/background.png</path>
<pos>0 0</pos>
<dim>1 1</dim>
<origin>0 0</origin>
</component>
<component>
<type>image</type>
<path>./theme/logo.png</path>
<pos>0 0</pos>
<dim>0.4 0</dim>
<origin>0 0</origin>
</component>
<formatVersion>3</formatVersion>
<view name="detailed">
<text name="description">
<color>00FF00</color>
</text>
<image name="my_image" extra="true">
<pos>0.5 0.5</pos>
<origin>0.5 0.5</origin>
<size>0.8 0.8</size>
<path>./my_art/my_awesome_image.jpg</path>
</image>
</view>
</theme>
<!-- You can also optionally define a "basic" theme, which is used instead if ES is in the "basic" view (no box art) -->
<basicTheme>
<listPrimaryColor>0000FF</listPrimaryColor>
<listSecondaryColor>00FF00</listSecondaryColor>
<component>
<type>image</type>
<path>./theme/background.png</path>
<pos>0 0</pos>
<dim>1 1</dim>
<origin>0 0</origin>
</component>
</basicTheme>
```
Themes can be defined with two tags: `<theme>` and `<themeBasic>`.
You can define both a normal and basic theme in the same file.
If EmulationStation is running in "basic" mode, it will try to use `<themeBasic>`. If that doesn't exist or ES is running in "detailed" mode (a gamelist.xml is present), `<theme>` will be used.
Components
==========
A theme is made up of components, which have various types. At the moment, the only type is `image`. Components are rendered in the order they are defined - that means you'll want to define the background first, a header image second, etc.
The "image" component
=====================
Used to display an image.
`<path>` - path to the image file. Most common file types are supported, and . and ~ are properly expanded.
`<pos>` - the position, as two screen percentages, at which to display the image.
`<dim>` - the dimensions, as two screen percentages, that the image will be resized to. Make one axis 0 to keep the aspect ratio.
`<origin>` - the point on the image that `<pos>` defines, as an image percentage. "0.5 0.5", the center of the image, by default.
`<tiled />` - if present, the image is tiled instead of resized.
Display tags
How it works
============
Display tags define some "meta" display attributes about your theme. Display tags must be at the root of the `<theme>` tree - for example, they can't be inside a component tag. They are not required.
Everything must be inside a `<theme>` tag.
**Game list attributes:**
`<listPrimaryColor>` - the hex font color to use for games on the GuiGameList.
`<listSecondaryColor>` - the hex font color to use for folders on the GuiGameList.
`<descColor>` - the hex font color to use for the description on the GuiGameList.
`<listSelectorColor>` - the hex color to use for the "selector bar" on the GuiGameList. Default is `000000FF`.
`<listSelectedColor>` - the hex color to use for selected text on the GuiGameList. Default is zero, which means no change.
`<listLeftAlign />` - if present, the games list names will be left aligned to the value of `<listOffsetX>` + `<listTextOffsetX>`. On by default for detailed themes.
`<hideHeader />` - if present, the system name header won't be displayed (useful for replacing it with an image). If you're making a complete custom theme, you probably want to use this.
`<hideDividers />` - if present, the divider between games on the detailed GuiGameList won't be displayed.
`<listOffsetX>` - the percentage to offset the list by. Default is 0.5 (half the screen). **Will also move the selector bar**.
`<listTextOffsetX>` - the percentage to offset the text in the list by. Default is 0.005. Only works in combination with `<listLeftAlign />`.
**The `<formatVersion>` tag *must* be specified**. This is the version of the theming system the theme was designed for. The current version is 3.
**Game image attributes:**
A *view* can be thought of as a particular "screen" within EmulationStation. Views are defined like this:
`<gameImagePos>` - two values for the position of the game art, in the form of `[x] [y]`, as a percentage. Default is `$infoWidth/2 $headerHeight`.
`<gameImageDim>` - two values for the dimensions of the game art, in the form of `[width] [height]`, as a percentage of the screen. Default is `$infoWidth 0` (width fits within the info column). The image will only be resized if at least one axis is nonzero *and* exceeded by the image's size. You should always leave at least one axis as zero to preserve the aspect ratio.
`<gameImageOrigin>` - two values for the origin of the game art, in the form of `[x] [y]`, as a percentage. Default is `0.5 0` (top-center of the image).
`<gameImageNotFound>` - path to the image to display if a game's image is missing. '.' and '~' are expanded.
**Fast Select box attributes:**
`<fastSelectColor>` - the hex color to use for the letter display on the Fast Select box.
**WARNING:** the "box*" tags *WILL BE REMOVED* in future versions of EmulationStation. They have been replaced by a "nine patch" image that provides the (almost) the same functionality with less hassle.
`<boxBackground>` - path to a background image file. ~ and . are expanded.
`<boxBackgroundTiled />` - if present, the background will be tiled instead of stretched.
`<boxHorizontal>` - path to the "left" border image file. It will be flipped for the right border. ~ and . are expanded.
`<boxHorizontalTiled />` - if present, the horizontal image will be tiled instead of stretched downwards.
`<boxVertical>` - path to the "top" border image file. It will be flipped for the bottom border. ~ and . are expanded.
`<boxVerticalTiled />` - if present, the vertical image will be tiled instead of stretched to the right.
`<boxCorner>` - path to the "top left corner" image file. It will be flipped for the top right, bottom right, and bottom left corners. ~ and . are expanded.
There is also a `<fastSelectFont>` font tag (see the Fonts section for more info).
Fonts
=====
Fonts are defined like so:
```
<fontTag>
<path>./path/to/font</path>
<size>0.05</size>
</fontTag>
```xml
<view name="ViewNameHere">
... define elements here ...
</view>
```
You can leave off any tags you don't want to use, and they'll use the default. Size is defined as a percentage of the screen height. "." and "~" are expanded for paths.
NOTE: If your font size is too big, it'll overrun the maximum texture size.
**Font tags:**
`<listFont>` - font to use for the game list.
`<descriptionFont>` - font to use for description text.
`<fastSelectFont>` - font to use for the fast select letter.
Audio
=====
Themes can also define menu sounds. These tags go in the root of the `<theme>` tree, just like Display tags. Sounds should be in the .wav format. The relative path operator (.) and home operator (~) are properly expanded.
`<menuScrollSound>` - path to the sound to play when the game list or fast select menu is scrolling.
`<menuSelectSound>` - path to the sound to play when the user selects something from the game list.
`<menuBackSound>` - path to the sound to play when the user "goes up" from a folder in the game list.
`<menuOpenSound>` - path to the sound to play when the user opens a menu (either the "main menu" or the fast select menu).
List of variables
An *element* is a particular visual element, such as an image or a piece of text. You can either modify an element that already exists for a particular view (as is done in the "description" example), like this:
```xml
<elementTypeHere name="ExistingElementNameHere">
... define properties here ...
</elementTypeHere>
```
Or, you can create your own elements by adding `extra="true"` (as is done in the "my_image" example) like this:
```xml
<elementTypeHere name="YourUniqueElementNameHere" extra="true">
... define properties here ...
</elementTypeHere>
```
"Extra" elements will be drawn in the order they are defined (so define backgrounds first!). When they get drawn relative to the pre-existing elements depends on the view. Make sure "extra" element names do not clash with existing element names! An easy way to protect against this is to just start all your extra element names with some prefix like "e_".
*Properties* control how a particular *element* looks - for example, its position, size, image path, etc. The type of the property determines what kinds of values you can use. You can read about the types below in the "Reference" section. Properties are defined like this:
```xml
<propertyNameHere>ValueHere</propertyNameHere>
```
Advanced Features
=================
Variables can be used in position and dimension definitions. They can be added, subtracted, multiplied, and divided. Parenthesis are valid. They are a percentage of the screen.
It is recommended that if you are writing a theme you launch EmulationStation with the `--debug` and `--windowed` switches. This way you can read error messages without having to check the log file. You can also reload the current gamelist view and system view with `Ctrl-R` if `--debug` is specified.
For example, if you wanted to place an image that covered the left half of the screen, up to the game list, you could use `<dim>$infoWidth 1</dim>`.
### The `<include>` tag
`$headerHeight` - height of the system name header.
You can include theme files within theme files, similar to `#include` in C (though the internal mechanism is different, the effect is the same). Example:
`$infoWidth` - where the left of the game list begins. Will follow `<listOffsetX>`.
`~/.emulationstation/all_themes.xml`:
```xml
<theme>
<formatVersion>3</formatVersion>
<view name="detailed">
<text name="description">
<fontPath>./all_themes/myfont.ttf</fontPath>
<color>00FF00</color>
</text>
</view>
</theme>
```
`~/.emulationstation/snes/theme.xml`:
```xml
<theme>
<formatVersion>3</formatVersion>
<include>./../all_themes.xml</include>
<view name="detailed">
<text name="description">
<color>FF0000</color>
</text>
</view>
</theme>
```
Is equivalent to this `snes/theme.xml`:
```xml
<theme>
<formatVersion>3</formatVersion>
<view name="detailed">
<text name="description">
<fontPath>./all_themes/myfont.ttf</fontPath>
<color>FF0000</color>
</text>
</view>
</theme>
```
Notice that properties that were not specified got merged (`<fontPath>`) and the `snes/theme.xml` could overwrite the included files' values (`<color>`). Also notice the included file still needed the `<formatVersion>` tag.
-Aloshi
http://www.aloshi.com
### Theming multiple views simultaneously
Sometimes you want to apply the same properties to the same elements across multiple views. The `name` attribute actually works as a list (delimited by any characters of `\t\r\n ,` - that is, whitespace and commas). So, for example, to easily apply the same header to the basic, grid, and system views:
```xml
<theme>
<formatVersion>3</formatVersion>
<view name="basic, grid, system">
<image name="logo">
<path>./snes_art/snes_header.png</path>
</image>
</view>
<view name="detailed">
<image name="logo">
<path>./snes_art/snes_header_detailed.png</path>
</image>
</view>
</theme>
```
This is equivalent to:
```xml
<theme>
<formatVersion>3</formatVersion>
<view name="basic">
<image name="logo">
<path>./snes_art/snes_header.png</path>
</image>
</view>
<view name="detailed">
<image name="logo">
<path>./snes_art/snes_header_detailed.png</path>
</image>
</view>
<view name="grid">
<image name="logo">
<path>./snes_art/snes_header.png</path>
</image>
</view>
<view name="system">
<image name="logo">
<path>./snes_art/snes_header.png</path>
</image>
</view>
... and any other view that might try to look up "logo" ...
</theme>
```
### Theming multiple elements simultaneously
You can theme multiple elements *of the same type* simultaneously. The `name` attribute actually works as a list (delimited by any characters of `\t\r\n ,` - that is, whitespace and commas), just like it does for views, as long as the elements have the same type. This is useful if you want to, say, apply the same color to all the metadata labels:
```xml
<theme>
<formatVersion>3</formatVersion>
<view name="detailed">
<!-- Weird spaces/newline on purpose! -->
<text name="md_lbl_rating, md_lbl_releasedate, md_lbl_developer, md_lbl_publisher,
md_lbl_genre, md_lbl_players, md_lbl_lastplayed, md_lbl_playcount">
<color>48474D</color>
</text>
</view>
</theme>
```
Which is equivalent to:
```xml
<theme>
<formatVersion>3</formatVersion>
<view name="detailed">
<text name="md_lbl_rating">
<color>48474D</color>
</text>
<text name="md_lbl_releasedate">
<color>48474D</color>
</text>
<text name="md_lbl_developer">
<color>48474D</color>
</text>
<text name="md_lbl_publisher">
<color>48474D</color>
</text>
<text name="md_lbl_genre">
<color>48474D</color>
</text>
<text name="md_lbl_players">
<color>48474D</color>
</text>
<text name="md_lbl_lastplayed">
<color>48474D</color>
</text>
<text name="md_lbl_playcount">
<color>48474D</color>
</text>
</view>
</theme>
```
Just remember, *this only works if the elements have the same type!*
Reference
=========
## Views, their elements, and themable properties:
#### basic
* `helpsystem name="help"` - ALL
- The help system style for this view.
* `image name="background"` - ALL
- This is a background image that exists for convenience. It goes from (0, 0) to (1, 1).
* `text name="logoText"` - ALL
- Displays the name of the system. Only present if no "logo" image is specified. Displayed at the top of the screen, centered by default.
* `image name="logo"` - ALL
- A header image. If a non-empty `path` is specified, `text name="headerText"` will be hidden and this image will be, by default, displayed roughly in its place.
* `textlist name="gamelist"` - ALL
- The gamelist. `primaryColor` is for games, `secondaryColor` is for folders. Centered by default.
---
#### detailed
* `helpsystem name="help"` - ALL
- The help system style for this view.
* `image name="background"` - ALL
- This is a background image that exists for convenience. It goes from (0, 0) to (1, 1).
* `text name="logoText"` - ALL
- Displays the name of the system. Only present if no "logo" image is specified. Displayed at the top of the screen, centered by default.
* `image name="logo"` - ALL
- A header image. If a non-empty `path` is specified, `text name="headerText"` will be hidden and this image will be, by default, displayed roughly in its place.
* `textlist name="gamelist"` - ALL
- The gamelist. `primaryColor` is for games, `secondaryColor` is for folders. Left aligned by default.
* Metadata
* Labels
* `text name="md_lbl_rating"` - ALL
* `text name="md_lbl_releasedate"` - ALL
* `text name="md_lbl_developer"` - ALL
* `text name="md_lbl_publisher"` - ALL
* `text name="md_lbl_genre"` - ALL
* `text name="md_lbl_players"` - ALL
* `text name="md_lbl_lastplayed"` - ALL
* `text name="md_lbl_playcount"` - ALL
* Values
* All values will follow to the right of their labels if a position isn't specified.
* `image name="md_image"` - POSITION | SIZE
- Path is the "image" metadata for the currently selected game.
* `rating name="md_rating"` - ALL
- The "rating" metadata.
* `datetime name="md_releasedate"` - ALL
- The "releasedate" metadata.
* `text name="md_developer"` - ALL
- The "developer" metadata.
* `text name="md_publisher"` - ALL
- The "publisher" metadata.
* `text name="md_genre"` - ALL
- The "genre" metadata.
* `text name="md_players"` - ALL
- The "players" metadata (number of players the game supports).
* `datetime name="md_lastplayed"` - ALL
- The "lastplayed" metadata. Displayed as a string representing the time relative to "now" (e.g. "3 hours ago").
* `text name="md_playcount"` - ALL
- The "playcount" metadata (number of times the game has been played).
* `text name="md_description"` - POSITION | SIZE | FONT_PATH | FONT_SIZE | COLOR
- Text is the "desc" metadata. If no `pos`/`size` is specified, will move and resize to fit under the lowest label and reach to the bottom of the screen.
---
#### grid
* `helpsystem name="help"` - ALL
- The help system style for this view.
* `image name="background"` - ALL
- This is a background image that exists for convenience. It goes from (0, 0) to (1, 1).
* `text name="logoText"` - ALL
- Displays the name of the system. Only present if no "logo" image is specified. Displayed at the top of the screen, centered by default.
* `image name="logo"` - ALL
- A header image. If a non-empty `path` is specified, `text name="headerText"` will be hidden and this image will be, by default, displayed roughly in its place.
---
#### system
* `helpsystem name="help"` - ALL
- The help system style for this view.
* `image name="logo"` - PATH
- A logo image, to be displayed in the system logo carousel.
* You can use extra elements (elements with `extra="true"`) to add your own backgrounds, etc. They will be displayed behind the carousel, and scroll relative to the carousel.
## Types of properties:
* NORMALIZED_PAIR - two decimals, in the range [0..1], delimited by a space. For example, `0.25 0.5`. Most commonly used for position (x and y coordinates) and size (width and height).
* PATH - a path. If the first character is a `~`, it will be expanded into the environment variable for the home path (`$HOME` for Linux or `%HOMEPATH%` for Windows). If the first character is a `.`, it will be expanded to the theme file's directory, allowing you to specify resources relative to the theme file, like so: `./../general_art/myfont.ttf`.
* BOOLEAN - `true`/`1` or `false`/`0`.
* COLOR - a hexidecimal RGB or RGBA color (6 or 8 digits). If 6 digits, will assume the alpha channel is `FF` (not transparent).
* FLOAT - a decimal.
* STRING - a string of text.
## Types of elements and their properties:
Common to almost all elements is a `pos` and `size` property of the NORMALIZED_PAIR type. They are normalized in terms of their "parent" object's size; 99% of the time, this is just the size of the screen. In this case, `<pos>0 0</pos>` would correspond to the top left corner, and `<pos>1 1</pos>` the bottom right corner (a positive Y value points further down). `pos` almost always refers to the top left corner of your element. You *can* use numbers outside of the [0..1] range if you want to place an element partially or completely off-screen.
The order you define properties in does not matter.
Remember, you do *not* need to specify every property!
*Note that a view may choose to only make only certain properties on a particular element themable!*
#### image
Can be created as an extra.
* `pos` - type: NORMALIZED_PAIR.
* `size` - type: NORMALIZED_PAIR.
- If only one axis is specified (and the other is zero), the other will be automatically calculated in accordance with the image's aspect ratio.
* `maxSize` - type: NORMALIZED_PAIR.
- The image will be resized as large as possible so that it fits within this size and maintains its aspect ratio. Use this instead of `size` when you don't know what kind of image you're using so it doesn't get grossly oversized on one axis (e.g. with a game's image metadata).
* `origin` - type: NORMALIZED_PAIR.
- Where on the image `pos` refers to. For example, an origin of `0.5 0.5` and a `pos` of `0.5 0.5` would place the image exactly in the middle of the screen. If the "POSITION" and "SIZE" attributes are themable, "ORIGIN" is implied.
* `path` - type: PATH.
- Path to the image file. Most common extensions are supported (including .jpg, .png, and unanimated .gif).
* `tile` - type: BOOLEAN.
- If true, the image will be tiled instead of stretched to fit its size. Useful for backgrounds.
* `color` - type: COLOR.
- Multiply each pixel's color by this color. For example, an all-white image with `<color>FF0000</color>` would become completely red. You can also control the transparency of an image with `<color>FFFFFFAA</color>` - keeping all the pixels their normal color and only affecting the alpha channel.
#### text
Can be created as an extra.
* `pos` - type: NORMALIZED_PAIR.
* `size` - type: NORMALIZED_PAIR.
- Possible combinations:
- `0 0` - automatically size so text fits on one line (expanding horizontally).
- `w 0` - automatically wrap text so it doesn't go beyond `w` (expanding vertically).
- `w h` - works like a "text box." If `h` is non-zero and `h` <= `fontSize` (implying it should be a single line of text), text that goes beyond `w` will be truncated with an elipses (...).
* `text` - type: STRING.
* `color` - type: COLOR.
* `fontPath` - type: PATH.
- Path to a truetype font (.ttf).
* `fontSize` - type: FLOAT.
- Size of the font as a percentage of screen height (e.g. for a value of `0.1`, the text's height would be 10% of the screen height).
* `alignment` - type: STRING.
- Valid values are "left", "center", or "right". Controls alignment on the X axis. "center" will also align vertically.
* `forceUppercase` - type: BOOLEAN. Draw text in uppercase.
* `lineSpacing` - type: FLOAT. Controls the space between lines (as a multiple of font height). Default is 1.5.
#### textlist
* `pos` - type: NORMALIZED_PAIR.
* `size` - type: NORMALIZED_PAIR.
* `selectorColor` - type: COLOR.
- Color of the "selector bar."
* `selectedColor` - type: COLOR.
- Color of the highlighted entry text.
* `primaryColor` - type: COLOR.
- Primary color; what this means depends on the text list. For example, for game lists, it is the color of a game.
* `secondaryColor` - type: COLOR.
- Secondary color; what this means depends on the text list. For example, for game lists, it is the color of a folder.
* `fontPath` - type: PATH.
* `fontSize` - type: FLOAT.
* `scrollSound` - type: PATH.
- Sound that is played when the list is scrolled.
* `alignment` - type: STRING.
- Valid values are "left", "center", or "right". Controls alignment on the X axis.
* `horizontalMargin` - type: FLOAT.
- Horizontal offset for text from the alignment point. If `alignment` is "left", offsets the text to the right. If `alignment` is "right", offsets text to the left. No effect if `alignment` is "center". Given as a percentage of the element's parent's width (same unit as `size`'s X value).
* `forceUppercase` - type: BOOLEAN. Draw text in uppercase.
* `lineSpacing` - type: FLOAT. Controls the space between lines (as a multiple of font height). Default is 1.5.
#### ninepatch
* `pos` - type: NORMALIZED_PAIR.
* `size` - type: NORMALIZED_PAIR.
* `path` - type: PATH.
EmulationStation borrows the concept of "nine patches" from Android (or "9-Slices"). Currently the implementation is very simple and hard-coded to only use 48x48px images (16x16px for each "patch"). Check the `data/resources` directory for some examples (button.png, frame.png).
#### rating
* `pos` - type: NORMALIZED_PAIR.
* `size` - type: NORMALIZED_PAIR.
- Only one value is actually used. The other value should be zero. (e.g. specify width OR height, but not both. This is done to maintain the aspect ratio.)
* `filledPath` - type: PATH.
- Path to the "filled star" image. Image must be square (width equals height).
* `unfilledPath` - type: PATH.
- Path to the "unfilled star" image. Image must be square (width equals height).
#### datetime
* `pos` - type: NORMALIZED_PAIR.
* `size` - type: NORMALIZED_PAIR.
- You should probably not set this. Leave it to `fontSize`.
* `color` - type: COLOR.
* `fontPath` - type: PATH.
* `fontSize` - type: FLOAT.
* `forceUppercase` - type: BOOLEAN. Draw text in uppercase.
#### sound
* `path` - type: PATH.
- Path to the sound file. Only .wav files are currently supported.
#### helpsystem
* `pos` - type: NORMALIZED_PAIR. Default is "0.012 0.9515"
* `textColor` - type: COLOR. Default is 777777FF.
* `iconColor` - type: COLOR. Default is 777777FF.
* `fontPath` - type: PATH.
* `fontSize` - type: FLOAT.
The help system is a special element that displays a context-sensitive list of actions the user can take at any time. You should try and keep the position constant throughout every screen. Keep in mind the "default" settings (including position) are used whenever the user opens a menu.
[*Check out the "official" themes for some more examples!*](http://aloshi.com/emulationstation#themes)

View file

@ -1,187 +0,0 @@
May 13, 2013
-Ported to Windows. You'll need to change the lib_paths property sheet Include and Library directories (I didn't include dependencies!).
-Added --windowed (only works for desktop builds).
April 13, 2013
-Finally merged the unstable branch, which means better input everything!
-Can now use multiple joysticks.
-Can now remap keyboard input.
-Hopefully prevented infinitely recursing symlinks.
March 28, 2013
-Hopefully fixed bad joystick events at startup.
March 25, 2013
-Fixed waking up from sleep with axes.
March 19, 2013
-Finally added a "dim" or sleep mode. Change behavior with "--dimtime [positive integer time in seconds]", with 0 for off.
March 17, 2013
-Added Fast Select font tag.
January 26, 2013
-Added "Reload" option to the menu. This option reloads all game data.
January 8, 2013
-Made a value of zero for "list selected color" mean no change.
January 6, 2013
-Added <basicTheme> tag support.
December 20, 2012
-Added --debug command-line option. Useful if you're having input config problems.
-Changed things so you can finish configuring without a keyboard. You should no longer need a keyboard to set up ES; SSH access should be sufficient.
December 14, 2012
-Added %BASENAME% tag for launch commands. Useful for AdvMAME.
December 8, 2012
-Fixed a segfault when opening the menu (related to sounds). Woops!
-Fixed PAGEDOWN/PAGEUP not appearing in the input config GUI.
-Fixed PAGEDOWN/PAGEUP not properly clearing/updating detail data.
November 19
-Added Arch Linux's DejaVuSeriff.ttf path to the list of fonts to check for.
November 17
-Fixed default game image resizing if none is defined.
-Heavily refactored theming. You shouldn't notice any changes, but if something broke, let me know!
November 14
-Added Exit command to the menu.
October 31
-Added custom font support. Check out THEMES.md.
-Happy halloween!
October 26
-Hopefully fixed the black screen bug with certain programs.
October 25
-Added gameImageNotFound tag for an image to display if a game image is not found/defined.
-Fixed keyboard not skipping joystick input configuration.
-Fixed a nasty crash bug with sounds. Always initialize your variables, kids!
October 17
-Added GuiAnimation class which animates its children.
-The game image on the game list now slides/fades in and out.
-You can now define alpha in hex colors (add two characters) - e.g. FFFFFF2F
October 14
-Fixed game list continuing to scroll when a menu is opened or a game is started.
October 13
-Added sound support through SDL_mixer.
-Added new theme tags for defining menu sounds. See THEMES.md for details.
-Added new theme tags for defining game art information. See THEMES.md for details.
October 10
-Added a theming tag for the Fast Select box's text.
-Fixed GuiBox background being positioned wrong.
-Fixed GuiBox/GuiFastSelect render order.
-Redid tiling to use only 6 verticies (instead of tilecount-dependent) with wrapped textures. Tiling is also precise now (cuts off when it should).
October 7
-Fixed borders for GuiBox. The right and bottom borders are flipped, too.
-Added corners for GuiBox.
-Added setFlipX() and setFlipY() to the GuiImage class.
-Added theming tags for the Fast Select GuiBox! See THEMES.md for more details. Tiling still not perfect though.
October 5
-GuiFastSelect is working, but ugly.
-Began work on GuiBox for theming the fast select dialog.
-Finally fixed detailed GuiGameList detection after input mapping.
September 30
-Began implementing GuiFastSelect, currently invoked by holding F2. Unfortunately, it doesn't do anything yet.
-Added <listSelectedColor>.
-Fixed OpenGL mipmap generation not setting a magnification filter. Hopefully this fixes the weird scaling. If not, I can switch from nearest neighbor to linear.
September 29
-SDL is now completely shut down on both the RPi and SDL GL renderer. You may see the flicker of a terminal when you launch a game. This was done in preparation for audio.
September 23
-Fixed crash when "%ROM%" isn't present in a launch command. Not sure why you'd ever do this on purpose, but hey.
-Added relative path operator ("./") support for gamelist.xml, for both game paths and image paths.
September 16
-Fixed a bug with skipping over unicode characters. [X] will be displayed if the character is not standard ASCII (characters 32 to 127).
September 15
-Added <listOffsetX>, <listTextOffsetX>, and <gameImageOffsetY> theme tags. See THEMES.md for details.
-Fixed a bug causing gamelists to be read incorrectly.
September 14
-Joystick names are now saved during input configuration to es_input.cfg.
-When loading an input config, if JOYNAME is defined, load the first joystick with that name. If it is not present, load the first joystick (old behavior).
-Joysticks should re-initialize properly with SDL on the desktop configuration.
September 10
-Fixed multiple extensions breaking things.
-Added Makefile.x86 for building on a desktop (acquire OpenGL context through SDL instead of EGL).
September 8
-Added support for multiple filetypes for systems - just separate them with a space.
-Updated example systems config to include example for multiple filetypes and be a little clearer.
September 7
-Tiling is now much faster.
-Added --draw-framerate and --help/-h command-line parameters.
-Fixed themes not properly re-initializing.
-Commented most headers. Things should be kind of understandable now.
-Finally increased scrolling speed.
September 3
-Everything is now rendered with OpenGL, leading to a (roughly) 600%+ speedup!
August 13
-Tons of new theming features!
-I've added a THEMES.md file for documentation on theming.
-A CREDITS.md file.
-Fixed theme defaults not resetting when theme changes.
-The game image on the GuiGameList now maintains its alpha channel.
-Descriptions can now contain newline characters.
-Changed the size of the game info column to be 50% of the screen (previously 40%).
-Adjusted description to have a 3% left and right margins.
-Added $infoWidth variable for playing with the size of the game info column.
-Added <listLeftAlign /> tag that makes the game list left aligned instead of centered.
-Made Renderer::LARGE (header) fontsize slightly bigger
August 12
-If a theme.xml is not found in a system's directory, ES will now check for $HOME/.emulationstation/es_theme.xml. If present, it will load that.
-Themes can now be used without the detailed GuiGameList.
-Fixed GuiGameList image data not updating on system change/initial startup (finally!)
-Made the GuiList code a little bit less likely to crash on empty lists
August 10
-Themes now load from system directories (and thus you can set a different theme for each system)
-Theme paths now expand . (to directory of this theme.xml) and ~ (to $HOME).
-Added --ignore-gamelist switch. Does as it says, and forces the simple GuiGameList.
-Folders that do not contain games will not be added.
-Fixed float percentages in GuiTheme being converted to integers before they were converted to pixels...woops!
August 9
-Removed multithreaded image loading
-Improved GuiImage rendering speed by adding additional processing at load time (SDL_DisplayFormat)
-Began work on the GuiTheme class, allowing custom theming with an XML file
August 8
-Added automatic resizing of images using SDL_gfx
-Experimenting with multithreaded image loading for the GuiImage class
-Removed warning if an unknown variable is found in a systems config file (useful for additional utilities)
August 7
-gamelist.xml files are now read from each system's individual search directory.
-The switch --gamelist-only was added. Use it to skip automatic searching and only use files defined in gamelist.xml.
-A gamelist.xml file can now specify a file that wasn't previously found by the automatic search.
-Fixed alphabetizing uppercase and lowercase letters differently (woops!)
-When loading the system config file, if a system doesn't contain any games, it will be automatically deleted.
August 4
-Moved configuration files to $HOME/.emulationstation/
-Renderer::loadFonts() will now fall back to /usr/share/fonts/truetype/ttf-dejavu/DejaVuSans.ttf if LinLibertine.ttf is not found.
-All folders should now be sorted alphabetically
-Added Menu button
-Added menu consisting of bash commands for "Restart" and "Shutdown"

View file

@ -2,19 +2,91 @@
#include "Resources.h"
const size_t res2hNrOfFiles = 4;
const size_t res2hNrOfFiles = 40;
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}
{":/arrow.svg", arrow_svg_size, arrow_svg_data},
{":/busy_0.svg", busy_0_svg_size, busy_0_svg_data},
{":/busy_1.svg", busy_1_svg_size, busy_1_svg_data},
{":/busy_2.svg", busy_2_svg_size, busy_2_svg_data},
{":/busy_3.svg", busy_3_svg_size, busy_3_svg_data},
{":/button.png", button_png_size, button_png_data},
{":/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},
{":/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},
{":/off.svg", off_svg_size, off_svg_data},
{":/on.svg", on_svg_size, on_svg_data},
{":/opensans_hebrew_condensed_light.ttf", opensans_hebrew_condensed_light_ttf_size, opensans_hebrew_condensed_light_ttf_data},
{":/opensans_hebrew_condensed_regular.ttf", opensans_hebrew_condensed_regular_ttf_size, opensans_hebrew_condensed_regular_ttf_data},
{":/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},
{":/help/button_r.svg", help_button_r_svg_size, help_button_r_svg_data},
{":/help/button_select.svg", help_button_select_svg_size, help_button_select_svg_data},
{":/help/button_start.svg", help_button_start_svg_size, help_button_start_svg_data},
{":/help/button_x.svg", help_button_x_svg_size, help_button_x_svg_data},
{":/help/button_y.svg", help_button_y_svg_size, help_button_y_svg_data},
{":/help/dpad_all.svg", help_dpad_all_svg_size, help_dpad_all_svg_data},
{":/help/dpad_down.svg", help_dpad_down_svg_size, help_dpad_down_svg_data},
{":/help/dpad_left.svg", help_dpad_left_svg_size, help_dpad_left_svg_data},
{":/help/dpad_leftright.svg", help_dpad_leftright_svg_size, help_dpad_leftright_svg_data},
{":/help/dpad_right.svg", help_dpad_right_svg_size, help_dpad_right_svg_data},
{":/help/dpad_up.svg", help_dpad_up_svg_size, help_dpad_up_svg_data},
{":/help/dpad_updown.svg", help_dpad_updown_svg_size, help_dpad_updown_svg_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(":/arrow.svg", res2hFiles[0]),
std::make_pair(":/busy_0.svg", res2hFiles[1]),
std::make_pair(":/busy_1.svg", res2hFiles[2]),
std::make_pair(":/busy_2.svg", res2hFiles[3]),
std::make_pair(":/busy_3.svg", res2hFiles[4]),
std::make_pair(":/button.png", res2hFiles[5]),
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(":/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]),
std::make_pair(":/help/button_r.svg", res2hFiles[28]),
std::make_pair(":/help/button_select.svg", res2hFiles[29]),
std::make_pair(":/help/button_start.svg", res2hFiles[30]),
std::make_pair(":/help/button_x.svg", res2hFiles[31]),
std::make_pair(":/help/button_y.svg", res2hFiles[32]),
std::make_pair(":/help/dpad_all.svg", res2hFiles[33]),
std::make_pair(":/help/dpad_down.svg", res2hFiles[34]),
std::make_pair(":/help/dpad_left.svg", res2hFiles[35]),
std::make_pair(":/help/dpad_leftright.svg", res2hFiles[36]),
std::make_pair(":/help/dpad_right.svg", res2hFiles[37]),
std::make_pair(":/help/dpad_up.svg", res2hFiles[38]),
std::make_pair(":/help/dpad_updown.svg", res2hFiles[39])
};
res2hMapType res2hMap(mapTemp, mapTemp + sizeof mapTemp / sizeof mapTemp[0]);

View file

@ -5,17 +5,125 @@
#include <string>
#include <map>
extern const size_t bar_png_size;
extern const unsigned char bar_png_data[];
extern const size_t arrow_svg_size;
extern const unsigned char arrow_svg_data[];
extern const size_t corner_png_size;
extern const unsigned char corner_png_data[];
extern const size_t busy_0_svg_size;
extern const unsigned char busy_0_svg_data[];
extern const size_t ES_logo_16_png_size;
extern const unsigned char ES_logo_16_png_data[];
extern const size_t busy_1_svg_size;
extern const unsigned char busy_1_svg_data[];
extern const size_t ES_logo_32_png_size;
extern const unsigned char ES_logo_32_png_data[];
extern const size_t busy_2_svg_size;
extern const unsigned char busy_2_svg_data[];
extern const size_t busy_3_svg_size;
extern const unsigned char busy_3_svg_data[];
extern const size_t button_png_size;
extern const unsigned char button_png_data[];
extern const size_t button_filled_png_size;
extern const unsigned char button_filled_png_data[];
extern const size_t checkbox_checked_svg_size;
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 fav_add_svg_size;
extern const unsigned char fav_add_svg_data[];
extern const size_t fav_remove_svg_size;
extern const unsigned char fav_remove_svg_data[];
extern const size_t frame_png_size;
extern const unsigned char frame_png_data[];
extern const size_t off_svg_size;
extern const unsigned char off_svg_data[];
extern const size_t on_svg_size;
extern const unsigned char on_svg_data[];
extern const size_t opensans_hebrew_condensed_light_ttf_size;
extern const unsigned char opensans_hebrew_condensed_light_ttf_data[];
extern const size_t opensans_hebrew_condensed_regular_ttf_size;
extern const unsigned char opensans_hebrew_condensed_regular_ttf_data[];
extern const size_t option_arrow_svg_size;
extern const unsigned char option_arrow_svg_data[];
extern const size_t scroll_gradient_png_size;
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[];
extern const size_t star_unfilled_svg_size;
extern const unsigned char star_unfilled_svg_data[];
extern const size_t textinput_ninepatch_png_size;
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[];
extern const size_t help_button_b_svg_size;
extern const unsigned char help_button_b_svg_data[];
extern const size_t help_button_l_svg_size;
extern const unsigned char help_button_l_svg_data[];
extern const size_t help_button_r_svg_size;
extern const unsigned char help_button_r_svg_data[];
extern const size_t help_button_select_svg_size;
extern const unsigned char help_button_select_svg_data[];
extern const size_t help_button_start_svg_size;
extern const unsigned char help_button_start_svg_data[];
extern const size_t help_button_x_svg_size;
extern const unsigned char help_button_x_svg_data[];
extern const size_t help_button_y_svg_size;
extern const unsigned char help_button_y_svg_data[];
extern const size_t help_dpad_all_svg_size;
extern const unsigned char help_dpad_all_svg_data[];
extern const size_t help_dpad_down_svg_size;
extern const unsigned char help_dpad_down_svg_data[];
extern const size_t help_dpad_left_svg_size;
extern const unsigned char help_dpad_left_svg_data[];
extern const size_t help_dpad_leftright_svg_size;
extern const unsigned char help_dpad_leftright_svg_data[];
extern const size_t help_dpad_right_svg_size;
extern const unsigned char help_dpad_right_svg_data[];
extern const size_t help_dpad_up_svg_size;
extern const unsigned char help_dpad_up_svg_data[];
extern const size_t help_dpad_updown_svg_size;
extern const unsigned char help_dpad_updown_svg_data[];
struct Res2hEntry {
const std::string relativeFileName;

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
};

View file

@ -0,0 +1,92 @@
//this file was auto-generated from "arrow.svg" by res2h
#include "../Resources.h"
const size_t arrow_svg_size = 849;
const unsigned char arrow_svg_data[849] = {
0x3c,0x3f,0x78,0x6d,0x6c,0x20,0x76,0x65,0x72,0x73,
0x69,0x6f,0x6e,0x3d,0x22,0x31,0x2e,0x30,0x22,0x20,
0x65,0x6e,0x63,0x6f,0x64,0x69,0x6e,0x67,0x3d,0x22,
0x75,0x74,0x66,0x2d,0x38,0x22,0x3f,0x3e,0x0d,0x0a,
0x3c,0x21,0x2d,0x2d,0x20,0x47,0x65,0x6e,0x65,0x72,
0x61,0x74,0x6f,0x72,0x3a,0x20,0x41,0x64,0x6f,0x62,
0x65,0x20,0x49,0x6c,0x6c,0x75,0x73,0x74,0x72,0x61,
0x74,0x6f,0x72,0x20,0x31,0x36,0x2e,0x30,0x2e,0x33,
0x2c,0x20,0x53,0x56,0x47,0x20,0x45,0x78,0x70,0x6f,
0x72,0x74,0x20,0x50,0x6c,0x75,0x67,0x2d,0x49,0x6e,
0x20,0x2e,0x20,0x53,0x56,0x47,0x20,0x56,0x65,0x72,
0x73,0x69,0x6f,0x6e,0x3a,0x20,0x36,0x2e,0x30,0x30,
0x20,0x42,0x75,0x69,0x6c,0x64,0x20,0x30,0x29,0x20,
0x20,0x2d,0x2d,0x3e,0x0d,0x0a,0x3c,0x21,0x44,0x4f,
0x43,0x54,0x59,0x50,0x45,0x20,0x73,0x76,0x67,0x20,
0x50,0x55,0x42,0x4c,0x49,0x43,0x20,0x22,0x2d,0x2f,
0x2f,0x57,0x33,0x43,0x2f,0x2f,0x44,0x54,0x44,0x20,
0x53,0x56,0x47,0x20,0x31,0x2e,0x31,0x2f,0x2f,0x45,
0x4e,0x22,0x20,0x22,0x68,0x74,0x74,0x70,0x3a,0x2f,
0x2f,0x77,0x77,0x77,0x2e,0x77,0x33,0x2e,0x6f,0x72,
0x67,0x2f,0x47,0x72,0x61,0x70,0x68,0x69,0x63,0x73,
0x2f,0x53,0x56,0x47,0x2f,0x31,0x2e,0x31,0x2f,0x44,
0x54,0x44,0x2f,0x73,0x76,0x67,0x31,0x31,0x2e,0x64,
0x74,0x64,0x22,0x3e,0x0d,0x0a,0x3c,0x73,0x76,0x67,
0x20,0x76,0x65,0x72,0x73,0x69,0x6f,0x6e,0x3d,0x22,
0x31,0x2e,0x31,0x22,0x20,0x69,0x64,0x3d,0x22,0x45,
0x62,0x65,0x6e,0x65,0x5f,0x31,0x22,0x20,0x78,0x6d,
0x6c,0x6e,0x73,0x3d,0x22,0x68,0x74,0x74,0x70,0x3a,
0x2f,0x2f,0x77,0x77,0x77,0x2e,0x77,0x33,0x2e,0x6f,
0x72,0x67,0x2f,0x32,0x30,0x30,0x30,0x2f,0x73,0x76,
0x67,0x22,0x20,0x78,0x6d,0x6c,0x6e,0x73,0x3a,0x78,
0x6c,0x69,0x6e,0x6b,0x3d,0x22,0x68,0x74,0x74,0x70,
0x3a,0x2f,0x2f,0x77,0x77,0x77,0x2e,0x77,0x33,0x2e,
0x6f,0x72,0x67,0x2f,0x31,0x39,0x39,0x39,0x2f,0x78,
0x6c,0x69,0x6e,0x6b,0x22,0x20,0x78,0x3d,0x22,0x30,
0x70,0x78,0x22,0x20,0x79,0x3d,0x22,0x30,0x70,0x78,
0x22,0x0d,0x0a,0x09,0x20,0x77,0x69,0x64,0x74,0x68,
0x3d,0x22,0x31,0x32,0x2e,0x31,0x36,0x35,0x70,0x78,
0x22,0x20,0x68,0x65,0x69,0x67,0x68,0x74,0x3d,0x22,
0x32,0x31,0x2e,0x39,0x32,0x31,0x70,0x78,0x22,0x20,
0x76,0x69,0x65,0x77,0x42,0x6f,0x78,0x3d,0x22,0x30,
0x20,0x30,0x20,0x31,0x32,0x2e,0x31,0x36,0x35,0x20,
0x32,0x31,0x2e,0x39,0x32,0x31,0x22,0x20,0x65,0x6e,
0x61,0x62,0x6c,0x65,0x2d,0x62,0x61,0x63,0x6b,0x67,
0x72,0x6f,0x75,0x6e,0x64,0x3d,0x22,0x6e,0x65,0x77,
0x20,0x30,0x20,0x30,0x20,0x31,0x32,0x2e,0x31,0x36,
0x35,0x20,0x32,0x31,0x2e,0x39,0x32,0x31,0x22,0x20,
0x78,0x6d,0x6c,0x3a,0x73,0x70,0x61,0x63,0x65,0x3d,
0x22,0x70,0x72,0x65,0x73,0x65,0x72,0x76,0x65,0x22,
0x3e,0x0d,0x0a,0x3c,0x67,0x3e,0x0d,0x0a,0x09,0x3c,
0x70,0x61,0x74,0x68,0x20,0x66,0x69,0x6c,0x6c,0x3d,
0x22,0x23,0x37,0x37,0x37,0x37,0x37,0x37,0x22,0x20,
0x64,0x3d,0x22,0x4d,0x30,0x2e,0x37,0x35,0x2c,0x32,
0x31,0x2e,0x39,0x32,0x31,0x63,0x2d,0x30,0x2e,0x31,
0x39,0x37,0x2c,0x30,0x2d,0x30,0x2e,0x33,0x39,0x35,
0x2d,0x30,0x2e,0x30,0x37,0x37,0x2d,0x30,0x2e,0x35,
0x34,0x32,0x2d,0x30,0x2e,0x32,0x33,0x31,0x63,0x2d,
0x30,0x2e,0x32,0x38,0x37,0x2d,0x30,0x2e,0x32,0x39,
0x39,0x2d,0x30,0x2e,0x32,0x37,0x36,0x2d,0x30,0x2e,
0x37,0x37,0x33,0x2c,0x30,0x2e,0x30,0x32,0x33,0x2d,
0x31,0x2e,0x30,0x36,0x31,0x6c,0x31,0x30,0x2e,0x30,
0x39,0x38,0x2d,0x39,0x2e,0x36,0x36,0x38,0x0d,0x0a,
0x09,0x09,0x4c,0x30,0x2e,0x32,0x33,0x31,0x2c,0x31,
0x2e,0x32,0x39,0x32,0x63,0x2d,0x30,0x2e,0x32,0x39,
0x39,0x2d,0x30,0x2e,0x32,0x38,0x36,0x2d,0x30,0x2e,
0x33,0x31,0x2d,0x30,0x2e,0x37,0x36,0x31,0x2d,0x30,
0x2e,0x30,0x32,0x33,0x2d,0x31,0x2e,0x30,0x36,0x63,
0x30,0x2e,0x32,0x38,0x36,0x2d,0x30,0x2e,0x33,0x2c,
0x30,0x2e,0x37,0x36,0x31,0x2d,0x30,0x2e,0x33,0x31,
0x2c,0x31,0x2e,0x30,0x36,0x2d,0x30,0x2e,0x30,0x32,
0x33,0x6c,0x31,0x30,0x2e,0x36,0x36,0x35,0x2c,0x31,
0x30,0x2e,0x32,0x31,0x31,0x0d,0x0a,0x09,0x09,0x63,
0x30,0x2e,0x31,0x34,0x37,0x2c,0x30,0x2e,0x31,0x34,
0x31,0x2c,0x30,0x2e,0x32,0x33,0x31,0x2c,0x30,0x2e,
0x33,0x33,0x37,0x2c,0x30,0x2e,0x32,0x33,0x31,0x2c,
0x30,0x2e,0x35,0x34,0x32,0x73,0x2d,0x30,0x2e,0x30,
0x38,0x34,0x2c,0x30,0x2e,0x34,0x2d,0x30,0x2e,0x32,
0x33,0x31,0x2c,0x30,0x2e,0x35,0x34,0x32,0x4c,0x31,
0x2e,0x32,0x36,0x39,0x2c,0x32,0x31,0x2e,0x37,0x31,
0x33,0x43,0x31,0x2e,0x31,0x32,0x34,0x2c,0x32,0x31,
0x2e,0x38,0x35,0x32,0x2c,0x30,0x2e,0x39,0x33,0x37,
0x2c,0x32,0x31,0x2e,0x39,0x32,0x31,0x2c,0x30,0x2e,
0x37,0x35,0x2c,0x32,0x31,0x2e,0x39,0x32,0x31,0x7a,
0x22,0x2f,0x3e,0x0d,0x0a,0x3c,0x2f,0x67,0x3e,0x0d,
0x0a,0x3c,0x2f,0x73,0x76,0x67,0x3e,0x0d,0x0a
};

View file

@ -1,290 +0,0 @@
//this file was auto-generated from "bar.png" by res2h
#include "../Resources.h"
const size_t bar_png_size = 2825;
const unsigned char bar_png_data[2825] = {
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,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,0x24,0x49,
0x44,0x41,0x54,0x78,0xda,0x62,0xfc,0xff,0xff,0xff,
0x7f,0x06,0x0a,0x00,0x13,0x03,0x85,0x60,0xd4,0x80,
0x51,0x03,0x46,0x0d,0x18,0x2c,0x06,0x00,0x00,0x00,
0x00,0xff,0xff,0x03,0x00,0x6b,0xca,0x04,0x1c,0xc4,
0xc8,0x59,0x18,0x00,0x00,0x00,0x00,0x49,0x45,0x4e,
0x44,0xae,0x42,0x60,0x82
};

View file

@ -0,0 +1,144 @@
//this file was auto-generated from "busy_0.svg" by res2h
#include "../Resources.h"
const size_t busy_0_svg_size = 1369;
const unsigned char busy_0_svg_data[1369] = {
0x3c,0x3f,0x78,0x6d,0x6c,0x20,0x76,0x65,0x72,0x73,
0x69,0x6f,0x6e,0x3d,0x22,0x31,0x2e,0x30,0x22,0x20,
0x65,0x6e,0x63,0x6f,0x64,0x69,0x6e,0x67,0x3d,0x22,
0x75,0x74,0x66,0x2d,0x38,0x22,0x3f,0x3e,0x0d,0x0a,
0x3c,0x21,0x2d,0x2d,0x20,0x47,0x65,0x6e,0x65,0x72,
0x61,0x74,0x6f,0x72,0x3a,0x20,0x41,0x64,0x6f,0x62,
0x65,0x20,0x49,0x6c,0x6c,0x75,0x73,0x74,0x72,0x61,
0x74,0x6f,0x72,0x20,0x31,0x36,0x2e,0x30,0x2e,0x33,
0x2c,0x20,0x53,0x56,0x47,0x20,0x45,0x78,0x70,0x6f,
0x72,0x74,0x20,0x50,0x6c,0x75,0x67,0x2d,0x49,0x6e,
0x20,0x2e,0x20,0x53,0x56,0x47,0x20,0x56,0x65,0x72,
0x73,0x69,0x6f,0x6e,0x3a,0x20,0x36,0x2e,0x30,0x30,
0x20,0x42,0x75,0x69,0x6c,0x64,0x20,0x30,0x29,0x20,
0x20,0x2d,0x2d,0x3e,0x0d,0x0a,0x3c,0x21,0x44,0x4f,
0x43,0x54,0x59,0x50,0x45,0x20,0x73,0x76,0x67,0x20,
0x50,0x55,0x42,0x4c,0x49,0x43,0x20,0x22,0x2d,0x2f,
0x2f,0x57,0x33,0x43,0x2f,0x2f,0x44,0x54,0x44,0x20,
0x53,0x56,0x47,0x20,0x31,0x2e,0x31,0x2f,0x2f,0x45,
0x4e,0x22,0x20,0x22,0x68,0x74,0x74,0x70,0x3a,0x2f,
0x2f,0x77,0x77,0x77,0x2e,0x77,0x33,0x2e,0x6f,0x72,
0x67,0x2f,0x47,0x72,0x61,0x70,0x68,0x69,0x63,0x73,
0x2f,0x53,0x56,0x47,0x2f,0x31,0x2e,0x31,0x2f,0x44,
0x54,0x44,0x2f,0x73,0x76,0x67,0x31,0x31,0x2e,0x64,
0x74,0x64,0x22,0x3e,0x0d,0x0a,0x3c,0x73,0x76,0x67,
0x20,0x76,0x65,0x72,0x73,0x69,0x6f,0x6e,0x3d,0x22,
0x31,0x2e,0x31,0x22,0x20,0x69,0x64,0x3d,0x22,0x45,
0x62,0x65,0x6e,0x65,0x5f,0x31,0x22,0x20,0x78,0x6d,
0x6c,0x6e,0x73,0x3d,0x22,0x68,0x74,0x74,0x70,0x3a,
0x2f,0x2f,0x77,0x77,0x77,0x2e,0x77,0x33,0x2e,0x6f,
0x72,0x67,0x2f,0x32,0x30,0x30,0x30,0x2f,0x73,0x76,
0x67,0x22,0x20,0x78,0x6d,0x6c,0x6e,0x73,0x3a,0x78,
0x6c,0x69,0x6e,0x6b,0x3d,0x22,0x68,0x74,0x74,0x70,
0x3a,0x2f,0x2f,0x77,0x77,0x77,0x2e,0x77,0x33,0x2e,
0x6f,0x72,0x67,0x2f,0x31,0x39,0x39,0x39,0x2f,0x78,
0x6c,0x69,0x6e,0x6b,0x22,0x20,0x78,0x3d,0x22,0x30,
0x70,0x78,0x22,0x20,0x79,0x3d,0x22,0x30,0x70,0x78,
0x22,0x0d,0x0a,0x09,0x20,0x77,0x69,0x64,0x74,0x68,
0x3d,0x22,0x32,0x31,0x2e,0x30,0x30,0x32,0x70,0x78,
0x22,0x20,0x68,0x65,0x69,0x67,0x68,0x74,0x3d,0x22,
0x32,0x32,0x2e,0x30,0x30,0x32,0x70,0x78,0x22,0x20,
0x76,0x69,0x65,0x77,0x42,0x6f,0x78,0x3d,0x22,0x30,
0x20,0x30,0x20,0x32,0x31,0x2e,0x30,0x30,0x32,0x20,
0x32,0x32,0x2e,0x30,0x30,0x32,0x22,0x20,0x65,0x6e,
0x61,0x62,0x6c,0x65,0x2d,0x62,0x61,0x63,0x6b,0x67,
0x72,0x6f,0x75,0x6e,0x64,0x3d,0x22,0x6e,0x65,0x77,
0x20,0x30,0x20,0x30,0x20,0x32,0x31,0x2e,0x30,0x30,
0x32,0x20,0x32,0x32,0x2e,0x30,0x30,0x32,0x22,0x20,
0x78,0x6d,0x6c,0x3a,0x73,0x70,0x61,0x63,0x65,0x3d,
0x22,0x70,0x72,0x65,0x73,0x65,0x72,0x76,0x65,0x22,
0x3e,0x0d,0x0a,0x3c,0x67,0x20,0x6f,0x70,0x61,0x63,
0x69,0x74,0x79,0x3d,0x22,0x30,0x2e,0x35,0x22,0x3e,
0x0d,0x0a,0x09,0x3c,0x70,0x61,0x74,0x68,0x20,0x66,
0x69,0x6c,0x6c,0x3d,0x22,0x23,0x37,0x37,0x37,0x37,
0x37,0x37,0x22,0x20,0x64,0x3d,0x22,0x4d,0x32,0x31,
0x2e,0x30,0x30,0x32,0x2c,0x32,0x31,0x2e,0x32,0x39,
0x33,0x63,0x30,0x2c,0x30,0x2e,0x33,0x39,0x2d,0x30,
0x2e,0x33,0x31,0x39,0x2c,0x30,0x2e,0x37,0x30,0x39,
0x2d,0x30,0x2e,0x37,0x30,0x39,0x2c,0x30,0x2e,0x37,
0x30,0x39,0x68,0x2d,0x37,0x2e,0x39,0x33,0x37,0x63,
0x2d,0x30,0x2e,0x33,0x39,0x2c,0x30,0x2d,0x30,0x2e,
0x37,0x30,0x39,0x2d,0x30,0x2e,0x33,0x31,0x39,0x2d,
0x30,0x2e,0x37,0x30,0x39,0x2d,0x30,0x2e,0x37,0x30,
0x39,0x76,0x2d,0x38,0x2e,0x33,0x37,0x39,0x0d,0x0a,
0x09,0x09,0x63,0x30,0x2d,0x30,0x2e,0x33,0x39,0x2c,
0x30,0x2e,0x33,0x31,0x39,0x2d,0x30,0x2e,0x37,0x30,
0x39,0x2c,0x30,0x2e,0x37,0x30,0x39,0x2d,0x30,0x2e,
0x37,0x30,0x39,0x68,0x37,0x2e,0x39,0x33,0x37,0x63,
0x30,0x2e,0x33,0x39,0x2c,0x30,0x2c,0x30,0x2e,0x37,
0x30,0x39,0x2c,0x30,0x2e,0x33,0x31,0x39,0x2c,0x30,
0x2e,0x37,0x30,0x39,0x2c,0x30,0x2e,0x37,0x30,0x39,
0x56,0x32,0x31,0x2e,0x32,0x39,0x33,0x7a,0x22,0x2f,
0x3e,0x0d,0x0a,0x3c,0x2f,0x67,0x3e,0x0d,0x0a,0x3c,
0x67,0x20,0x6f,0x70,0x61,0x63,0x69,0x74,0x79,0x3d,
0x22,0x30,0x2e,0x35,0x22,0x3e,0x0d,0x0a,0x09,0x3c,
0x70,0x61,0x74,0x68,0x20,0x66,0x69,0x6c,0x6c,0x3d,
0x22,0x23,0x37,0x37,0x37,0x37,0x37,0x37,0x22,0x20,
0x64,0x3d,0x22,0x4d,0x32,0x31,0x2e,0x30,0x30,0x32,
0x2c,0x39,0x2e,0x30,0x38,0x38,0x63,0x30,0x2c,0x30,
0x2e,0x33,0x39,0x2d,0x30,0x2e,0x33,0x31,0x39,0x2c,
0x30,0x2e,0x37,0x30,0x38,0x2d,0x30,0x2e,0x37,0x30,
0x39,0x2c,0x30,0x2e,0x37,0x30,0x38,0x68,0x2d,0x37,
0x2e,0x39,0x33,0x37,0x63,0x2d,0x30,0x2e,0x33,0x39,
0x2c,0x30,0x2d,0x30,0x2e,0x37,0x30,0x39,0x2d,0x30,
0x2e,0x33,0x31,0x39,0x2d,0x30,0x2e,0x37,0x30,0x39,
0x2d,0x30,0x2e,0x37,0x30,0x38,0x56,0x30,0x2e,0x37,
0x30,0x38,0x0d,0x0a,0x09,0x09,0x63,0x30,0x2d,0x30,
0x2e,0x33,0x39,0x2c,0x30,0x2e,0x33,0x31,0x39,0x2d,
0x30,0x2e,0x37,0x30,0x38,0x2c,0x30,0x2e,0x37,0x30,
0x39,0x2d,0x30,0x2e,0x37,0x30,0x38,0x68,0x37,0x2e,
0x39,0x33,0x37,0x63,0x30,0x2e,0x33,0x39,0x2c,0x30,
0x2c,0x30,0x2e,0x37,0x30,0x39,0x2c,0x30,0x2e,0x33,
0x31,0x39,0x2c,0x30,0x2e,0x37,0x30,0x39,0x2c,0x30,
0x2e,0x37,0x30,0x38,0x56,0x39,0x2e,0x30,0x38,0x38,
0x7a,0x22,0x2f,0x3e,0x0d,0x0a,0x3c,0x2f,0x67,0x3e,
0x0d,0x0a,0x3c,0x67,0x20,0x6f,0x70,0x61,0x63,0x69,
0x74,0x79,0x3d,0x22,0x30,0x2e,0x35,0x22,0x3e,0x0d,
0x0a,0x09,0x3c,0x70,0x61,0x74,0x68,0x20,0x66,0x69,
0x6c,0x6c,0x3d,0x22,0x23,0x37,0x37,0x37,0x37,0x37,
0x37,0x22,0x20,0x64,0x3d,0x22,0x4d,0x39,0x2e,0x33,
0x35,0x34,0x2c,0x32,0x31,0x2e,0x32,0x39,0x33,0x63,
0x30,0x2c,0x30,0x2e,0x33,0x39,0x2d,0x30,0x2e,0x33,
0x31,0x39,0x2c,0x30,0x2e,0x37,0x30,0x39,0x2d,0x30,
0x2e,0x37,0x30,0x38,0x2c,0x30,0x2e,0x37,0x30,0x39,
0x48,0x30,0x2e,0x37,0x30,0x38,0x43,0x30,0x2e,0x33,
0x31,0x39,0x2c,0x32,0x32,0x2e,0x30,0x30,0x32,0x2c,
0x30,0x2c,0x32,0x31,0x2e,0x36,0x38,0x33,0x2c,0x30,
0x2c,0x32,0x31,0x2e,0x32,0x39,0x33,0x76,0x2d,0x38,
0x2e,0x33,0x37,0x39,0x0d,0x0a,0x09,0x09,0x63,0x30,
0x2d,0x30,0x2e,0x33,0x39,0x2c,0x30,0x2e,0x33,0x31,
0x39,0x2d,0x30,0x2e,0x37,0x30,0x39,0x2c,0x30,0x2e,
0x37,0x30,0x38,0x2d,0x30,0x2e,0x37,0x30,0x39,0x68,
0x37,0x2e,0x39,0x33,0x38,0x63,0x30,0x2e,0x33,0x39,
0x2c,0x30,0x2c,0x30,0x2e,0x37,0x30,0x38,0x2c,0x30,
0x2e,0x33,0x31,0x39,0x2c,0x30,0x2e,0x37,0x30,0x38,
0x2c,0x30,0x2e,0x37,0x30,0x39,0x56,0x32,0x31,0x2e,
0x32,0x39,0x33,0x7a,0x22,0x2f,0x3e,0x0d,0x0a,0x3c,
0x2f,0x67,0x3e,0x0d,0x0a,0x3c,0x67,0x3e,0x0d,0x0a,
0x09,0x3c,0x70,0x61,0x74,0x68,0x20,0x66,0x69,0x6c,
0x6c,0x3d,0x22,0x23,0x37,0x37,0x37,0x37,0x37,0x37,
0x22,0x20,0x64,0x3d,0x22,0x4d,0x39,0x2e,0x33,0x35,
0x34,0x2c,0x39,0x2e,0x30,0x38,0x37,0x63,0x30,0x2c,
0x30,0x2e,0x33,0x39,0x2d,0x30,0x2e,0x33,0x31,0x39,
0x2c,0x30,0x2e,0x37,0x30,0x38,0x2d,0x30,0x2e,0x37,
0x30,0x38,0x2c,0x30,0x2e,0x37,0x30,0x38,0x48,0x30,
0x2e,0x37,0x30,0x38,0x43,0x30,0x2e,0x33,0x31,0x39,
0x2c,0x39,0x2e,0x37,0x39,0x36,0x2c,0x30,0x2c,0x39,
0x2e,0x34,0x37,0x37,0x2c,0x30,0x2c,0x39,0x2e,0x30,
0x38,0x37,0x56,0x30,0x2e,0x37,0x30,0x38,0x0d,0x0a,
0x09,0x09,0x43,0x30,0x2c,0x30,0x2e,0x33,0x31,0x39,
0x2c,0x30,0x2e,0x33,0x31,0x39,0x2c,0x30,0x2c,0x30,
0x2e,0x37,0x30,0x38,0x2c,0x30,0x68,0x37,0x2e,0x39,
0x33,0x38,0x63,0x30,0x2e,0x33,0x39,0x2c,0x30,0x2c,
0x30,0x2e,0x37,0x30,0x38,0x2c,0x30,0x2e,0x33,0x31,
0x39,0x2c,0x30,0x2e,0x37,0x30,0x38,0x2c,0x30,0x2e,
0x37,0x30,0x38,0x56,0x39,0x2e,0x30,0x38,0x37,0x7a,
0x22,0x2f,0x3e,0x0d,0x0a,0x3c,0x2f,0x67,0x3e,0x0d,
0x0a,0x3c,0x2f,0x73,0x76,0x67,0x3e,0x0d,0x0a
};

View file

@ -0,0 +1,144 @@
//this file was auto-generated from "busy_1.svg" by res2h
#include "../Resources.h"
const size_t busy_1_svg_size = 1369;
const unsigned char busy_1_svg_data[1369] = {
0x3c,0x3f,0x78,0x6d,0x6c,0x20,0x76,0x65,0x72,0x73,
0x69,0x6f,0x6e,0x3d,0x22,0x31,0x2e,0x30,0x22,0x20,
0x65,0x6e,0x63,0x6f,0x64,0x69,0x6e,0x67,0x3d,0x22,
0x75,0x74,0x66,0x2d,0x38,0x22,0x3f,0x3e,0x0d,0x0a,
0x3c,0x21,0x2d,0x2d,0x20,0x47,0x65,0x6e,0x65,0x72,
0x61,0x74,0x6f,0x72,0x3a,0x20,0x41,0x64,0x6f,0x62,
0x65,0x20,0x49,0x6c,0x6c,0x75,0x73,0x74,0x72,0x61,
0x74,0x6f,0x72,0x20,0x31,0x36,0x2e,0x30,0x2e,0x33,
0x2c,0x20,0x53,0x56,0x47,0x20,0x45,0x78,0x70,0x6f,
0x72,0x74,0x20,0x50,0x6c,0x75,0x67,0x2d,0x49,0x6e,
0x20,0x2e,0x20,0x53,0x56,0x47,0x20,0x56,0x65,0x72,
0x73,0x69,0x6f,0x6e,0x3a,0x20,0x36,0x2e,0x30,0x30,
0x20,0x42,0x75,0x69,0x6c,0x64,0x20,0x30,0x29,0x20,
0x20,0x2d,0x2d,0x3e,0x0d,0x0a,0x3c,0x21,0x44,0x4f,
0x43,0x54,0x59,0x50,0x45,0x20,0x73,0x76,0x67,0x20,
0x50,0x55,0x42,0x4c,0x49,0x43,0x20,0x22,0x2d,0x2f,
0x2f,0x57,0x33,0x43,0x2f,0x2f,0x44,0x54,0x44,0x20,
0x53,0x56,0x47,0x20,0x31,0x2e,0x31,0x2f,0x2f,0x45,
0x4e,0x22,0x20,0x22,0x68,0x74,0x74,0x70,0x3a,0x2f,
0x2f,0x77,0x77,0x77,0x2e,0x77,0x33,0x2e,0x6f,0x72,
0x67,0x2f,0x47,0x72,0x61,0x70,0x68,0x69,0x63,0x73,
0x2f,0x53,0x56,0x47,0x2f,0x31,0x2e,0x31,0x2f,0x44,
0x54,0x44,0x2f,0x73,0x76,0x67,0x31,0x31,0x2e,0x64,
0x74,0x64,0x22,0x3e,0x0d,0x0a,0x3c,0x73,0x76,0x67,
0x20,0x76,0x65,0x72,0x73,0x69,0x6f,0x6e,0x3d,0x22,
0x31,0x2e,0x31,0x22,0x20,0x69,0x64,0x3d,0x22,0x45,
0x62,0x65,0x6e,0x65,0x5f,0x31,0x22,0x20,0x78,0x6d,
0x6c,0x6e,0x73,0x3d,0x22,0x68,0x74,0x74,0x70,0x3a,
0x2f,0x2f,0x77,0x77,0x77,0x2e,0x77,0x33,0x2e,0x6f,
0x72,0x67,0x2f,0x32,0x30,0x30,0x30,0x2f,0x73,0x76,
0x67,0x22,0x20,0x78,0x6d,0x6c,0x6e,0x73,0x3a,0x78,
0x6c,0x69,0x6e,0x6b,0x3d,0x22,0x68,0x74,0x74,0x70,
0x3a,0x2f,0x2f,0x77,0x77,0x77,0x2e,0x77,0x33,0x2e,
0x6f,0x72,0x67,0x2f,0x31,0x39,0x39,0x39,0x2f,0x78,
0x6c,0x69,0x6e,0x6b,0x22,0x20,0x78,0x3d,0x22,0x30,
0x70,0x78,0x22,0x20,0x79,0x3d,0x22,0x30,0x70,0x78,
0x22,0x0d,0x0a,0x09,0x20,0x77,0x69,0x64,0x74,0x68,
0x3d,0x22,0x32,0x31,0x2e,0x30,0x30,0x32,0x70,0x78,
0x22,0x20,0x68,0x65,0x69,0x67,0x68,0x74,0x3d,0x22,
0x32,0x32,0x2e,0x30,0x30,0x32,0x70,0x78,0x22,0x20,
0x76,0x69,0x65,0x77,0x42,0x6f,0x78,0x3d,0x22,0x30,
0x20,0x30,0x20,0x32,0x31,0x2e,0x30,0x30,0x32,0x20,
0x32,0x32,0x2e,0x30,0x30,0x32,0x22,0x20,0x65,0x6e,
0x61,0x62,0x6c,0x65,0x2d,0x62,0x61,0x63,0x6b,0x67,
0x72,0x6f,0x75,0x6e,0x64,0x3d,0x22,0x6e,0x65,0x77,
0x20,0x30,0x20,0x30,0x20,0x32,0x31,0x2e,0x30,0x30,
0x32,0x20,0x32,0x32,0x2e,0x30,0x30,0x32,0x22,0x20,
0x78,0x6d,0x6c,0x3a,0x73,0x70,0x61,0x63,0x65,0x3d,
0x22,0x70,0x72,0x65,0x73,0x65,0x72,0x76,0x65,0x22,
0x3e,0x0d,0x0a,0x3c,0x67,0x20,0x6f,0x70,0x61,0x63,
0x69,0x74,0x79,0x3d,0x22,0x30,0x2e,0x35,0x22,0x3e,
0x0d,0x0a,0x09,0x3c,0x70,0x61,0x74,0x68,0x20,0x66,
0x69,0x6c,0x6c,0x3d,0x22,0x23,0x37,0x37,0x37,0x37,
0x37,0x37,0x22,0x20,0x64,0x3d,0x22,0x4d,0x32,0x31,
0x2e,0x30,0x30,0x32,0x2c,0x32,0x31,0x2e,0x32,0x39,
0x33,0x63,0x30,0x2c,0x30,0x2e,0x33,0x39,0x2d,0x30,
0x2e,0x33,0x31,0x39,0x2c,0x30,0x2e,0x37,0x30,0x39,
0x2d,0x30,0x2e,0x37,0x30,0x39,0x2c,0x30,0x2e,0x37,
0x30,0x39,0x68,0x2d,0x37,0x2e,0x39,0x33,0x37,0x63,
0x2d,0x30,0x2e,0x33,0x39,0x2c,0x30,0x2d,0x30,0x2e,
0x37,0x30,0x39,0x2d,0x30,0x2e,0x33,0x31,0x39,0x2d,
0x30,0x2e,0x37,0x30,0x39,0x2d,0x30,0x2e,0x37,0x30,
0x39,0x76,0x2d,0x38,0x2e,0x33,0x37,0x39,0x0d,0x0a,
0x09,0x09,0x63,0x30,0x2d,0x30,0x2e,0x33,0x39,0x2c,
0x30,0x2e,0x33,0x31,0x39,0x2d,0x30,0x2e,0x37,0x30,
0x39,0x2c,0x30,0x2e,0x37,0x30,0x39,0x2d,0x30,0x2e,
0x37,0x30,0x39,0x68,0x37,0x2e,0x39,0x33,0x37,0x63,
0x30,0x2e,0x33,0x39,0x2c,0x30,0x2c,0x30,0x2e,0x37,
0x30,0x39,0x2c,0x30,0x2e,0x33,0x31,0x39,0x2c,0x30,
0x2e,0x37,0x30,0x39,0x2c,0x30,0x2e,0x37,0x30,0x39,
0x56,0x32,0x31,0x2e,0x32,0x39,0x33,0x7a,0x22,0x2f,
0x3e,0x0d,0x0a,0x3c,0x2f,0x67,0x3e,0x0d,0x0a,0x3c,
0x67,0x3e,0x0d,0x0a,0x09,0x3c,0x70,0x61,0x74,0x68,
0x20,0x66,0x69,0x6c,0x6c,0x3d,0x22,0x23,0x37,0x37,
0x37,0x37,0x37,0x37,0x22,0x20,0x64,0x3d,0x22,0x4d,
0x32,0x31,0x2e,0x30,0x30,0x32,0x2c,0x39,0x2e,0x30,
0x38,0x38,0x63,0x30,0x2c,0x30,0x2e,0x33,0x39,0x2d,
0x30,0x2e,0x33,0x31,0x39,0x2c,0x30,0x2e,0x37,0x30,
0x38,0x2d,0x30,0x2e,0x37,0x30,0x39,0x2c,0x30,0x2e,
0x37,0x30,0x38,0x68,0x2d,0x37,0x2e,0x39,0x33,0x37,
0x63,0x2d,0x30,0x2e,0x33,0x39,0x2c,0x30,0x2d,0x30,
0x2e,0x37,0x30,0x39,0x2d,0x30,0x2e,0x33,0x31,0x39,
0x2d,0x30,0x2e,0x37,0x30,0x39,0x2d,0x30,0x2e,0x37,
0x30,0x38,0x56,0x30,0x2e,0x37,0x30,0x38,0x0d,0x0a,
0x09,0x09,0x63,0x30,0x2d,0x30,0x2e,0x33,0x39,0x2c,
0x30,0x2e,0x33,0x31,0x39,0x2d,0x30,0x2e,0x37,0x30,
0x38,0x2c,0x30,0x2e,0x37,0x30,0x39,0x2d,0x30,0x2e,
0x37,0x30,0x38,0x68,0x37,0x2e,0x39,0x33,0x37,0x63,
0x30,0x2e,0x33,0x39,0x2c,0x30,0x2c,0x30,0x2e,0x37,
0x30,0x39,0x2c,0x30,0x2e,0x33,0x31,0x39,0x2c,0x30,
0x2e,0x37,0x30,0x39,0x2c,0x30,0x2e,0x37,0x30,0x38,
0x56,0x39,0x2e,0x30,0x38,0x38,0x7a,0x22,0x2f,0x3e,
0x0d,0x0a,0x3c,0x2f,0x67,0x3e,0x0d,0x0a,0x3c,0x67,
0x20,0x6f,0x70,0x61,0x63,0x69,0x74,0x79,0x3d,0x22,
0x30,0x2e,0x35,0x22,0x3e,0x0d,0x0a,0x09,0x3c,0x70,
0x61,0x74,0x68,0x20,0x66,0x69,0x6c,0x6c,0x3d,0x22,
0x23,0x37,0x37,0x37,0x37,0x37,0x37,0x22,0x20,0x64,
0x3d,0x22,0x4d,0x39,0x2e,0x33,0x35,0x34,0x2c,0x32,
0x31,0x2e,0x32,0x39,0x33,0x63,0x30,0x2c,0x30,0x2e,
0x33,0x39,0x2d,0x30,0x2e,0x33,0x31,0x39,0x2c,0x30,
0x2e,0x37,0x30,0x39,0x2d,0x30,0x2e,0x37,0x30,0x38,
0x2c,0x30,0x2e,0x37,0x30,0x39,0x48,0x30,0x2e,0x37,
0x30,0x38,0x43,0x30,0x2e,0x33,0x31,0x39,0x2c,0x32,
0x32,0x2e,0x30,0x30,0x32,0x2c,0x30,0x2c,0x32,0x31,
0x2e,0x36,0x38,0x33,0x2c,0x30,0x2c,0x32,0x31,0x2e,
0x32,0x39,0x33,0x76,0x2d,0x38,0x2e,0x33,0x37,0x39,
0x0d,0x0a,0x09,0x09,0x63,0x30,0x2d,0x30,0x2e,0x33,
0x39,0x2c,0x30,0x2e,0x33,0x31,0x39,0x2d,0x30,0x2e,
0x37,0x30,0x39,0x2c,0x30,0x2e,0x37,0x30,0x38,0x2d,
0x30,0x2e,0x37,0x30,0x39,0x68,0x37,0x2e,0x39,0x33,
0x38,0x63,0x30,0x2e,0x33,0x39,0x2c,0x30,0x2c,0x30,
0x2e,0x37,0x30,0x38,0x2c,0x30,0x2e,0x33,0x31,0x39,
0x2c,0x30,0x2e,0x37,0x30,0x38,0x2c,0x30,0x2e,0x37,
0x30,0x39,0x56,0x32,0x31,0x2e,0x32,0x39,0x33,0x7a,
0x22,0x2f,0x3e,0x0d,0x0a,0x3c,0x2f,0x67,0x3e,0x0d,
0x0a,0x3c,0x67,0x20,0x6f,0x70,0x61,0x63,0x69,0x74,
0x79,0x3d,0x22,0x30,0x2e,0x35,0x22,0x3e,0x0d,0x0a,
0x09,0x3c,0x70,0x61,0x74,0x68,0x20,0x66,0x69,0x6c,
0x6c,0x3d,0x22,0x23,0x37,0x37,0x37,0x37,0x37,0x37,
0x22,0x20,0x64,0x3d,0x22,0x4d,0x39,0x2e,0x33,0x35,
0x34,0x2c,0x39,0x2e,0x30,0x38,0x37,0x63,0x30,0x2c,
0x30,0x2e,0x33,0x39,0x2d,0x30,0x2e,0x33,0x31,0x39,
0x2c,0x30,0x2e,0x37,0x30,0x38,0x2d,0x30,0x2e,0x37,
0x30,0x38,0x2c,0x30,0x2e,0x37,0x30,0x38,0x48,0x30,
0x2e,0x37,0x30,0x38,0x43,0x30,0x2e,0x33,0x31,0x39,
0x2c,0x39,0x2e,0x37,0x39,0x36,0x2c,0x30,0x2c,0x39,
0x2e,0x34,0x37,0x37,0x2c,0x30,0x2c,0x39,0x2e,0x30,
0x38,0x37,0x56,0x30,0x2e,0x37,0x30,0x38,0x0d,0x0a,
0x09,0x09,0x43,0x30,0x2c,0x30,0x2e,0x33,0x31,0x39,
0x2c,0x30,0x2e,0x33,0x31,0x39,0x2c,0x30,0x2c,0x30,
0x2e,0x37,0x30,0x38,0x2c,0x30,0x68,0x37,0x2e,0x39,
0x33,0x38,0x63,0x30,0x2e,0x33,0x39,0x2c,0x30,0x2c,
0x30,0x2e,0x37,0x30,0x38,0x2c,0x30,0x2e,0x33,0x31,
0x39,0x2c,0x30,0x2e,0x37,0x30,0x38,0x2c,0x30,0x2e,
0x37,0x30,0x38,0x56,0x39,0x2e,0x30,0x38,0x37,0x7a,
0x22,0x2f,0x3e,0x0d,0x0a,0x3c,0x2f,0x67,0x3e,0x0d,
0x0a,0x3c,0x2f,0x73,0x76,0x67,0x3e,0x0d,0x0a
};

View file

@ -0,0 +1,144 @@
//this file was auto-generated from "busy_2.svg" by res2h
#include "../Resources.h"
const size_t busy_2_svg_size = 1369;
const unsigned char busy_2_svg_data[1369] = {
0x3c,0x3f,0x78,0x6d,0x6c,0x20,0x76,0x65,0x72,0x73,
0x69,0x6f,0x6e,0x3d,0x22,0x31,0x2e,0x30,0x22,0x20,
0x65,0x6e,0x63,0x6f,0x64,0x69,0x6e,0x67,0x3d,0x22,
0x75,0x74,0x66,0x2d,0x38,0x22,0x3f,0x3e,0x0d,0x0a,
0x3c,0x21,0x2d,0x2d,0x20,0x47,0x65,0x6e,0x65,0x72,
0x61,0x74,0x6f,0x72,0x3a,0x20,0x41,0x64,0x6f,0x62,
0x65,0x20,0x49,0x6c,0x6c,0x75,0x73,0x74,0x72,0x61,
0x74,0x6f,0x72,0x20,0x31,0x36,0x2e,0x30,0x2e,0x33,
0x2c,0x20,0x53,0x56,0x47,0x20,0x45,0x78,0x70,0x6f,
0x72,0x74,0x20,0x50,0x6c,0x75,0x67,0x2d,0x49,0x6e,
0x20,0x2e,0x20,0x53,0x56,0x47,0x20,0x56,0x65,0x72,
0x73,0x69,0x6f,0x6e,0x3a,0x20,0x36,0x2e,0x30,0x30,
0x20,0x42,0x75,0x69,0x6c,0x64,0x20,0x30,0x29,0x20,
0x20,0x2d,0x2d,0x3e,0x0d,0x0a,0x3c,0x21,0x44,0x4f,
0x43,0x54,0x59,0x50,0x45,0x20,0x73,0x76,0x67,0x20,
0x50,0x55,0x42,0x4c,0x49,0x43,0x20,0x22,0x2d,0x2f,
0x2f,0x57,0x33,0x43,0x2f,0x2f,0x44,0x54,0x44,0x20,
0x53,0x56,0x47,0x20,0x31,0x2e,0x31,0x2f,0x2f,0x45,
0x4e,0x22,0x20,0x22,0x68,0x74,0x74,0x70,0x3a,0x2f,
0x2f,0x77,0x77,0x77,0x2e,0x77,0x33,0x2e,0x6f,0x72,
0x67,0x2f,0x47,0x72,0x61,0x70,0x68,0x69,0x63,0x73,
0x2f,0x53,0x56,0x47,0x2f,0x31,0x2e,0x31,0x2f,0x44,
0x54,0x44,0x2f,0x73,0x76,0x67,0x31,0x31,0x2e,0x64,
0x74,0x64,0x22,0x3e,0x0d,0x0a,0x3c,0x73,0x76,0x67,
0x20,0x76,0x65,0x72,0x73,0x69,0x6f,0x6e,0x3d,0x22,
0x31,0x2e,0x31,0x22,0x20,0x69,0x64,0x3d,0x22,0x45,
0x62,0x65,0x6e,0x65,0x5f,0x31,0x22,0x20,0x78,0x6d,
0x6c,0x6e,0x73,0x3d,0x22,0x68,0x74,0x74,0x70,0x3a,
0x2f,0x2f,0x77,0x77,0x77,0x2e,0x77,0x33,0x2e,0x6f,
0x72,0x67,0x2f,0x32,0x30,0x30,0x30,0x2f,0x73,0x76,
0x67,0x22,0x20,0x78,0x6d,0x6c,0x6e,0x73,0x3a,0x78,
0x6c,0x69,0x6e,0x6b,0x3d,0x22,0x68,0x74,0x74,0x70,
0x3a,0x2f,0x2f,0x77,0x77,0x77,0x2e,0x77,0x33,0x2e,
0x6f,0x72,0x67,0x2f,0x31,0x39,0x39,0x39,0x2f,0x78,
0x6c,0x69,0x6e,0x6b,0x22,0x20,0x78,0x3d,0x22,0x30,
0x70,0x78,0x22,0x20,0x79,0x3d,0x22,0x30,0x70,0x78,
0x22,0x0d,0x0a,0x09,0x20,0x77,0x69,0x64,0x74,0x68,
0x3d,0x22,0x32,0x31,0x2e,0x30,0x30,0x32,0x70,0x78,
0x22,0x20,0x68,0x65,0x69,0x67,0x68,0x74,0x3d,0x22,
0x32,0x32,0x2e,0x30,0x30,0x32,0x70,0x78,0x22,0x20,
0x76,0x69,0x65,0x77,0x42,0x6f,0x78,0x3d,0x22,0x30,
0x20,0x30,0x20,0x32,0x31,0x2e,0x30,0x30,0x32,0x20,
0x32,0x32,0x2e,0x30,0x30,0x32,0x22,0x20,0x65,0x6e,
0x61,0x62,0x6c,0x65,0x2d,0x62,0x61,0x63,0x6b,0x67,
0x72,0x6f,0x75,0x6e,0x64,0x3d,0x22,0x6e,0x65,0x77,
0x20,0x30,0x20,0x30,0x20,0x32,0x31,0x2e,0x30,0x30,
0x32,0x20,0x32,0x32,0x2e,0x30,0x30,0x32,0x22,0x20,
0x78,0x6d,0x6c,0x3a,0x73,0x70,0x61,0x63,0x65,0x3d,
0x22,0x70,0x72,0x65,0x73,0x65,0x72,0x76,0x65,0x22,
0x3e,0x0d,0x0a,0x3c,0x67,0x3e,0x0d,0x0a,0x09,0x3c,
0x70,0x61,0x74,0x68,0x20,0x66,0x69,0x6c,0x6c,0x3d,
0x22,0x23,0x37,0x37,0x37,0x37,0x37,0x37,0x22,0x20,
0x64,0x3d,0x22,0x4d,0x32,0x31,0x2e,0x30,0x30,0x32,
0x2c,0x32,0x31,0x2e,0x32,0x39,0x33,0x63,0x30,0x2c,
0x30,0x2e,0x33,0x39,0x2d,0x30,0x2e,0x33,0x31,0x39,
0x2c,0x30,0x2e,0x37,0x30,0x39,0x2d,0x30,0x2e,0x37,
0x30,0x39,0x2c,0x30,0x2e,0x37,0x30,0x39,0x68,0x2d,
0x37,0x2e,0x39,0x33,0x37,0x63,0x2d,0x30,0x2e,0x33,
0x39,0x2c,0x30,0x2d,0x30,0x2e,0x37,0x30,0x39,0x2d,
0x30,0x2e,0x33,0x31,0x39,0x2d,0x30,0x2e,0x37,0x30,
0x39,0x2d,0x30,0x2e,0x37,0x30,0x39,0x76,0x2d,0x38,
0x2e,0x33,0x37,0x39,0x0d,0x0a,0x09,0x09,0x63,0x30,
0x2d,0x30,0x2e,0x33,0x39,0x2c,0x30,0x2e,0x33,0x31,
0x39,0x2d,0x30,0x2e,0x37,0x30,0x39,0x2c,0x30,0x2e,
0x37,0x30,0x39,0x2d,0x30,0x2e,0x37,0x30,0x39,0x68,
0x37,0x2e,0x39,0x33,0x37,0x63,0x30,0x2e,0x33,0x39,
0x2c,0x30,0x2c,0x30,0x2e,0x37,0x30,0x39,0x2c,0x30,
0x2e,0x33,0x31,0x39,0x2c,0x30,0x2e,0x37,0x30,0x39,
0x2c,0x30,0x2e,0x37,0x30,0x39,0x56,0x32,0x31,0x2e,
0x32,0x39,0x33,0x7a,0x22,0x2f,0x3e,0x0d,0x0a,0x3c,
0x2f,0x67,0x3e,0x0d,0x0a,0x3c,0x67,0x20,0x6f,0x70,
0x61,0x63,0x69,0x74,0x79,0x3d,0x22,0x30,0x2e,0x35,
0x22,0x3e,0x0d,0x0a,0x09,0x3c,0x70,0x61,0x74,0x68,
0x20,0x66,0x69,0x6c,0x6c,0x3d,0x22,0x23,0x37,0x37,
0x37,0x37,0x37,0x37,0x22,0x20,0x64,0x3d,0x22,0x4d,
0x32,0x31,0x2e,0x30,0x30,0x32,0x2c,0x39,0x2e,0x30,
0x38,0x38,0x63,0x30,0x2c,0x30,0x2e,0x33,0x39,0x2d,
0x30,0x2e,0x33,0x31,0x39,0x2c,0x30,0x2e,0x37,0x30,
0x38,0x2d,0x30,0x2e,0x37,0x30,0x39,0x2c,0x30,0x2e,
0x37,0x30,0x38,0x68,0x2d,0x37,0x2e,0x39,0x33,0x37,
0x63,0x2d,0x30,0x2e,0x33,0x39,0x2c,0x30,0x2d,0x30,
0x2e,0x37,0x30,0x39,0x2d,0x30,0x2e,0x33,0x31,0x39,
0x2d,0x30,0x2e,0x37,0x30,0x39,0x2d,0x30,0x2e,0x37,
0x30,0x38,0x56,0x30,0x2e,0x37,0x30,0x38,0x0d,0x0a,
0x09,0x09,0x63,0x30,0x2d,0x30,0x2e,0x33,0x39,0x2c,
0x30,0x2e,0x33,0x31,0x39,0x2d,0x30,0x2e,0x37,0x30,
0x38,0x2c,0x30,0x2e,0x37,0x30,0x39,0x2d,0x30,0x2e,
0x37,0x30,0x38,0x68,0x37,0x2e,0x39,0x33,0x37,0x63,
0x30,0x2e,0x33,0x39,0x2c,0x30,0x2c,0x30,0x2e,0x37,
0x30,0x39,0x2c,0x30,0x2e,0x33,0x31,0x39,0x2c,0x30,
0x2e,0x37,0x30,0x39,0x2c,0x30,0x2e,0x37,0x30,0x38,
0x56,0x39,0x2e,0x30,0x38,0x38,0x7a,0x22,0x2f,0x3e,
0x0d,0x0a,0x3c,0x2f,0x67,0x3e,0x0d,0x0a,0x3c,0x67,
0x20,0x6f,0x70,0x61,0x63,0x69,0x74,0x79,0x3d,0x22,
0x30,0x2e,0x35,0x22,0x3e,0x0d,0x0a,0x09,0x3c,0x70,
0x61,0x74,0x68,0x20,0x66,0x69,0x6c,0x6c,0x3d,0x22,
0x23,0x37,0x37,0x37,0x37,0x37,0x37,0x22,0x20,0x64,
0x3d,0x22,0x4d,0x39,0x2e,0x33,0x35,0x34,0x2c,0x32,
0x31,0x2e,0x32,0x39,0x33,0x63,0x30,0x2c,0x30,0x2e,
0x33,0x39,0x2d,0x30,0x2e,0x33,0x31,0x39,0x2c,0x30,
0x2e,0x37,0x30,0x39,0x2d,0x30,0x2e,0x37,0x30,0x38,
0x2c,0x30,0x2e,0x37,0x30,0x39,0x48,0x30,0x2e,0x37,
0x30,0x38,0x43,0x30,0x2e,0x33,0x31,0x39,0x2c,0x32,
0x32,0x2e,0x30,0x30,0x32,0x2c,0x30,0x2c,0x32,0x31,
0x2e,0x36,0x38,0x33,0x2c,0x30,0x2c,0x32,0x31,0x2e,
0x32,0x39,0x33,0x76,0x2d,0x38,0x2e,0x33,0x37,0x39,
0x0d,0x0a,0x09,0x09,0x63,0x30,0x2d,0x30,0x2e,0x33,
0x39,0x2c,0x30,0x2e,0x33,0x31,0x39,0x2d,0x30,0x2e,
0x37,0x30,0x39,0x2c,0x30,0x2e,0x37,0x30,0x38,0x2d,
0x30,0x2e,0x37,0x30,0x39,0x68,0x37,0x2e,0x39,0x33,
0x38,0x63,0x30,0x2e,0x33,0x39,0x2c,0x30,0x2c,0x30,
0x2e,0x37,0x30,0x38,0x2c,0x30,0x2e,0x33,0x31,0x39,
0x2c,0x30,0x2e,0x37,0x30,0x38,0x2c,0x30,0x2e,0x37,
0x30,0x39,0x56,0x32,0x31,0x2e,0x32,0x39,0x33,0x7a,
0x22,0x2f,0x3e,0x0d,0x0a,0x3c,0x2f,0x67,0x3e,0x0d,
0x0a,0x3c,0x67,0x20,0x6f,0x70,0x61,0x63,0x69,0x74,
0x79,0x3d,0x22,0x30,0x2e,0x35,0x22,0x3e,0x0d,0x0a,
0x09,0x3c,0x70,0x61,0x74,0x68,0x20,0x66,0x69,0x6c,
0x6c,0x3d,0x22,0x23,0x37,0x37,0x37,0x37,0x37,0x37,
0x22,0x20,0x64,0x3d,0x22,0x4d,0x39,0x2e,0x33,0x35,
0x34,0x2c,0x39,0x2e,0x30,0x38,0x37,0x63,0x30,0x2c,
0x30,0x2e,0x33,0x39,0x2d,0x30,0x2e,0x33,0x31,0x39,
0x2c,0x30,0x2e,0x37,0x30,0x38,0x2d,0x30,0x2e,0x37,
0x30,0x38,0x2c,0x30,0x2e,0x37,0x30,0x38,0x48,0x30,
0x2e,0x37,0x30,0x38,0x43,0x30,0x2e,0x33,0x31,0x39,
0x2c,0x39,0x2e,0x37,0x39,0x36,0x2c,0x30,0x2c,0x39,
0x2e,0x34,0x37,0x37,0x2c,0x30,0x2c,0x39,0x2e,0x30,
0x38,0x37,0x56,0x30,0x2e,0x37,0x30,0x38,0x0d,0x0a,
0x09,0x09,0x43,0x30,0x2c,0x30,0x2e,0x33,0x31,0x39,
0x2c,0x30,0x2e,0x33,0x31,0x39,0x2c,0x30,0x2c,0x30,
0x2e,0x37,0x30,0x38,0x2c,0x30,0x68,0x37,0x2e,0x39,
0x33,0x38,0x63,0x30,0x2e,0x33,0x39,0x2c,0x30,0x2c,
0x30,0x2e,0x37,0x30,0x38,0x2c,0x30,0x2e,0x33,0x31,
0x39,0x2c,0x30,0x2e,0x37,0x30,0x38,0x2c,0x30,0x2e,
0x37,0x30,0x38,0x56,0x39,0x2e,0x30,0x38,0x37,0x7a,
0x22,0x2f,0x3e,0x0d,0x0a,0x3c,0x2f,0x67,0x3e,0x0d,
0x0a,0x3c,0x2f,0x73,0x76,0x67,0x3e,0x0d,0x0a
};

View file

@ -0,0 +1,144 @@
//this file was auto-generated from "busy_3.svg" by res2h
#include "../Resources.h"
const size_t busy_3_svg_size = 1369;
const unsigned char busy_3_svg_data[1369] = {
0x3c,0x3f,0x78,0x6d,0x6c,0x20,0x76,0x65,0x72,0x73,
0x69,0x6f,0x6e,0x3d,0x22,0x31,0x2e,0x30,0x22,0x20,
0x65,0x6e,0x63,0x6f,0x64,0x69,0x6e,0x67,0x3d,0x22,
0x75,0x74,0x66,0x2d,0x38,0x22,0x3f,0x3e,0x0d,0x0a,
0x3c,0x21,0x2d,0x2d,0x20,0x47,0x65,0x6e,0x65,0x72,
0x61,0x74,0x6f,0x72,0x3a,0x20,0x41,0x64,0x6f,0x62,
0x65,0x20,0x49,0x6c,0x6c,0x75,0x73,0x74,0x72,0x61,
0x74,0x6f,0x72,0x20,0x31,0x36,0x2e,0x30,0x2e,0x33,
0x2c,0x20,0x53,0x56,0x47,0x20,0x45,0x78,0x70,0x6f,
0x72,0x74,0x20,0x50,0x6c,0x75,0x67,0x2d,0x49,0x6e,
0x20,0x2e,0x20,0x53,0x56,0x47,0x20,0x56,0x65,0x72,
0x73,0x69,0x6f,0x6e,0x3a,0x20,0x36,0x2e,0x30,0x30,
0x20,0x42,0x75,0x69,0x6c,0x64,0x20,0x30,0x29,0x20,
0x20,0x2d,0x2d,0x3e,0x0d,0x0a,0x3c,0x21,0x44,0x4f,
0x43,0x54,0x59,0x50,0x45,0x20,0x73,0x76,0x67,0x20,
0x50,0x55,0x42,0x4c,0x49,0x43,0x20,0x22,0x2d,0x2f,
0x2f,0x57,0x33,0x43,0x2f,0x2f,0x44,0x54,0x44,0x20,
0x53,0x56,0x47,0x20,0x31,0x2e,0x31,0x2f,0x2f,0x45,
0x4e,0x22,0x20,0x22,0x68,0x74,0x74,0x70,0x3a,0x2f,
0x2f,0x77,0x77,0x77,0x2e,0x77,0x33,0x2e,0x6f,0x72,
0x67,0x2f,0x47,0x72,0x61,0x70,0x68,0x69,0x63,0x73,
0x2f,0x53,0x56,0x47,0x2f,0x31,0x2e,0x31,0x2f,0x44,
0x54,0x44,0x2f,0x73,0x76,0x67,0x31,0x31,0x2e,0x64,
0x74,0x64,0x22,0x3e,0x0d,0x0a,0x3c,0x73,0x76,0x67,
0x20,0x76,0x65,0x72,0x73,0x69,0x6f,0x6e,0x3d,0x22,
0x31,0x2e,0x31,0x22,0x20,0x69,0x64,0x3d,0x22,0x45,
0x62,0x65,0x6e,0x65,0x5f,0x31,0x22,0x20,0x78,0x6d,
0x6c,0x6e,0x73,0x3d,0x22,0x68,0x74,0x74,0x70,0x3a,
0x2f,0x2f,0x77,0x77,0x77,0x2e,0x77,0x33,0x2e,0x6f,
0x72,0x67,0x2f,0x32,0x30,0x30,0x30,0x2f,0x73,0x76,
0x67,0x22,0x20,0x78,0x6d,0x6c,0x6e,0x73,0x3a,0x78,
0x6c,0x69,0x6e,0x6b,0x3d,0x22,0x68,0x74,0x74,0x70,
0x3a,0x2f,0x2f,0x77,0x77,0x77,0x2e,0x77,0x33,0x2e,
0x6f,0x72,0x67,0x2f,0x31,0x39,0x39,0x39,0x2f,0x78,
0x6c,0x69,0x6e,0x6b,0x22,0x20,0x78,0x3d,0x22,0x30,
0x70,0x78,0x22,0x20,0x79,0x3d,0x22,0x30,0x70,0x78,
0x22,0x0d,0x0a,0x09,0x20,0x77,0x69,0x64,0x74,0x68,
0x3d,0x22,0x32,0x31,0x2e,0x30,0x30,0x32,0x70,0x78,
0x22,0x20,0x68,0x65,0x69,0x67,0x68,0x74,0x3d,0x22,
0x32,0x32,0x2e,0x30,0x30,0x32,0x70,0x78,0x22,0x20,
0x76,0x69,0x65,0x77,0x42,0x6f,0x78,0x3d,0x22,0x30,
0x20,0x30,0x20,0x32,0x31,0x2e,0x30,0x30,0x32,0x20,
0x32,0x32,0x2e,0x30,0x30,0x32,0x22,0x20,0x65,0x6e,
0x61,0x62,0x6c,0x65,0x2d,0x62,0x61,0x63,0x6b,0x67,
0x72,0x6f,0x75,0x6e,0x64,0x3d,0x22,0x6e,0x65,0x77,
0x20,0x30,0x20,0x30,0x20,0x32,0x31,0x2e,0x30,0x30,
0x32,0x20,0x32,0x32,0x2e,0x30,0x30,0x32,0x22,0x20,
0x78,0x6d,0x6c,0x3a,0x73,0x70,0x61,0x63,0x65,0x3d,
0x22,0x70,0x72,0x65,0x73,0x65,0x72,0x76,0x65,0x22,
0x3e,0x0d,0x0a,0x3c,0x67,0x20,0x6f,0x70,0x61,0x63,
0x69,0x74,0x79,0x3d,0x22,0x30,0x2e,0x35,0x22,0x3e,
0x0d,0x0a,0x09,0x3c,0x70,0x61,0x74,0x68,0x20,0x66,
0x69,0x6c,0x6c,0x3d,0x22,0x23,0x37,0x37,0x37,0x37,
0x37,0x37,0x22,0x20,0x64,0x3d,0x22,0x4d,0x32,0x31,
0x2e,0x30,0x30,0x32,0x2c,0x32,0x31,0x2e,0x32,0x39,
0x33,0x63,0x30,0x2c,0x30,0x2e,0x33,0x39,0x2d,0x30,
0x2e,0x33,0x31,0x39,0x2c,0x30,0x2e,0x37,0x30,0x39,
0x2d,0x30,0x2e,0x37,0x30,0x39,0x2c,0x30,0x2e,0x37,
0x30,0x39,0x68,0x2d,0x37,0x2e,0x39,0x33,0x37,0x63,
0x2d,0x30,0x2e,0x33,0x39,0x2c,0x30,0x2d,0x30,0x2e,
0x37,0x30,0x39,0x2d,0x30,0x2e,0x33,0x31,0x39,0x2d,
0x30,0x2e,0x37,0x30,0x39,0x2d,0x30,0x2e,0x37,0x30,
0x39,0x76,0x2d,0x38,0x2e,0x33,0x37,0x39,0x0d,0x0a,
0x09,0x09,0x63,0x30,0x2d,0x30,0x2e,0x33,0x39,0x2c,
0x30,0x2e,0x33,0x31,0x39,0x2d,0x30,0x2e,0x37,0x30,
0x39,0x2c,0x30,0x2e,0x37,0x30,0x39,0x2d,0x30,0x2e,
0x37,0x30,0x39,0x68,0x37,0x2e,0x39,0x33,0x37,0x63,
0x30,0x2e,0x33,0x39,0x2c,0x30,0x2c,0x30,0x2e,0x37,
0x30,0x39,0x2c,0x30,0x2e,0x33,0x31,0x39,0x2c,0x30,
0x2e,0x37,0x30,0x39,0x2c,0x30,0x2e,0x37,0x30,0x39,
0x56,0x32,0x31,0x2e,0x32,0x39,0x33,0x7a,0x22,0x2f,
0x3e,0x0d,0x0a,0x3c,0x2f,0x67,0x3e,0x0d,0x0a,0x3c,
0x67,0x20,0x6f,0x70,0x61,0x63,0x69,0x74,0x79,0x3d,
0x22,0x30,0x2e,0x35,0x22,0x3e,0x0d,0x0a,0x09,0x3c,
0x70,0x61,0x74,0x68,0x20,0x66,0x69,0x6c,0x6c,0x3d,
0x22,0x23,0x37,0x37,0x37,0x37,0x37,0x37,0x22,0x20,
0x64,0x3d,0x22,0x4d,0x32,0x31,0x2e,0x30,0x30,0x32,
0x2c,0x39,0x2e,0x30,0x38,0x38,0x63,0x30,0x2c,0x30,
0x2e,0x33,0x39,0x2d,0x30,0x2e,0x33,0x31,0x39,0x2c,
0x30,0x2e,0x37,0x30,0x38,0x2d,0x30,0x2e,0x37,0x30,
0x39,0x2c,0x30,0x2e,0x37,0x30,0x38,0x68,0x2d,0x37,
0x2e,0x39,0x33,0x37,0x63,0x2d,0x30,0x2e,0x33,0x39,
0x2c,0x30,0x2d,0x30,0x2e,0x37,0x30,0x39,0x2d,0x30,
0x2e,0x33,0x31,0x39,0x2d,0x30,0x2e,0x37,0x30,0x39,
0x2d,0x30,0x2e,0x37,0x30,0x38,0x56,0x30,0x2e,0x37,
0x30,0x38,0x0d,0x0a,0x09,0x09,0x63,0x30,0x2d,0x30,
0x2e,0x33,0x39,0x2c,0x30,0x2e,0x33,0x31,0x39,0x2d,
0x30,0x2e,0x37,0x30,0x38,0x2c,0x30,0x2e,0x37,0x30,
0x39,0x2d,0x30,0x2e,0x37,0x30,0x38,0x68,0x37,0x2e,
0x39,0x33,0x37,0x63,0x30,0x2e,0x33,0x39,0x2c,0x30,
0x2c,0x30,0x2e,0x37,0x30,0x39,0x2c,0x30,0x2e,0x33,
0x31,0x39,0x2c,0x30,0x2e,0x37,0x30,0x39,0x2c,0x30,
0x2e,0x37,0x30,0x38,0x56,0x39,0x2e,0x30,0x38,0x38,
0x7a,0x22,0x2f,0x3e,0x0d,0x0a,0x3c,0x2f,0x67,0x3e,
0x0d,0x0a,0x3c,0x67,0x3e,0x0d,0x0a,0x09,0x3c,0x70,
0x61,0x74,0x68,0x20,0x66,0x69,0x6c,0x6c,0x3d,0x22,
0x23,0x37,0x37,0x37,0x37,0x37,0x37,0x22,0x20,0x64,
0x3d,0x22,0x4d,0x39,0x2e,0x33,0x35,0x34,0x2c,0x32,
0x31,0x2e,0x32,0x39,0x33,0x63,0x30,0x2c,0x30,0x2e,
0x33,0x39,0x2d,0x30,0x2e,0x33,0x31,0x39,0x2c,0x30,
0x2e,0x37,0x30,0x39,0x2d,0x30,0x2e,0x37,0x30,0x38,
0x2c,0x30,0x2e,0x37,0x30,0x39,0x48,0x30,0x2e,0x37,
0x30,0x38,0x43,0x30,0x2e,0x33,0x31,0x39,0x2c,0x32,
0x32,0x2e,0x30,0x30,0x32,0x2c,0x30,0x2c,0x32,0x31,
0x2e,0x36,0x38,0x33,0x2c,0x30,0x2c,0x32,0x31,0x2e,
0x32,0x39,0x33,0x76,0x2d,0x38,0x2e,0x33,0x37,0x39,
0x0d,0x0a,0x09,0x09,0x63,0x30,0x2d,0x30,0x2e,0x33,
0x39,0x2c,0x30,0x2e,0x33,0x31,0x39,0x2d,0x30,0x2e,
0x37,0x30,0x39,0x2c,0x30,0x2e,0x37,0x30,0x38,0x2d,
0x30,0x2e,0x37,0x30,0x39,0x68,0x37,0x2e,0x39,0x33,
0x38,0x63,0x30,0x2e,0x33,0x39,0x2c,0x30,0x2c,0x30,
0x2e,0x37,0x30,0x38,0x2c,0x30,0x2e,0x33,0x31,0x39,
0x2c,0x30,0x2e,0x37,0x30,0x38,0x2c,0x30,0x2e,0x37,
0x30,0x39,0x56,0x32,0x31,0x2e,0x32,0x39,0x33,0x7a,
0x22,0x2f,0x3e,0x0d,0x0a,0x3c,0x2f,0x67,0x3e,0x0d,
0x0a,0x3c,0x67,0x20,0x6f,0x70,0x61,0x63,0x69,0x74,
0x79,0x3d,0x22,0x30,0x2e,0x35,0x22,0x3e,0x0d,0x0a,
0x09,0x3c,0x70,0x61,0x74,0x68,0x20,0x66,0x69,0x6c,
0x6c,0x3d,0x22,0x23,0x37,0x37,0x37,0x37,0x37,0x37,
0x22,0x20,0x64,0x3d,0x22,0x4d,0x39,0x2e,0x33,0x35,
0x34,0x2c,0x39,0x2e,0x30,0x38,0x37,0x63,0x30,0x2c,
0x30,0x2e,0x33,0x39,0x2d,0x30,0x2e,0x33,0x31,0x39,
0x2c,0x30,0x2e,0x37,0x30,0x38,0x2d,0x30,0x2e,0x37,
0x30,0x38,0x2c,0x30,0x2e,0x37,0x30,0x38,0x48,0x30,
0x2e,0x37,0x30,0x38,0x43,0x30,0x2e,0x33,0x31,0x39,
0x2c,0x39,0x2e,0x37,0x39,0x36,0x2c,0x30,0x2c,0x39,
0x2e,0x34,0x37,0x37,0x2c,0x30,0x2c,0x39,0x2e,0x30,
0x38,0x37,0x56,0x30,0x2e,0x37,0x30,0x38,0x0d,0x0a,
0x09,0x09,0x43,0x30,0x2c,0x30,0x2e,0x33,0x31,0x39,
0x2c,0x30,0x2e,0x33,0x31,0x39,0x2c,0x30,0x2c,0x30,
0x2e,0x37,0x30,0x38,0x2c,0x30,0x68,0x37,0x2e,0x39,
0x33,0x38,0x63,0x30,0x2e,0x33,0x39,0x2c,0x30,0x2c,
0x30,0x2e,0x37,0x30,0x38,0x2c,0x30,0x2e,0x33,0x31,
0x39,0x2c,0x30,0x2e,0x37,0x30,0x38,0x2c,0x30,0x2e,
0x37,0x30,0x38,0x56,0x39,0x2e,0x30,0x38,0x37,0x7a,
0x22,0x2f,0x3e,0x0d,0x0a,0x3c,0x2f,0x67,0x3e,0x0d,
0x0a,0x3c,0x2f,0x73,0x76,0x67,0x3e,0x0d,0x0a
};

View file

@ -0,0 +1,124 @@
//this file was auto-generated from "button_filled.png" by res2h
#include "../Resources.h"
const size_t button_filled_png_size = 1168;
const unsigned char button_filled_png_data[1168] = {
0x89,0x50,0x4e,0x47,0x0d,0x0a,0x1a,0x0a,0x00,0x00,
0x00,0x0d,0x49,0x48,0x44,0x52,0x00,0x00,0x00,0x30,
0x00,0x00,0x00,0x30,0x08,0x06,0x00,0x00,0x00,0x57,
0x02,0xf9,0x87,0x00,0x00,0x00,0x19,0x74,0x45,0x58,
0x74,0x53,0x6f,0x66,0x74,0x77,0x61,0x72,0x65,0x00,
0x41,0x64,0x6f,0x62,0x65,0x20,0x49,0x6d,0x61,0x67,
0x65,0x52,0x65,0x61,0x64,0x79,0x71,0xc9,0x65,0x3c,
0x00,0x00,0x03,0x68,0x69,0x54,0x58,0x74,0x58,0x4d,
0x4c,0x3a,0x63,0x6f,0x6d,0x2e,0x61,0x64,0x6f,0x62,
0x65,0x2e,0x78,0x6d,0x70,0x00,0x00,0x00,0x00,0x00,
0x3c,0x3f,0x78,0x70,0x61,0x63,0x6b,0x65,0x74,0x20,
0x62,0x65,0x67,0x69,0x6e,0x3d,0x22,0xef,0xbb,0xbf,
0x22,0x20,0x69,0x64,0x3d,0x22,0x57,0x35,0x4d,0x30,
0x4d,0x70,0x43,0x65,0x68,0x69,0x48,0x7a,0x72,0x65,
0x53,0x7a,0x4e,0x54,0x63,0x7a,0x6b,0x63,0x39,0x64,
0x22,0x3f,0x3e,0x20,0x3c,0x78,0x3a,0x78,0x6d,0x70,
0x6d,0x65,0x74,0x61,0x20,0x78,0x6d,0x6c,0x6e,0x73,
0x3a,0x78,0x3d,0x22,0x61,0x64,0x6f,0x62,0x65,0x3a,
0x6e,0x73,0x3a,0x6d,0x65,0x74,0x61,0x2f,0x22,0x20,
0x78,0x3a,0x78,0x6d,0x70,0x74,0x6b,0x3d,0x22,0x41,
0x64,0x6f,0x62,0x65,0x20,0x58,0x4d,0x50,0x20,0x43,
0x6f,0x72,0x65,0x20,0x35,0x2e,0x33,0x2d,0x63,0x30,
0x31,0x31,0x20,0x36,0x36,0x2e,0x31,0x34,0x35,0x36,
0x36,0x31,0x2c,0x20,0x32,0x30,0x31,0x32,0x2f,0x30,
0x32,0x2f,0x30,0x36,0x2d,0x31,0x34,0x3a,0x35,0x36,
0x3a,0x32,0x37,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x22,0x3e,0x20,0x3c,0x72,0x64,0x66,0x3a,0x52,
0x44,0x46,0x20,0x78,0x6d,0x6c,0x6e,0x73,0x3a,0x72,
0x64,0x66,0x3d,0x22,0x68,0x74,0x74,0x70,0x3a,0x2f,
0x2f,0x77,0x77,0x77,0x2e,0x77,0x33,0x2e,0x6f,0x72,
0x67,0x2f,0x31,0x39,0x39,0x39,0x2f,0x30,0x32,0x2f,
0x32,0x32,0x2d,0x72,0x64,0x66,0x2d,0x73,0x79,0x6e,
0x74,0x61,0x78,0x2d,0x6e,0x73,0x23,0x22,0x3e,0x20,
0x3c,0x72,0x64,0x66,0x3a,0x44,0x65,0x73,0x63,0x72,
0x69,0x70,0x74,0x69,0x6f,0x6e,0x20,0x72,0x64,0x66,
0x3a,0x61,0x62,0x6f,0x75,0x74,0x3d,0x22,0x22,0x20,
0x78,0x6d,0x6c,0x6e,0x73,0x3a,0x78,0x6d,0x70,0x4d,
0x4d,0x3d,0x22,0x68,0x74,0x74,0x70,0x3a,0x2f,0x2f,
0x6e,0x73,0x2e,0x61,0x64,0x6f,0x62,0x65,0x2e,0x63,
0x6f,0x6d,0x2f,0x78,0x61,0x70,0x2f,0x31,0x2e,0x30,
0x2f,0x6d,0x6d,0x2f,0x22,0x20,0x78,0x6d,0x6c,0x6e,
0x73,0x3a,0x73,0x74,0x52,0x65,0x66,0x3d,0x22,0x68,
0x74,0x74,0x70,0x3a,0x2f,0x2f,0x6e,0x73,0x2e,0x61,
0x64,0x6f,0x62,0x65,0x2e,0x63,0x6f,0x6d,0x2f,0x78,
0x61,0x70,0x2f,0x31,0x2e,0x30,0x2f,0x73,0x54,0x79,
0x70,0x65,0x2f,0x52,0x65,0x73,0x6f,0x75,0x72,0x63,
0x65,0x52,0x65,0x66,0x23,0x22,0x20,0x78,0x6d,0x6c,
0x6e,0x73,0x3a,0x78,0x6d,0x70,0x3d,0x22,0x68,0x74,
0x74,0x70,0x3a,0x2f,0x2f,0x6e,0x73,0x2e,0x61,0x64,
0x6f,0x62,0x65,0x2e,0x63,0x6f,0x6d,0x2f,0x78,0x61,
0x70,0x2f,0x31,0x2e,0x30,0x2f,0x22,0x20,0x78,0x6d,
0x70,0x4d,0x4d,0x3a,0x4f,0x72,0x69,0x67,0x69,0x6e,
0x61,0x6c,0x44,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,
0x49,0x44,0x3d,0x22,0x78,0x6d,0x70,0x2e,0x64,0x69,
0x64,0x3a,0x37,0x34,0x30,0x31,0x37,0x39,0x35,0x39,
0x30,0x45,0x32,0x30,0x36,0x38,0x31,0x31,0x38,0x30,
0x38,0x33,0x43,0x37,0x45,0x33,0x31,0x45,0x41,0x35,
0x41,0x37,0x35,0x33,0x22,0x20,0x78,0x6d,0x70,0x4d,
0x4d,0x3a,0x44,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,
0x49,0x44,0x3d,0x22,0x78,0x6d,0x70,0x2e,0x64,0x69,
0x64,0x3a,0x39,0x38,0x44,0x38,0x30,0x39,0x44,0x44,
0x39,0x44,0x38,0x37,0x31,0x31,0x45,0x33,0x41,0x39,
0x31,0x44,0x42,0x44,0x46,0x44,0x34,0x30,0x39,0x39,
0x32,0x45,0x45,0x33,0x22,0x20,0x78,0x6d,0x70,0x4d,
0x4d,0x3a,0x49,0x6e,0x73,0x74,0x61,0x6e,0x63,0x65,
0x49,0x44,0x3d,0x22,0x78,0x6d,0x70,0x2e,0x69,0x69,
0x64,0x3a,0x39,0x38,0x44,0x38,0x30,0x39,0x44,0x43,
0x39,0x44,0x38,0x37,0x31,0x31,0x45,0x33,0x41,0x39,
0x31,0x44,0x42,0x44,0x46,0x44,0x34,0x30,0x39,0x39,
0x32,0x45,0x45,0x33,0x22,0x20,0x78,0x6d,0x70,0x3a,
0x43,0x72,0x65,0x61,0x74,0x6f,0x72,0x54,0x6f,0x6f,
0x6c,0x3d,0x22,0x41,0x64,0x6f,0x62,0x65,0x20,0x50,
0x68,0x6f,0x74,0x6f,0x73,0x68,0x6f,0x70,0x20,0x43,
0x53,0x36,0x20,0x28,0x4d,0x61,0x63,0x69,0x6e,0x74,
0x6f,0x73,0x68,0x29,0x22,0x3e,0x20,0x3c,0x78,0x6d,
0x70,0x4d,0x4d,0x3a,0x44,0x65,0x72,0x69,0x76,0x65,
0x64,0x46,0x72,0x6f,0x6d,0x20,0x73,0x74,0x52,0x65,
0x66,0x3a,0x69,0x6e,0x73,0x74,0x61,0x6e,0x63,0x65,
0x49,0x44,0x3d,0x22,0x78,0x6d,0x70,0x2e,0x69,0x69,
0x64,0x3a,0x37,0x34,0x30,0x31,0x37,0x39,0x35,0x39,
0x30,0x45,0x32,0x30,0x36,0x38,0x31,0x31,0x38,0x30,
0x38,0x33,0x43,0x37,0x45,0x33,0x31,0x45,0x41,0x35,
0x41,0x37,0x35,0x33,0x22,0x20,0x73,0x74,0x52,0x65,
0x66,0x3a,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,
0x49,0x44,0x3d,0x22,0x78,0x6d,0x70,0x2e,0x64,0x69,
0x64,0x3a,0x37,0x34,0x30,0x31,0x37,0x39,0x35,0x39,
0x30,0x45,0x32,0x30,0x36,0x38,0x31,0x31,0x38,0x30,
0x38,0x33,0x43,0x37,0x45,0x33,0x31,0x45,0x41,0x35,
0x41,0x37,0x35,0x33,0x22,0x2f,0x3e,0x20,0x3c,0x2f,
0x72,0x64,0x66,0x3a,0x44,0x65,0x73,0x63,0x72,0x69,
0x70,0x74,0x69,0x6f,0x6e,0x3e,0x20,0x3c,0x2f,0x72,
0x64,0x66,0x3a,0x52,0x44,0x46,0x3e,0x20,0x3c,0x2f,
0x78,0x3a,0x78,0x6d,0x70,0x6d,0x65,0x74,0x61,0x3e,
0x20,0x3c,0x3f,0x78,0x70,0x61,0x63,0x6b,0x65,0x74,
0x20,0x65,0x6e,0x64,0x3d,0x22,0x72,0x22,0x3f,0x3e,
0xfb,0x75,0xe4,0x6d,0x00,0x00,0x00,0xbe,0x49,0x44,
0x41,0x54,0x78,0xda,0xec,0xd3,0xc1,0x09,0xc2,0x40,
0x14,0x45,0xd1,0x71,0x10,0x6c,0x45,0x74,0x61,0x0f,
0xb6,0xe0,0x22,0x15,0x24,0x08,0x29,0x60,0x2a,0x11,
0x24,0x76,0x20,0xd8,0x8c,0x8b,0x60,0x2b,0x13,0x30,
0xf8,0x3e,0x4c,0x36,0xae,0x5c,0xce,0xc7,0xfb,0xe1,
0xee,0xdf,0x19,0x98,0x55,0x4a,0x29,0xe8,0xa2,0x3a,
0xab,0x4e,0x6d,0xd5,0x26,0xd4,0x79,0x59,0xbd,0xd4,
0xa0,0xae,0x6a,0x5e,0x97,0xf1,0x77,0x75,0x0a,0xf5,
0x9f,0x3d,0xec,0x41,0x5d,0xd4,0x51,0x35,0xb1,0xbc,
0xba,0x87,0xf1,0xdf,0x67,0x9b,0x5b,0x03,0xb4,0xc1,
0xef,0x75,0x06,0xd8,0x3b,0x06,0xec,0x62,0xc5,0x1f,
0xf6,0xa7,0x3f,0x11,0x83,0xf3,0x03,0x00,0x00,0x00,
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
0x00,0x00,0x00,0x00,0x00,0xe0,0x1f,0x01,0xd9,0xf1,
0xfe,0x6c,0x80,0xd1,0x31,0x60,0x34,0xc0,0xe0,0x18,
0x30,0x2c,0x80,0x87,0xc3,0xf1,0xb6,0xf9,0x66,0x80,
0x59,0x35,0xaa,0x57,0x4f,0x35,0x55,0x3c,0x7a,0x2a,
0x1b,0xfb,0xb2,0xf9,0xfd,0x11,0x60,0x00,0xb7,0x75,
0x1a,0x41,0x6b,0xc2,0x11,0x6c,0x00,0x00,0x00,0x00,
0x49,0x45,0x4e,0x44,0xae,0x42,0x60,0x82
};

View file

@ -0,0 +1,131 @@
//this file was auto-generated from "button.png" by res2h
#include "../Resources.h"
const size_t button_png_size = 1231;
const unsigned char button_png_data[1231] = {
0x89,0x50,0x4e,0x47,0x0d,0x0a,0x1a,0x0a,0x00,0x00,
0x00,0x0d,0x49,0x48,0x44,0x52,0x00,0x00,0x00,0x30,
0x00,0x00,0x00,0x30,0x08,0x06,0x00,0x00,0x00,0x57,
0x02,0xf9,0x87,0x00,0x00,0x00,0x19,0x74,0x45,0x58,
0x74,0x53,0x6f,0x66,0x74,0x77,0x61,0x72,0x65,0x00,
0x41,0x64,0x6f,0x62,0x65,0x20,0x49,0x6d,0x61,0x67,
0x65,0x52,0x65,0x61,0x64,0x79,0x71,0xc9,0x65,0x3c,
0x00,0x00,0x03,0x68,0x69,0x54,0x58,0x74,0x58,0x4d,
0x4c,0x3a,0x63,0x6f,0x6d,0x2e,0x61,0x64,0x6f,0x62,
0x65,0x2e,0x78,0x6d,0x70,0x00,0x00,0x00,0x00,0x00,
0x3c,0x3f,0x78,0x70,0x61,0x63,0x6b,0x65,0x74,0x20,
0x62,0x65,0x67,0x69,0x6e,0x3d,0x22,0xef,0xbb,0xbf,
0x22,0x20,0x69,0x64,0x3d,0x22,0x57,0x35,0x4d,0x30,
0x4d,0x70,0x43,0x65,0x68,0x69,0x48,0x7a,0x72,0x65,
0x53,0x7a,0x4e,0x54,0x63,0x7a,0x6b,0x63,0x39,0x64,
0x22,0x3f,0x3e,0x20,0x3c,0x78,0x3a,0x78,0x6d,0x70,
0x6d,0x65,0x74,0x61,0x20,0x78,0x6d,0x6c,0x6e,0x73,
0x3a,0x78,0x3d,0x22,0x61,0x64,0x6f,0x62,0x65,0x3a,
0x6e,0x73,0x3a,0x6d,0x65,0x74,0x61,0x2f,0x22,0x20,
0x78,0x3a,0x78,0x6d,0x70,0x74,0x6b,0x3d,0x22,0x41,
0x64,0x6f,0x62,0x65,0x20,0x58,0x4d,0x50,0x20,0x43,
0x6f,0x72,0x65,0x20,0x35,0x2e,0x33,0x2d,0x63,0x30,
0x31,0x31,0x20,0x36,0x36,0x2e,0x31,0x34,0x35,0x36,
0x36,0x31,0x2c,0x20,0x32,0x30,0x31,0x32,0x2f,0x30,
0x32,0x2f,0x30,0x36,0x2d,0x31,0x34,0x3a,0x35,0x36,
0x3a,0x32,0x37,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x22,0x3e,0x20,0x3c,0x72,0x64,0x66,0x3a,0x52,
0x44,0x46,0x20,0x78,0x6d,0x6c,0x6e,0x73,0x3a,0x72,
0x64,0x66,0x3d,0x22,0x68,0x74,0x74,0x70,0x3a,0x2f,
0x2f,0x77,0x77,0x77,0x2e,0x77,0x33,0x2e,0x6f,0x72,
0x67,0x2f,0x31,0x39,0x39,0x39,0x2f,0x30,0x32,0x2f,
0x32,0x32,0x2d,0x72,0x64,0x66,0x2d,0x73,0x79,0x6e,
0x74,0x61,0x78,0x2d,0x6e,0x73,0x23,0x22,0x3e,0x20,
0x3c,0x72,0x64,0x66,0x3a,0x44,0x65,0x73,0x63,0x72,
0x69,0x70,0x74,0x69,0x6f,0x6e,0x20,0x72,0x64,0x66,
0x3a,0x61,0x62,0x6f,0x75,0x74,0x3d,0x22,0x22,0x20,
0x78,0x6d,0x6c,0x6e,0x73,0x3a,0x78,0x6d,0x70,0x4d,
0x4d,0x3d,0x22,0x68,0x74,0x74,0x70,0x3a,0x2f,0x2f,
0x6e,0x73,0x2e,0x61,0x64,0x6f,0x62,0x65,0x2e,0x63,
0x6f,0x6d,0x2f,0x78,0x61,0x70,0x2f,0x31,0x2e,0x30,
0x2f,0x6d,0x6d,0x2f,0x22,0x20,0x78,0x6d,0x6c,0x6e,
0x73,0x3a,0x73,0x74,0x52,0x65,0x66,0x3d,0x22,0x68,
0x74,0x74,0x70,0x3a,0x2f,0x2f,0x6e,0x73,0x2e,0x61,
0x64,0x6f,0x62,0x65,0x2e,0x63,0x6f,0x6d,0x2f,0x78,
0x61,0x70,0x2f,0x31,0x2e,0x30,0x2f,0x73,0x54,0x79,
0x70,0x65,0x2f,0x52,0x65,0x73,0x6f,0x75,0x72,0x63,
0x65,0x52,0x65,0x66,0x23,0x22,0x20,0x78,0x6d,0x6c,
0x6e,0x73,0x3a,0x78,0x6d,0x70,0x3d,0x22,0x68,0x74,
0x74,0x70,0x3a,0x2f,0x2f,0x6e,0x73,0x2e,0x61,0x64,
0x6f,0x62,0x65,0x2e,0x63,0x6f,0x6d,0x2f,0x78,0x61,
0x70,0x2f,0x31,0x2e,0x30,0x2f,0x22,0x20,0x78,0x6d,
0x70,0x4d,0x4d,0x3a,0x4f,0x72,0x69,0x67,0x69,0x6e,
0x61,0x6c,0x44,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,
0x49,0x44,0x3d,0x22,0x78,0x6d,0x70,0x2e,0x64,0x69,
0x64,0x3a,0x37,0x34,0x30,0x31,0x37,0x39,0x35,0x39,
0x30,0x45,0x32,0x30,0x36,0x38,0x31,0x31,0x38,0x30,
0x38,0x33,0x43,0x37,0x45,0x33,0x31,0x45,0x41,0x35,
0x41,0x37,0x35,0x33,0x22,0x20,0x78,0x6d,0x70,0x4d,
0x4d,0x3a,0x44,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,
0x49,0x44,0x3d,0x22,0x78,0x6d,0x70,0x2e,0x64,0x69,
0x64,0x3a,0x39,0x38,0x44,0x38,0x30,0x39,0x45,0x31,
0x39,0x44,0x38,0x37,0x31,0x31,0x45,0x33,0x41,0x39,
0x31,0x44,0x42,0x44,0x46,0x44,0x34,0x30,0x39,0x39,
0x32,0x45,0x45,0x33,0x22,0x20,0x78,0x6d,0x70,0x4d,
0x4d,0x3a,0x49,0x6e,0x73,0x74,0x61,0x6e,0x63,0x65,
0x49,0x44,0x3d,0x22,0x78,0x6d,0x70,0x2e,0x69,0x69,
0x64,0x3a,0x39,0x38,0x44,0x38,0x30,0x39,0x45,0x30,
0x39,0x44,0x38,0x37,0x31,0x31,0x45,0x33,0x41,0x39,
0x31,0x44,0x42,0x44,0x46,0x44,0x34,0x30,0x39,0x39,
0x32,0x45,0x45,0x33,0x22,0x20,0x78,0x6d,0x70,0x3a,
0x43,0x72,0x65,0x61,0x74,0x6f,0x72,0x54,0x6f,0x6f,
0x6c,0x3d,0x22,0x41,0x64,0x6f,0x62,0x65,0x20,0x50,
0x68,0x6f,0x74,0x6f,0x73,0x68,0x6f,0x70,0x20,0x43,
0x53,0x36,0x20,0x28,0x4d,0x61,0x63,0x69,0x6e,0x74,
0x6f,0x73,0x68,0x29,0x22,0x3e,0x20,0x3c,0x78,0x6d,
0x70,0x4d,0x4d,0x3a,0x44,0x65,0x72,0x69,0x76,0x65,
0x64,0x46,0x72,0x6f,0x6d,0x20,0x73,0x74,0x52,0x65,
0x66,0x3a,0x69,0x6e,0x73,0x74,0x61,0x6e,0x63,0x65,
0x49,0x44,0x3d,0x22,0x78,0x6d,0x70,0x2e,0x69,0x69,
0x64,0x3a,0x37,0x36,0x30,0x31,0x37,0x39,0x35,0x39,
0x30,0x45,0x32,0x30,0x36,0x38,0x31,0x31,0x38,0x30,
0x38,0x33,0x43,0x37,0x45,0x33,0x31,0x45,0x41,0x35,
0x41,0x37,0x35,0x33,0x22,0x20,0x73,0x74,0x52,0x65,
0x66,0x3a,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,
0x49,0x44,0x3d,0x22,0x78,0x6d,0x70,0x2e,0x64,0x69,
0x64,0x3a,0x37,0x34,0x30,0x31,0x37,0x39,0x35,0x39,
0x30,0x45,0x32,0x30,0x36,0x38,0x31,0x31,0x38,0x30,
0x38,0x33,0x43,0x37,0x45,0x33,0x31,0x45,0x41,0x35,
0x41,0x37,0x35,0x33,0x22,0x2f,0x3e,0x20,0x3c,0x2f,
0x72,0x64,0x66,0x3a,0x44,0x65,0x73,0x63,0x72,0x69,
0x70,0x74,0x69,0x6f,0x6e,0x3e,0x20,0x3c,0x2f,0x72,
0x64,0x66,0x3a,0x52,0x44,0x46,0x3e,0x20,0x3c,0x2f,
0x78,0x3a,0x78,0x6d,0x70,0x6d,0x65,0x74,0x61,0x3e,
0x20,0x3c,0x3f,0x78,0x70,0x61,0x63,0x6b,0x65,0x74,
0x20,0x65,0x6e,0x64,0x3d,0x22,0x72,0x22,0x3f,0x3e,
0x3a,0x2f,0x3e,0xac,0x00,0x00,0x00,0xfd,0x49,0x44,
0x41,0x54,0x78,0xda,0xec,0x9a,0x41,0x0e,0xc1,0x50,
0x14,0x45,0x7f,0x1b,0xa1,0x4b,0x11,0x06,0xf6,0x20,
0x66,0x62,0x80,0x88,0x15,0x68,0x44,0x17,0xd0,0x95,
0x08,0x6a,0x07,0xc2,0x84,0x9d,0x18,0x88,0x4d,0x98,
0x6b,0x13,0x8d,0xfb,0xe2,0x4a,0x2c,0xe1,0xff,0xb8,
0x2f,0x39,0x69,0x7f,0x4c,0xce,0xe9,0x6b,0x67,0xa2,
0x3c,0xcf,0x1d,0x26,0x06,0x4b,0x90,0x82,0x36,0x68,
0x39,0x3f,0xa7,0x04,0x77,0x50,0x80,0x2d,0xa8,0x1b,
0x94,0x3f,0x80,0xa9,0xf3,0x7f,0xec,0xc1,0xf6,0xc0,
0x1a,0xf4,0xc1,0x3c,0xe6,0x53,0x37,0xf9,0x07,0x98,
0x81,0x04,0x44,0x9e,0x92,0xd0,0xf1,0x41,0xe7,0x85,
0x6d,0x60,0xc1,0xba,0x15,0x38,0x7a,0xbe,0x81,0x92,
0x8e,0x11,0xdf,0x9a,0xd4,0x36,0xd0,0xe5,0x8f,0x67,
0x17,0xce,0x5c,0x78,0xed,0xc4,0x3f,0x1f,0xec,0x33,
0xa0,0x80,0xaf,0x6b,0x2b,0x76,0x81,0x8f,0x02,0x14,
0xa0,0x00,0x05,0x28,0x40,0x01,0x0a,0x50,0x80,0x02,
0x14,0xa0,0x00,0x05,0x28,0x40,0x01,0x0a,0x50,0x80,
0x02,0x14,0xa0,0x00,0x05,0x28,0x40,0x01,0x0a,0x50,
0x80,0x02,0x14,0xf0,0x8f,0x01,0x25,0xef,0x93,0x80,
0xbc,0xbf,0xae,0xa5,0x05,0xdc,0x78,0x18,0x05,0x14,
0x30,0xe4,0xf5,0x66,0x01,0x05,0x0f,0x1b,0x30,0x01,
0x4d,0x8f,0xc5,0xcd,0x6d,0x0c,0x76,0x3c,0x17,0x0d,
0x06,0x0c,0xdc,0xe7,0xbf,0x07,0xa7,0x80,0xb6,0x60,
0xae,0x7b,0xdb,0x40,0x0d,0xe6,0x20,0x03,0x57,0x50,
0x79,0x2c,0x5d,0xd1,0x31,0xa3,0xf3,0xeb,0x2d,0xc0,
0x00,0x1c,0x2e,0x26,0xd8,0xd1,0x85,0xb1,0xfa,0x00,
0x00,0x00,0x00,0x49,0x45,0x4e,0x44,0xae,0x42,0x60,
0x82
};

View file

@ -0,0 +1,141 @@
//this file was auto-generated from "checkbox_checked.svg" by res2h
#include "../Resources.h"
const size_t checkbox_checked_svg_size = 1337;
const unsigned char checkbox_checked_svg_data[1337] = {
0x3c,0x3f,0x78,0x6d,0x6c,0x20,0x76,0x65,0x72,0x73,
0x69,0x6f,0x6e,0x3d,0x22,0x31,0x2e,0x30,0x22,0x20,
0x65,0x6e,0x63,0x6f,0x64,0x69,0x6e,0x67,0x3d,0x22,
0x75,0x74,0x66,0x2d,0x38,0x22,0x3f,0x3e,0x0d,0x0a,
0x3c,0x21,0x2d,0x2d,0x20,0x47,0x65,0x6e,0x65,0x72,
0x61,0x74,0x6f,0x72,0x3a,0x20,0x41,0x64,0x6f,0x62,
0x65,0x20,0x49,0x6c,0x6c,0x75,0x73,0x74,0x72,0x61,
0x74,0x6f,0x72,0x20,0x31,0x36,0x2e,0x30,0x2e,0x33,
0x2c,0x20,0x53,0x56,0x47,0x20,0x45,0x78,0x70,0x6f,
0x72,0x74,0x20,0x50,0x6c,0x75,0x67,0x2d,0x49,0x6e,
0x20,0x2e,0x20,0x53,0x56,0x47,0x20,0x56,0x65,0x72,
0x73,0x69,0x6f,0x6e,0x3a,0x20,0x36,0x2e,0x30,0x30,
0x20,0x42,0x75,0x69,0x6c,0x64,0x20,0x30,0x29,0x20,
0x20,0x2d,0x2d,0x3e,0x0d,0x0a,0x3c,0x21,0x44,0x4f,
0x43,0x54,0x59,0x50,0x45,0x20,0x73,0x76,0x67,0x20,
0x50,0x55,0x42,0x4c,0x49,0x43,0x20,0x22,0x2d,0x2f,
0x2f,0x57,0x33,0x43,0x2f,0x2f,0x44,0x54,0x44,0x20,
0x53,0x56,0x47,0x20,0x31,0x2e,0x31,0x2f,0x2f,0x45,
0x4e,0x22,0x20,0x22,0x68,0x74,0x74,0x70,0x3a,0x2f,
0x2f,0x77,0x77,0x77,0x2e,0x77,0x33,0x2e,0x6f,0x72,
0x67,0x2f,0x47,0x72,0x61,0x70,0x68,0x69,0x63,0x73,
0x2f,0x53,0x56,0x47,0x2f,0x31,0x2e,0x31,0x2f,0x44,
0x54,0x44,0x2f,0x73,0x76,0x67,0x31,0x31,0x2e,0x64,
0x74,0x64,0x22,0x3e,0x0d,0x0a,0x3c,0x73,0x76,0x67,
0x20,0x76,0x65,0x72,0x73,0x69,0x6f,0x6e,0x3d,0x22,
0x31,0x2e,0x31,0x22,0x20,0x69,0x64,0x3d,0x22,0x45,
0x62,0x65,0x6e,0x65,0x5f,0x31,0x22,0x20,0x78,0x6d,
0x6c,0x6e,0x73,0x3d,0x22,0x68,0x74,0x74,0x70,0x3a,
0x2f,0x2f,0x77,0x77,0x77,0x2e,0x77,0x33,0x2e,0x6f,
0x72,0x67,0x2f,0x32,0x30,0x30,0x30,0x2f,0x73,0x76,
0x67,0x22,0x20,0x78,0x6d,0x6c,0x6e,0x73,0x3a,0x78,
0x6c,0x69,0x6e,0x6b,0x3d,0x22,0x68,0x74,0x74,0x70,
0x3a,0x2f,0x2f,0x77,0x77,0x77,0x2e,0x77,0x33,0x2e,
0x6f,0x72,0x67,0x2f,0x31,0x39,0x39,0x39,0x2f,0x78,
0x6c,0x69,0x6e,0x6b,0x22,0x20,0x78,0x3d,0x22,0x30,
0x70,0x78,0x22,0x20,0x79,0x3d,0x22,0x30,0x70,0x78,
0x22,0x0d,0x0a,0x09,0x20,0x77,0x69,0x64,0x74,0x68,
0x3d,0x22,0x32,0x31,0x2e,0x39,0x36,0x32,0x70,0x78,
0x22,0x20,0x68,0x65,0x69,0x67,0x68,0x74,0x3d,0x22,
0x32,0x31,0x2e,0x39,0x35,0x39,0x70,0x78,0x22,0x20,
0x76,0x69,0x65,0x77,0x42,0x6f,0x78,0x3d,0x22,0x30,
0x20,0x30,0x20,0x32,0x31,0x2e,0x39,0x36,0x32,0x20,
0x32,0x31,0x2e,0x39,0x35,0x39,0x22,0x20,0x65,0x6e,
0x61,0x62,0x6c,0x65,0x2d,0x62,0x61,0x63,0x6b,0x67,
0x72,0x6f,0x75,0x6e,0x64,0x3d,0x22,0x6e,0x65,0x77,
0x20,0x30,0x20,0x30,0x20,0x32,0x31,0x2e,0x39,0x36,
0x32,0x20,0x32,0x31,0x2e,0x39,0x35,0x39,0x22,0x20,
0x78,0x6d,0x6c,0x3a,0x73,0x70,0x61,0x63,0x65,0x3d,
0x22,0x70,0x72,0x65,0x73,0x65,0x72,0x76,0x65,0x22,
0x3e,0x0d,0x0a,0x3c,0x70,0x61,0x74,0x68,0x20,0x66,
0x69,0x6c,0x6c,0x3d,0x22,0x23,0x37,0x37,0x37,0x37,
0x37,0x37,0x22,0x20,0x64,0x3d,0x22,0x4d,0x31,0x37,
0x2e,0x37,0x31,0x2c,0x31,0x2e,0x35,0x63,0x31,0x2e,
0x35,0x31,0x38,0x2c,0x30,0x2c,0x32,0x2e,0x37,0x35,
0x32,0x2c,0x31,0x2e,0x32,0x33,0x34,0x2c,0x32,0x2e,
0x37,0x35,0x32,0x2c,0x32,0x2e,0x37,0x35,0x32,0x76,
0x31,0x33,0x2e,0x34,0x35,0x35,0x63,0x30,0x2c,0x31,
0x2e,0x35,0x31,0x38,0x2d,0x31,0x2e,0x32,0x33,0x34,
0x2c,0x32,0x2e,0x37,0x35,0x32,0x2d,0x32,0x2e,0x37,
0x35,0x32,0x2c,0x32,0x2e,0x37,0x35,0x32,0x48,0x34,
0x2e,0x32,0x35,0x32,0x0d,0x0a,0x09,0x63,0x2d,0x31,
0x2e,0x35,0x31,0x38,0x2c,0x30,0x2d,0x32,0x2e,0x37,
0x35,0x32,0x2d,0x31,0x2e,0x32,0x33,0x34,0x2d,0x32,
0x2e,0x37,0x35,0x32,0x2d,0x32,0x2e,0x37,0x35,0x32,
0x56,0x34,0x2e,0x32,0x35,0x32,0x43,0x31,0x2e,0x35,
0x2c,0x32,0x2e,0x37,0x33,0x34,0x2c,0x32,0x2e,0x37,
0x33,0x34,0x2c,0x31,0x2e,0x35,0x2c,0x34,0x2e,0x32,
0x35,0x32,0x2c,0x31,0x2e,0x35,0x48,0x31,0x37,0x2e,
0x37,0x31,0x20,0x4d,0x31,0x37,0x2e,0x37,0x31,0x2c,
0x30,0x48,0x34,0x2e,0x32,0x35,0x32,0x43,0x31,0x2e,
0x39,0x31,0x34,0x2c,0x30,0x2c,0x30,0x2c,0x31,0x2e,
0x39,0x31,0x34,0x2c,0x30,0x2c,0x34,0x2e,0x32,0x35,
0x32,0x76,0x31,0x33,0x2e,0x34,0x35,0x35,0x0d,0x0a,
0x09,0x63,0x30,0x2c,0x32,0x2e,0x33,0x33,0x39,0x2c,
0x31,0x2e,0x39,0x31,0x34,0x2c,0x34,0x2e,0x32,0x35,
0x32,0x2c,0x34,0x2e,0x32,0x35,0x32,0x2c,0x34,0x2e,
0x32,0x35,0x32,0x48,0x31,0x37,0x2e,0x37,0x31,0x63,
0x32,0x2e,0x33,0x33,0x39,0x2c,0x30,0x2c,0x34,0x2e,
0x32,0x35,0x32,0x2d,0x31,0x2e,0x39,0x31,0x33,0x2c,
0x34,0x2e,0x32,0x35,0x32,0x2d,0x34,0x2e,0x32,0x35,
0x32,0x56,0x34,0x2e,0x32,0x35,0x32,0x43,0x32,0x31,
0x2e,0x39,0x36,0x32,0x2c,0x31,0x2e,0x39,0x31,0x34,
0x2c,0x32,0x30,0x2e,0x30,0x34,0x39,0x2c,0x30,0x2c,
0x31,0x37,0x2e,0x37,0x31,0x2c,0x30,0x4c,0x31,0x37,
0x2e,0x37,0x31,0x2c,0x30,0x7a,0x22,0x2f,0x3e,0x0d,
0x0a,0x3c,0x67,0x3e,0x0d,0x0a,0x09,0x3c,0x67,0x3e,
0x0d,0x0a,0x09,0x09,0x0d,0x0a,0x09,0x09,0x09,0x3c,
0x72,0x65,0x63,0x74,0x20,0x78,0x3d,0x22,0x31,0x30,
0x2e,0x32,0x33,0x32,0x22,0x20,0x79,0x3d,0x22,0x31,
0x2e,0x30,0x37,0x39,0x22,0x20,0x74,0x72,0x61,0x6e,
0x73,0x66,0x6f,0x72,0x6d,0x3d,0x22,0x6d,0x61,0x74,
0x72,0x69,0x78,0x28,0x30,0x2e,0x37,0x30,0x37,0x31,
0x20,0x30,0x2e,0x37,0x30,0x37,0x31,0x20,0x2d,0x30,
0x2e,0x37,0x30,0x37,0x31,0x20,0x30,0x2e,0x37,0x30,
0x37,0x31,0x20,0x31,0x30,0x2e,0x39,0x38,0x30,0x31,
0x20,0x2d,0x34,0x2e,0x35,0x34,0x39,0x34,0x29,0x22,
0x20,0x66,0x69,0x6c,0x6c,0x3d,0x22,0x23,0x37,0x37,
0x37,0x37,0x37,0x37,0x22,0x20,0x77,0x69,0x64,0x74,
0x68,0x3d,0x22,0x31,0x2e,0x35,0x22,0x20,0x68,0x65,
0x69,0x67,0x68,0x74,0x3d,0x22,0x31,0x39,0x2e,0x38,
0x22,0x2f,0x3e,0x0d,0x0a,0x09,0x3c,0x2f,0x67,0x3e,
0x0d,0x0a,0x09,0x3c,0x67,0x3e,0x0d,0x0a,0x09,0x09,
0x0d,0x0a,0x09,0x09,0x09,0x3c,0x72,0x65,0x63,0x74,
0x20,0x78,0x3d,0x22,0x31,0x30,0x2e,0x32,0x33,0x32,
0x22,0x20,0x79,0x3d,0x22,0x31,0x2e,0x30,0x37,0x39,
0x22,0x20,0x74,0x72,0x61,0x6e,0x73,0x66,0x6f,0x72,
0x6d,0x3d,0x22,0x6d,0x61,0x74,0x72,0x69,0x78,0x28,
0x30,0x2e,0x37,0x30,0x37,0x31,0x20,0x30,0x2e,0x37,
0x30,0x37,0x31,0x20,0x2d,0x30,0x2e,0x37,0x30,0x37,
0x31,0x20,0x30,0x2e,0x37,0x30,0x37,0x31,0x20,0x31,
0x30,0x2e,0x39,0x38,0x30,0x31,0x20,0x2d,0x34,0x2e,
0x35,0x34,0x39,0x34,0x29,0x22,0x20,0x66,0x69,0x6c,
0x6c,0x3d,0x22,0x23,0x37,0x37,0x37,0x37,0x37,0x37,
0x22,0x20,0x77,0x69,0x64,0x74,0x68,0x3d,0x22,0x31,
0x2e,0x35,0x22,0x20,0x68,0x65,0x69,0x67,0x68,0x74,
0x3d,0x22,0x31,0x39,0x2e,0x38,0x22,0x2f,0x3e,0x0d,
0x0a,0x09,0x3c,0x2f,0x67,0x3e,0x0d,0x0a,0x09,0x3c,
0x67,0x3e,0x0d,0x0a,0x09,0x09,0x0d,0x0a,0x09,0x09,
0x09,0x3c,0x72,0x65,0x63,0x74,0x20,0x78,0x3d,0x22,
0x31,0x2e,0x30,0x38,0x32,0x22,0x20,0x79,0x3d,0x22,
0x31,0x30,0x2e,0x32,0x33,0x22,0x20,0x74,0x72,0x61,
0x6e,0x73,0x66,0x6f,0x72,0x6d,0x3d,0x22,0x6d,0x61,
0x74,0x72,0x69,0x78,0x28,0x30,0x2e,0x37,0x30,0x37,
0x31,0x20,0x30,0x2e,0x37,0x30,0x37,0x31,0x20,0x2d,
0x30,0x2e,0x37,0x30,0x37,0x31,0x20,0x30,0x2e,0x37,
0x30,0x37,0x31,0x20,0x31,0x30,0x2e,0x39,0x37,0x39,
0x33,0x20,0x2d,0x34,0x2e,0x35,0x34,0x39,0x34,0x29,
0x22,0x20,0x66,0x69,0x6c,0x6c,0x3d,0x22,0x23,0x37,
0x37,0x37,0x37,0x37,0x37,0x22,0x20,0x77,0x69,0x64,
0x74,0x68,0x3d,0x22,0x31,0x39,0x2e,0x38,0x22,0x20,
0x68,0x65,0x69,0x67,0x68,0x74,0x3d,0x22,0x31,0x2e,
0x35,0x22,0x2f,0x3e,0x0d,0x0a,0x09,0x3c,0x2f,0x67,
0x3e,0x0d,0x0a,0x3c,0x2f,0x67,0x3e,0x0d,0x0a,0x3c,
0x2f,0x73,0x76,0x67,0x3e,0x0d,0x0a
};

View file

@ -0,0 +1,93 @@
//this file was auto-generated from "checkbox_unchecked.svg" by res2h
#include "../Resources.h"
const size_t checkbox_unchecked_svg_size = 859;
const unsigned char checkbox_unchecked_svg_data[859] = {
0x3c,0x3f,0x78,0x6d,0x6c,0x20,0x76,0x65,0x72,0x73,
0x69,0x6f,0x6e,0x3d,0x22,0x31,0x2e,0x30,0x22,0x20,
0x65,0x6e,0x63,0x6f,0x64,0x69,0x6e,0x67,0x3d,0x22,
0x75,0x74,0x66,0x2d,0x38,0x22,0x3f,0x3e,0x0d,0x0a,
0x3c,0x21,0x2d,0x2d,0x20,0x47,0x65,0x6e,0x65,0x72,
0x61,0x74,0x6f,0x72,0x3a,0x20,0x41,0x64,0x6f,0x62,
0x65,0x20,0x49,0x6c,0x6c,0x75,0x73,0x74,0x72,0x61,
0x74,0x6f,0x72,0x20,0x31,0x36,0x2e,0x30,0x2e,0x33,
0x2c,0x20,0x53,0x56,0x47,0x20,0x45,0x78,0x70,0x6f,
0x72,0x74,0x20,0x50,0x6c,0x75,0x67,0x2d,0x49,0x6e,
0x20,0x2e,0x20,0x53,0x56,0x47,0x20,0x56,0x65,0x72,
0x73,0x69,0x6f,0x6e,0x3a,0x20,0x36,0x2e,0x30,0x30,
0x20,0x42,0x75,0x69,0x6c,0x64,0x20,0x30,0x29,0x20,
0x20,0x2d,0x2d,0x3e,0x0d,0x0a,0x3c,0x21,0x44,0x4f,
0x43,0x54,0x59,0x50,0x45,0x20,0x73,0x76,0x67,0x20,
0x50,0x55,0x42,0x4c,0x49,0x43,0x20,0x22,0x2d,0x2f,
0x2f,0x57,0x33,0x43,0x2f,0x2f,0x44,0x54,0x44,0x20,
0x53,0x56,0x47,0x20,0x31,0x2e,0x31,0x2f,0x2f,0x45,
0x4e,0x22,0x20,0x22,0x68,0x74,0x74,0x70,0x3a,0x2f,
0x2f,0x77,0x77,0x77,0x2e,0x77,0x33,0x2e,0x6f,0x72,
0x67,0x2f,0x47,0x72,0x61,0x70,0x68,0x69,0x63,0x73,
0x2f,0x53,0x56,0x47,0x2f,0x31,0x2e,0x31,0x2f,0x44,
0x54,0x44,0x2f,0x73,0x76,0x67,0x31,0x31,0x2e,0x64,
0x74,0x64,0x22,0x3e,0x0d,0x0a,0x3c,0x73,0x76,0x67,
0x20,0x76,0x65,0x72,0x73,0x69,0x6f,0x6e,0x3d,0x22,
0x31,0x2e,0x31,0x22,0x20,0x69,0x64,0x3d,0x22,0x45,
0x62,0x65,0x6e,0x65,0x5f,0x31,0x22,0x20,0x78,0x6d,
0x6c,0x6e,0x73,0x3d,0x22,0x68,0x74,0x74,0x70,0x3a,
0x2f,0x2f,0x77,0x77,0x77,0x2e,0x77,0x33,0x2e,0x6f,
0x72,0x67,0x2f,0x32,0x30,0x30,0x30,0x2f,0x73,0x76,
0x67,0x22,0x20,0x78,0x6d,0x6c,0x6e,0x73,0x3a,0x78,
0x6c,0x69,0x6e,0x6b,0x3d,0x22,0x68,0x74,0x74,0x70,
0x3a,0x2f,0x2f,0x77,0x77,0x77,0x2e,0x77,0x33,0x2e,
0x6f,0x72,0x67,0x2f,0x31,0x39,0x39,0x39,0x2f,0x78,
0x6c,0x69,0x6e,0x6b,0x22,0x20,0x78,0x3d,0x22,0x30,
0x70,0x78,0x22,0x20,0x79,0x3d,0x22,0x30,0x70,0x78,
0x22,0x0d,0x0a,0x09,0x20,0x77,0x69,0x64,0x74,0x68,
0x3d,0x22,0x32,0x31,0x2e,0x39,0x36,0x32,0x70,0x78,
0x22,0x20,0x68,0x65,0x69,0x67,0x68,0x74,0x3d,0x22,
0x32,0x31,0x2e,0x39,0x35,0x39,0x70,0x78,0x22,0x20,
0x76,0x69,0x65,0x77,0x42,0x6f,0x78,0x3d,0x22,0x30,
0x20,0x30,0x20,0x32,0x31,0x2e,0x39,0x36,0x32,0x20,
0x32,0x31,0x2e,0x39,0x35,0x39,0x22,0x20,0x65,0x6e,
0x61,0x62,0x6c,0x65,0x2d,0x62,0x61,0x63,0x6b,0x67,
0x72,0x6f,0x75,0x6e,0x64,0x3d,0x22,0x6e,0x65,0x77,
0x20,0x30,0x20,0x30,0x20,0x32,0x31,0x2e,0x39,0x36,
0x32,0x20,0x32,0x31,0x2e,0x39,0x35,0x39,0x22,0x20,
0x78,0x6d,0x6c,0x3a,0x73,0x70,0x61,0x63,0x65,0x3d,
0x22,0x70,0x72,0x65,0x73,0x65,0x72,0x76,0x65,0x22,
0x3e,0x0d,0x0a,0x3c,0x70,0x61,0x74,0x68,0x20,0x66,
0x69,0x6c,0x6c,0x3d,0x22,0x23,0x37,0x37,0x37,0x37,
0x37,0x37,0x22,0x20,0x64,0x3d,0x22,0x4d,0x31,0x37,
0x2e,0x37,0x31,0x2c,0x31,0x2e,0x35,0x63,0x31,0x2e,
0x35,0x31,0x38,0x2c,0x30,0x2c,0x32,0x2e,0x37,0x35,
0x32,0x2c,0x31,0x2e,0x32,0x33,0x34,0x2c,0x32,0x2e,
0x37,0x35,0x32,0x2c,0x32,0x2e,0x37,0x35,0x32,0x76,
0x31,0x33,0x2e,0x34,0x35,0x35,0x63,0x30,0x2c,0x31,
0x2e,0x35,0x31,0x38,0x2d,0x31,0x2e,0x32,0x33,0x34,
0x2c,0x32,0x2e,0x37,0x35,0x32,0x2d,0x32,0x2e,0x37,
0x35,0x32,0x2c,0x32,0x2e,0x37,0x35,0x32,0x48,0x34,
0x2e,0x32,0x35,0x32,0x0d,0x0a,0x09,0x63,0x2d,0x31,
0x2e,0x35,0x31,0x38,0x2c,0x30,0x2d,0x32,0x2e,0x37,
0x35,0x32,0x2d,0x31,0x2e,0x32,0x33,0x34,0x2d,0x32,
0x2e,0x37,0x35,0x32,0x2d,0x32,0x2e,0x37,0x35,0x32,
0x56,0x34,0x2e,0x32,0x35,0x32,0x43,0x31,0x2e,0x35,
0x2c,0x32,0x2e,0x37,0x33,0x34,0x2c,0x32,0x2e,0x37,
0x33,0x34,0x2c,0x31,0x2e,0x35,0x2c,0x34,0x2e,0x32,
0x35,0x32,0x2c,0x31,0x2e,0x35,0x48,0x31,0x37,0x2e,
0x37,0x31,0x20,0x4d,0x31,0x37,0x2e,0x37,0x31,0x2c,
0x30,0x48,0x34,0x2e,0x32,0x35,0x32,0x43,0x31,0x2e,
0x39,0x31,0x34,0x2c,0x30,0x2c,0x30,0x2c,0x31,0x2e,
0x39,0x31,0x34,0x2c,0x30,0x2c,0x34,0x2e,0x32,0x35,
0x32,0x76,0x31,0x33,0x2e,0x34,0x35,0x35,0x0d,0x0a,
0x09,0x63,0x30,0x2c,0x32,0x2e,0x33,0x33,0x39,0x2c,
0x31,0x2e,0x39,0x31,0x34,0x2c,0x34,0x2e,0x32,0x35,
0x32,0x2c,0x34,0x2e,0x32,0x35,0x32,0x2c,0x34,0x2e,
0x32,0x35,0x32,0x48,0x31,0x37,0x2e,0x37,0x31,0x63,
0x32,0x2e,0x33,0x33,0x39,0x2c,0x30,0x2c,0x34,0x2e,
0x32,0x35,0x32,0x2d,0x31,0x2e,0x39,0x31,0x33,0x2c,
0x34,0x2e,0x32,0x35,0x32,0x2d,0x34,0x2e,0x32,0x35,
0x32,0x56,0x34,0x2e,0x32,0x35,0x32,0x43,0x32,0x31,
0x2e,0x39,0x36,0x32,0x2c,0x31,0x2e,0x39,0x31,0x34,
0x2c,0x32,0x30,0x2e,0x30,0x34,0x39,0x2c,0x30,0x2c,
0x31,0x37,0x2e,0x37,0x31,0x2c,0x30,0x4c,0x31,0x37,
0x2e,0x37,0x31,0x2c,0x30,0x7a,0x22,0x2f,0x3e,0x0d,
0x0a,0x3c,0x2f,0x73,0x76,0x67,0x3e,0x0d,0x0a
};

View file

@ -0,0 +1,72 @@
//this file was auto-generated from "fav_add.svg" by res2h
#include "../Resources.h"
const size_t fav_add_svg_size = 650;
const unsigned char fav_add_svg_data[650] = {
0x3c,0x3f,0x78,0x6d,0x6c,0x20,0x76,0x65,0x72,0x73,
0x69,0x6f,0x6e,0x3d,0x22,0x31,0x2e,0x30,0x22,0x20,
0x65,0x6e,0x63,0x6f,0x64,0x69,0x6e,0x67,0x3d,0x22,
0x75,0x74,0x66,0x2d,0x38,0x22,0x3f,0x3e,0x0d,0x0a,
0x3c,0x21,0x2d,0x2d,0x20,0x47,0x65,0x6e,0x65,0x72,
0x61,0x74,0x6f,0x72,0x3a,0x20,0x41,0x64,0x6f,0x62,
0x65,0x20,0x49,0x6c,0x6c,0x75,0x73,0x74,0x72,0x61,
0x74,0x6f,0x72,0x20,0x31,0x36,0x2e,0x30,0x2e,0x33,
0x2c,0x20,0x53,0x56,0x47,0x20,0x45,0x78,0x70,0x6f,
0x72,0x74,0x20,0x50,0x6c,0x75,0x67,0x2d,0x49,0x6e,
0x20,0x2e,0x20,0x53,0x56,0x47,0x20,0x56,0x65,0x72,
0x73,0x69,0x6f,0x6e,0x3a,0x20,0x36,0x2e,0x30,0x30,
0x20,0x42,0x75,0x69,0x6c,0x64,0x20,0x30,0x29,0x20,
0x20,0x2d,0x2d,0x3e,0x0d,0x0a,0x3c,0x21,0x44,0x4f,
0x43,0x54,0x59,0x50,0x45,0x20,0x73,0x76,0x67,0x20,
0x50,0x55,0x42,0x4c,0x49,0x43,0x20,0x22,0x2d,0x2f,
0x2f,0x57,0x33,0x43,0x2f,0x2f,0x44,0x54,0x44,0x20,
0x53,0x56,0x47,0x20,0x31,0x2e,0x31,0x2f,0x2f,0x45,
0x4e,0x22,0x20,0x22,0x68,0x74,0x74,0x70,0x3a,0x2f,
0x2f,0x77,0x77,0x77,0x2e,0x77,0x33,0x2e,0x6f,0x72,
0x67,0x2f,0x47,0x72,0x61,0x70,0x68,0x69,0x63,0x73,
0x2f,0x53,0x56,0x47,0x2f,0x31,0x2e,0x31,0x2f,0x44,
0x54,0x44,0x2f,0x73,0x76,0x67,0x31,0x31,0x2e,0x64,
0x74,0x64,0x22,0x3e,0x0d,0x0a,0x3c,0x73,0x76,0x67,
0x20,0x76,0x65,0x72,0x73,0x69,0x6f,0x6e,0x3d,0x22,
0x31,0x2e,0x31,0x22,0x20,0x69,0x64,0x3d,0x22,0x45,
0x62,0x65,0x6e,0x65,0x5f,0x31,0x22,0x20,0x78,0x6d,
0x6c,0x6e,0x73,0x3d,0x22,0x68,0x74,0x74,0x70,0x3a,
0x2f,0x2f,0x77,0x77,0x77,0x2e,0x77,0x33,0x2e,0x6f,
0x72,0x67,0x2f,0x32,0x30,0x30,0x30,0x2f,0x73,0x76,
0x67,0x22,0x20,0x78,0x6d,0x6c,0x6e,0x73,0x3a,0x78,
0x6c,0x69,0x6e,0x6b,0x3d,0x22,0x68,0x74,0x74,0x70,
0x3a,0x2f,0x2f,0x77,0x77,0x77,0x2e,0x77,0x33,0x2e,
0x6f,0x72,0x67,0x2f,0x31,0x39,0x39,0x39,0x2f,0x78,
0x6c,0x69,0x6e,0x6b,0x22,0x20,0x78,0x3d,0x22,0x30,
0x70,0x78,0x22,0x20,0x79,0x3d,0x22,0x30,0x70,0x78,
0x22,0x0d,0x0a,0x09,0x20,0x77,0x69,0x64,0x74,0x68,
0x3d,0x22,0x32,0x31,0x2e,0x30,0x30,0x32,0x70,0x78,
0x22,0x20,0x68,0x65,0x69,0x67,0x68,0x74,0x3d,0x22,
0x32,0x32,0x2e,0x30,0x30,0x32,0x70,0x78,0x22,0x20,
0x76,0x69,0x65,0x77,0x42,0x6f,0x78,0x3d,0x22,0x30,
0x20,0x30,0x20,0x32,0x31,0x2e,0x30,0x30,0x32,0x20,
0x32,0x32,0x2e,0x30,0x30,0x32,0x22,0x20,0x65,0x6e,
0x61,0x62,0x6c,0x65,0x2d,0x62,0x61,0x63,0x6b,0x67,
0x72,0x6f,0x75,0x6e,0x64,0x3d,0x22,0x6e,0x65,0x77,
0x20,0x30,0x20,0x30,0x20,0x32,0x31,0x2e,0x30,0x30,
0x32,0x20,0x32,0x32,0x2e,0x30,0x30,0x32,0x22,0x20,
0x78,0x6d,0x6c,0x3a,0x73,0x70,0x61,0x63,0x65,0x3d,
0x22,0x70,0x72,0x65,0x73,0x65,0x72,0x76,0x65,0x22,
0x3e,0x0d,0x0a,0x3c,0x67,0x3e,0x0d,0x0a,0x09,0x3c,
0x72,0x65,0x63,0x74,0x20,0x79,0x3d,0x22,0x31,0x30,
0x2e,0x32,0x35,0x31,0x22,0x20,0x66,0x69,0x6c,0x6c,
0x3d,0x22,0x23,0x37,0x37,0x37,0x37,0x37,0x37,0x22,
0x20,0x77,0x69,0x64,0x74,0x68,0x3d,0x22,0x32,0x31,
0x2e,0x30,0x30,0x32,0x22,0x20,0x68,0x65,0x69,0x67,
0x68,0x74,0x3d,0x22,0x31,0x2e,0x35,0x22,0x2f,0x3e,
0x0d,0x0a,0x3c,0x2f,0x67,0x3e,0x0d,0x0a,0x3c,0x67,
0x3e,0x0d,0x0a,0x09,0x3c,0x72,0x65,0x63,0x74,0x20,
0x78,0x3d,0x22,0x39,0x2e,0x37,0x35,0x31,0x22,0x20,
0x66,0x69,0x6c,0x6c,0x3d,0x22,0x23,0x37,0x37,0x37,
0x37,0x37,0x37,0x22,0x20,0x77,0x69,0x64,0x74,0x68,
0x3d,0x22,0x31,0x2e,0x35,0x22,0x20,0x68,0x65,0x69,
0x67,0x68,0x74,0x3d,0x22,0x32,0x32,0x2e,0x30,0x30,
0x32,0x22,0x2f,0x3e,0x0d,0x0a,0x3c,0x2f,0x67,0x3e,
0x0d,0x0a,0x3c,0x2f,0x73,0x76,0x67,0x3e,0x0d,0x0a
};

View file

@ -0,0 +1,65 @@
//this file was auto-generated from "fav_remove.svg" by res2h
#include "../Resources.h"
const size_t fav_remove_svg_size = 576;
const unsigned char fav_remove_svg_data[576] = {
0x3c,0x3f,0x78,0x6d,0x6c,0x20,0x76,0x65,0x72,0x73,
0x69,0x6f,0x6e,0x3d,0x22,0x31,0x2e,0x30,0x22,0x20,
0x65,0x6e,0x63,0x6f,0x64,0x69,0x6e,0x67,0x3d,0x22,
0x75,0x74,0x66,0x2d,0x38,0x22,0x3f,0x3e,0x0d,0x0a,
0x3c,0x21,0x2d,0x2d,0x20,0x47,0x65,0x6e,0x65,0x72,
0x61,0x74,0x6f,0x72,0x3a,0x20,0x41,0x64,0x6f,0x62,
0x65,0x20,0x49,0x6c,0x6c,0x75,0x73,0x74,0x72,0x61,
0x74,0x6f,0x72,0x20,0x31,0x36,0x2e,0x30,0x2e,0x33,
0x2c,0x20,0x53,0x56,0x47,0x20,0x45,0x78,0x70,0x6f,
0x72,0x74,0x20,0x50,0x6c,0x75,0x67,0x2d,0x49,0x6e,
0x20,0x2e,0x20,0x53,0x56,0x47,0x20,0x56,0x65,0x72,
0x73,0x69,0x6f,0x6e,0x3a,0x20,0x36,0x2e,0x30,0x30,
0x20,0x42,0x75,0x69,0x6c,0x64,0x20,0x30,0x29,0x20,
0x20,0x2d,0x2d,0x3e,0x0d,0x0a,0x3c,0x21,0x44,0x4f,
0x43,0x54,0x59,0x50,0x45,0x20,0x73,0x76,0x67,0x20,
0x50,0x55,0x42,0x4c,0x49,0x43,0x20,0x22,0x2d,0x2f,
0x2f,0x57,0x33,0x43,0x2f,0x2f,0x44,0x54,0x44,0x20,
0x53,0x56,0x47,0x20,0x31,0x2e,0x31,0x2f,0x2f,0x45,
0x4e,0x22,0x20,0x22,0x68,0x74,0x74,0x70,0x3a,0x2f,
0x2f,0x77,0x77,0x77,0x2e,0x77,0x33,0x2e,0x6f,0x72,
0x67,0x2f,0x47,0x72,0x61,0x70,0x68,0x69,0x63,0x73,
0x2f,0x53,0x56,0x47,0x2f,0x31,0x2e,0x31,0x2f,0x44,
0x54,0x44,0x2f,0x73,0x76,0x67,0x31,0x31,0x2e,0x64,
0x74,0x64,0x22,0x3e,0x0d,0x0a,0x3c,0x73,0x76,0x67,
0x20,0x76,0x65,0x72,0x73,0x69,0x6f,0x6e,0x3d,0x22,
0x31,0x2e,0x31,0x22,0x20,0x69,0x64,0x3d,0x22,0x45,
0x62,0x65,0x6e,0x65,0x5f,0x31,0x22,0x20,0x78,0x6d,
0x6c,0x6e,0x73,0x3d,0x22,0x68,0x74,0x74,0x70,0x3a,
0x2f,0x2f,0x77,0x77,0x77,0x2e,0x77,0x33,0x2e,0x6f,
0x72,0x67,0x2f,0x32,0x30,0x30,0x30,0x2f,0x73,0x76,
0x67,0x22,0x20,0x78,0x6d,0x6c,0x6e,0x73,0x3a,0x78,
0x6c,0x69,0x6e,0x6b,0x3d,0x22,0x68,0x74,0x74,0x70,
0x3a,0x2f,0x2f,0x77,0x77,0x77,0x2e,0x77,0x33,0x2e,
0x6f,0x72,0x67,0x2f,0x31,0x39,0x39,0x39,0x2f,0x78,
0x6c,0x69,0x6e,0x6b,0x22,0x20,0x78,0x3d,0x22,0x30,
0x70,0x78,0x22,0x20,0x79,0x3d,0x22,0x30,0x70,0x78,
0x22,0x0d,0x0a,0x09,0x20,0x77,0x69,0x64,0x74,0x68,
0x3d,0x22,0x32,0x31,0x2e,0x30,0x30,0x32,0x70,0x78,
0x22,0x20,0x68,0x65,0x69,0x67,0x68,0x74,0x3d,0x22,
0x32,0x32,0x2e,0x30,0x30,0x32,0x70,0x78,0x22,0x20,
0x76,0x69,0x65,0x77,0x42,0x6f,0x78,0x3d,0x22,0x30,
0x20,0x30,0x20,0x32,0x31,0x2e,0x30,0x30,0x32,0x20,
0x32,0x32,0x2e,0x30,0x30,0x32,0x22,0x20,0x65,0x6e,
0x61,0x62,0x6c,0x65,0x2d,0x62,0x61,0x63,0x6b,0x67,
0x72,0x6f,0x75,0x6e,0x64,0x3d,0x22,0x6e,0x65,0x77,
0x20,0x30,0x20,0x30,0x20,0x32,0x31,0x2e,0x30,0x30,
0x32,0x20,0x32,0x32,0x2e,0x30,0x30,0x32,0x22,0x20,
0x78,0x6d,0x6c,0x3a,0x73,0x70,0x61,0x63,0x65,0x3d,
0x22,0x70,0x72,0x65,0x73,0x65,0x72,0x76,0x65,0x22,
0x3e,0x0d,0x0a,0x3c,0x67,0x3e,0x0d,0x0a,0x09,0x3c,
0x72,0x65,0x63,0x74,0x20,0x79,0x3d,0x22,0x31,0x30,
0x2e,0x32,0x35,0x31,0x22,0x20,0x66,0x69,0x6c,0x6c,
0x3d,0x22,0x23,0x37,0x37,0x37,0x37,0x37,0x37,0x22,
0x20,0x77,0x69,0x64,0x74,0x68,0x3d,0x22,0x32,0x31,
0x2e,0x30,0x30,0x32,0x22,0x20,0x68,0x65,0x69,0x67,
0x68,0x74,0x3d,0x22,0x31,0x2e,0x35,0x22,0x2f,0x3e,
0x0d,0x0a,0x3c,0x2f,0x67,0x3e,0x0d,0x0a,0x3c,0x2f,
0x73,0x76,0x67,0x3e,0x0d,0x0a
};

View file

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

View file

@ -0,0 +1,106 @@
//this file was auto-generated from "button_a.svg" by res2h
#include "../Resources.h"
const size_t help_button_a_svg_size = 981;
const unsigned char help_button_a_svg_data[981] = {
0x3c,0x3f,0x78,0x6d,0x6c,0x20,0x76,0x65,0x72,0x73,
0x69,0x6f,0x6e,0x3d,0x22,0x31,0x2e,0x30,0x22,0x20,
0x65,0x6e,0x63,0x6f,0x64,0x69,0x6e,0x67,0x3d,0x22,
0x75,0x74,0x66,0x2d,0x38,0x22,0x3f,0x3e,0x0d,0x0a,
0x3c,0x21,0x2d,0x2d,0x20,0x47,0x65,0x6e,0x65,0x72,
0x61,0x74,0x6f,0x72,0x3a,0x20,0x41,0x64,0x6f,0x62,
0x65,0x20,0x49,0x6c,0x6c,0x75,0x73,0x74,0x72,0x61,
0x74,0x6f,0x72,0x20,0x31,0x36,0x2e,0x30,0x2e,0x33,
0x2c,0x20,0x53,0x56,0x47,0x20,0x45,0x78,0x70,0x6f,
0x72,0x74,0x20,0x50,0x6c,0x75,0x67,0x2d,0x49,0x6e,
0x20,0x2e,0x20,0x53,0x56,0x47,0x20,0x56,0x65,0x72,
0x73,0x69,0x6f,0x6e,0x3a,0x20,0x36,0x2e,0x30,0x30,
0x20,0x42,0x75,0x69,0x6c,0x64,0x20,0x30,0x29,0x20,
0x20,0x2d,0x2d,0x3e,0x0d,0x0a,0x3c,0x21,0x44,0x4f,
0x43,0x54,0x59,0x50,0x45,0x20,0x73,0x76,0x67,0x20,
0x50,0x55,0x42,0x4c,0x49,0x43,0x20,0x22,0x2d,0x2f,
0x2f,0x57,0x33,0x43,0x2f,0x2f,0x44,0x54,0x44,0x20,
0x53,0x56,0x47,0x20,0x31,0x2e,0x31,0x2f,0x2f,0x45,
0x4e,0x22,0x20,0x22,0x68,0x74,0x74,0x70,0x3a,0x2f,
0x2f,0x77,0x77,0x77,0x2e,0x77,0x33,0x2e,0x6f,0x72,
0x67,0x2f,0x47,0x72,0x61,0x70,0x68,0x69,0x63,0x73,
0x2f,0x53,0x56,0x47,0x2f,0x31,0x2e,0x31,0x2f,0x44,
0x54,0x44,0x2f,0x73,0x76,0x67,0x31,0x31,0x2e,0x64,
0x74,0x64,0x22,0x3e,0x0d,0x0a,0x3c,0x73,0x76,0x67,
0x20,0x76,0x65,0x72,0x73,0x69,0x6f,0x6e,0x3d,0x22,
0x31,0x2e,0x31,0x22,0x20,0x69,0x64,0x3d,0x22,0x5f,
0x78,0x33,0x30,0x5f,0x22,0x20,0x78,0x6d,0x6c,0x6e,
0x73,0x3d,0x22,0x68,0x74,0x74,0x70,0x3a,0x2f,0x2f,
0x77,0x77,0x77,0x2e,0x77,0x33,0x2e,0x6f,0x72,0x67,
0x2f,0x32,0x30,0x30,0x30,0x2f,0x73,0x76,0x67,0x22,
0x20,0x78,0x6d,0x6c,0x6e,0x73,0x3a,0x78,0x6c,0x69,
0x6e,0x6b,0x3d,0x22,0x68,0x74,0x74,0x70,0x3a,0x2f,
0x2f,0x77,0x77,0x77,0x2e,0x77,0x33,0x2e,0x6f,0x72,
0x67,0x2f,0x31,0x39,0x39,0x39,0x2f,0x78,0x6c,0x69,
0x6e,0x6b,0x22,0x20,0x78,0x3d,0x22,0x30,0x70,0x78,
0x22,0x20,0x79,0x3d,0x22,0x30,0x70,0x78,0x22,0x0d,
0x0a,0x09,0x20,0x77,0x69,0x64,0x74,0x68,0x3d,0x22,
0x33,0x37,0x2e,0x30,0x36,0x31,0x70,0x78,0x22,0x20,
0x68,0x65,0x69,0x67,0x68,0x74,0x3d,0x22,0x33,0x37,
0x2e,0x30,0x36,0x31,0x70,0x78,0x22,0x20,0x76,0x69,
0x65,0x77,0x42,0x6f,0x78,0x3d,0x22,0x30,0x20,0x30,
0x20,0x33,0x37,0x2e,0x30,0x36,0x31,0x20,0x33,0x37,
0x2e,0x30,0x36,0x31,0x22,0x20,0x65,0x6e,0x61,0x62,
0x6c,0x65,0x2d,0x62,0x61,0x63,0x6b,0x67,0x72,0x6f,
0x75,0x6e,0x64,0x3d,0x22,0x6e,0x65,0x77,0x20,0x30,
0x20,0x30,0x20,0x33,0x37,0x2e,0x30,0x36,0x31,0x20,
0x33,0x37,0x2e,0x30,0x36,0x31,0x22,0x20,0x78,0x6d,
0x6c,0x3a,0x73,0x70,0x61,0x63,0x65,0x3d,0x22,0x70,
0x72,0x65,0x73,0x65,0x72,0x76,0x65,0x22,0x3e,0x0d,
0x0a,0x3c,0x67,0x3e,0x0d,0x0a,0x09,0x3c,0x67,0x3e,
0x0d,0x0a,0x09,0x09,0x3c,0x70,0x61,0x74,0x68,0x20,
0x66,0x69,0x6c,0x6c,0x3d,0x22,0x23,0x46,0x46,0x46,
0x46,0x46,0x46,0x22,0x20,0x64,0x3d,0x22,0x4d,0x31,
0x38,0x2e,0x39,0x31,0x34,0x2c,0x31,0x34,0x2e,0x35,
0x37,0x39,0x6c,0x2d,0x31,0x2e,0x36,0x38,0x32,0x2c,
0x35,0x2e,0x33,0x30,0x38,0x68,0x33,0x2e,0x34,0x30,
0x35,0x6c,0x2d,0x31,0x2e,0x36,0x37,0x2d,0x35,0x2e,
0x33,0x30,0x38,0x48,0x31,0x38,0x2e,0x39,0x31,0x34,
0x7a,0x20,0x4d,0x31,0x38,0x2e,0x35,0x33,0x31,0x2c,
0x33,0x2e,0x30,0x32,0x39,0x63,0x2d,0x38,0x2e,0x35,
0x36,0x32,0x2c,0x30,0x2d,0x31,0x35,0x2e,0x35,0x30,
0x31,0x2c,0x36,0x2e,0x39,0x34,0x2d,0x31,0x35,0x2e,
0x35,0x30,0x31,0x2c,0x31,0x35,0x2e,0x35,0x0d,0x0a,
0x09,0x09,0x09,0x63,0x30,0x2c,0x38,0x2e,0x35,0x36,
0x33,0x2c,0x36,0x2e,0x39,0x33,0x39,0x2c,0x31,0x35,
0x2e,0x35,0x30,0x32,0x2c,0x31,0x35,0x2e,0x35,0x30,
0x31,0x2c,0x31,0x35,0x2e,0x35,0x30,0x32,0x53,0x33,
0x34,0x2e,0x30,0x33,0x2c,0x32,0x37,0x2e,0x30,0x39,
0x31,0x2c,0x33,0x34,0x2e,0x30,0x33,0x2c,0x31,0x38,
0x2e,0x35,0x32,0x39,0x43,0x33,0x34,0x2e,0x30,0x33,
0x2c,0x39,0x2e,0x39,0x37,0x2c,0x32,0x37,0x2e,0x30,
0x39,0x31,0x2c,0x33,0x2e,0x30,0x32,0x39,0x2c,0x31,
0x38,0x2e,0x35,0x33,0x31,0x2c,0x33,0x2e,0x30,0x32,
0x39,0x7a,0x20,0x4d,0x32,0x32,0x2e,0x32,0x32,0x37,
0x2c,0x32,0x34,0x2e,0x39,0x32,0x35,0x0d,0x0a,0x09,
0x09,0x09,0x6c,0x2d,0x30,0x2e,0x39,0x31,0x39,0x2d,
0x32,0x2e,0x39,0x31,0x33,0x68,0x2d,0x34,0x2e,0x37,
0x34,0x31,0x6c,0x2d,0x30,0x2e,0x39,0x31,0x38,0x2c,
0x32,0x2e,0x39,0x31,0x33,0x68,0x2d,0x32,0x2e,0x37,
0x33,0x35,0x6c,0x34,0x2e,0x36,0x34,0x36,0x2d,0x31,
0x33,0x2e,0x35,0x30,0x39,0x68,0x32,0x2e,0x37,0x37,
0x34,0x6c,0x34,0x2e,0x36,0x32,0x39,0x2c,0x31,0x33,
0x2e,0x35,0x30,0x39,0x48,0x32,0x32,0x2e,0x32,0x32,
0x37,0x7a,0x22,0x2f,0x3e,0x0d,0x0a,0x09,0x3c,0x2f,
0x67,0x3e,0x0d,0x0a,0x3c,0x2f,0x67,0x3e,0x0d,0x0a,
0x3c,0x67,0x20,0x6f,0x70,0x61,0x63,0x69,0x74,0x79,
0x3d,0x22,0x30,0x22,0x3e,0x0d,0x0a,0x09,0x3c,0x70,
0x61,0x74,0x68,0x20,0x66,0x69,0x6c,0x6c,0x3d,0x22,
0x23,0x46,0x46,0x46,0x46,0x46,0x46,0x22,0x20,0x64,
0x3d,0x22,0x4d,0x33,0x36,0x2e,0x39,0x36,0x31,0x2c,
0x30,0x2e,0x31,0x76,0x33,0x36,0x2e,0x38,0x36,0x31,
0x48,0x30,0x2e,0x31,0x56,0x30,0x2e,0x31,0x48,0x33,
0x36,0x2e,0x39,0x36,0x31,0x20,0x4d,0x33,0x37,0x2e,
0x30,0x36,0x31,0x2c,0x30,0x48,0x30,0x76,0x33,0x37,
0x2e,0x30,0x36,0x68,0x33,0x37,0x2e,0x30,0x36,0x31,
0x56,0x30,0x4c,0x33,0x37,0x2e,0x30,0x36,0x31,0x2c,
0x30,0x7a,0x22,0x2f,0x3e,0x0d,0x0a,0x3c,0x2f,0x67,
0x3e,0x0d,0x0a,0x3c,0x2f,0x73,0x76,0x67,0x3e,0x0d,
0x0a
};

View file

@ -0,0 +1,158 @@
//this file was auto-generated from "button_b.svg" by res2h
#include "../Resources.h"
const size_t help_button_b_svg_size = 1504;
const unsigned char help_button_b_svg_data[1504] = {
0x3c,0x3f,0x78,0x6d,0x6c,0x20,0x76,0x65,0x72,0x73,
0x69,0x6f,0x6e,0x3d,0x22,0x31,0x2e,0x30,0x22,0x20,
0x65,0x6e,0x63,0x6f,0x64,0x69,0x6e,0x67,0x3d,0x22,
0x75,0x74,0x66,0x2d,0x38,0x22,0x3f,0x3e,0x0d,0x0a,
0x3c,0x21,0x2d,0x2d,0x20,0x47,0x65,0x6e,0x65,0x72,
0x61,0x74,0x6f,0x72,0x3a,0x20,0x41,0x64,0x6f,0x62,
0x65,0x20,0x49,0x6c,0x6c,0x75,0x73,0x74,0x72,0x61,
0x74,0x6f,0x72,0x20,0x31,0x36,0x2e,0x30,0x2e,0x33,
0x2c,0x20,0x53,0x56,0x47,0x20,0x45,0x78,0x70,0x6f,
0x72,0x74,0x20,0x50,0x6c,0x75,0x67,0x2d,0x49,0x6e,
0x20,0x2e,0x20,0x53,0x56,0x47,0x20,0x56,0x65,0x72,
0x73,0x69,0x6f,0x6e,0x3a,0x20,0x36,0x2e,0x30,0x30,
0x20,0x42,0x75,0x69,0x6c,0x64,0x20,0x30,0x29,0x20,
0x20,0x2d,0x2d,0x3e,0x0d,0x0a,0x3c,0x21,0x44,0x4f,
0x43,0x54,0x59,0x50,0x45,0x20,0x73,0x76,0x67,0x20,
0x50,0x55,0x42,0x4c,0x49,0x43,0x20,0x22,0x2d,0x2f,
0x2f,0x57,0x33,0x43,0x2f,0x2f,0x44,0x54,0x44,0x20,
0x53,0x56,0x47,0x20,0x31,0x2e,0x31,0x2f,0x2f,0x45,
0x4e,0x22,0x20,0x22,0x68,0x74,0x74,0x70,0x3a,0x2f,
0x2f,0x77,0x77,0x77,0x2e,0x77,0x33,0x2e,0x6f,0x72,
0x67,0x2f,0x47,0x72,0x61,0x70,0x68,0x69,0x63,0x73,
0x2f,0x53,0x56,0x47,0x2f,0x31,0x2e,0x31,0x2f,0x44,
0x54,0x44,0x2f,0x73,0x76,0x67,0x31,0x31,0x2e,0x64,
0x74,0x64,0x22,0x3e,0x0d,0x0a,0x3c,0x73,0x76,0x67,
0x20,0x76,0x65,0x72,0x73,0x69,0x6f,0x6e,0x3d,0x22,
0x31,0x2e,0x31,0x22,0x20,0x69,0x64,0x3d,0x22,0x42,
0x22,0x20,0x78,0x6d,0x6c,0x6e,0x73,0x3d,0x22,0x68,
0x74,0x74,0x70,0x3a,0x2f,0x2f,0x77,0x77,0x77,0x2e,
0x77,0x33,0x2e,0x6f,0x72,0x67,0x2f,0x32,0x30,0x30,
0x30,0x2f,0x73,0x76,0x67,0x22,0x20,0x78,0x6d,0x6c,
0x6e,0x73,0x3a,0x78,0x6c,0x69,0x6e,0x6b,0x3d,0x22,
0x68,0x74,0x74,0x70,0x3a,0x2f,0x2f,0x77,0x77,0x77,
0x2e,0x77,0x33,0x2e,0x6f,0x72,0x67,0x2f,0x31,0x39,
0x39,0x39,0x2f,0x78,0x6c,0x69,0x6e,0x6b,0x22,0x20,
0x78,0x3d,0x22,0x30,0x70,0x78,0x22,0x20,0x79,0x3d,
0x22,0x30,0x70,0x78,0x22,0x0d,0x0a,0x09,0x20,0x77,
0x69,0x64,0x74,0x68,0x3d,0x22,0x33,0x37,0x2e,0x30,
0x36,0x31,0x70,0x78,0x22,0x20,0x68,0x65,0x69,0x67,
0x68,0x74,0x3d,0x22,0x33,0x37,0x2e,0x30,0x36,0x31,
0x70,0x78,0x22,0x20,0x76,0x69,0x65,0x77,0x42,0x6f,
0x78,0x3d,0x22,0x30,0x20,0x30,0x20,0x33,0x37,0x2e,
0x30,0x36,0x31,0x20,0x33,0x37,0x2e,0x30,0x36,0x31,
0x22,0x20,0x65,0x6e,0x61,0x62,0x6c,0x65,0x2d,0x62,
0x61,0x63,0x6b,0x67,0x72,0x6f,0x75,0x6e,0x64,0x3d,
0x22,0x6e,0x65,0x77,0x20,0x30,0x20,0x30,0x20,0x33,
0x37,0x2e,0x30,0x36,0x31,0x20,0x33,0x37,0x2e,0x30,
0x36,0x31,0x22,0x20,0x78,0x6d,0x6c,0x3a,0x73,0x70,
0x61,0x63,0x65,0x3d,0x22,0x70,0x72,0x65,0x73,0x65,
0x72,0x76,0x65,0x22,0x3e,0x0d,0x0a,0x3c,0x67,0x3e,
0x0d,0x0a,0x09,0x3c,0x67,0x3e,0x0d,0x0a,0x09,0x09,
0x3c,0x70,0x61,0x74,0x68,0x20,0x66,0x69,0x6c,0x6c,
0x3d,0x22,0x23,0x46,0x46,0x46,0x46,0x46,0x46,0x22,
0x20,0x64,0x3d,0x22,0x4d,0x31,0x39,0x2e,0x34,0x37,
0x2c,0x31,0x38,0x2e,0x39,0x34,0x39,0x68,0x2d,0x32,
0x2e,0x36,0x39,0x39,0x76,0x33,0x2e,0x38,0x38,0x37,
0x68,0x32,0x2e,0x34,0x39,0x36,0x63,0x30,0x2e,0x37,
0x31,0x37,0x2c,0x30,0x2c,0x31,0x2e,0x32,0x36,0x37,
0x2d,0x30,0x2e,0x31,0x35,0x34,0x2c,0x31,0x2e,0x36,
0x34,0x34,0x2d,0x30,0x2e,0x34,0x36,0x37,0x63,0x30,
0x2e,0x33,0x37,0x38,0x2d,0x30,0x2e,0x33,0x31,0x33,
0x2c,0x30,0x2e,0x35,0x36,0x33,0x2d,0x30,0x2e,0x37,
0x37,0x32,0x2c,0x30,0x2e,0x35,0x36,0x33,0x2d,0x31,
0x2e,0x33,0x38,0x35,0x0d,0x0a,0x09,0x09,0x09,0x63,
0x30,0x2d,0x30,0x2e,0x36,0x35,0x39,0x2d,0x30,0x2e,
0x31,0x36,0x2d,0x31,0x2e,0x31,0x36,0x35,0x2d,0x30,
0x2e,0x34,0x38,0x2d,0x31,0x2e,0x35,0x31,0x33,0x43,
0x32,0x30,0x2e,0x36,0x37,0x31,0x2c,0x31,0x39,0x2e,
0x31,0x32,0x34,0x2c,0x32,0x30,0x2e,0x31,0x36,0x33,
0x2c,0x31,0x38,0x2e,0x39,0x34,0x39,0x2c,0x31,0x39,
0x2e,0x34,0x37,0x2c,0x31,0x38,0x2e,0x39,0x34,0x39,
0x7a,0x20,0x4d,0x32,0x30,0x2e,0x33,0x38,0x39,0x2c,
0x31,0x36,0x2e,0x36,0x33,0x63,0x30,0x2e,0x33,0x39,
0x2d,0x30,0x2e,0x32,0x39,0x37,0x2c,0x30,0x2e,0x35,
0x38,0x35,0x2d,0x30,0x2e,0x37,0x32,0x39,0x2c,0x30,
0x2e,0x35,0x38,0x35,0x2d,0x31,0x2e,0x32,0x39,0x39,
0x0d,0x0a,0x09,0x09,0x09,0x63,0x30,0x2d,0x30,0x2e,
0x36,0x32,0x35,0x2d,0x30,0x2e,0x31,0x39,0x37,0x2d,
0x31,0x2e,0x30,0x38,0x36,0x2d,0x30,0x2e,0x35,0x39,
0x2d,0x31,0x2e,0x33,0x38,0x33,0x73,0x2d,0x30,0x2e,
0x39,0x37,0x39,0x2d,0x30,0x2e,0x34,0x34,0x35,0x2d,
0x31,0x2e,0x37,0x35,0x38,0x2d,0x30,0x2e,0x34,0x34,
0x35,0x68,0x2d,0x31,0x2e,0x38,0x35,0x35,0x76,0x33,
0x2e,0x35,0x37,0x32,0x68,0x31,0x2e,0x39,0x34,0x38,
0x43,0x31,0x39,0x2e,0x34,0x34,0x32,0x2c,0x31,0x37,
0x2e,0x30,0x37,0x35,0x2c,0x31,0x39,0x2e,0x39,0x39,
0x39,0x2c,0x31,0x36,0x2e,0x39,0x32,0x37,0x2c,0x32,
0x30,0x2e,0x33,0x38,0x39,0x2c,0x31,0x36,0x2e,0x36,
0x33,0x7a,0x0d,0x0a,0x09,0x09,0x09,0x20,0x4d,0x31,
0x38,0x2e,0x35,0x33,0x2c,0x33,0x2e,0x30,0x33,0x31,
0x63,0x2d,0x38,0x2e,0x35,0x36,0x31,0x2c,0x30,0x2d,
0x31,0x35,0x2e,0x35,0x2c,0x36,0x2e,0x39,0x33,0x38,
0x2d,0x31,0x35,0x2e,0x35,0x2c,0x31,0x35,0x2e,0x35,
0x63,0x30,0x2c,0x38,0x2e,0x35,0x36,0x2c,0x36,0x2e,
0x39,0x33,0x39,0x2c,0x31,0x35,0x2e,0x35,0x2c,0x31,
0x35,0x2e,0x35,0x2c,0x31,0x35,0x2e,0x35,0x63,0x38,
0x2e,0x35,0x36,0x33,0x2c,0x30,0x2c,0x31,0x35,0x2e,
0x35,0x2d,0x36,0x2e,0x39,0x33,0x39,0x2c,0x31,0x35,
0x2e,0x35,0x2d,0x31,0x35,0x2e,0x35,0x0d,0x0a,0x09,
0x09,0x09,0x43,0x33,0x34,0x2e,0x30,0x33,0x2c,0x39,
0x2e,0x39,0x36,0x39,0x2c,0x32,0x37,0x2e,0x30,0x39,
0x31,0x2c,0x33,0x2e,0x30,0x33,0x31,0x2c,0x31,0x38,
0x2e,0x35,0x33,0x2c,0x33,0x2e,0x30,0x33,0x31,0x7a,
0x20,0x4d,0x32,0x32,0x2e,0x38,0x39,0x34,0x2c,0x32,
0x33,0x2e,0x39,0x32,0x37,0x63,0x2d,0x30,0x2e,0x38,
0x35,0x34,0x2c,0x30,0x2e,0x36,0x36,0x35,0x2d,0x32,
0x2e,0x30,0x36,0x33,0x2c,0x30,0x2e,0x39,0x39,0x37,
0x2d,0x33,0x2e,0x36,0x32,0x37,0x2c,0x30,0x2e,0x39,
0x39,0x37,0x68,0x2d,0x35,0x2e,0x32,0x30,0x35,0x56,
0x31,0x31,0x2e,0x34,0x31,0x36,0x68,0x34,0x2e,0x35,
0x36,0x34,0x0d,0x0a,0x09,0x09,0x09,0x63,0x31,0x2e,
0x35,0x39,0x2c,0x30,0x2c,0x32,0x2e,0x38,0x33,0x2c,
0x30,0x2e,0x33,0x31,0x2c,0x33,0x2e,0x37,0x32,0x31,
0x2c,0x30,0x2e,0x39,0x32,0x39,0x63,0x30,0x2e,0x38,
0x39,0x31,0x2c,0x30,0x2e,0x36,0x31,0x37,0x2c,0x31,
0x2e,0x33,0x33,0x36,0x2c,0x31,0x2e,0x35,0x34,0x33,
0x2c,0x31,0x2e,0x33,0x33,0x36,0x2c,0x32,0x2e,0x37,
0x37,0x33,0x63,0x30,0x2c,0x30,0x2e,0x36,0x32,0x35,
0x2d,0x30,0x2e,0x31,0x36,0x36,0x2c,0x31,0x2e,0x31,
0x38,0x34,0x2d,0x30,0x2e,0x34,0x39,0x36,0x2c,0x31,
0x2e,0x36,0x37,0x34,0x0d,0x0a,0x09,0x09,0x09,0x63,
0x2d,0x30,0x2e,0x33,0x33,0x32,0x2c,0x30,0x2e,0x34,
0x39,0x32,0x2d,0x30,0x2e,0x38,0x31,0x33,0x2c,0x30,
0x2e,0x38,0x36,0x2d,0x31,0x2e,0x34,0x34,0x31,0x2c,
0x31,0x2e,0x31,0x30,0x38,0x63,0x30,0x2e,0x38,0x31,
0x31,0x2c,0x30,0x2e,0x31,0x37,0x34,0x2c,0x31,0x2e,
0x34,0x31,0x38,0x2c,0x30,0x2e,0x35,0x34,0x34,0x2c,
0x31,0x2e,0x38,0x32,0x31,0x2c,0x31,0x2e,0x31,0x31,
0x33,0x63,0x30,0x2e,0x34,0x30,0x35,0x2c,0x30,0x2e,
0x35,0x36,0x38,0x2c,0x30,0x2e,0x36,0x30,0x37,0x2c,
0x31,0x2e,0x32,0x32,0x39,0x2c,0x30,0x2e,0x36,0x30,
0x37,0x2c,0x31,0x2e,0x39,0x37,0x37,0x0d,0x0a,0x09,
0x09,0x09,0x43,0x32,0x34,0x2e,0x31,0x37,0x34,0x2c,
0x32,0x32,0x2e,0x32,0x38,0x33,0x2c,0x32,0x33,0x2e,
0x37,0x34,0x37,0x2c,0x32,0x33,0x2e,0x32,0x36,0x32,
0x2c,0x32,0x32,0x2e,0x38,0x39,0x34,0x2c,0x32,0x33,
0x2e,0x39,0x32,0x37,0x7a,0x22,0x2f,0x3e,0x0d,0x0a,
0x09,0x3c,0x2f,0x67,0x3e,0x0d,0x0a,0x3c,0x2f,0x67,
0x3e,0x0d,0x0a,0x3c,0x67,0x20,0x6f,0x70,0x61,0x63,
0x69,0x74,0x79,0x3d,0x22,0x30,0x22,0x3e,0x0d,0x0a,
0x09,0x3c,0x70,0x61,0x74,0x68,0x20,0x66,0x69,0x6c,
0x6c,0x3d,0x22,0x23,0x46,0x46,0x46,0x46,0x46,0x46,
0x22,0x20,0x64,0x3d,0x22,0x4d,0x33,0x36,0x2e,0x39,
0x36,0x31,0x2c,0x30,0x2e,0x31,0x76,0x33,0x36,0x2e,
0x38,0x36,0x31,0x48,0x30,0x2e,0x31,0x56,0x30,0x2e,
0x31,0x48,0x33,0x36,0x2e,0x39,0x36,0x31,0x20,0x4d,
0x33,0x37,0x2e,0x30,0x36,0x31,0x2c,0x30,0x48,0x30,
0x76,0x33,0x37,0x2e,0x30,0x36,0x68,0x33,0x37,0x2e,
0x30,0x36,0x31,0x56,0x30,0x4c,0x33,0x37,0x2e,0x30,
0x36,0x31,0x2c,0x30,0x7a,0x22,0x2f,0x3e,0x0d,0x0a,
0x3c,0x2f,0x67,0x3e,0x0d,0x0a,0x3c,0x2f,0x73,0x76,
0x67,0x3e,0x0d,0x0a
};

View file

@ -0,0 +1,110 @@
//this file was auto-generated from "button_l.svg" by res2h
#include "../Resources.h"
const size_t help_button_l_svg_size = 1026;
const unsigned char help_button_l_svg_data[1026] = {
0x3c,0x3f,0x78,0x6d,0x6c,0x20,0x76,0x65,0x72,0x73,
0x69,0x6f,0x6e,0x3d,0x22,0x31,0x2e,0x30,0x22,0x20,
0x65,0x6e,0x63,0x6f,0x64,0x69,0x6e,0x67,0x3d,0x22,
0x75,0x74,0x66,0x2d,0x38,0x22,0x3f,0x3e,0x0d,0x0a,
0x3c,0x21,0x2d,0x2d,0x20,0x47,0x65,0x6e,0x65,0x72,
0x61,0x74,0x6f,0x72,0x3a,0x20,0x41,0x64,0x6f,0x62,
0x65,0x20,0x49,0x6c,0x6c,0x75,0x73,0x74,0x72,0x61,
0x74,0x6f,0x72,0x20,0x31,0x36,0x2e,0x30,0x2e,0x33,
0x2c,0x20,0x53,0x56,0x47,0x20,0x45,0x78,0x70,0x6f,
0x72,0x74,0x20,0x50,0x6c,0x75,0x67,0x2d,0x49,0x6e,
0x20,0x2e,0x20,0x53,0x56,0x47,0x20,0x56,0x65,0x72,
0x73,0x69,0x6f,0x6e,0x3a,0x20,0x36,0x2e,0x30,0x30,
0x20,0x42,0x75,0x69,0x6c,0x64,0x20,0x30,0x29,0x20,
0x20,0x2d,0x2d,0x3e,0x0d,0x0a,0x3c,0x21,0x44,0x4f,
0x43,0x54,0x59,0x50,0x45,0x20,0x73,0x76,0x67,0x20,
0x50,0x55,0x42,0x4c,0x49,0x43,0x20,0x22,0x2d,0x2f,
0x2f,0x57,0x33,0x43,0x2f,0x2f,0x44,0x54,0x44,0x20,
0x53,0x56,0x47,0x20,0x31,0x2e,0x31,0x2f,0x2f,0x45,
0x4e,0x22,0x20,0x22,0x68,0x74,0x74,0x70,0x3a,0x2f,
0x2f,0x77,0x77,0x77,0x2e,0x77,0x33,0x2e,0x6f,0x72,
0x67,0x2f,0x47,0x72,0x61,0x70,0x68,0x69,0x63,0x73,
0x2f,0x53,0x56,0x47,0x2f,0x31,0x2e,0x31,0x2f,0x44,
0x54,0x44,0x2f,0x73,0x76,0x67,0x31,0x31,0x2e,0x64,
0x74,0x64,0x22,0x3e,0x0d,0x0a,0x3c,0x73,0x76,0x67,
0x20,0x76,0x65,0x72,0x73,0x69,0x6f,0x6e,0x3d,0x22,
0x31,0x2e,0x31,0x22,0x20,0x69,0x64,0x3d,0x22,0x5f,
0x78,0x33,0x30,0x5f,0x22,0x20,0x78,0x6d,0x6c,0x6e,
0x73,0x3d,0x22,0x68,0x74,0x74,0x70,0x3a,0x2f,0x2f,
0x77,0x77,0x77,0x2e,0x77,0x33,0x2e,0x6f,0x72,0x67,
0x2f,0x32,0x30,0x30,0x30,0x2f,0x73,0x76,0x67,0x22,
0x20,0x78,0x6d,0x6c,0x6e,0x73,0x3a,0x78,0x6c,0x69,
0x6e,0x6b,0x3d,0x22,0x68,0x74,0x74,0x70,0x3a,0x2f,
0x2f,0x77,0x77,0x77,0x2e,0x77,0x33,0x2e,0x6f,0x72,
0x67,0x2f,0x31,0x39,0x39,0x39,0x2f,0x78,0x6c,0x69,
0x6e,0x6b,0x22,0x20,0x78,0x3d,0x22,0x30,0x70,0x78,
0x22,0x20,0x79,0x3d,0x22,0x30,0x70,0x78,0x22,0x0d,
0x0a,0x09,0x20,0x77,0x69,0x64,0x74,0x68,0x3d,0x22,
0x33,0x37,0x2e,0x30,0x36,0x31,0x70,0x78,0x22,0x20,
0x68,0x65,0x69,0x67,0x68,0x74,0x3d,0x22,0x33,0x37,
0x2e,0x30,0x36,0x31,0x70,0x78,0x22,0x20,0x76,0x69,
0x65,0x77,0x42,0x6f,0x78,0x3d,0x22,0x30,0x20,0x30,
0x20,0x33,0x37,0x2e,0x30,0x36,0x31,0x20,0x33,0x37,
0x2e,0x30,0x36,0x31,0x22,0x20,0x65,0x6e,0x61,0x62,
0x6c,0x65,0x2d,0x62,0x61,0x63,0x6b,0x67,0x72,0x6f,
0x75,0x6e,0x64,0x3d,0x22,0x6e,0x65,0x77,0x20,0x30,
0x20,0x30,0x20,0x33,0x37,0x2e,0x30,0x36,0x31,0x20,
0x33,0x37,0x2e,0x30,0x36,0x31,0x22,0x20,0x78,0x6d,
0x6c,0x3a,0x73,0x70,0x61,0x63,0x65,0x3d,0x22,0x70,
0x72,0x65,0x73,0x65,0x72,0x76,0x65,0x22,0x3e,0x0d,
0x0a,0x3c,0x67,0x3e,0x0d,0x0a,0x09,0x3c,0x70,0x61,
0x74,0x68,0x20,0x66,0x69,0x6c,0x6c,0x3d,0x22,0x23,
0x46,0x46,0x46,0x46,0x46,0x46,0x22,0x20,0x64,0x3d,
0x22,0x4d,0x32,0x39,0x2e,0x32,0x35,0x34,0x2c,0x31,
0x31,0x2e,0x35,0x32,0x36,0x63,0x33,0x2e,0x34,0x37,
0x38,0x2c,0x30,0x2c,0x36,0x2e,0x33,0x30,0x37,0x2c,
0x33,0x2e,0x31,0x34,0x2c,0x36,0x2e,0x33,0x30,0x37,
0x2c,0x36,0x2e,0x39,0x39,0x37,0x63,0x30,0x2c,0x33,
0x2e,0x38,0x36,0x36,0x2d,0x32,0x2e,0x38,0x32,0x39,
0x2c,0x37,0x2e,0x30,0x31,0x31,0x2d,0x36,0x2e,0x33,
0x30,0x37,0x2c,0x37,0x2e,0x30,0x31,0x31,0x48,0x37,
0x2e,0x37,0x36,0x0d,0x0a,0x09,0x09,0x63,0x2d,0x33,
0x2e,0x34,0x35,0x32,0x2d,0x30,0x2e,0x30,0x33,0x2d,
0x36,0x2e,0x32,0x36,0x2d,0x33,0x2e,0x31,0x37,0x37,
0x2d,0x36,0x2e,0x32,0x36,0x2d,0x37,0x2e,0x30,0x31,
0x31,0x63,0x30,0x2d,0x33,0x2e,0x38,0x32,0x38,0x2c,
0x32,0x2e,0x38,0x30,0x38,0x2d,0x36,0x2e,0x39,0x36,
0x36,0x2c,0x36,0x2e,0x32,0x34,0x37,0x2d,0x36,0x2e,
0x39,0x39,0x37,0x48,0x32,0x39,0x2e,0x32,0x35,0x34,
0x20,0x4d,0x32,0x39,0x2e,0x32,0x35,0x34,0x2c,0x31,
0x30,0x2e,0x30,0x32,0x36,0x63,0x2d,0x30,0x2e,0x30,
0x32,0x31,0x2c,0x30,0x2d,0x32,0x31,0x2e,0x35,0x30,
0x37,0x2c,0x30,0x2d,0x32,0x31,0x2e,0x35,0x30,0x37,
0x2c,0x30,0x0d,0x0a,0x09,0x09,0x43,0x33,0x2e,0x34,
0x36,0x36,0x2c,0x31,0x30,0x2e,0x30,0x36,0x34,0x2c,
0x30,0x2c,0x31,0x33,0x2e,0x38,0x34,0x36,0x2c,0x30,
0x2c,0x31,0x38,0x2e,0x35,0x32,0x33,0x63,0x30,0x2c,
0x34,0x2e,0x36,0x37,0x38,0x2c,0x33,0x2e,0x34,0x36,
0x36,0x2c,0x38,0x2e,0x34,0x37,0x33,0x2c,0x37,0x2e,
0x37,0x34,0x37,0x2c,0x38,0x2e,0x35,0x31,0x31,0x63,
0x30,0x2c,0x30,0x2c,0x32,0x31,0x2e,0x34,0x38,0x33,
0x2c,0x30,0x2c,0x32,0x31,0x2e,0x35,0x30,0x37,0x2c,
0x30,0x63,0x34,0x2e,0x33,0x31,0x33,0x2c,0x30,0x2c,
0x37,0x2e,0x38,0x30,0x37,0x2d,0x33,0x2e,0x38,0x31,
0x32,0x2c,0x37,0x2e,0x38,0x30,0x37,0x2d,0x38,0x2e,
0x35,0x31,0x31,0x0d,0x0a,0x09,0x09,0x53,0x33,0x33,
0x2e,0x35,0x36,0x36,0x2c,0x31,0x30,0x2e,0x30,0x32,
0x36,0x2c,0x32,0x39,0x2e,0x32,0x35,0x34,0x2c,0x31,
0x30,0x2e,0x30,0x32,0x36,0x4c,0x32,0x39,0x2e,0x32,
0x35,0x34,0x2c,0x31,0x30,0x2e,0x30,0x32,0x36,0x7a,
0x22,0x2f,0x3e,0x0d,0x0a,0x3c,0x2f,0x67,0x3e,0x0d,
0x0a,0x3c,0x70,0x6f,0x6c,0x79,0x67,0x6f,0x6e,0x20,
0x66,0x69,0x6c,0x6c,0x3d,0x22,0x23,0x46,0x46,0x46,
0x46,0x46,0x46,0x22,0x20,0x70,0x6f,0x69,0x6e,0x74,
0x73,0x3d,0x22,0x31,0x35,0x2e,0x39,0x32,0x2c,0x32,
0x32,0x2e,0x32,0x31,0x32,0x20,0x32,0x31,0x2e,0x31,
0x34,0x31,0x2c,0x32,0x32,0x2e,0x32,0x31,0x32,0x20,
0x32,0x31,0x2e,0x31,0x34,0x31,0x2c,0x32,0x30,0x2e,
0x38,0x35,0x20,0x31,0x37,0x2e,0x35,0x34,0x33,0x2c,
0x32,0x30,0x2e,0x38,0x35,0x20,0x31,0x37,0x2e,0x35,
0x34,0x33,0x2c,0x31,0x34,0x2e,0x38,0x33,0x33,0x20,
0x31,0x35,0x2e,0x39,0x32,0x2c,0x31,0x34,0x2e,0x38,
0x33,0x33,0x20,0x22,0x2f,0x3e,0x0d,0x0a,0x3c,0x2f,
0x73,0x76,0x67,0x3e,0x0d,0x0a
};

View file

@ -0,0 +1,141 @@
//this file was auto-generated from "button_r.svg" by res2h
#include "../Resources.h"
const size_t help_button_r_svg_size = 1331;
const unsigned char help_button_r_svg_data[1331] = {
0x3c,0x3f,0x78,0x6d,0x6c,0x20,0x76,0x65,0x72,0x73,
0x69,0x6f,0x6e,0x3d,0x22,0x31,0x2e,0x30,0x22,0x20,
0x65,0x6e,0x63,0x6f,0x64,0x69,0x6e,0x67,0x3d,0x22,
0x75,0x74,0x66,0x2d,0x38,0x22,0x3f,0x3e,0x0d,0x0a,
0x3c,0x21,0x2d,0x2d,0x20,0x47,0x65,0x6e,0x65,0x72,
0x61,0x74,0x6f,0x72,0x3a,0x20,0x41,0x64,0x6f,0x62,
0x65,0x20,0x49,0x6c,0x6c,0x75,0x73,0x74,0x72,0x61,
0x74,0x6f,0x72,0x20,0x31,0x36,0x2e,0x30,0x2e,0x33,
0x2c,0x20,0x53,0x56,0x47,0x20,0x45,0x78,0x70,0x6f,
0x72,0x74,0x20,0x50,0x6c,0x75,0x67,0x2d,0x49,0x6e,
0x20,0x2e,0x20,0x53,0x56,0x47,0x20,0x56,0x65,0x72,
0x73,0x69,0x6f,0x6e,0x3a,0x20,0x36,0x2e,0x30,0x30,
0x20,0x42,0x75,0x69,0x6c,0x64,0x20,0x30,0x29,0x20,
0x20,0x2d,0x2d,0x3e,0x0d,0x0a,0x3c,0x21,0x44,0x4f,
0x43,0x54,0x59,0x50,0x45,0x20,0x73,0x76,0x67,0x20,
0x50,0x55,0x42,0x4c,0x49,0x43,0x20,0x22,0x2d,0x2f,
0x2f,0x57,0x33,0x43,0x2f,0x2f,0x44,0x54,0x44,0x20,
0x53,0x56,0x47,0x20,0x31,0x2e,0x31,0x2f,0x2f,0x45,
0x4e,0x22,0x20,0x22,0x68,0x74,0x74,0x70,0x3a,0x2f,
0x2f,0x77,0x77,0x77,0x2e,0x77,0x33,0x2e,0x6f,0x72,
0x67,0x2f,0x47,0x72,0x61,0x70,0x68,0x69,0x63,0x73,
0x2f,0x53,0x56,0x47,0x2f,0x31,0x2e,0x31,0x2f,0x44,
0x54,0x44,0x2f,0x73,0x76,0x67,0x31,0x31,0x2e,0x64,
0x74,0x64,0x22,0x3e,0x0d,0x0a,0x3c,0x73,0x76,0x67,
0x20,0x76,0x65,0x72,0x73,0x69,0x6f,0x6e,0x3d,0x22,
0x31,0x2e,0x31,0x22,0x20,0x69,0x64,0x3d,0x22,0x5f,
0x78,0x33,0x30,0x5f,0x22,0x20,0x78,0x6d,0x6c,0x6e,
0x73,0x3d,0x22,0x68,0x74,0x74,0x70,0x3a,0x2f,0x2f,
0x77,0x77,0x77,0x2e,0x77,0x33,0x2e,0x6f,0x72,0x67,
0x2f,0x32,0x30,0x30,0x30,0x2f,0x73,0x76,0x67,0x22,
0x20,0x78,0x6d,0x6c,0x6e,0x73,0x3a,0x78,0x6c,0x69,
0x6e,0x6b,0x3d,0x22,0x68,0x74,0x74,0x70,0x3a,0x2f,
0x2f,0x77,0x77,0x77,0x2e,0x77,0x33,0x2e,0x6f,0x72,
0x67,0x2f,0x31,0x39,0x39,0x39,0x2f,0x78,0x6c,0x69,
0x6e,0x6b,0x22,0x20,0x78,0x3d,0x22,0x30,0x70,0x78,
0x22,0x20,0x79,0x3d,0x22,0x30,0x70,0x78,0x22,0x0d,
0x0a,0x09,0x20,0x77,0x69,0x64,0x74,0x68,0x3d,0x22,
0x33,0x37,0x2e,0x30,0x36,0x31,0x70,0x78,0x22,0x20,
0x68,0x65,0x69,0x67,0x68,0x74,0x3d,0x22,0x33,0x37,
0x2e,0x30,0x36,0x31,0x70,0x78,0x22,0x20,0x76,0x69,
0x65,0x77,0x42,0x6f,0x78,0x3d,0x22,0x30,0x20,0x30,
0x20,0x33,0x37,0x2e,0x30,0x36,0x31,0x20,0x33,0x37,
0x2e,0x30,0x36,0x31,0x22,0x20,0x65,0x6e,0x61,0x62,
0x6c,0x65,0x2d,0x62,0x61,0x63,0x6b,0x67,0x72,0x6f,
0x75,0x6e,0x64,0x3d,0x22,0x6e,0x65,0x77,0x20,0x30,
0x20,0x30,0x20,0x33,0x37,0x2e,0x30,0x36,0x31,0x20,
0x33,0x37,0x2e,0x30,0x36,0x31,0x22,0x20,0x78,0x6d,
0x6c,0x3a,0x73,0x70,0x61,0x63,0x65,0x3d,0x22,0x70,
0x72,0x65,0x73,0x65,0x72,0x76,0x65,0x22,0x3e,0x0d,
0x0a,0x3c,0x70,0x61,0x74,0x68,0x20,0x66,0x69,0x6c,
0x6c,0x3d,0x22,0x23,0x46,0x46,0x46,0x46,0x46,0x46,
0x22,0x20,0x64,0x3d,0x22,0x4d,0x31,0x36,0x2e,0x39,
0x37,0x33,0x2c,0x31,0x36,0x2e,0x30,0x38,0x36,0x68,
0x31,0x2e,0x37,0x37,0x39,0x63,0x30,0x2e,0x37,0x32,
0x32,0x2c,0x30,0x2c,0x31,0x2e,0x31,0x31,0x37,0x2c,
0x30,0x2e,0x33,0x31,0x32,0x2c,0x31,0x2e,0x31,0x31,
0x37,0x2c,0x31,0x2e,0x30,0x32,0x32,0x63,0x30,0x2c,
0x30,0x2e,0x37,0x34,0x37,0x2d,0x30,0x2e,0x33,0x39,
0x36,0x2c,0x31,0x2e,0x30,0x36,0x2d,0x31,0x2e,0x31,
0x31,0x37,0x2c,0x31,0x2e,0x30,0x36,0x68,0x2d,0x31,
0x2e,0x37,0x37,0x39,0x56,0x31,0x36,0x2e,0x30,0x38,
0x36,0x7a,0x0d,0x0a,0x09,0x20,0x4d,0x31,0x35,0x2e,
0x33,0x35,0x33,0x2c,0x32,0x32,0x2e,0x32,0x31,0x32,
0x68,0x31,0x2e,0x36,0x32,0x76,0x2d,0x32,0x2e,0x38,
0x38,0x36,0x68,0x31,0x2e,0x36,0x32,0x35,0x63,0x30,
0x2e,0x38,0x31,0x36,0x2c,0x30,0x2c,0x31,0x2e,0x31,
0x31,0x37,0x2c,0x30,0x2e,0x33,0x34,0x32,0x2c,0x31,
0x2e,0x32,0x33,0x2c,0x31,0x2e,0x31,0x31,0x38,0x63,
0x30,0x2e,0x30,0x38,0x32,0x2c,0x30,0x2e,0x35,0x38,
0x39,0x2c,0x30,0x2e,0x30,0x36,0x31,0x2c,0x31,0x2e,
0x33,0x30,0x34,0x2c,0x30,0x2e,0x32,0x35,0x38,0x2c,
0x31,0x2e,0x37,0x36,0x39,0x68,0x31,0x2e,0x36,0x32,
0x31,0x0d,0x0a,0x09,0x63,0x2d,0x30,0x2e,0x32,0x38,
0x39,0x2d,0x30,0x2e,0x34,0x31,0x34,0x2d,0x30,0x2e,
0x32,0x37,0x39,0x2d,0x31,0x2e,0x32,0x38,0x2d,0x30,
0x2e,0x33,0x31,0x33,0x2d,0x31,0x2e,0x37,0x34,0x38,
0x63,0x2d,0x30,0x2e,0x30,0x35,0x31,0x2d,0x30,0x2e,
0x37,0x34,0x34,0x2d,0x30,0x2e,0x32,0x37,0x35,0x2d,
0x31,0x2e,0x35,0x32,0x31,0x2d,0x31,0x2e,0x30,0x37,
0x2d,0x31,0x2e,0x37,0x32,0x38,0x63,0x30,0x2c,0x30,
0x2c,0x31,0x2e,0x31,0x36,0x36,0x2d,0x30,0x2e,0x33,
0x30,0x33,0x2c,0x31,0x2e,0x31,0x36,0x36,0x2d,0x31,
0x2e,0x38,0x37,0x33,0x0d,0x0a,0x09,0x63,0x30,0x2d,
0x31,0x2e,0x31,0x31,0x38,0x2d,0x30,0x2e,0x38,0x33,
0x38,0x2d,0x32,0x2e,0x30,0x33,0x36,0x2d,0x32,0x2e,
0x31,0x36,0x2d,0x32,0x2e,0x30,0x33,0x36,0x68,0x2d,
0x33,0x2e,0x39,0x37,0x39,0x4c,0x31,0x35,0x2e,0x33,
0x35,0x33,0x2c,0x32,0x32,0x2e,0x32,0x31,0x32,0x4c,
0x31,0x35,0x2e,0x33,0x35,0x33,0x2c,0x32,0x32,0x2e,
0x32,0x31,0x32,0x7a,0x22,0x2f,0x3e,0x0d,0x0a,0x3c,
0x67,0x3e,0x0d,0x0a,0x09,0x3c,0x70,0x61,0x74,0x68,
0x20,0x66,0x69,0x6c,0x6c,0x3d,0x22,0x23,0x46,0x46,
0x46,0x46,0x46,0x46,0x22,0x20,0x64,0x3d,0x22,0x4d,
0x32,0x39,0x2e,0x32,0x35,0x34,0x2c,0x31,0x31,0x2e,
0x35,0x32,0x36,0x63,0x33,0x2e,0x34,0x37,0x38,0x2c,
0x30,0x2c,0x36,0x2e,0x33,0x30,0x37,0x2c,0x33,0x2e,
0x31,0x34,0x2c,0x36,0x2e,0x33,0x30,0x37,0x2c,0x36,
0x2e,0x39,0x39,0x36,0x63,0x30,0x2c,0x33,0x2e,0x38,
0x36,0x36,0x2d,0x32,0x2e,0x38,0x32,0x39,0x2c,0x37,
0x2e,0x30,0x31,0x32,0x2d,0x36,0x2e,0x33,0x30,0x37,
0x2c,0x37,0x2e,0x30,0x31,0x32,0x48,0x37,0x2e,0x37,
0x36,0x0d,0x0a,0x09,0x09,0x63,0x2d,0x33,0x2e,0x34,
0x35,0x32,0x2d,0x30,0x2e,0x30,0x33,0x2d,0x36,0x2e,
0x32,0x36,0x2d,0x33,0x2e,0x31,0x37,0x37,0x2d,0x36,
0x2e,0x32,0x36,0x2d,0x37,0x2e,0x30,0x31,0x32,0x63,
0x30,0x2d,0x33,0x2e,0x38,0x32,0x37,0x2c,0x32,0x2e,
0x38,0x30,0x38,0x2d,0x36,0x2e,0x39,0x36,0x36,0x2c,
0x36,0x2e,0x32,0x34,0x37,0x2d,0x36,0x2e,0x39,0x39,
0x36,0x48,0x32,0x39,0x2e,0x32,0x35,0x34,0x20,0x4d,
0x32,0x39,0x2e,0x32,0x35,0x34,0x2c,0x31,0x30,0x2e,
0x30,0x32,0x36,0x63,0x2d,0x30,0x2e,0x30,0x32,0x31,
0x2c,0x30,0x2d,0x32,0x31,0x2e,0x35,0x30,0x37,0x2c,
0x30,0x2d,0x32,0x31,0x2e,0x35,0x30,0x37,0x2c,0x30,
0x0d,0x0a,0x09,0x09,0x43,0x33,0x2e,0x34,0x36,0x36,
0x2c,0x31,0x30,0x2e,0x30,0x36,0x33,0x2c,0x30,0x2c,
0x31,0x33,0x2e,0x38,0x34,0x36,0x2c,0x30,0x2c,0x31,
0x38,0x2e,0x35,0x32,0x32,0x63,0x30,0x2c,0x34,0x2e,
0x36,0x37,0x39,0x2c,0x33,0x2e,0x34,0x36,0x36,0x2c,
0x38,0x2e,0x34,0x37,0x33,0x2c,0x37,0x2e,0x37,0x34,
0x37,0x2c,0x38,0x2e,0x35,0x31,0x32,0x63,0x30,0x2c,
0x30,0x2c,0x32,0x31,0x2e,0x34,0x38,0x33,0x2c,0x30,
0x2c,0x32,0x31,0x2e,0x35,0x30,0x37,0x2c,0x30,0x63,
0x34,0x2e,0x33,0x31,0x33,0x2c,0x30,0x2c,0x37,0x2e,
0x38,0x30,0x37,0x2d,0x33,0x2e,0x38,0x31,0x32,0x2c,
0x37,0x2e,0x38,0x30,0x37,0x2d,0x38,0x2e,0x35,0x31,
0x32,0x0d,0x0a,0x09,0x09,0x43,0x33,0x37,0x2e,0x30,
0x36,0x31,0x2c,0x31,0x33,0x2e,0x38,0x32,0x33,0x2c,
0x33,0x33,0x2e,0x35,0x36,0x36,0x2c,0x31,0x30,0x2e,
0x30,0x32,0x36,0x2c,0x32,0x39,0x2e,0x32,0x35,0x34,
0x2c,0x31,0x30,0x2e,0x30,0x32,0x36,0x4c,0x32,0x39,
0x2e,0x32,0x35,0x34,0x2c,0x31,0x30,0x2e,0x30,0x32,
0x36,0x7a,0x22,0x2f,0x3e,0x0d,0x0a,0x3c,0x2f,0x67,
0x3e,0x0d,0x0a,0x3c,0x2f,0x73,0x76,0x67,0x3e,0x0d,
0x0a
};

View file

@ -0,0 +1,197 @@
//this file was auto-generated from "button_select.svg" by res2h
#include "../Resources.h"
const size_t help_button_select_svg_size = 1891;
const unsigned char help_button_select_svg_data[1891] = {
0x3c,0x3f,0x78,0x6d,0x6c,0x20,0x76,0x65,0x72,0x73,
0x69,0x6f,0x6e,0x3d,0x22,0x31,0x2e,0x30,0x22,0x20,
0x65,0x6e,0x63,0x6f,0x64,0x69,0x6e,0x67,0x3d,0x22,
0x75,0x74,0x66,0x2d,0x38,0x22,0x3f,0x3e,0x0d,0x0a,
0x3c,0x21,0x2d,0x2d,0x20,0x47,0x65,0x6e,0x65,0x72,
0x61,0x74,0x6f,0x72,0x3a,0x20,0x41,0x64,0x6f,0x62,
0x65,0x20,0x49,0x6c,0x6c,0x75,0x73,0x74,0x72,0x61,
0x74,0x6f,0x72,0x20,0x31,0x36,0x2e,0x30,0x2e,0x33,
0x2c,0x20,0x53,0x56,0x47,0x20,0x45,0x78,0x70,0x6f,
0x72,0x74,0x20,0x50,0x6c,0x75,0x67,0x2d,0x49,0x6e,
0x20,0x2e,0x20,0x53,0x56,0x47,0x20,0x56,0x65,0x72,
0x73,0x69,0x6f,0x6e,0x3a,0x20,0x36,0x2e,0x30,0x30,
0x20,0x42,0x75,0x69,0x6c,0x64,0x20,0x30,0x29,0x20,
0x20,0x2d,0x2d,0x3e,0x0d,0x0a,0x3c,0x21,0x44,0x4f,
0x43,0x54,0x59,0x50,0x45,0x20,0x73,0x76,0x67,0x20,
0x50,0x55,0x42,0x4c,0x49,0x43,0x20,0x22,0x2d,0x2f,
0x2f,0x57,0x33,0x43,0x2f,0x2f,0x44,0x54,0x44,0x20,
0x53,0x56,0x47,0x20,0x31,0x2e,0x31,0x2f,0x2f,0x45,
0x4e,0x22,0x20,0x22,0x68,0x74,0x74,0x70,0x3a,0x2f,
0x2f,0x77,0x77,0x77,0x2e,0x77,0x33,0x2e,0x6f,0x72,
0x67,0x2f,0x47,0x72,0x61,0x70,0x68,0x69,0x63,0x73,
0x2f,0x53,0x56,0x47,0x2f,0x31,0x2e,0x31,0x2f,0x44,
0x54,0x44,0x2f,0x73,0x76,0x67,0x31,0x31,0x2e,0x64,
0x74,0x64,0x22,0x3e,0x0d,0x0a,0x3c,0x73,0x76,0x67,
0x20,0x76,0x65,0x72,0x73,0x69,0x6f,0x6e,0x3d,0x22,
0x31,0x2e,0x31,0x22,0x20,0x69,0x64,0x3d,0x22,0x5f,
0x78,0x33,0x30,0x5f,0x22,0x20,0x78,0x6d,0x6c,0x6e,
0x73,0x3d,0x22,0x68,0x74,0x74,0x70,0x3a,0x2f,0x2f,
0x77,0x77,0x77,0x2e,0x77,0x33,0x2e,0x6f,0x72,0x67,
0x2f,0x32,0x30,0x30,0x30,0x2f,0x73,0x76,0x67,0x22,
0x20,0x78,0x6d,0x6c,0x6e,0x73,0x3a,0x78,0x6c,0x69,
0x6e,0x6b,0x3d,0x22,0x68,0x74,0x74,0x70,0x3a,0x2f,
0x2f,0x77,0x77,0x77,0x2e,0x77,0x33,0x2e,0x6f,0x72,
0x67,0x2f,0x31,0x39,0x39,0x39,0x2f,0x78,0x6c,0x69,
0x6e,0x6b,0x22,0x20,0x78,0x3d,0x22,0x30,0x70,0x78,
0x22,0x20,0x79,0x3d,0x22,0x30,0x70,0x78,0x22,0x0d,
0x0a,0x09,0x20,0x77,0x69,0x64,0x74,0x68,0x3d,0x22,
0x33,0x37,0x2e,0x30,0x36,0x31,0x70,0x78,0x22,0x20,
0x68,0x65,0x69,0x67,0x68,0x74,0x3d,0x22,0x33,0x37,
0x2e,0x30,0x36,0x31,0x70,0x78,0x22,0x20,0x76,0x69,
0x65,0x77,0x42,0x6f,0x78,0x3d,0x22,0x30,0x20,0x30,
0x20,0x33,0x37,0x2e,0x30,0x36,0x31,0x20,0x33,0x37,
0x2e,0x30,0x36,0x31,0x22,0x20,0x65,0x6e,0x61,0x62,
0x6c,0x65,0x2d,0x62,0x61,0x63,0x6b,0x67,0x72,0x6f,
0x75,0x6e,0x64,0x3d,0x22,0x6e,0x65,0x77,0x20,0x30,
0x20,0x30,0x20,0x33,0x37,0x2e,0x30,0x36,0x31,0x20,
0x33,0x37,0x2e,0x30,0x36,0x31,0x22,0x20,0x78,0x6d,
0x6c,0x3a,0x73,0x70,0x61,0x63,0x65,0x3d,0x22,0x70,
0x72,0x65,0x73,0x65,0x72,0x76,0x65,0x22,0x3e,0x0d,
0x0a,0x3c,0x67,0x3e,0x0d,0x0a,0x09,0x3c,0x67,0x3e,
0x0d,0x0a,0x09,0x09,0x3c,0x70,0x61,0x74,0x68,0x20,
0x66,0x69,0x6c,0x6c,0x3d,0x22,0x23,0x46,0x46,0x46,
0x46,0x46,0x46,0x22,0x20,0x64,0x3d,0x22,0x4d,0x33,
0x33,0x2e,0x32,0x31,0x37,0x2c,0x31,0x39,0x2e,0x31,
0x31,0x38,0x48,0x33,0x2e,0x38,0x34,0x35,0x43,0x31,
0x2e,0x37,0x32,0x32,0x2c,0x31,0x39,0x2e,0x31,0x31,
0x38,0x2c,0x30,0x2c,0x32,0x30,0x2e,0x38,0x39,0x2c,
0x30,0x2c,0x32,0x33,0x2e,0x30,0x37,0x35,0x73,0x31,
0x2e,0x37,0x32,0x32,0x2c,0x33,0x2e,0x39,0x35,0x37,
0x2c,0x33,0x2e,0x38,0x34,0x35,0x2c,0x33,0x2e,0x39,
0x35,0x37,0x68,0x32,0x39,0x2e,0x33,0x37,0x32,0x0d,
0x0a,0x09,0x09,0x09,0x63,0x32,0x2e,0x31,0x32,0x33,
0x2c,0x30,0x2c,0x33,0x2e,0x38,0x34,0x34,0x2d,0x31,
0x2e,0x37,0x37,0x31,0x2c,0x33,0x2e,0x38,0x34,0x34,
0x2d,0x33,0x2e,0x39,0x35,0x37,0x43,0x33,0x37,0x2e,
0x30,0x36,0x31,0x2c,0x32,0x30,0x2e,0x38,0x38,0x39,
0x2c,0x33,0x35,0x2e,0x33,0x34,0x2c,0x31,0x39,0x2e,
0x31,0x31,0x38,0x2c,0x33,0x33,0x2e,0x32,0x31,0x37,
0x2c,0x31,0x39,0x2e,0x31,0x31,0x38,0x7a,0x22,0x2f,
0x3e,0x0d,0x0a,0x09,0x3c,0x2f,0x67,0x3e,0x0d,0x0a,
0x3c,0x2f,0x67,0x3e,0x0d,0x0a,0x3c,0x70,0x61,0x74,
0x68,0x20,0x66,0x69,0x6c,0x6c,0x3d,0x22,0x23,0x46,
0x46,0x46,0x46,0x46,0x46,0x22,0x20,0x64,0x3d,0x22,
0x4d,0x33,0x33,0x2e,0x37,0x35,0x37,0x2c,0x31,0x35,
0x2e,0x35,0x34,0x39,0x68,0x31,0x2e,0x31,0x38,0x36,
0x56,0x39,0x2e,0x34,0x37,0x34,0x68,0x32,0x2e,0x31,
0x32,0x34,0x56,0x38,0x2e,0x33,0x34,0x35,0x68,0x2d,
0x35,0x2e,0x34,0x33,0x33,0x76,0x31,0x2e,0x31,0x32,
0x38,0x68,0x32,0x2e,0x31,0x32,0x33,0x56,0x31,0x35,
0x2e,0x35,0x34,0x39,0x7a,0x20,0x4d,0x33,0x30,0x2e,
0x38,0x35,0x35,0x2c,0x31,0x31,0x2e,0x30,0x30,0x37,
0x0d,0x0a,0x09,0x63,0x2d,0x30,0x2e,0x31,0x32,0x36,
0x2d,0x31,0x2e,0x35,0x35,0x34,0x2d,0x31,0x2e,0x31,
0x34,0x31,0x2d,0x32,0x2e,0x38,0x36,0x34,0x2d,0x33,
0x2e,0x30,0x38,0x37,0x2d,0x32,0x2e,0x38,0x36,0x34,
0x63,0x2d,0x32,0x2e,0x32,0x32,0x35,0x2c,0x30,0x2d,
0x33,0x2e,0x31,0x36,0x32,0x2c,0x31,0x2e,0x37,0x37,
0x33,0x2d,0x33,0x2e,0x31,0x36,0x32,0x2c,0x33,0x2e,
0x38,0x30,0x35,0x63,0x30,0x2c,0x32,0x2e,0x30,0x32,
0x36,0x2c,0x30,0x2e,0x39,0x37,0x39,0x2c,0x33,0x2e,
0x38,0x30,0x34,0x2c,0x33,0x2e,0x30,0x32,0x31,0x2c,
0x33,0x2e,0x38,0x30,0x34,0x0d,0x0a,0x09,0x63,0x32,
0x2e,0x33,0x32,0x38,0x2c,0x30,0x2c,0x33,0x2e,0x30,
0x36,0x33,0x2d,0x31,0x2e,0x35,0x32,0x31,0x2c,0x33,
0x2e,0x32,0x32,0x39,0x2d,0x32,0x2e,0x39,0x35,0x38,
0x68,0x2d,0x31,0x2e,0x32,0x38,0x63,0x2d,0x30,0x2e,
0x30,0x39,0x39,0x2c,0x30,0x2e,0x37,0x35,0x37,0x2d,
0x30,0x2e,0x35,0x31,0x2c,0x31,0x2e,0x38,0x32,0x39,
0x2d,0x31,0x2e,0x37,0x34,0x33,0x2c,0x31,0x2e,0x38,
0x32,0x39,0x63,0x2d,0x31,0x2e,0x31,0x37,0x35,0x2c,
0x30,0x2d,0x31,0x2e,0x39,0x38,0x38,0x2d,0x31,0x2e,
0x30,0x34,0x32,0x2d,0x31,0x2e,0x39,0x38,0x38,0x2d,
0x32,0x2e,0x35,0x34,0x36,0x0d,0x0a,0x09,0x63,0x30,
0x2d,0x31,0x2e,0x38,0x37,0x37,0x2c,0x30,0x2e,0x38,
0x31,0x33,0x2d,0x32,0x2e,0x38,0x30,0x38,0x2c,0x31,
0x2e,0x39,0x30,0x38,0x2d,0x32,0x2e,0x38,0x30,0x38,
0x63,0x30,0x2e,0x39,0x39,0x39,0x2c,0x30,0x2c,0x31,
0x2e,0x37,0x30,0x34,0x2c,0x30,0x2e,0x36,0x34,0x36,
0x2c,0x31,0x2e,0x38,0x32,0x33,0x2c,0x31,0x2e,0x37,
0x33,0x37,0x4c,0x33,0x30,0x2e,0x38,0x35,0x35,0x2c,
0x31,0x31,0x2e,0x30,0x30,0x37,0x4c,0x33,0x30,0x2e,
0x38,0x35,0x35,0x2c,0x31,0x31,0x2e,0x30,0x30,0x37,
0x7a,0x20,0x4d,0x31,0x38,0x2e,0x36,0x35,0x39,0x2c,
0x31,0x35,0x2e,0x35,0x34,0x39,0x68,0x34,0x2e,0x39,
0x37,0x33,0x56,0x31,0x34,0x2e,0x34,0x32,0x68,0x2d,
0x33,0x2e,0x37,0x38,0x36,0x0d,0x0a,0x09,0x76,0x2d,
0x31,0x2e,0x39,0x39,0x38,0x68,0x33,0x2e,0x35,0x37,
0x33,0x76,0x2d,0x31,0x2e,0x31,0x32,0x39,0x68,0x2d,
0x33,0x2e,0x35,0x37,0x33,0x56,0x39,0x2e,0x34,0x37,
0x34,0x68,0x33,0x2e,0x37,0x32,0x31,0x56,0x38,0x2e,
0x33,0x34,0x35,0x48,0x31,0x38,0x2e,0x36,0x36,0x4c,
0x31,0x38,0x2e,0x36,0x35,0x39,0x2c,0x31,0x35,0x2e,
0x35,0x34,0x39,0x4c,0x31,0x38,0x2e,0x36,0x35,0x39,
0x2c,0x31,0x35,0x2e,0x35,0x34,0x39,0x7a,0x20,0x4d,
0x31,0x32,0x2e,0x39,0x37,0x39,0x2c,0x31,0x35,0x2e,
0x35,0x34,0x39,0x68,0x34,0x2e,0x36,0x32,0x35,0x76,
0x2d,0x31,0x2e,0x31,0x38,0x38,0x68,0x2d,0x33,0x2e,
0x34,0x33,0x37,0x56,0x38,0x2e,0x33,0x34,0x35,0x0d,
0x0a,0x09,0x68,0x2d,0x31,0x2e,0x31,0x38,0x38,0x56,
0x31,0x35,0x2e,0x35,0x34,0x39,0x7a,0x20,0x4d,0x36,
0x2e,0x37,0x31,0x34,0x2c,0x31,0x35,0x2e,0x35,0x34,
0x39,0x68,0x34,0x2e,0x39,0x37,0x34,0x56,0x31,0x34,
0x2e,0x34,0x32,0x48,0x37,0x2e,0x39,0x30,0x32,0x76,
0x2d,0x31,0x2e,0x39,0x39,0x38,0x68,0x33,0x2e,0x35,
0x37,0x32,0x76,0x2d,0x31,0x2e,0x31,0x32,0x39,0x48,
0x37,0x2e,0x39,0x30,0x32,0x56,0x39,0x2e,0x34,0x37,
0x34,0x68,0x33,0x2e,0x37,0x32,0x36,0x56,0x38,0x2e,
0x33,0x34,0x35,0x48,0x36,0x2e,0x37,0x31,0x34,0x56,
0x31,0x35,0x2e,0x35,0x34,0x39,0x7a,0x20,0x4d,0x30,
0x2e,0x31,0x34,0x39,0x2c,0x31,0x30,0x2e,0x33,0x37,
0x32,0x0d,0x0a,0x09,0x63,0x30,0x2c,0x32,0x2e,0x39,
0x35,0x35,0x2c,0x34,0x2e,0x31,0x36,0x37,0x2c,0x31,
0x2e,0x33,0x39,0x38,0x2c,0x34,0x2e,0x31,0x36,0x37,
0x2c,0x33,0x2e,0x31,0x38,0x36,0x63,0x30,0x2c,0x30,
0x2e,0x37,0x39,0x32,0x2d,0x30,0x2e,0x36,0x37,0x33,
0x2c,0x31,0x2e,0x30,0x36,0x34,0x2d,0x31,0x2e,0x33,
0x39,0x35,0x2c,0x31,0x2e,0x30,0x36,0x34,0x63,0x2d,
0x30,0x2e,0x39,0x37,0x36,0x2c,0x30,0x2d,0x31,0x2e,
0x35,0x39,0x31,0x2d,0x30,0x2e,0x34,0x35,0x36,0x2d,
0x31,0x2e,0x36,0x32,0x34,0x2d,0x31,0x2e,0x34,0x30,
0x37,0x48,0x30,0x2e,0x30,0x31,0x35,0x0d,0x0a,0x09,
0x43,0x30,0x2e,0x30,0x33,0x2c,0x31,0x34,0x2e,0x37,
0x33,0x2c,0x30,0x2e,0x38,0x34,0x36,0x2c,0x31,0x35,
0x2e,0x37,0x35,0x2c,0x32,0x2e,0x38,0x38,0x32,0x2c,
0x31,0x35,0x2e,0x37,0x35,0x63,0x31,0x2e,0x32,0x30,
0x35,0x2c,0x30,0x2c,0x32,0x2e,0x37,0x31,0x36,0x2d,
0x30,0x2e,0x34,0x38,0x34,0x2c,0x32,0x2e,0x37,0x31,
0x36,0x2d,0x32,0x2e,0x33,0x34,0x33,0x63,0x30,0x2d,
0x33,0x2e,0x30,0x37,0x37,0x2d,0x34,0x2e,0x32,0x31,
0x33,0x2d,0x31,0x2e,0x34,0x35,0x35,0x2d,0x34,0x2e,
0x32,0x31,0x33,0x2d,0x33,0x2e,0x31,0x34,0x36,0x0d,
0x0a,0x09,0x63,0x30,0x2d,0x30,0x2e,0x36,0x37,0x37,
0x2c,0x30,0x2e,0x35,0x32,0x33,0x2d,0x30,0x2e,0x39,
0x39,0x31,0x2c,0x31,0x2e,0x33,0x31,0x33,0x2d,0x30,
0x2e,0x39,0x39,0x31,0x63,0x30,0x2e,0x39,0x39,0x2c,
0x30,0x2c,0x31,0x2e,0x33,0x38,0x38,0x2c,0x30,0x2e,
0x36,0x30,0x35,0x2c,0x31,0x2e,0x34,0x32,0x38,0x2c,
0x31,0x2e,0x31,0x36,0x33,0x48,0x35,0x2e,0x34,0x31,
0x63,0x2d,0x30,0x2e,0x31,0x35,0x32,0x2d,0x32,0x2e,
0x30,0x39,0x31,0x2d,0x31,0x2e,0x38,0x39,0x36,0x2d,
0x32,0x2e,0x32,0x39,0x2d,0x32,0x2e,0x37,0x36,0x37,
0x2d,0x32,0x2e,0x32,0x39,0x0d,0x0a,0x09,0x43,0x31,
0x2e,0x32,0x36,0x36,0x2c,0x38,0x2e,0x31,0x34,0x33,
0x2c,0x30,0x2e,0x31,0x34,0x39,0x2c,0x38,0x2e,0x37,
0x36,0x37,0x2c,0x30,0x2e,0x31,0x34,0x39,0x2c,0x31,
0x30,0x2e,0x33,0x37,0x32,0x22,0x2f,0x3e,0x0d,0x0a,
0x3c,0x67,0x20,0x6f,0x70,0x61,0x63,0x69,0x74,0x79,
0x3d,0x22,0x30,0x22,0x3e,0x0d,0x0a,0x09,0x3c,0x70,
0x61,0x74,0x68,0x20,0x66,0x69,0x6c,0x6c,0x3d,0x22,
0x23,0x46,0x46,0x46,0x46,0x46,0x46,0x22,0x20,0x64,
0x3d,0x22,0x4d,0x33,0x36,0x2e,0x39,0x36,0x31,0x2c,
0x30,0x2e,0x31,0x76,0x33,0x36,0x2e,0x38,0x36,0x31,
0x48,0x30,0x2e,0x31,0x56,0x30,0x2e,0x31,0x48,0x33,
0x36,0x2e,0x39,0x36,0x31,0x20,0x4d,0x33,0x37,0x2e,
0x30,0x36,0x31,0x2c,0x30,0x48,0x30,0x76,0x33,0x37,
0x2e,0x30,0x36,0x68,0x33,0x37,0x2e,0x30,0x36,0x31,
0x56,0x30,0x4c,0x33,0x37,0x2e,0x30,0x36,0x31,0x2c,
0x30,0x7a,0x22,0x2f,0x3e,0x0d,0x0a,0x3c,0x2f,0x67,
0x3e,0x0d,0x0a,0x3c,0x2f,0x73,0x76,0x67,0x3e,0x0d,
0x0a
};

View file

@ -0,0 +1,187 @@
//this file was auto-generated from "button_start.svg" by res2h
#include "../Resources.h"
const size_t help_button_start_svg_size = 1791;
const unsigned char help_button_start_svg_data[1791] = {
0x3c,0x3f,0x78,0x6d,0x6c,0x20,0x76,0x65,0x72,0x73,
0x69,0x6f,0x6e,0x3d,0x22,0x31,0x2e,0x30,0x22,0x20,
0x65,0x6e,0x63,0x6f,0x64,0x69,0x6e,0x67,0x3d,0x22,
0x75,0x74,0x66,0x2d,0x38,0x22,0x3f,0x3e,0x0d,0x0a,
0x3c,0x21,0x2d,0x2d,0x20,0x47,0x65,0x6e,0x65,0x72,
0x61,0x74,0x6f,0x72,0x3a,0x20,0x41,0x64,0x6f,0x62,
0x65,0x20,0x49,0x6c,0x6c,0x75,0x73,0x74,0x72,0x61,
0x74,0x6f,0x72,0x20,0x31,0x36,0x2e,0x30,0x2e,0x33,
0x2c,0x20,0x53,0x56,0x47,0x20,0x45,0x78,0x70,0x6f,
0x72,0x74,0x20,0x50,0x6c,0x75,0x67,0x2d,0x49,0x6e,
0x20,0x2e,0x20,0x53,0x56,0x47,0x20,0x56,0x65,0x72,
0x73,0x69,0x6f,0x6e,0x3a,0x20,0x36,0x2e,0x30,0x30,
0x20,0x42,0x75,0x69,0x6c,0x64,0x20,0x30,0x29,0x20,
0x20,0x2d,0x2d,0x3e,0x0d,0x0a,0x3c,0x21,0x44,0x4f,
0x43,0x54,0x59,0x50,0x45,0x20,0x73,0x76,0x67,0x20,
0x50,0x55,0x42,0x4c,0x49,0x43,0x20,0x22,0x2d,0x2f,
0x2f,0x57,0x33,0x43,0x2f,0x2f,0x44,0x54,0x44,0x20,
0x53,0x56,0x47,0x20,0x31,0x2e,0x31,0x2f,0x2f,0x45,
0x4e,0x22,0x20,0x22,0x68,0x74,0x74,0x70,0x3a,0x2f,
0x2f,0x77,0x77,0x77,0x2e,0x77,0x33,0x2e,0x6f,0x72,
0x67,0x2f,0x47,0x72,0x61,0x70,0x68,0x69,0x63,0x73,
0x2f,0x53,0x56,0x47,0x2f,0x31,0x2e,0x31,0x2f,0x44,
0x54,0x44,0x2f,0x73,0x76,0x67,0x31,0x31,0x2e,0x64,
0x74,0x64,0x22,0x3e,0x0d,0x0a,0x3c,0x73,0x76,0x67,
0x20,0x76,0x65,0x72,0x73,0x69,0x6f,0x6e,0x3d,0x22,
0x31,0x2e,0x31,0x22,0x20,0x69,0x64,0x3d,0x22,0x5f,
0x78,0x33,0x30,0x5f,0x22,0x20,0x78,0x6d,0x6c,0x6e,
0x73,0x3d,0x22,0x68,0x74,0x74,0x70,0x3a,0x2f,0x2f,
0x77,0x77,0x77,0x2e,0x77,0x33,0x2e,0x6f,0x72,0x67,
0x2f,0x32,0x30,0x30,0x30,0x2f,0x73,0x76,0x67,0x22,
0x20,0x78,0x6d,0x6c,0x6e,0x73,0x3a,0x78,0x6c,0x69,
0x6e,0x6b,0x3d,0x22,0x68,0x74,0x74,0x70,0x3a,0x2f,
0x2f,0x77,0x77,0x77,0x2e,0x77,0x33,0x2e,0x6f,0x72,
0x67,0x2f,0x31,0x39,0x39,0x39,0x2f,0x78,0x6c,0x69,
0x6e,0x6b,0x22,0x20,0x78,0x3d,0x22,0x30,0x70,0x78,
0x22,0x20,0x79,0x3d,0x22,0x30,0x70,0x78,0x22,0x0d,
0x0a,0x09,0x20,0x77,0x69,0x64,0x74,0x68,0x3d,0x22,
0x33,0x37,0x2e,0x30,0x36,0x31,0x70,0x78,0x22,0x20,
0x68,0x65,0x69,0x67,0x68,0x74,0x3d,0x22,0x33,0x37,
0x2e,0x30,0x36,0x31,0x70,0x78,0x22,0x20,0x76,0x69,
0x65,0x77,0x42,0x6f,0x78,0x3d,0x22,0x30,0x20,0x30,
0x20,0x33,0x37,0x2e,0x30,0x36,0x31,0x20,0x33,0x37,
0x2e,0x30,0x36,0x31,0x22,0x20,0x65,0x6e,0x61,0x62,
0x6c,0x65,0x2d,0x62,0x61,0x63,0x6b,0x67,0x72,0x6f,
0x75,0x6e,0x64,0x3d,0x22,0x6e,0x65,0x77,0x20,0x30,
0x20,0x30,0x20,0x33,0x37,0x2e,0x30,0x36,0x31,0x20,
0x33,0x37,0x2e,0x30,0x36,0x31,0x22,0x20,0x78,0x6d,
0x6c,0x3a,0x73,0x70,0x61,0x63,0x65,0x3d,0x22,0x70,
0x72,0x65,0x73,0x65,0x72,0x76,0x65,0x22,0x3e,0x0d,
0x0a,0x3c,0x70,0x61,0x74,0x68,0x20,0x66,0x69,0x6c,
0x6c,0x3d,0x22,0x23,0x46,0x46,0x46,0x46,0x46,0x46,
0x22,0x20,0x64,0x3d,0x22,0x4d,0x33,0x33,0x2e,0x30,
0x36,0x35,0x2c,0x31,0x35,0x2e,0x35,0x34,0x38,0x68,
0x31,0x2e,0x34,0x33,0x38,0x56,0x39,0x2e,0x34,0x37,
0x31,0x68,0x32,0x2e,0x35,0x36,0x33,0x76,0x2d,0x31,
0x2e,0x31,0x33,0x68,0x2d,0x36,0x2e,0x35,0x36,0x33,
0x76,0x31,0x2e,0x31,0x33,0x68,0x32,0x2e,0x35,0x36,
0x33,0x4c,0x33,0x33,0x2e,0x30,0x36,0x35,0x2c,0x31,
0x35,0x2e,0x35,0x34,0x38,0x4c,0x33,0x33,0x2e,0x30,
0x36,0x35,0x2c,0x31,0x35,0x2e,0x35,0x34,0x38,0x7a,
0x20,0x4d,0x32,0x34,0x2e,0x33,0x35,0x31,0x2c,0x31,
0x31,0x2e,0x35,0x37,0x33,0x0d,0x0a,0x09,0x56,0x39,
0x2e,0x34,0x37,0x31,0x68,0x32,0x2e,0x34,0x38,0x32,
0x63,0x30,0x2e,0x37,0x35,0x35,0x2c,0x30,0x2c,0x31,
0x2e,0x32,0x32,0x36,0x2c,0x30,0x2e,0x32,0x39,0x32,
0x2c,0x31,0x2e,0x32,0x32,0x36,0x2c,0x31,0x2e,0x30,
0x33,0x39,0x63,0x30,0x2c,0x30,0x2e,0x38,0x30,0x38,
0x2d,0x30,0x2e,0x34,0x33,0x32,0x2c,0x31,0x2e,0x30,
0x36,0x33,0x2d,0x31,0x2e,0x32,0x32,0x36,0x2c,0x31,
0x2e,0x30,0x36,0x33,0x48,0x32,0x34,0x2e,0x33,0x35,
0x31,0x7a,0x20,0x4d,0x32,0x32,0x2e,0x39,0x31,0x37,
0x2c,0x31,0x35,0x2e,0x35,0x34,0x38,0x68,0x31,0x2e,
0x34,0x33,0x34,0x76,0x2d,0x32,0x2e,0x38,0x34,0x36,
0x68,0x32,0x2e,0x34,0x34,0x33,0x0d,0x0a,0x09,0x63,
0x31,0x2e,0x30,0x35,0x33,0x2c,0x30,0x2c,0x31,0x2e,
0x31,0x38,0x38,0x2c,0x30,0x2e,0x37,0x32,0x37,0x2c,
0x31,0x2e,0x31,0x38,0x38,0x2c,0x31,0x2e,0x37,0x35,
0x35,0x63,0x30,0x2c,0x30,0x2e,0x35,0x32,0x36,0x2c,
0x30,0x2e,0x30,0x36,0x38,0x2c,0x30,0x2e,0x38,0x39,
0x2c,0x30,0x2e,0x31,0x37,0x34,0x2c,0x31,0x2e,0x30,
0x39,0x31,0x68,0x31,0x2e,0x35,0x35,0x32,0x63,0x2d,
0x30,0x2e,0x32,0x38,0x31,0x2d,0x30,0x2e,0x33,0x39,
0x35,0x2d,0x30,0x2e,0x32,0x39,0x2d,0x31,0x2e,0x31,
0x39,0x39,0x2d,0x30,0x2e,0x32,0x39,0x2d,0x31,0x2e,
0x35,0x34,0x36,0x0d,0x0a,0x09,0x63,0x30,0x2d,0x31,
0x2e,0x30,0x31,0x39,0x2d,0x30,0x2e,0x31,0x38,0x2d,
0x31,0x2e,0x37,0x36,0x36,0x2d,0x30,0x2e,0x39,0x39,
0x34,0x2d,0x31,0x2e,0x39,0x34,0x35,0x76,0x2d,0x30,
0x2e,0x30,0x32,0x31,0x63,0x30,0x2e,0x36,0x34,0x33,
0x2d,0x30,0x2e,0x32,0x31,0x31,0x2c,0x31,0x2e,0x31,
0x32,0x38,0x2d,0x30,0x2e,0x37,0x39,0x37,0x2c,0x31,
0x2e,0x31,0x32,0x38,0x2d,0x31,0x2e,0x37,0x33,0x37,
0x63,0x30,0x2d,0x31,0x2e,0x31,0x31,0x39,0x2d,0x30,
0x2e,0x35,0x36,0x33,0x2d,0x31,0x2e,0x39,0x35,0x34,
0x2d,0x32,0x2e,0x33,0x30,0x35,0x2d,0x31,0x2e,0x39,
0x35,0x34,0x68,0x2d,0x34,0x2e,0x33,0x32,0x37,0x4c,
0x32,0x32,0x2e,0x39,0x31,0x37,0x2c,0x31,0x35,0x2e,
0x35,0x34,0x38,0x0d,0x0a,0x09,0x4c,0x32,0x32,0x2e,
0x39,0x31,0x37,0x2c,0x31,0x35,0x2e,0x35,0x34,0x38,
0x7a,0x20,0x4d,0x31,0x34,0x2e,0x30,0x33,0x32,0x2c,
0x31,0x35,0x2e,0x35,0x34,0x38,0x68,0x31,0x2e,0x35,
0x35,0x31,0x6c,0x30,0x2e,0x37,0x30,0x38,0x2d,0x31,
0x2e,0x37,0x38,0x36,0x68,0x33,0x2e,0x32,0x31,0x37,
0x6c,0x30,0x2e,0x37,0x31,0x38,0x2c,0x31,0x2e,0x37,
0x38,0x36,0x68,0x31,0x2e,0x36,0x30,0x33,0x6c,0x2d,
0x33,0x2e,0x30,0x34,0x35,0x2d,0x37,0x2e,0x32,0x30,
0x37,0x68,0x2d,0x31,0x2e,0x37,0x30,0x34,0x4c,0x31,
0x34,0x2e,0x30,0x33,0x32,0x2c,0x31,0x35,0x2e,0x35,
0x34,0x38,0x7a,0x20,0x4d,0x31,0x36,0x2e,0x37,0x32,
0x33,0x2c,0x31,0x32,0x2e,0x36,0x33,0x32,0x0d,0x0a,
0x09,0x4c,0x31,0x37,0x2e,0x39,0x31,0x2c,0x39,0x2e,
0x35,0x39,0x6c,0x31,0x2e,0x31,0x36,0x38,0x2c,0x33,
0x2e,0x30,0x34,0x32,0x48,0x31,0x36,0x2e,0x37,0x32,
0x33,0x7a,0x20,0x4d,0x39,0x2e,0x39,0x39,0x32,0x2c,
0x31,0x35,0x2e,0x35,0x34,0x38,0x68,0x31,0x2e,0x34,
0x33,0x34,0x56,0x39,0x2e,0x34,0x37,0x31,0x68,0x32,
0x2e,0x35,0x36,0x37,0x76,0x2d,0x31,0x2e,0x31,0x33,
0x48,0x37,0x2e,0x34,0x32,0x35,0x76,0x31,0x2e,0x31,
0x33,0x68,0x32,0x2e,0x35,0x36,0x37,0x56,0x31,0x35,
0x2e,0x35,0x34,0x38,0x7a,0x20,0x4d,0x30,0x2e,0x31,
0x38,0x37,0x2c,0x31,0x30,0x2e,0x33,0x36,0x38,0x0d,
0x0a,0x09,0x63,0x30,0x2c,0x32,0x2e,0x39,0x35,0x36,
0x2c,0x35,0x2e,0x30,0x33,0x36,0x2c,0x31,0x2e,0x34,
0x2c,0x35,0x2e,0x30,0x33,0x36,0x2c,0x33,0x2e,0x31,
0x38,0x38,0x63,0x30,0x2c,0x30,0x2e,0x37,0x39,0x32,
0x2d,0x30,0x2e,0x38,0x31,0x33,0x2c,0x31,0x2e,0x30,
0x36,0x34,0x2d,0x31,0x2e,0x36,0x38,0x34,0x2c,0x31,
0x2e,0x30,0x36,0x34,0x63,0x2d,0x31,0x2e,0x31,0x37,
0x39,0x2c,0x30,0x2d,0x31,0x2e,0x39,0x32,0x33,0x2d,
0x30,0x2e,0x34,0x35,0x36,0x2d,0x31,0x2e,0x39,0x36,
0x33,0x2d,0x31,0x2e,0x34,0x30,0x37,0x48,0x30,0x2e,
0x30,0x32,0x36,0x0d,0x0a,0x09,0x63,0x30,0x2e,0x30,
0x32,0x31,0x2c,0x31,0x2e,0x35,0x31,0x36,0x2c,0x31,
0x2e,0x30,0x30,0x35,0x2c,0x32,0x2e,0x35,0x33,0x38,
0x2c,0x33,0x2e,0x34,0x36,0x39,0x2c,0x32,0x2e,0x35,
0x33,0x38,0x63,0x31,0x2e,0x34,0x35,0x35,0x2c,0x30,
0x2c,0x33,0x2e,0x32,0x38,0x2d,0x30,0x2e,0x34,0x38,
0x36,0x2c,0x33,0x2e,0x32,0x38,0x2d,0x32,0x2e,0x33,
0x34,0x35,0x63,0x30,0x2d,0x33,0x2e,0x30,0x37,0x39,
0x2d,0x35,0x2e,0x30,0x39,0x33,0x2d,0x31,0x2e,0x34,
0x35,0x34,0x2d,0x35,0x2e,0x30,0x39,0x33,0x2d,0x33,
0x2e,0x31,0x34,0x38,0x0d,0x0a,0x09,0x63,0x30,0x2d,
0x30,0x2e,0x36,0x37,0x36,0x2c,0x30,0x2e,0x36,0x33,
0x32,0x2d,0x30,0x2e,0x39,0x38,0x38,0x2c,0x31,0x2e,
0x35,0x38,0x39,0x2d,0x30,0x2e,0x39,0x38,0x38,0x63,
0x31,0x2e,0x31,0x39,0x36,0x2c,0x30,0x2c,0x31,0x2e,
0x36,0x37,0x36,0x2c,0x30,0x2e,0x36,0x30,0x34,0x2c,
0x31,0x2e,0x37,0x32,0x36,0x2c,0x31,0x2e,0x31,0x36,
0x31,0x68,0x31,0x2e,0x35,0x35,0x31,0x63,0x2d,0x30,
0x2e,0x31,0x38,0x35,0x2d,0x32,0x2e,0x30,0x39,0x33,
0x2d,0x32,0x2e,0x32,0x39,0x2d,0x32,0x2e,0x32,0x39,
0x32,0x2d,0x33,0x2e,0x33,0x34,0x35,0x2d,0x32,0x2e,
0x32,0x39,0x32,0x0d,0x0a,0x09,0x43,0x31,0x2e,0x35,
0x33,0x36,0x2c,0x38,0x2e,0x31,0x33,0x39,0x2c,0x30,
0x2e,0x31,0x38,0x37,0x2c,0x38,0x2e,0x37,0x36,0x32,
0x2c,0x30,0x2e,0x31,0x38,0x37,0x2c,0x31,0x30,0x2e,
0x33,0x36,0x38,0x22,0x2f,0x3e,0x0d,0x0a,0x3c,0x67,
0x3e,0x0d,0x0a,0x09,0x3c,0x67,0x3e,0x0d,0x0a,0x09,
0x09,0x3c,0x70,0x61,0x74,0x68,0x20,0x66,0x69,0x6c,
0x6c,0x3d,0x22,0x23,0x46,0x46,0x46,0x46,0x46,0x46,
0x22,0x20,0x64,0x3d,0x22,0x4d,0x33,0x33,0x2e,0x32,
0x31,0x37,0x2c,0x31,0x39,0x2e,0x31,0x31,0x38,0x48,
0x33,0x2e,0x38,0x34,0x35,0x43,0x31,0x2e,0x37,0x32,
0x32,0x2c,0x31,0x39,0x2e,0x31,0x31,0x38,0x2c,0x30,
0x2c,0x32,0x30,0x2e,0x38,0x39,0x2c,0x30,0x2c,0x32,
0x33,0x2e,0x30,0x37,0x35,0x73,0x31,0x2e,0x37,0x32,
0x32,0x2c,0x33,0x2e,0x39,0x35,0x37,0x2c,0x33,0x2e,
0x38,0x34,0x35,0x2c,0x33,0x2e,0x39,0x35,0x37,0x68,
0x32,0x39,0x2e,0x33,0x37,0x32,0x0d,0x0a,0x09,0x09,
0x09,0x63,0x32,0x2e,0x31,0x32,0x33,0x2c,0x30,0x2c,
0x33,0x2e,0x38,0x34,0x34,0x2d,0x31,0x2e,0x37,0x37,
0x31,0x2c,0x33,0x2e,0x38,0x34,0x34,0x2d,0x33,0x2e,
0x39,0x35,0x37,0x43,0x33,0x37,0x2e,0x30,0x36,0x31,
0x2c,0x32,0x30,0x2e,0x38,0x38,0x39,0x2c,0x33,0x35,
0x2e,0x33,0x34,0x2c,0x31,0x39,0x2e,0x31,0x31,0x38,
0x2c,0x33,0x33,0x2e,0x32,0x31,0x37,0x2c,0x31,0x39,
0x2e,0x31,0x31,0x38,0x7a,0x22,0x2f,0x3e,0x0d,0x0a,
0x09,0x3c,0x2f,0x67,0x3e,0x0d,0x0a,0x3c,0x2f,0x67,
0x3e,0x0d,0x0a,0x3c,0x2f,0x73,0x76,0x67,0x3e,0x0d,
0x0a
};

View file

@ -0,0 +1,104 @@
//this file was auto-generated from "button_x.svg" by res2h
#include "../Resources.h"
const size_t help_button_x_svg_size = 965;
const unsigned char help_button_x_svg_data[965] = {
0x3c,0x3f,0x78,0x6d,0x6c,0x20,0x76,0x65,0x72,0x73,
0x69,0x6f,0x6e,0x3d,0x22,0x31,0x2e,0x30,0x22,0x20,
0x65,0x6e,0x63,0x6f,0x64,0x69,0x6e,0x67,0x3d,0x22,
0x75,0x74,0x66,0x2d,0x38,0x22,0x3f,0x3e,0x0d,0x0a,
0x3c,0x21,0x2d,0x2d,0x20,0x47,0x65,0x6e,0x65,0x72,
0x61,0x74,0x6f,0x72,0x3a,0x20,0x41,0x64,0x6f,0x62,
0x65,0x20,0x49,0x6c,0x6c,0x75,0x73,0x74,0x72,0x61,
0x74,0x6f,0x72,0x20,0x31,0x36,0x2e,0x30,0x2e,0x33,
0x2c,0x20,0x53,0x56,0x47,0x20,0x45,0x78,0x70,0x6f,
0x72,0x74,0x20,0x50,0x6c,0x75,0x67,0x2d,0x49,0x6e,
0x20,0x2e,0x20,0x53,0x56,0x47,0x20,0x56,0x65,0x72,
0x73,0x69,0x6f,0x6e,0x3a,0x20,0x36,0x2e,0x30,0x30,
0x20,0x42,0x75,0x69,0x6c,0x64,0x20,0x30,0x29,0x20,
0x20,0x2d,0x2d,0x3e,0x0d,0x0a,0x3c,0x21,0x44,0x4f,
0x43,0x54,0x59,0x50,0x45,0x20,0x73,0x76,0x67,0x20,
0x50,0x55,0x42,0x4c,0x49,0x43,0x20,0x22,0x2d,0x2f,
0x2f,0x57,0x33,0x43,0x2f,0x2f,0x44,0x54,0x44,0x20,
0x53,0x56,0x47,0x20,0x31,0x2e,0x31,0x2f,0x2f,0x45,
0x4e,0x22,0x20,0x22,0x68,0x74,0x74,0x70,0x3a,0x2f,
0x2f,0x77,0x77,0x77,0x2e,0x77,0x33,0x2e,0x6f,0x72,
0x67,0x2f,0x47,0x72,0x61,0x70,0x68,0x69,0x63,0x73,
0x2f,0x53,0x56,0x47,0x2f,0x31,0x2e,0x31,0x2f,0x44,
0x54,0x44,0x2f,0x73,0x76,0x67,0x31,0x31,0x2e,0x64,
0x74,0x64,0x22,0x3e,0x0d,0x0a,0x3c,0x73,0x76,0x67,
0x20,0x76,0x65,0x72,0x73,0x69,0x6f,0x6e,0x3d,0x22,
0x31,0x2e,0x31,0x22,0x20,0x69,0x64,0x3d,0x22,0x5f,
0x78,0x33,0x30,0x5f,0x22,0x20,0x78,0x6d,0x6c,0x6e,
0x73,0x3d,0x22,0x68,0x74,0x74,0x70,0x3a,0x2f,0x2f,
0x77,0x77,0x77,0x2e,0x77,0x33,0x2e,0x6f,0x72,0x67,
0x2f,0x32,0x30,0x30,0x30,0x2f,0x73,0x76,0x67,0x22,
0x20,0x78,0x6d,0x6c,0x6e,0x73,0x3a,0x78,0x6c,0x69,
0x6e,0x6b,0x3d,0x22,0x68,0x74,0x74,0x70,0x3a,0x2f,
0x2f,0x77,0x77,0x77,0x2e,0x77,0x33,0x2e,0x6f,0x72,
0x67,0x2f,0x31,0x39,0x39,0x39,0x2f,0x78,0x6c,0x69,
0x6e,0x6b,0x22,0x20,0x78,0x3d,0x22,0x30,0x70,0x78,
0x22,0x20,0x79,0x3d,0x22,0x30,0x70,0x78,0x22,0x0d,
0x0a,0x09,0x20,0x77,0x69,0x64,0x74,0x68,0x3d,0x22,
0x33,0x37,0x2e,0x30,0x36,0x31,0x70,0x78,0x22,0x20,
0x68,0x65,0x69,0x67,0x68,0x74,0x3d,0x22,0x33,0x37,
0x2e,0x30,0x36,0x31,0x70,0x78,0x22,0x20,0x76,0x69,
0x65,0x77,0x42,0x6f,0x78,0x3d,0x22,0x30,0x20,0x30,
0x20,0x33,0x37,0x2e,0x30,0x36,0x31,0x20,0x33,0x37,
0x2e,0x30,0x36,0x31,0x22,0x20,0x65,0x6e,0x61,0x62,
0x6c,0x65,0x2d,0x62,0x61,0x63,0x6b,0x67,0x72,0x6f,
0x75,0x6e,0x64,0x3d,0x22,0x6e,0x65,0x77,0x20,0x30,
0x20,0x30,0x20,0x33,0x37,0x2e,0x30,0x36,0x31,0x20,
0x33,0x37,0x2e,0x30,0x36,0x31,0x22,0x20,0x78,0x6d,
0x6c,0x3a,0x73,0x70,0x61,0x63,0x65,0x3d,0x22,0x70,
0x72,0x65,0x73,0x65,0x72,0x76,0x65,0x22,0x3e,0x0d,
0x0a,0x3c,0x67,0x3e,0x0d,0x0a,0x09,0x3c,0x67,0x3e,
0x0d,0x0a,0x09,0x09,0x3c,0x70,0x61,0x74,0x68,0x20,
0x66,0x69,0x6c,0x6c,0x3d,0x22,0x23,0x46,0x46,0x46,
0x46,0x46,0x46,0x22,0x20,0x64,0x3d,0x22,0x4d,0x31,
0x38,0x2e,0x35,0x33,0x2c,0x33,0x2e,0x30,0x32,0x39,
0x63,0x2d,0x38,0x2e,0x35,0x36,0x31,0x2c,0x30,0x2d,
0x31,0x35,0x2e,0x35,0x2c,0x36,0x2e,0x39,0x34,0x2d,
0x31,0x35,0x2e,0x35,0x2c,0x31,0x35,0x2e,0x35,0x63,
0x30,0x2c,0x38,0x2e,0x35,0x36,0x33,0x2c,0x36,0x2e,
0x39,0x33,0x39,0x2c,0x31,0x35,0x2e,0x35,0x30,0x32,
0x2c,0x31,0x35,0x2e,0x35,0x2c,0x31,0x35,0x2e,0x35,
0x30,0x32,0x0d,0x0a,0x09,0x09,0x09,0x63,0x38,0x2e,
0x35,0x36,0x33,0x2c,0x30,0x2c,0x31,0x35,0x2e,0x35,
0x2d,0x36,0x2e,0x39,0x33,0x39,0x2c,0x31,0x35,0x2e,
0x35,0x2d,0x31,0x35,0x2e,0x35,0x30,0x32,0x43,0x33,
0x34,0x2e,0x30,0x33,0x2c,0x39,0x2e,0x39,0x37,0x2c,
0x32,0x37,0x2e,0x30,0x39,0x31,0x2c,0x33,0x2e,0x30,
0x32,0x39,0x2c,0x31,0x38,0x2e,0x35,0x33,0x2c,0x33,
0x2e,0x30,0x32,0x39,0x7a,0x20,0x4d,0x32,0x31,0x2e,
0x34,0x36,0x35,0x2c,0x32,0x34,0x2e,0x39,0x32,0x35,
0x6c,0x2d,0x32,0x2e,0x36,0x30,0x37,0x2d,0x34,0x2e,
0x38,0x37,0x6c,0x2d,0x32,0x2e,0x36,0x30,0x34,0x2c,
0x34,0x2e,0x38,0x37,0x68,0x2d,0x33,0x2e,0x31,0x36,
0x34,0x6c,0x34,0x2e,0x31,0x31,0x2d,0x36,0x2e,0x38,
0x31,0x31,0x0d,0x0a,0x09,0x09,0x09,0x6c,0x2d,0x34,
0x2e,0x30,0x31,0x2d,0x36,0x2e,0x36,0x39,0x38,0x68,
0x33,0x2e,0x31,0x33,0x38,0x6c,0x32,0x2e,0x34,0x39,
0x33,0x2c,0x34,0x2e,0x37,0x38,0x37,0x6c,0x32,0x2e,
0x35,0x33,0x33,0x2d,0x34,0x2e,0x37,0x38,0x37,0x68,
0x33,0x2e,0x31,0x35,0x34,0x4c,0x32,0x30,0x2e,0x35,
0x2c,0x31,0x38,0x2e,0x31,0x31,0x35,0x6c,0x34,0x2e,
0x32,0x34,0x2c,0x36,0x2e,0x38,0x31,0x31,0x48,0x32,
0x31,0x2e,0x34,0x36,0x35,0x7a,0x22,0x2f,0x3e,0x0d,
0x0a,0x09,0x3c,0x2f,0x67,0x3e,0x0d,0x0a,0x3c,0x2f,
0x67,0x3e,0x0d,0x0a,0x3c,0x67,0x20,0x6f,0x70,0x61,
0x63,0x69,0x74,0x79,0x3d,0x22,0x30,0x22,0x3e,0x0d,
0x0a,0x09,0x3c,0x70,0x61,0x74,0x68,0x20,0x66,0x69,
0x6c,0x6c,0x3d,0x22,0x23,0x46,0x46,0x46,0x46,0x46,
0x46,0x22,0x20,0x64,0x3d,0x22,0x4d,0x33,0x36,0x2e,
0x39,0x36,0x31,0x2c,0x30,0x2e,0x31,0x76,0x33,0x36,
0x2e,0x38,0x36,0x31,0x48,0x30,0x2e,0x31,0x56,0x30,
0x2e,0x31,0x48,0x33,0x36,0x2e,0x39,0x36,0x31,0x20,
0x4d,0x33,0x37,0x2e,0x30,0x36,0x31,0x2c,0x30,0x48,
0x30,0x76,0x33,0x37,0x2e,0x30,0x36,0x68,0x33,0x37,
0x2e,0x30,0x36,0x31,0x56,0x30,0x4c,0x33,0x37,0x2e,
0x30,0x36,0x31,0x2c,0x30,0x7a,0x22,0x2f,0x3e,0x0d,
0x0a,0x3c,0x2f,0x67,0x3e,0x0d,0x0a,0x3c,0x2f,0x73,
0x76,0x67,0x3e,0x0d,0x0a
};

View file

@ -0,0 +1,100 @@
//this file was auto-generated from "button_y.svg" by res2h
#include "../Resources.h"
const size_t help_button_y_svg_size = 927;
const unsigned char help_button_y_svg_data[927] = {
0x3c,0x3f,0x78,0x6d,0x6c,0x20,0x76,0x65,0x72,0x73,
0x69,0x6f,0x6e,0x3d,0x22,0x31,0x2e,0x30,0x22,0x20,
0x65,0x6e,0x63,0x6f,0x64,0x69,0x6e,0x67,0x3d,0x22,
0x75,0x74,0x66,0x2d,0x38,0x22,0x3f,0x3e,0x0d,0x0a,
0x3c,0x21,0x2d,0x2d,0x20,0x47,0x65,0x6e,0x65,0x72,
0x61,0x74,0x6f,0x72,0x3a,0x20,0x41,0x64,0x6f,0x62,
0x65,0x20,0x49,0x6c,0x6c,0x75,0x73,0x74,0x72,0x61,
0x74,0x6f,0x72,0x20,0x31,0x36,0x2e,0x30,0x2e,0x33,
0x2c,0x20,0x53,0x56,0x47,0x20,0x45,0x78,0x70,0x6f,
0x72,0x74,0x20,0x50,0x6c,0x75,0x67,0x2d,0x49,0x6e,
0x20,0x2e,0x20,0x53,0x56,0x47,0x20,0x56,0x65,0x72,
0x73,0x69,0x6f,0x6e,0x3a,0x20,0x36,0x2e,0x30,0x30,
0x20,0x42,0x75,0x69,0x6c,0x64,0x20,0x30,0x29,0x20,
0x20,0x2d,0x2d,0x3e,0x0d,0x0a,0x3c,0x21,0x44,0x4f,
0x43,0x54,0x59,0x50,0x45,0x20,0x73,0x76,0x67,0x20,
0x50,0x55,0x42,0x4c,0x49,0x43,0x20,0x22,0x2d,0x2f,
0x2f,0x57,0x33,0x43,0x2f,0x2f,0x44,0x54,0x44,0x20,
0x53,0x56,0x47,0x20,0x31,0x2e,0x31,0x2f,0x2f,0x45,
0x4e,0x22,0x20,0x22,0x68,0x74,0x74,0x70,0x3a,0x2f,
0x2f,0x77,0x77,0x77,0x2e,0x77,0x33,0x2e,0x6f,0x72,
0x67,0x2f,0x47,0x72,0x61,0x70,0x68,0x69,0x63,0x73,
0x2f,0x53,0x56,0x47,0x2f,0x31,0x2e,0x31,0x2f,0x44,
0x54,0x44,0x2f,0x73,0x76,0x67,0x31,0x31,0x2e,0x64,
0x74,0x64,0x22,0x3e,0x0d,0x0a,0x3c,0x73,0x76,0x67,
0x20,0x76,0x65,0x72,0x73,0x69,0x6f,0x6e,0x3d,0x22,
0x31,0x2e,0x31,0x22,0x20,0x69,0x64,0x3d,0x22,0x5f,
0x78,0x33,0x30,0x5f,0x22,0x20,0x78,0x6d,0x6c,0x6e,
0x73,0x3d,0x22,0x68,0x74,0x74,0x70,0x3a,0x2f,0x2f,
0x77,0x77,0x77,0x2e,0x77,0x33,0x2e,0x6f,0x72,0x67,
0x2f,0x32,0x30,0x30,0x30,0x2f,0x73,0x76,0x67,0x22,
0x20,0x78,0x6d,0x6c,0x6e,0x73,0x3a,0x78,0x6c,0x69,
0x6e,0x6b,0x3d,0x22,0x68,0x74,0x74,0x70,0x3a,0x2f,
0x2f,0x77,0x77,0x77,0x2e,0x77,0x33,0x2e,0x6f,0x72,
0x67,0x2f,0x31,0x39,0x39,0x39,0x2f,0x78,0x6c,0x69,
0x6e,0x6b,0x22,0x20,0x78,0x3d,0x22,0x30,0x70,0x78,
0x22,0x20,0x79,0x3d,0x22,0x30,0x70,0x78,0x22,0x0d,
0x0a,0x09,0x20,0x77,0x69,0x64,0x74,0x68,0x3d,0x22,
0x33,0x37,0x2e,0x30,0x36,0x31,0x70,0x78,0x22,0x20,
0x68,0x65,0x69,0x67,0x68,0x74,0x3d,0x22,0x33,0x37,
0x2e,0x30,0x36,0x31,0x70,0x78,0x22,0x20,0x76,0x69,
0x65,0x77,0x42,0x6f,0x78,0x3d,0x22,0x30,0x20,0x30,
0x20,0x33,0x37,0x2e,0x30,0x36,0x31,0x20,0x33,0x37,
0x2e,0x30,0x36,0x31,0x22,0x20,0x65,0x6e,0x61,0x62,
0x6c,0x65,0x2d,0x62,0x61,0x63,0x6b,0x67,0x72,0x6f,
0x75,0x6e,0x64,0x3d,0x22,0x6e,0x65,0x77,0x20,0x30,
0x20,0x30,0x20,0x33,0x37,0x2e,0x30,0x36,0x31,0x20,
0x33,0x37,0x2e,0x30,0x36,0x31,0x22,0x20,0x78,0x6d,
0x6c,0x3a,0x73,0x70,0x61,0x63,0x65,0x3d,0x22,0x70,
0x72,0x65,0x73,0x65,0x72,0x76,0x65,0x22,0x3e,0x0d,
0x0a,0x3c,0x67,0x3e,0x0d,0x0a,0x09,0x3c,0x67,0x3e,
0x0d,0x0a,0x09,0x09,0x3c,0x70,0x61,0x74,0x68,0x20,
0x66,0x69,0x6c,0x6c,0x3d,0x22,0x23,0x46,0x46,0x46,
0x46,0x46,0x46,0x22,0x20,0x64,0x3d,0x22,0x4d,0x31,
0x38,0x2e,0x35,0x33,0x2c,0x33,0x2e,0x30,0x32,0x39,
0x63,0x2d,0x38,0x2e,0x35,0x36,0x31,0x2c,0x30,0x2d,
0x31,0x35,0x2e,0x35,0x2c,0x36,0x2e,0x39,0x34,0x2d,
0x31,0x35,0x2e,0x35,0x2c,0x31,0x35,0x2e,0x35,0x63,
0x30,0x2c,0x38,0x2e,0x35,0x36,0x32,0x2c,0x36,0x2e,
0x39,0x33,0x39,0x2c,0x31,0x35,0x2e,0x35,0x30,0x32,
0x2c,0x31,0x35,0x2e,0x35,0x2c,0x31,0x35,0x2e,0x35,
0x30,0x32,0x0d,0x0a,0x09,0x09,0x09,0x63,0x38,0x2e,
0x35,0x36,0x33,0x2c,0x30,0x2c,0x31,0x35,0x2e,0x35,
0x2d,0x36,0x2e,0x39,0x34,0x2c,0x31,0x35,0x2e,0x35,
0x2d,0x31,0x35,0x2e,0x35,0x30,0x32,0x43,0x33,0x34,
0x2e,0x30,0x33,0x2c,0x39,0x2e,0x39,0x37,0x2c,0x32,
0x37,0x2e,0x30,0x39,0x31,0x2c,0x33,0x2e,0x30,0x32,
0x39,0x2c,0x31,0x38,0x2e,0x35,0x33,0x2c,0x33,0x2e,
0x30,0x32,0x39,0x7a,0x20,0x4d,0x32,0x30,0x2e,0x31,
0x30,0x32,0x2c,0x32,0x30,0x2e,0x31,0x37,0x34,0x76,
0x34,0x2e,0x37,0x35,0x68,0x2d,0x32,0x2e,0x37,0x76,
0x2d,0x34,0x2e,0x38,0x39,0x6c,0x2d,0x34,0x2e,0x35,
0x35,0x35,0x2d,0x38,0x2e,0x36,0x31,0x38,0x68,0x32,
0x2e,0x39,0x36,0x39,0x0d,0x0a,0x09,0x09,0x09,0x6c,
0x32,0x2e,0x39,0x35,0x2c,0x36,0x2e,0x32,0x32,0x36,
0x68,0x30,0x2e,0x30,0x35,0x36,0x6c,0x32,0x2e,0x39,
0x35,0x2d,0x36,0x2e,0x32,0x32,0x36,0x68,0x32,0x2e,
0x39,0x37,0x31,0x4c,0x32,0x30,0x2e,0x31,0x30,0x32,
0x2c,0x32,0x30,0x2e,0x31,0x37,0x34,0x7a,0x22,0x2f,
0x3e,0x0d,0x0a,0x09,0x3c,0x2f,0x67,0x3e,0x0d,0x0a,
0x3c,0x2f,0x67,0x3e,0x0d,0x0a,0x3c,0x67,0x20,0x6f,
0x70,0x61,0x63,0x69,0x74,0x79,0x3d,0x22,0x30,0x22,
0x3e,0x0d,0x0a,0x09,0x3c,0x70,0x61,0x74,0x68,0x20,
0x66,0x69,0x6c,0x6c,0x3d,0x22,0x23,0x46,0x46,0x46,
0x46,0x46,0x46,0x22,0x20,0x64,0x3d,0x22,0x4d,0x33,
0x36,0x2e,0x39,0x36,0x31,0x2c,0x30,0x2e,0x31,0x76,
0x33,0x36,0x2e,0x38,0x36,0x31,0x48,0x30,0x2e,0x31,
0x56,0x30,0x2e,0x31,0x48,0x33,0x36,0x2e,0x39,0x36,
0x31,0x20,0x4d,0x33,0x37,0x2e,0x30,0x36,0x31,0x2c,
0x30,0x48,0x30,0x76,0x33,0x37,0x2e,0x30,0x36,0x68,
0x33,0x37,0x2e,0x30,0x36,0x31,0x56,0x30,0x4c,0x33,
0x37,0x2e,0x30,0x36,0x31,0x2c,0x30,0x7a,0x22,0x2f,
0x3e,0x0d,0x0a,0x3c,0x2f,0x67,0x3e,0x0d,0x0a,0x3c,
0x2f,0x73,0x76,0x67,0x3e,0x0d,0x0a
};

View file

@ -0,0 +1,360 @@
//this file was auto-generated from "dpad_all.svg" by res2h
#include "../Resources.h"
const size_t help_dpad_all_svg_size = 3523;
const unsigned char help_dpad_all_svg_data[3523] = {
0x3c,0x3f,0x78,0x6d,0x6c,0x20,0x76,0x65,0x72,0x73,
0x69,0x6f,0x6e,0x3d,0x22,0x31,0x2e,0x30,0x22,0x20,
0x65,0x6e,0x63,0x6f,0x64,0x69,0x6e,0x67,0x3d,0x22,
0x75,0x74,0x66,0x2d,0x38,0x22,0x3f,0x3e,0x0d,0x0a,
0x3c,0x21,0x2d,0x2d,0x20,0x47,0x65,0x6e,0x65,0x72,
0x61,0x74,0x6f,0x72,0x3a,0x20,0x41,0x64,0x6f,0x62,
0x65,0x20,0x49,0x6c,0x6c,0x75,0x73,0x74,0x72,0x61,
0x74,0x6f,0x72,0x20,0x31,0x36,0x2e,0x30,0x2e,0x33,
0x2c,0x20,0x53,0x56,0x47,0x20,0x45,0x78,0x70,0x6f,
0x72,0x74,0x20,0x50,0x6c,0x75,0x67,0x2d,0x49,0x6e,
0x20,0x2e,0x20,0x53,0x56,0x47,0x20,0x56,0x65,0x72,
0x73,0x69,0x6f,0x6e,0x3a,0x20,0x36,0x2e,0x30,0x30,
0x20,0x42,0x75,0x69,0x6c,0x64,0x20,0x30,0x29,0x20,
0x20,0x2d,0x2d,0x3e,0x0d,0x0a,0x3c,0x21,0x44,0x4f,
0x43,0x54,0x59,0x50,0x45,0x20,0x73,0x76,0x67,0x20,
0x50,0x55,0x42,0x4c,0x49,0x43,0x20,0x22,0x2d,0x2f,
0x2f,0x57,0x33,0x43,0x2f,0x2f,0x44,0x54,0x44,0x20,
0x53,0x56,0x47,0x20,0x31,0x2e,0x31,0x2f,0x2f,0x45,
0x4e,0x22,0x20,0x22,0x68,0x74,0x74,0x70,0x3a,0x2f,
0x2f,0x77,0x77,0x77,0x2e,0x77,0x33,0x2e,0x6f,0x72,
0x67,0x2f,0x47,0x72,0x61,0x70,0x68,0x69,0x63,0x73,
0x2f,0x53,0x56,0x47,0x2f,0x31,0x2e,0x31,0x2f,0x44,
0x54,0x44,0x2f,0x73,0x76,0x67,0x31,0x31,0x2e,0x64,
0x74,0x64,0x22,0x3e,0x0d,0x0a,0x3c,0x73,0x76,0x67,
0x20,0x76,0x65,0x72,0x73,0x69,0x6f,0x6e,0x3d,0x22,
0x31,0x2e,0x31,0x22,0x20,0x69,0x64,0x3d,0x22,0x5f,
0x78,0x33,0x30,0x5f,0x22,0x20,0x78,0x6d,0x6c,0x6e,
0x73,0x3d,0x22,0x68,0x74,0x74,0x70,0x3a,0x2f,0x2f,
0x77,0x77,0x77,0x2e,0x77,0x33,0x2e,0x6f,0x72,0x67,
0x2f,0x32,0x30,0x30,0x30,0x2f,0x73,0x76,0x67,0x22,
0x20,0x78,0x6d,0x6c,0x6e,0x73,0x3a,0x78,0x6c,0x69,
0x6e,0x6b,0x3d,0x22,0x68,0x74,0x74,0x70,0x3a,0x2f,
0x2f,0x77,0x77,0x77,0x2e,0x77,0x33,0x2e,0x6f,0x72,
0x67,0x2f,0x31,0x39,0x39,0x39,0x2f,0x78,0x6c,0x69,
0x6e,0x6b,0x22,0x20,0x78,0x3d,0x22,0x30,0x70,0x78,
0x22,0x20,0x79,0x3d,0x22,0x30,0x70,0x78,0x22,0x0d,
0x0a,0x09,0x20,0x77,0x69,0x64,0x74,0x68,0x3d,0x22,
0x33,0x37,0x2e,0x30,0x36,0x31,0x70,0x78,0x22,0x20,
0x68,0x65,0x69,0x67,0x68,0x74,0x3d,0x22,0x33,0x37,
0x2e,0x30,0x36,0x31,0x70,0x78,0x22,0x20,0x76,0x69,
0x65,0x77,0x42,0x6f,0x78,0x3d,0x22,0x30,0x20,0x30,
0x20,0x33,0x37,0x2e,0x30,0x36,0x31,0x20,0x33,0x37,
0x2e,0x30,0x36,0x31,0x22,0x20,0x65,0x6e,0x61,0x62,
0x6c,0x65,0x2d,0x62,0x61,0x63,0x6b,0x67,0x72,0x6f,
0x75,0x6e,0x64,0x3d,0x22,0x6e,0x65,0x77,0x20,0x30,
0x20,0x30,0x20,0x33,0x37,0x2e,0x30,0x36,0x31,0x20,
0x33,0x37,0x2e,0x30,0x36,0x31,0x22,0x20,0x78,0x6d,
0x6c,0x3a,0x73,0x70,0x61,0x63,0x65,0x3d,0x22,0x70,
0x72,0x65,0x73,0x65,0x72,0x76,0x65,0x22,0x3e,0x0d,
0x0a,0x3c,0x67,0x3e,0x0d,0x0a,0x09,0x3c,0x67,0x3e,
0x0d,0x0a,0x09,0x09,0x3c,0x67,0x3e,0x0d,0x0a,0x09,
0x09,0x09,0x3c,0x67,0x3e,0x0d,0x0a,0x09,0x09,0x09,
0x09,0x3c,0x70,0x61,0x74,0x68,0x20,0x66,0x69,0x6c,
0x6c,0x3d,0x22,0x23,0x46,0x46,0x46,0x46,0x46,0x46,
0x22,0x20,0x64,0x3d,0x22,0x4d,0x32,0x32,0x2e,0x30,
0x38,0x35,0x2c,0x33,0x37,0x2e,0x30,0x35,0x38,0x68,
0x2d,0x37,0x2e,0x31,0x31,0x31,0x63,0x2d,0x32,0x2e,
0x32,0x38,0x39,0x2c,0x30,0x2d,0x33,0x2e,0x31,0x31,
0x39,0x2d,0x31,0x2e,0x38,0x36,0x36,0x2d,0x33,0x2e,
0x31,0x31,0x39,0x2d,0x33,0x2e,0x31,0x32,0x31,0x76,
0x2d,0x38,0x2e,0x37,0x33,0x32,0x48,0x33,0x2e,0x31,
0x32,0x31,0x43,0x30,0x2e,0x38,0x33,0x31,0x2c,0x32,
0x35,0x2e,0x32,0x30,0x35,0x2c,0x30,0x2c,0x32,0x33,
0x2e,0x33,0x33,0x39,0x2c,0x30,0x2c,0x32,0x32,0x2e,
0x30,0x38,0x34,0x0d,0x0a,0x09,0x09,0x09,0x09,0x09,
0x76,0x2d,0x37,0x2e,0x31,0x31,0x63,0x30,0x2d,0x32,
0x2e,0x32,0x38,0x39,0x2c,0x31,0x2e,0x38,0x36,0x37,
0x2d,0x33,0x2e,0x31,0x32,0x2c,0x33,0x2e,0x31,0x32,
0x31,0x2d,0x33,0x2e,0x31,0x32,0x68,0x38,0x2e,0x37,
0x33,0x34,0x56,0x33,0x2e,0x31,0x32,0x31,0x63,0x30,
0x2d,0x32,0x2e,0x32,0x39,0x2c,0x31,0x2e,0x38,0x36,
0x35,0x2d,0x33,0x2e,0x31,0x32,0x31,0x2c,0x33,0x2e,
0x31,0x31,0x39,0x2d,0x33,0x2e,0x31,0x32,0x31,0x68,
0x37,0x2e,0x31,0x31,0x31,0x63,0x32,0x2e,0x32,0x39,
0x2c,0x30,0x2c,0x33,0x2e,0x31,0x32,0x31,0x2c,0x31,
0x2e,0x38,0x36,0x37,0x2c,0x33,0x2e,0x31,0x32,0x31,
0x2c,0x33,0x2e,0x31,0x32,0x31,0x76,0x38,0x2e,0x37,
0x33,0x33,0x0d,0x0a,0x09,0x09,0x09,0x09,0x09,0x68,
0x38,0x2e,0x37,0x33,0x31,0x63,0x31,0x2e,0x32,0x30,
0x31,0x2c,0x30,0x2c,0x32,0x2e,0x31,0x35,0x34,0x2c,
0x30,0x2e,0x35,0x32,0x35,0x2c,0x32,0x2e,0x36,0x38,
0x34,0x2c,0x31,0x2e,0x34,0x38,0x63,0x30,0x2e,0x32,
0x30,0x37,0x2c,0x30,0x2e,0x33,0x37,0x35,0x2c,0x30,
0x2e,0x34,0x35,0x36,0x2c,0x31,0x2e,0x31,0x31,0x32,
0x2c,0x30,0x2e,0x34,0x32,0x39,0x2c,0x31,0x2e,0x36,
0x33,0x39,0x68,0x30,0x2e,0x30,0x30,0x38,0x76,0x37,
0x2e,0x31,0x31,0x63,0x30,0x2c,0x32,0x2e,0x32,0x39,
0x2d,0x31,0x2e,0x38,0x36,0x36,0x2c,0x33,0x2e,0x31,
0x32,0x31,0x2d,0x33,0x2e,0x31,0x32,0x31,0x2c,0x33,
0x2e,0x31,0x32,0x31,0x68,0x2d,0x38,0x2e,0x37,0x33,
0x31,0x0d,0x0a,0x09,0x09,0x09,0x09,0x09,0x76,0x38,
0x2e,0x37,0x33,0x32,0x43,0x32,0x35,0x2e,0x32,0x30,
0x36,0x2c,0x33,0x36,0x2e,0x32,0x32,0x37,0x2c,0x32,
0x33,0x2e,0x33,0x34,0x2c,0x33,0x37,0x2e,0x30,0x35,
0x38,0x2c,0x32,0x32,0x2e,0x30,0x38,0x35,0x2c,0x33,
0x37,0x2e,0x30,0x35,0x38,0x7a,0x20,0x4d,0x33,0x2e,
0x31,0x32,0x31,0x2c,0x31,0x33,0x2e,0x33,0x35,0x33,
0x43,0x32,0x2e,0x37,0x34,0x35,0x2c,0x31,0x33,0x2e,
0x33,0x35,0x39,0x2c,0x31,0x2e,0x35,0x2c,0x31,0x33,
0x2e,0x34,0x39,0x32,0x2c,0x31,0x2e,0x35,0x2c,0x31,
0x34,0x2e,0x39,0x37,0x33,0x76,0x37,0x2e,0x31,0x31,
0x0d,0x0a,0x09,0x09,0x09,0x09,0x09,0x63,0x30,0x2e,
0x30,0x30,0x36,0x2c,0x30,0x2e,0x33,0x37,0x36,0x2c,
0x30,0x2e,0x31,0x33,0x39,0x2c,0x31,0x2e,0x36,0x32,
0x31,0x2c,0x31,0x2e,0x36,0x32,0x31,0x2c,0x31,0x2e,
0x36,0x32,0x31,0x68,0x31,0x30,0x2e,0x32,0x33,0x33,
0x76,0x31,0x30,0x2e,0x32,0x33,0x32,0x63,0x30,0x2e,
0x30,0x30,0x35,0x2c,0x30,0x2e,0x33,0x37,0x36,0x2c,
0x30,0x2e,0x31,0x33,0x39,0x2c,0x31,0x2e,0x36,0x32,
0x31,0x2c,0x31,0x2e,0x36,0x31,0x39,0x2c,0x31,0x2e,
0x36,0x32,0x31,0x68,0x37,0x2e,0x31,0x30,0x38,0x0d,
0x0a,0x09,0x09,0x09,0x09,0x09,0x63,0x30,0x2e,0x33,
0x38,0x34,0x2d,0x30,0x2e,0x30,0x30,0x36,0x2c,0x31,
0x2e,0x36,0x32,0x34,0x2d,0x30,0x2e,0x31,0x34,0x32,
0x2c,0x31,0x2e,0x36,0x32,0x34,0x2d,0x31,0x2e,0x36,
0x32,0x31,0x56,0x32,0x33,0x2e,0x37,0x30,0x35,0x68,
0x31,0x30,0x2e,0x32,0x33,0x31,0x63,0x30,0x2e,0x33,
0x37,0x36,0x2d,0x30,0x2e,0x30,0x30,0x36,0x2c,0x31,
0x2e,0x36,0x32,0x31,0x2d,0x30,0x2e,0x31,0x34,0x2c,
0x31,0x2e,0x36,0x32,0x31,0x2d,0x31,0x2e,0x36,0x32,
0x31,0x76,0x2d,0x37,0x2e,0x31,0x32,0x31,0x0d,0x0a,
0x09,0x09,0x09,0x09,0x09,0x63,0x2d,0x30,0x2e,0x30,
0x30,0x35,0x2d,0x30,0x2e,0x32,0x38,0x37,0x2d,0x30,
0x2e,0x31,0x31,0x32,0x2d,0x31,0x2e,0x36,0x30,0x39,
0x2d,0x31,0x2e,0x36,0x32,0x2d,0x31,0x2e,0x36,0x30,
0x39,0x48,0x32,0x33,0x2e,0x37,0x30,0x37,0x56,0x33,
0x2e,0x31,0x32,0x31,0x43,0x32,0x33,0x2e,0x37,0x30,
0x31,0x2c,0x32,0x2e,0x37,0x34,0x35,0x2c,0x32,0x33,
0x2e,0x35,0x36,0x38,0x2c,0x31,0x2e,0x35,0x2c,0x32,
0x32,0x2e,0x30,0x38,0x36,0x2c,0x31,0x2e,0x35,0x68,
0x2d,0x37,0x2e,0x31,0x31,0x31,0x0d,0x0a,0x09,0x09,
0x09,0x09,0x09,0x63,0x2d,0x30,0x2e,0x33,0x37,0x36,
0x2c,0x30,0x2e,0x30,0x30,0x36,0x2d,0x31,0x2e,0x36,
0x31,0x39,0x2c,0x30,0x2e,0x31,0x33,0x39,0x2d,0x31,
0x2e,0x36,0x31,0x39,0x2c,0x31,0x2e,0x36,0x32,0x31,
0x76,0x31,0x30,0x2e,0x32,0x33,0x32,0x48,0x33,0x2e,
0x31,0x32,0x31,0x7a,0x22,0x2f,0x3e,0x0d,0x0a,0x09,
0x09,0x09,0x3c,0x2f,0x67,0x3e,0x0d,0x0a,0x09,0x09,
0x3c,0x2f,0x67,0x3e,0x0d,0x0a,0x09,0x3c,0x2f,0x67,
0x3e,0x0d,0x0a,0x09,0x3c,0x67,0x3e,0x0d,0x0a,0x09,
0x09,0x3c,0x70,0x61,0x74,0x68,0x20,0x66,0x69,0x6c,
0x6c,0x3d,0x22,0x23,0x46,0x46,0x46,0x46,0x46,0x46,
0x22,0x20,0x64,0x3d,0x22,0x4d,0x31,0x38,0x2e,0x35,
0x33,0x31,0x2c,0x32,0x32,0x2e,0x31,0x38,0x31,0x63,
0x2d,0x32,0x2e,0x30,0x31,0x32,0x2c,0x30,0x2d,0x33,
0x2e,0x36,0x34,0x39,0x2d,0x31,0x2e,0x36,0x33,0x38,
0x2d,0x33,0x2e,0x36,0x34,0x39,0x2d,0x33,0x2e,0x36,
0x35,0x31,0x63,0x30,0x2d,0x32,0x2e,0x30,0x31,0x33,
0x2c,0x31,0x2e,0x36,0x33,0x37,0x2d,0x33,0x2e,0x36,
0x35,0x2c,0x33,0x2e,0x36,0x34,0x39,0x2d,0x33,0x2e,
0x36,0x35,0x0d,0x0a,0x09,0x09,0x09,0x63,0x32,0x2e,
0x30,0x31,0x33,0x2c,0x30,0x2c,0x33,0x2e,0x36,0x35,
0x2c,0x31,0x2e,0x36,0x33,0x38,0x2c,0x33,0x2e,0x36,
0x35,0x2c,0x33,0x2e,0x36,0x35,0x43,0x32,0x32,0x2e,
0x31,0x38,0x31,0x2c,0x32,0x30,0x2e,0x35,0x34,0x34,
0x2c,0x32,0x30,0x2e,0x35,0x34,0x33,0x2c,0x32,0x32,
0x2e,0x31,0x38,0x31,0x2c,0x31,0x38,0x2e,0x35,0x33,
0x31,0x2c,0x32,0x32,0x2e,0x31,0x38,0x31,0x7a,0x20,
0x4d,0x31,0x38,0x2e,0x35,0x33,0x31,0x2c,0x31,0x36,
0x2e,0x33,0x38,0x63,0x2d,0x31,0x2e,0x31,0x38,0x35,
0x2c,0x30,0x2d,0x32,0x2e,0x31,0x34,0x39,0x2c,0x30,
0x2e,0x39,0x36,0x35,0x2d,0x32,0x2e,0x31,0x34,0x39,
0x2c,0x32,0x2e,0x31,0x35,0x0d,0x0a,0x09,0x09,0x09,
0x63,0x30,0x2c,0x31,0x2e,0x31,0x38,0x37,0x2c,0x30,
0x2e,0x39,0x36,0x34,0x2c,0x32,0x2e,0x31,0x35,0x31,
0x2c,0x32,0x2e,0x31,0x34,0x39,0x2c,0x32,0x2e,0x31,
0x35,0x31,0x63,0x31,0x2e,0x31,0x38,0x36,0x2c,0x30,
0x2c,0x32,0x2e,0x31,0x35,0x2d,0x30,0x2e,0x39,0x36,
0x35,0x2c,0x32,0x2e,0x31,0x35,0x2d,0x32,0x2e,0x31,
0x35,0x31,0x43,0x32,0x30,0x2e,0x36,0x38,0x31,0x2c,
0x31,0x37,0x2e,0x33,0x34,0x34,0x2c,0x31,0x39,0x2e,
0x37,0x31,0x36,0x2c,0x31,0x36,0x2e,0x33,0x38,0x2c,
0x31,0x38,0x2e,0x35,0x33,0x31,0x2c,0x31,0x36,0x2e,
0x33,0x38,0x7a,0x22,0x2f,0x3e,0x0d,0x0a,0x09,0x3c,
0x2f,0x67,0x3e,0x0d,0x0a,0x09,0x3c,0x67,0x3e,0x0d,
0x0a,0x09,0x09,0x3c,0x70,0x61,0x74,0x68,0x20,0x66,
0x69,0x6c,0x6c,0x3d,0x22,0x23,0x46,0x46,0x46,0x46,
0x46,0x46,0x22,0x20,0x64,0x3d,0x22,0x4d,0x31,0x38,
0x2e,0x35,0x33,0x2c,0x33,0x2e,0x31,0x38,0x33,0x6c,
0x2d,0x33,0x2e,0x30,0x30,0x35,0x2c,0x34,0x2e,0x36,
0x38,0x34,0x68,0x36,0x2e,0x30,0x31,0x32,0x4c,0x31,
0x38,0x2e,0x35,0x33,0x2c,0x33,0x2e,0x31,0x38,0x33,
0x7a,0x22,0x2f,0x3e,0x0d,0x0a,0x09,0x09,0x3c,0x70,
0x61,0x74,0x68,0x20,0x66,0x69,0x6c,0x6c,0x3d,0x22,
0x23,0x46,0x46,0x46,0x46,0x46,0x46,0x22,0x20,0x64,
0x3d,0x22,0x4d,0x32,0x31,0x2e,0x35,0x33,0x36,0x2c,
0x38,0x2e,0x36,0x31,0x37,0x68,0x2d,0x36,0x2e,0x30,
0x31,0x32,0x63,0x2d,0x30,0x2e,0x32,0x37,0x34,0x2c,
0x30,0x2d,0x30,0x2e,0x35,0x32,0x36,0x2d,0x30,0x2e,
0x31,0x35,0x2d,0x30,0x2e,0x36,0x35,0x38,0x2d,0x30,
0x2e,0x33,0x39,0x63,0x2d,0x30,0x2e,0x31,0x33,0x31,
0x2d,0x30,0x2e,0x32,0x34,0x31,0x2d,0x30,0x2e,0x31,
0x32,0x31,0x2d,0x30,0x2e,0x35,0x33,0x34,0x2c,0x30,
0x2e,0x30,0x32,0x37,0x2d,0x30,0x2e,0x37,0x36,0x35,
0x6c,0x33,0x2e,0x30,0x30,0x35,0x2d,0x34,0x2e,0x36,
0x38,0x34,0x0d,0x0a,0x09,0x09,0x09,0x63,0x30,0x2e,
0x32,0x37,0x36,0x2d,0x30,0x2e,0x34,0x33,0x31,0x2c,
0x30,0x2e,0x39,0x38,0x37,0x2d,0x30,0x2e,0x34,0x33,
0x2c,0x31,0x2e,0x32,0x36,0x32,0x2c,0x30,0x6c,0x33,
0x2e,0x30,0x30,0x37,0x2c,0x34,0x2e,0x36,0x38,0x34,
0x63,0x30,0x2e,0x31,0x34,0x38,0x2c,0x30,0x2e,0x32,
0x33,0x31,0x2c,0x30,0x2e,0x31,0x35,0x39,0x2c,0x30,
0x2e,0x35,0x32,0x34,0x2c,0x30,0x2e,0x30,0x32,0x37,
0x2c,0x30,0x2e,0x37,0x36,0x35,0x43,0x32,0x32,0x2e,
0x30,0x36,0x33,0x2c,0x38,0x2e,0x34,0x36,0x37,0x2c,
0x32,0x31,0x2e,0x38,0x31,0x31,0x2c,0x38,0x2e,0x36,
0x31,0x37,0x2c,0x32,0x31,0x2e,0x35,0x33,0x36,0x2c,
0x38,0x2e,0x36,0x31,0x37,0x7a,0x0d,0x0a,0x09,0x09,
0x09,0x20,0x4d,0x31,0x36,0x2e,0x38,0x39,0x37,0x2c,
0x37,0x2e,0x31,0x31,0x37,0x68,0x33,0x2e,0x32,0x36,
0x37,0x4c,0x31,0x38,0x2e,0x35,0x33,0x2c,0x34,0x2e,
0x35,0x37,0x32,0x4c,0x31,0x36,0x2e,0x38,0x39,0x37,
0x2c,0x37,0x2e,0x31,0x31,0x37,0x7a,0x22,0x2f,0x3e,
0x0d,0x0a,0x09,0x3c,0x2f,0x67,0x3e,0x0d,0x0a,0x09,
0x3c,0x67,0x3e,0x0d,0x0a,0x09,0x09,0x3c,0x70,0x61,
0x74,0x68,0x20,0x66,0x69,0x6c,0x6c,0x3d,0x22,0x23,
0x46,0x46,0x46,0x46,0x46,0x46,0x22,0x20,0x64,0x3d,
0x22,0x4d,0x33,0x2e,0x31,0x32,0x35,0x2c,0x31,0x38,
0x2e,0x35,0x33,0x6c,0x34,0x2e,0x36,0x38,0x34,0x2c,
0x33,0x2e,0x30,0x30,0x34,0x76,0x2d,0x36,0x2e,0x30,
0x31,0x4c,0x33,0x2e,0x31,0x32,0x35,0x2c,0x31,0x38,
0x2e,0x35,0x33,0x7a,0x22,0x2f,0x3e,0x0d,0x0a,0x09,
0x09,0x3c,0x70,0x61,0x74,0x68,0x20,0x66,0x69,0x6c,
0x6c,0x3d,0x22,0x23,0x46,0x46,0x46,0x46,0x46,0x46,
0x22,0x20,0x64,0x3d,0x22,0x4d,0x37,0x2e,0x38,0x30,
0x39,0x2c,0x32,0x32,0x2e,0x32,0x38,0x34,0x63,0x2d,
0x30,0x2e,0x31,0x34,0x31,0x2c,0x30,0x2d,0x30,0x2e,
0x32,0x38,0x32,0x2d,0x30,0x2e,0x30,0x34,0x2d,0x30,
0x2e,0x34,0x30,0x35,0x2d,0x30,0x2e,0x31,0x31,0x39,
0x4c,0x32,0x2e,0x37,0x32,0x2c,0x31,0x39,0x2e,0x31,
0x36,0x31,0x63,0x2d,0x30,0x2e,0x32,0x31,0x35,0x2d,
0x30,0x2e,0x31,0x33,0x37,0x2d,0x30,0x2e,0x33,0x34,
0x35,0x2d,0x30,0x2e,0x33,0x37,0x35,0x2d,0x30,0x2e,
0x33,0x34,0x35,0x2d,0x30,0x2e,0x36,0x33,0x31,0x0d,
0x0a,0x09,0x09,0x09,0x73,0x30,0x2e,0x31,0x33,0x2d,
0x30,0x2e,0x34,0x39,0x33,0x2c,0x30,0x2e,0x33,0x34,
0x35,0x2d,0x30,0x2e,0x36,0x33,0x31,0x6c,0x34,0x2e,
0x36,0x38,0x34,0x2d,0x33,0x2e,0x30,0x30,0x36,0x63,
0x30,0x2e,0x32,0x33,0x2d,0x30,0x2e,0x31,0x34,0x37,
0x2c,0x30,0x2e,0x35,0x32,0x34,0x2d,0x30,0x2e,0x31,
0x35,0x39,0x2c,0x30,0x2e,0x37,0x36,0x35,0x2d,0x30,
0x2e,0x30,0x32,0x37,0x63,0x30,0x2e,0x32,0x34,0x2c,
0x30,0x2e,0x31,0x33,0x31,0x2c,0x30,0x2e,0x33,0x39,
0x2c,0x30,0x2e,0x33,0x38,0x34,0x2c,0x30,0x2e,0x33,
0x39,0x2c,0x30,0x2e,0x36,0x35,0x38,0x76,0x36,0x2e,
0x30,0x31,0x0d,0x0a,0x09,0x09,0x09,0x63,0x30,0x2c,
0x30,0x2e,0x32,0x37,0x34,0x2d,0x30,0x2e,0x31,0x34,
0x39,0x2c,0x30,0x2e,0x35,0x32,0x36,0x2d,0x30,0x2e,
0x33,0x39,0x2c,0x30,0x2e,0x36,0x35,0x38,0x43,0x38,
0x2e,0x30,0x35,0x36,0x2c,0x32,0x32,0x2e,0x32,0x35,
0x34,0x2c,0x37,0x2e,0x39,0x33,0x32,0x2c,0x32,0x32,
0x2e,0x32,0x38,0x34,0x2c,0x37,0x2e,0x38,0x30,0x39,
0x2c,0x32,0x32,0x2e,0x32,0x38,0x34,0x7a,0x20,0x4d,
0x34,0x2e,0x35,0x31,0x34,0x2c,0x31,0x38,0x2e,0x35,
0x33,0x6c,0x32,0x2e,0x35,0x34,0x35,0x2c,0x31,0x2e,
0x36,0x33,0x32,0x76,0x2d,0x33,0x2e,0x32,0x36,0x35,
0x4c,0x34,0x2e,0x35,0x31,0x34,0x2c,0x31,0x38,0x2e,
0x35,0x33,0x7a,0x22,0x2f,0x3e,0x0d,0x0a,0x09,0x3c,
0x2f,0x67,0x3e,0x0d,0x0a,0x09,0x3c,0x67,0x3e,0x0d,
0x0a,0x09,0x09,0x3c,0x70,0x61,0x74,0x68,0x20,0x66,
0x69,0x6c,0x6c,0x3d,0x22,0x23,0x46,0x46,0x46,0x46,
0x46,0x46,0x22,0x20,0x64,0x3d,0x22,0x4d,0x33,0x33,
0x2e,0x38,0x37,0x39,0x2c,0x31,0x38,0x2e,0x35,0x32,
0x39,0x6c,0x2d,0x34,0x2e,0x36,0x38,0x35,0x2d,0x33,
0x2e,0x30,0x30,0x35,0x76,0x36,0x2e,0x30,0x31,0x4c,
0x33,0x33,0x2e,0x38,0x37,0x39,0x2c,0x31,0x38,0x2e,
0x35,0x32,0x39,0x7a,0x22,0x2f,0x3e,0x0d,0x0a,0x09,
0x09,0x3c,0x70,0x61,0x74,0x68,0x20,0x66,0x69,0x6c,
0x6c,0x3d,0x22,0x23,0x46,0x46,0x46,0x46,0x46,0x46,
0x22,0x20,0x64,0x3d,0x22,0x4d,0x32,0x39,0x2e,0x31,
0x39,0x35,0x2c,0x32,0x32,0x2e,0x32,0x38,0x34,0x63,
0x2d,0x30,0x2e,0x31,0x32,0x34,0x2c,0x30,0x2d,0x30,
0x2e,0x32,0x34,0x37,0x2d,0x30,0x2e,0x30,0x33,0x2d,
0x30,0x2e,0x33,0x35,0x39,0x2d,0x30,0x2e,0x30,0x39,
0x32,0x63,0x2d,0x30,0x2e,0x32,0x34,0x31,0x2d,0x30,
0x2e,0x31,0x33,0x32,0x2d,0x30,0x2e,0x33,0x39,0x31,
0x2d,0x30,0x2e,0x33,0x38,0x34,0x2d,0x30,0x2e,0x33,
0x39,0x31,0x2d,0x30,0x2e,0x36,0x35,0x38,0x76,0x2d,
0x36,0x2e,0x30,0x31,0x0d,0x0a,0x09,0x09,0x09,0x63,
0x30,0x2d,0x30,0x2e,0x32,0x37,0x34,0x2c,0x30,0x2e,
0x31,0x34,0x39,0x2d,0x30,0x2e,0x35,0x32,0x36,0x2c,
0x30,0x2e,0x33,0x39,0x31,0x2d,0x30,0x2e,0x36,0x35,
0x38,0x63,0x30,0x2e,0x32,0x33,0x39,0x2d,0x30,0x2e,
0x31,0x33,0x32,0x2c,0x30,0x2e,0x35,0x33,0x32,0x2d,
0x30,0x2e,0x31,0x32,0x33,0x2c,0x30,0x2e,0x37,0x36,
0x35,0x2c,0x30,0x2e,0x30,0x32,0x37,0x6c,0x34,0x2e,
0x36,0x38,0x35,0x2c,0x33,0x2e,0x30,0x30,0x35,0x63,
0x30,0x2e,0x32,0x31,0x35,0x2c,0x30,0x2e,0x31,0x33,
0x38,0x2c,0x30,0x2e,0x33,0x34,0x35,0x2c,0x30,0x2e,
0x33,0x37,0x36,0x2c,0x30,0x2e,0x33,0x34,0x35,0x2c,
0x30,0x2e,0x36,0x33,0x31,0x0d,0x0a,0x09,0x09,0x09,
0x73,0x2d,0x30,0x2e,0x31,0x33,0x2c,0x30,0x2e,0x34,
0x39,0x33,0x2d,0x30,0x2e,0x33,0x34,0x35,0x2c,0x30,
0x2e,0x36,0x33,0x31,0x4c,0x32,0x39,0x2e,0x36,0x2c,
0x32,0x32,0x2e,0x31,0x36,0x35,0x43,0x32,0x39,0x2e,
0x34,0x37,0x37,0x2c,0x32,0x32,0x2e,0x32,0x34,0x34,
0x2c,0x32,0x39,0x2e,0x33,0x33,0x35,0x2c,0x32,0x32,
0x2e,0x32,0x38,0x34,0x2c,0x32,0x39,0x2e,0x31,0x39,
0x35,0x2c,0x32,0x32,0x2e,0x32,0x38,0x34,0x7a,0x20,
0x4d,0x32,0x39,0x2e,0x39,0x34,0x35,0x2c,0x31,0x36,
0x2e,0x38,0x39,0x36,0x76,0x33,0x2e,0x32,0x36,0x36,
0x6c,0x32,0x2e,0x35,0x34,0x36,0x2d,0x31,0x2e,0x36,
0x33,0x33,0x0d,0x0a,0x09,0x09,0x09,0x4c,0x32,0x39,
0x2e,0x39,0x34,0x35,0x2c,0x31,0x36,0x2e,0x38,0x39,
0x36,0x7a,0x22,0x2f,0x3e,0x0d,0x0a,0x09,0x3c,0x2f,
0x67,0x3e,0x0d,0x0a,0x09,0x3c,0x67,0x3e,0x0d,0x0a,
0x09,0x09,0x3c,0x70,0x61,0x74,0x68,0x20,0x66,0x69,
0x6c,0x6c,0x3d,0x22,0x23,0x46,0x46,0x46,0x46,0x46,
0x46,0x22,0x20,0x64,0x3d,0x22,0x4d,0x31,0x38,0x2e,
0x35,0x33,0x2c,0x33,0x33,0x2e,0x38,0x37,0x36,0x6c,
0x33,0x2e,0x30,0x30,0x37,0x2d,0x34,0x2e,0x36,0x38,
0x34,0x68,0x2d,0x36,0x2e,0x30,0x31,0x32,0x4c,0x31,
0x38,0x2e,0x35,0x33,0x2c,0x33,0x33,0x2e,0x38,0x37,
0x36,0x7a,0x22,0x2f,0x3e,0x0d,0x0a,0x09,0x09,0x3c,
0x70,0x61,0x74,0x68,0x20,0x66,0x69,0x6c,0x6c,0x3d,
0x22,0x23,0x46,0x46,0x46,0x46,0x46,0x46,0x22,0x20,
0x64,0x3d,0x22,0x4d,0x31,0x38,0x2e,0x35,0x33,0x2c,
0x33,0x34,0x2e,0x36,0x32,0x36,0x4c,0x31,0x38,0x2e,
0x35,0x33,0x2c,0x33,0x34,0x2e,0x36,0x32,0x36,0x63,
0x2d,0x30,0x2e,0x32,0x35,0x35,0x2c,0x30,0x2d,0x30,
0x2e,0x34,0x39,0x33,0x2d,0x30,0x2e,0x31,0x33,0x2d,
0x30,0x2e,0x36,0x33,0x31,0x2d,0x30,0x2e,0x33,0x34,
0x35,0x6c,0x2d,0x33,0x2e,0x30,0x30,0x35,0x2d,0x34,
0x2e,0x36,0x38,0x34,0x0d,0x0a,0x09,0x09,0x09,0x63,
0x2d,0x30,0x2e,0x31,0x34,0x38,0x2d,0x30,0x2e,0x32,
0x33,0x31,0x2d,0x30,0x2e,0x31,0x35,0x38,0x2d,0x30,
0x2e,0x35,0x32,0x34,0x2d,0x30,0x2e,0x30,0x32,0x37,
0x2d,0x30,0x2e,0x37,0x36,0x35,0x63,0x30,0x2e,0x31,
0x33,0x32,0x2d,0x30,0x2e,0x32,0x34,0x31,0x2c,0x30,
0x2e,0x33,0x38,0x34,0x2d,0x30,0x2e,0x33,0x39,0x31,
0x2c,0x30,0x2e,0x36,0x35,0x38,0x2d,0x30,0x2e,0x33,
0x39,0x31,0x68,0x36,0x2e,0x30,0x31,0x32,0x63,0x30,
0x2e,0x32,0x37,0x34,0x2c,0x30,0x2c,0x30,0x2e,0x35,
0x32,0x36,0x2c,0x30,0x2e,0x31,0x34,0x39,0x2c,0x30,
0x2e,0x36,0x35,0x38,0x2c,0x30,0x2e,0x33,0x39,0x31,
0x0d,0x0a,0x09,0x09,0x09,0x63,0x30,0x2e,0x31,0x33,
0x32,0x2c,0x30,0x2e,0x32,0x34,0x2c,0x30,0x2e,0x31,
0x32,0x31,0x2c,0x30,0x2e,0x35,0x33,0x34,0x2d,0x30,
0x2e,0x30,0x32,0x37,0x2c,0x30,0x2e,0x37,0x36,0x35,
0x6c,0x2d,0x33,0x2e,0x30,0x30,0x37,0x2c,0x34,0x2e,
0x36,0x38,0x34,0x43,0x31,0x39,0x2e,0x30,0x32,0x33,
0x2c,0x33,0x34,0x2e,0x34,0x39,0x36,0x2c,0x31,0x38,
0x2e,0x37,0x38,0x35,0x2c,0x33,0x34,0x2e,0x36,0x32,
0x36,0x2c,0x31,0x38,0x2e,0x35,0x33,0x2c,0x33,0x34,
0x2e,0x36,0x32,0x36,0x7a,0x20,0x4d,0x31,0x36,0x2e,
0x38,0x39,0x37,0x2c,0x32,0x39,0x2e,0x39,0x34,0x32,
0x6c,0x31,0x2e,0x36,0x33,0x33,0x2c,0x32,0x2e,0x35,
0x34,0x35,0x0d,0x0a,0x09,0x09,0x09,0x6c,0x31,0x2e,
0x36,0x33,0x34,0x2d,0x32,0x2e,0x35,0x34,0x35,0x48,
0x31,0x36,0x2e,0x38,0x39,0x37,0x7a,0x22,0x2f,0x3e,
0x0d,0x0a,0x09,0x3c,0x2f,0x67,0x3e,0x0d,0x0a,0x3c,
0x2f,0x67,0x3e,0x0d,0x0a,0x3c,0x2f,0x73,0x76,0x67,
0x3e,0x0d,0x0a
};

View file

@ -0,0 +1,329 @@
//this file was auto-generated from "dpad_down.svg" by res2h
#include "../Resources.h"
const size_t help_dpad_down_svg_size = 3215;
const unsigned char help_dpad_down_svg_data[3215] = {
0x3c,0x3f,0x78,0x6d,0x6c,0x20,0x76,0x65,0x72,0x73,
0x69,0x6f,0x6e,0x3d,0x22,0x31,0x2e,0x30,0x22,0x20,
0x65,0x6e,0x63,0x6f,0x64,0x69,0x6e,0x67,0x3d,0x22,
0x75,0x74,0x66,0x2d,0x38,0x22,0x3f,0x3e,0x0d,0x0a,
0x3c,0x21,0x2d,0x2d,0x20,0x47,0x65,0x6e,0x65,0x72,
0x61,0x74,0x6f,0x72,0x3a,0x20,0x41,0x64,0x6f,0x62,
0x65,0x20,0x49,0x6c,0x6c,0x75,0x73,0x74,0x72,0x61,
0x74,0x6f,0x72,0x20,0x31,0x36,0x2e,0x30,0x2e,0x33,
0x2c,0x20,0x53,0x56,0x47,0x20,0x45,0x78,0x70,0x6f,
0x72,0x74,0x20,0x50,0x6c,0x75,0x67,0x2d,0x49,0x6e,
0x20,0x2e,0x20,0x53,0x56,0x47,0x20,0x56,0x65,0x72,
0x73,0x69,0x6f,0x6e,0x3a,0x20,0x36,0x2e,0x30,0x30,
0x20,0x42,0x75,0x69,0x6c,0x64,0x20,0x30,0x29,0x20,
0x20,0x2d,0x2d,0x3e,0x0d,0x0a,0x3c,0x21,0x44,0x4f,
0x43,0x54,0x59,0x50,0x45,0x20,0x73,0x76,0x67,0x20,
0x50,0x55,0x42,0x4c,0x49,0x43,0x20,0x22,0x2d,0x2f,
0x2f,0x57,0x33,0x43,0x2f,0x2f,0x44,0x54,0x44,0x20,
0x53,0x56,0x47,0x20,0x31,0x2e,0x31,0x2f,0x2f,0x45,
0x4e,0x22,0x20,0x22,0x68,0x74,0x74,0x70,0x3a,0x2f,
0x2f,0x77,0x77,0x77,0x2e,0x77,0x33,0x2e,0x6f,0x72,
0x67,0x2f,0x47,0x72,0x61,0x70,0x68,0x69,0x63,0x73,
0x2f,0x53,0x56,0x47,0x2f,0x31,0x2e,0x31,0x2f,0x44,
0x54,0x44,0x2f,0x73,0x76,0x67,0x31,0x31,0x2e,0x64,
0x74,0x64,0x22,0x3e,0x0d,0x0a,0x3c,0x73,0x76,0x67,
0x20,0x76,0x65,0x72,0x73,0x69,0x6f,0x6e,0x3d,0x22,
0x31,0x2e,0x31,0x22,0x20,0x69,0x64,0x3d,0x22,0x5f,
0x78,0x33,0x30,0x5f,0x22,0x20,0x78,0x6d,0x6c,0x6e,
0x73,0x3d,0x22,0x68,0x74,0x74,0x70,0x3a,0x2f,0x2f,
0x77,0x77,0x77,0x2e,0x77,0x33,0x2e,0x6f,0x72,0x67,
0x2f,0x32,0x30,0x30,0x30,0x2f,0x73,0x76,0x67,0x22,
0x20,0x78,0x6d,0x6c,0x6e,0x73,0x3a,0x78,0x6c,0x69,
0x6e,0x6b,0x3d,0x22,0x68,0x74,0x74,0x70,0x3a,0x2f,
0x2f,0x77,0x77,0x77,0x2e,0x77,0x33,0x2e,0x6f,0x72,
0x67,0x2f,0x31,0x39,0x39,0x39,0x2f,0x78,0x6c,0x69,
0x6e,0x6b,0x22,0x20,0x78,0x3d,0x22,0x30,0x70,0x78,
0x22,0x20,0x79,0x3d,0x22,0x30,0x70,0x78,0x22,0x0d,
0x0a,0x09,0x20,0x77,0x69,0x64,0x74,0x68,0x3d,0x22,
0x33,0x37,0x2e,0x30,0x36,0x31,0x70,0x78,0x22,0x20,
0x68,0x65,0x69,0x67,0x68,0x74,0x3d,0x22,0x33,0x37,
0x2e,0x30,0x36,0x31,0x70,0x78,0x22,0x20,0x76,0x69,
0x65,0x77,0x42,0x6f,0x78,0x3d,0x22,0x30,0x20,0x30,
0x20,0x33,0x37,0x2e,0x30,0x36,0x31,0x20,0x33,0x37,
0x2e,0x30,0x36,0x31,0x22,0x20,0x65,0x6e,0x61,0x62,
0x6c,0x65,0x2d,0x62,0x61,0x63,0x6b,0x67,0x72,0x6f,
0x75,0x6e,0x64,0x3d,0x22,0x6e,0x65,0x77,0x20,0x30,
0x20,0x30,0x20,0x33,0x37,0x2e,0x30,0x36,0x31,0x20,
0x33,0x37,0x2e,0x30,0x36,0x31,0x22,0x20,0x78,0x6d,
0x6c,0x3a,0x73,0x70,0x61,0x63,0x65,0x3d,0x22,0x70,
0x72,0x65,0x73,0x65,0x72,0x76,0x65,0x22,0x3e,0x0d,
0x0a,0x3c,0x67,0x3e,0x0d,0x0a,0x09,0x3c,0x67,0x3e,
0x0d,0x0a,0x09,0x09,0x3c,0x67,0x3e,0x0d,0x0a,0x09,
0x09,0x09,0x3c,0x70,0x61,0x74,0x68,0x20,0x66,0x69,
0x6c,0x6c,0x3d,0x22,0x23,0x46,0x46,0x46,0x46,0x46,
0x46,0x22,0x20,0x64,0x3d,0x22,0x4d,0x32,0x32,0x2e,
0x30,0x38,0x36,0x2c,0x33,0x37,0x2e,0x30,0x36,0x68,
0x2d,0x37,0x2e,0x31,0x31,0x31,0x63,0x2d,0x32,0x2e,
0x32,0x38,0x39,0x2c,0x30,0x2d,0x33,0x2e,0x31,0x31,
0x39,0x2d,0x31,0x2e,0x38,0x36,0x36,0x2d,0x33,0x2e,
0x31,0x31,0x39,0x2d,0x33,0x2e,0x31,0x32,0x31,0x76,
0x2d,0x38,0x2e,0x37,0x33,0x32,0x48,0x33,0x2e,0x31,
0x32,0x31,0x43,0x30,0x2e,0x38,0x33,0x31,0x2c,0x32,
0x35,0x2e,0x32,0x30,0x36,0x2c,0x30,0x2c,0x32,0x33,
0x2e,0x33,0x34,0x2c,0x30,0x2c,0x32,0x32,0x2e,0x30,
0x38,0x35,0x0d,0x0a,0x09,0x09,0x09,0x09,0x76,0x2d,
0x37,0x2e,0x31,0x31,0x63,0x30,0x2d,0x32,0x2e,0x32,
0x38,0x39,0x2c,0x31,0x2e,0x38,0x36,0x37,0x2d,0x33,
0x2e,0x31,0x32,0x2c,0x33,0x2e,0x31,0x32,0x31,0x2d,
0x33,0x2e,0x31,0x32,0x68,0x38,0x2e,0x37,0x33,0x33,
0x56,0x33,0x2e,0x31,0x32,0x31,0x43,0x31,0x31,0x2e,
0x38,0x35,0x35,0x2c,0x30,0x2e,0x38,0x33,0x31,0x2c,
0x31,0x33,0x2e,0x37,0x32,0x2c,0x30,0x2c,0x31,0x34,
0x2e,0x39,0x37,0x34,0x2c,0x30,0x68,0x37,0x2e,0x31,
0x31,0x31,0x63,0x32,0x2e,0x32,0x39,0x2c,0x30,0x2c,
0x33,0x2e,0x31,0x32,0x31,0x2c,0x31,0x2e,0x38,0x36,
0x37,0x2c,0x33,0x2e,0x31,0x32,0x31,0x2c,0x33,0x2e,
0x31,0x32,0x31,0x76,0x38,0x2e,0x37,0x33,0x32,0x0d,
0x0a,0x09,0x09,0x09,0x09,0x68,0x38,0x2e,0x37,0x33,
0x31,0x63,0x32,0x2e,0x32,0x39,0x2c,0x30,0x2c,0x33,
0x2e,0x31,0x32,0x31,0x2c,0x31,0x2e,0x38,0x36,0x35,
0x2c,0x33,0x2e,0x31,0x32,0x31,0x2c,0x33,0x2e,0x31,
0x32,0x76,0x37,0x2e,0x31,0x31,0x63,0x30,0x2c,0x32,
0x2e,0x32,0x39,0x2d,0x31,0x2e,0x38,0x36,0x36,0x2c,
0x33,0x2e,0x31,0x32,0x31,0x2d,0x33,0x2e,0x31,0x32,
0x31,0x2c,0x33,0x2e,0x31,0x32,0x31,0x68,0x2d,0x38,
0x2e,0x37,0x33,0x31,0x76,0x38,0x2e,0x37,0x33,0x32,
0x0d,0x0a,0x09,0x09,0x09,0x09,0x43,0x32,0x35,0x2e,
0x32,0x30,0x37,0x2c,0x33,0x36,0x2e,0x32,0x32,0x39,
0x2c,0x32,0x33,0x2e,0x33,0x34,0x31,0x2c,0x33,0x37,
0x2e,0x30,0x36,0x2c,0x32,0x32,0x2e,0x30,0x38,0x36,
0x2c,0x33,0x37,0x2e,0x30,0x36,0x7a,0x20,0x4d,0x33,
0x2e,0x31,0x32,0x31,0x2c,0x31,0x33,0x2e,0x33,0x35,
0x34,0x43,0x32,0x2e,0x37,0x34,0x35,0x2c,0x31,0x33,
0x2e,0x33,0x35,0x39,0x2c,0x31,0x2e,0x35,0x2c,0x31,
0x33,0x2e,0x34,0x39,0x33,0x2c,0x31,0x2e,0x35,0x2c,
0x31,0x34,0x2e,0x39,0x37,0x34,0x76,0x37,0x2e,0x31,
0x31,0x0d,0x0a,0x09,0x09,0x09,0x09,0x63,0x30,0x2e,
0x30,0x30,0x36,0x2c,0x30,0x2e,0x33,0x37,0x36,0x2c,
0x30,0x2e,0x31,0x33,0x39,0x2c,0x31,0x2e,0x36,0x32,
0x31,0x2c,0x31,0x2e,0x36,0x32,0x31,0x2c,0x31,0x2e,
0x36,0x32,0x31,0x68,0x31,0x30,0x2e,0x32,0x33,0x33,
0x76,0x31,0x30,0x2e,0x32,0x33,0x32,0x63,0x30,0x2e,
0x30,0x30,0x35,0x2c,0x30,0x2e,0x33,0x37,0x36,0x2c,
0x30,0x2e,0x31,0x34,0x2c,0x31,0x2e,0x36,0x32,0x31,
0x2c,0x31,0x2e,0x36,0x31,0x39,0x2c,0x31,0x2e,0x36,
0x32,0x31,0x68,0x37,0x2e,0x31,0x30,0x38,0x0d,0x0a,
0x09,0x09,0x09,0x09,0x63,0x30,0x2e,0x33,0x38,0x34,
0x2d,0x30,0x2e,0x30,0x30,0x37,0x2c,0x31,0x2e,0x36,
0x32,0x34,0x2d,0x30,0x2e,0x31,0x34,0x33,0x2c,0x31,
0x2e,0x36,0x32,0x34,0x2d,0x31,0x2e,0x36,0x32,0x31,
0x56,0x32,0x33,0x2e,0x37,0x30,0x36,0x68,0x31,0x30,
0x2e,0x32,0x33,0x31,0x63,0x30,0x2e,0x33,0x37,0x36,
0x2d,0x30,0x2e,0x30,0x30,0x36,0x2c,0x31,0x2e,0x36,
0x32,0x31,0x2d,0x30,0x2e,0x31,0x34,0x2c,0x31,0x2e,
0x36,0x32,0x31,0x2d,0x31,0x2e,0x36,0x32,0x31,0x76,
0x2d,0x37,0x2e,0x31,0x31,0x0d,0x0a,0x09,0x09,0x09,
0x09,0x63,0x2d,0x30,0x2e,0x30,0x30,0x36,0x2d,0x30,
0x2e,0x33,0x37,0x36,0x2d,0x30,0x2e,0x31,0x34,0x2d,
0x31,0x2e,0x36,0x32,0x2d,0x31,0x2e,0x36,0x32,0x31,
0x2d,0x31,0x2e,0x36,0x32,0x68,0x2d,0x31,0x30,0x2e,
0x32,0x33,0x56,0x33,0x2e,0x31,0x32,0x31,0x43,0x32,
0x33,0x2e,0x37,0x30,0x31,0x2c,0x32,0x2e,0x37,0x34,
0x35,0x2c,0x32,0x33,0x2e,0x35,0x36,0x37,0x2c,0x31,
0x2e,0x35,0x2c,0x32,0x32,0x2e,0x30,0x38,0x36,0x2c,
0x31,0x2e,0x35,0x68,0x2d,0x37,0x2e,0x31,0x31,0x31,
0x0d,0x0a,0x09,0x09,0x09,0x09,0x63,0x2d,0x30,0x2e,
0x33,0x37,0x36,0x2c,0x30,0x2e,0x30,0x30,0x36,0x2d,
0x31,0x2e,0x36,0x31,0x39,0x2c,0x30,0x2e,0x31,0x34,
0x2d,0x31,0x2e,0x36,0x31,0x39,0x2c,0x31,0x2e,0x36,
0x32,0x31,0x76,0x31,0x30,0x2e,0x32,0x33,0x32,0x4c,
0x33,0x2e,0x31,0x32,0x31,0x2c,0x31,0x33,0x2e,0x33,
0x35,0x34,0x4c,0x33,0x2e,0x31,0x32,0x31,0x2c,0x31,
0x33,0x2e,0x33,0x35,0x34,0x7a,0x22,0x2f,0x3e,0x0d,
0x0a,0x09,0x09,0x3c,0x2f,0x67,0x3e,0x0d,0x0a,0x09,
0x3c,0x2f,0x67,0x3e,0x0d,0x0a,0x09,0x3c,0x67,0x3e,
0x0d,0x0a,0x09,0x09,0x3c,0x70,0x61,0x74,0x68,0x20,
0x66,0x69,0x6c,0x6c,0x3d,0x22,0x23,0x46,0x46,0x46,
0x46,0x46,0x46,0x22,0x20,0x64,0x3d,0x22,0x4d,0x31,
0x38,0x2e,0x35,0x33,0x31,0x2c,0x32,0x32,0x2e,0x31,
0x38,0x31,0x63,0x2d,0x32,0x2e,0x30,0x31,0x33,0x2c,
0x30,0x2d,0x33,0x2e,0x36,0x34,0x39,0x2d,0x31,0x2e,
0x36,0x33,0x39,0x2d,0x33,0x2e,0x36,0x34,0x39,0x2d,
0x33,0x2e,0x36,0x35,0x31,0x73,0x31,0x2e,0x36,0x33,
0x38,0x2d,0x33,0x2e,0x36,0x35,0x2c,0x33,0x2e,0x36,
0x34,0x39,0x2d,0x33,0x2e,0x36,0x35,0x63,0x32,0x2e,
0x30,0x31,0x33,0x2c,0x30,0x2c,0x33,0x2e,0x36,0x35,
0x2c,0x31,0x2e,0x36,0x33,0x39,0x2c,0x33,0x2e,0x36,
0x35,0x2c,0x33,0x2e,0x36,0x35,0x0d,0x0a,0x09,0x09,
0x09,0x43,0x32,0x32,0x2e,0x31,0x38,0x32,0x2c,0x32,
0x30,0x2e,0x35,0x34,0x33,0x2c,0x32,0x30,0x2e,0x35,
0x34,0x34,0x2c,0x32,0x32,0x2e,0x31,0x38,0x31,0x2c,
0x31,0x38,0x2e,0x35,0x33,0x31,0x2c,0x32,0x32,0x2e,
0x31,0x38,0x31,0x7a,0x20,0x4d,0x31,0x38,0x2e,0x35,
0x33,0x31,0x2c,0x31,0x36,0x2e,0x33,0x37,0x39,0x63,
0x2d,0x31,0x2e,0x31,0x38,0x36,0x2c,0x30,0x2d,0x32,
0x2e,0x31,0x34,0x39,0x2c,0x30,0x2e,0x39,0x36,0x35,
0x2d,0x32,0x2e,0x31,0x34,0x39,0x2c,0x32,0x2e,0x31,
0x35,0x73,0x30,0x2e,0x39,0x36,0x35,0x2c,0x32,0x2e,
0x31,0x35,0x31,0x2c,0x32,0x2e,0x31,0x34,0x39,0x2c,
0x32,0x2e,0x31,0x35,0x31,0x0d,0x0a,0x09,0x09,0x09,
0x63,0x31,0x2e,0x31,0x38,0x36,0x2c,0x30,0x2c,0x32,
0x2e,0x31,0x35,0x2d,0x30,0x2e,0x39,0x36,0x36,0x2c,
0x32,0x2e,0x31,0x35,0x2d,0x32,0x2e,0x31,0x35,0x31,
0x43,0x32,0x30,0x2e,0x36,0x38,0x32,0x2c,0x31,0x37,
0x2e,0x33,0x34,0x34,0x2c,0x31,0x39,0x2e,0x37,0x31,
0x37,0x2c,0x31,0x36,0x2e,0x33,0x37,0x39,0x2c,0x31,
0x38,0x2e,0x35,0x33,0x31,0x2c,0x31,0x36,0x2e,0x33,
0x37,0x39,0x7a,0x22,0x2f,0x3e,0x0d,0x0a,0x09,0x3c,
0x2f,0x67,0x3e,0x0d,0x0a,0x09,0x3c,0x67,0x3e,0x0d,
0x0a,0x09,0x09,0x3c,0x70,0x61,0x74,0x68,0x20,0x66,
0x69,0x6c,0x6c,0x3d,0x22,0x23,0x46,0x46,0x46,0x46,
0x46,0x46,0x22,0x20,0x64,0x3d,0x22,0x4d,0x32,0x31,
0x2e,0x35,0x33,0x36,0x2c,0x38,0x2e,0x36,0x31,0x36,
0x68,0x2d,0x36,0x2e,0x30,0x31,0x32,0x63,0x2d,0x30,
0x2e,0x32,0x37,0x33,0x2c,0x30,0x2d,0x30,0x2e,0x35,
0x32,0x35,0x2d,0x30,0x2e,0x31,0x35,0x2d,0x30,0x2e,
0x36,0x35,0x37,0x2d,0x30,0x2e,0x33,0x39,0x63,0x2d,
0x30,0x2e,0x31,0x33,0x32,0x2d,0x30,0x2e,0x32,0x34,
0x31,0x2d,0x30,0x2e,0x31,0x32,0x31,0x2d,0x30,0x2e,
0x35,0x33,0x34,0x2c,0x30,0x2e,0x30,0x32,0x36,0x2d,
0x30,0x2e,0x37,0x36,0x36,0x6c,0x33,0x2e,0x30,0x30,
0x35,0x2d,0x34,0x2e,0x36,0x38,0x34,0x0d,0x0a,0x09,
0x09,0x09,0x63,0x30,0x2e,0x32,0x37,0x36,0x2d,0x30,
0x2e,0x34,0x33,0x31,0x2c,0x30,0x2e,0x39,0x38,0x36,
0x2d,0x30,0x2e,0x34,0x33,0x2c,0x31,0x2e,0x32,0x36,
0x34,0x2c,0x30,0x6c,0x33,0x2e,0x30,0x30,0x35,0x2c,
0x34,0x2e,0x36,0x38,0x34,0x63,0x30,0x2e,0x31,0x34,
0x37,0x2c,0x30,0x2e,0x32,0x33,0x31,0x2c,0x30,0x2e,
0x31,0x35,0x39,0x2c,0x30,0x2e,0x35,0x32,0x34,0x2c,
0x30,0x2e,0x30,0x32,0x36,0x2c,0x30,0x2e,0x37,0x36,
0x36,0x43,0x32,0x32,0x2e,0x30,0x36,0x33,0x2c,0x38,
0x2e,0x34,0x36,0x36,0x2c,0x32,0x31,0x2e,0x38,0x31,
0x31,0x2c,0x38,0x2e,0x36,0x31,0x36,0x2c,0x32,0x31,
0x2e,0x35,0x33,0x36,0x2c,0x38,0x2e,0x36,0x31,0x36,
0x7a,0x0d,0x0a,0x09,0x09,0x09,0x20,0x4d,0x31,0x36,
0x2e,0x38,0x39,0x37,0x2c,0x37,0x2e,0x31,0x31,0x36,
0x68,0x33,0x2e,0x32,0x36,0x38,0x4c,0x31,0x38,0x2e,
0x35,0x33,0x2c,0x34,0x2e,0x35,0x37,0x31,0x4c,0x31,
0x36,0x2e,0x38,0x39,0x37,0x2c,0x37,0x2e,0x31,0x31,
0x36,0x7a,0x22,0x2f,0x3e,0x0d,0x0a,0x09,0x3c,0x2f,
0x67,0x3e,0x0d,0x0a,0x09,0x3c,0x67,0x3e,0x0d,0x0a,
0x09,0x09,0x3c,0x70,0x61,0x74,0x68,0x20,0x66,0x69,
0x6c,0x6c,0x3d,0x22,0x23,0x46,0x46,0x46,0x46,0x46,
0x46,0x22,0x20,0x64,0x3d,0x22,0x4d,0x37,0x2e,0x38,
0x30,0x39,0x2c,0x32,0x32,0x2e,0x32,0x38,0x34,0x63,
0x2d,0x30,0x2e,0x31,0x34,0x31,0x2c,0x30,0x2d,0x30,
0x2e,0x32,0x38,0x32,0x2d,0x30,0x2e,0x30,0x34,0x2d,
0x30,0x2e,0x34,0x30,0x35,0x2d,0x30,0x2e,0x31,0x31,
0x39,0x4c,0x32,0x2e,0x37,0x32,0x2c,0x31,0x39,0x2e,
0x31,0x36,0x32,0x63,0x2d,0x30,0x2e,0x32,0x31,0x35,
0x2d,0x30,0x2e,0x31,0x33,0x38,0x2d,0x30,0x2e,0x33,
0x34,0x35,0x2d,0x30,0x2e,0x33,0x37,0x36,0x2d,0x30,
0x2e,0x33,0x34,0x35,0x2d,0x30,0x2e,0x36,0x33,0x31,
0x0d,0x0a,0x09,0x09,0x09,0x73,0x30,0x2e,0x31,0x33,
0x2d,0x30,0x2e,0x34,0x39,0x33,0x2c,0x30,0x2e,0x33,
0x34,0x35,0x2d,0x30,0x2e,0x36,0x33,0x31,0x6c,0x34,
0x2e,0x36,0x38,0x34,0x2d,0x33,0x2e,0x30,0x30,0x36,
0x63,0x30,0x2e,0x32,0x33,0x2d,0x30,0x2e,0x31,0x34,
0x38,0x2c,0x30,0x2e,0x35,0x32,0x34,0x2d,0x30,0x2e,
0x31,0x35,0x38,0x2c,0x30,0x2e,0x37,0x36,0x36,0x2d,
0x30,0x2e,0x30,0x32,0x37,0x63,0x30,0x2e,0x32,0x34,
0x2c,0x30,0x2e,0x31,0x33,0x31,0x2c,0x30,0x2e,0x33,
0x39,0x2c,0x30,0x2e,0x33,0x38,0x34,0x2c,0x30,0x2e,
0x33,0x39,0x2c,0x30,0x2e,0x36,0x35,0x38,0x76,0x36,
0x2e,0x30,0x31,0x0d,0x0a,0x09,0x09,0x09,0x63,0x30,
0x2c,0x30,0x2e,0x32,0x37,0x34,0x2d,0x30,0x2e,0x31,
0x34,0x38,0x2c,0x30,0x2e,0x35,0x32,0x36,0x2d,0x30,
0x2e,0x33,0x39,0x2c,0x30,0x2e,0x36,0x35,0x38,0x43,
0x38,0x2e,0x30,0x35,0x36,0x2c,0x32,0x32,0x2e,0x32,
0x35,0x34,0x2c,0x37,0x2e,0x39,0x33,0x32,0x2c,0x32,
0x32,0x2e,0x32,0x38,0x34,0x2c,0x37,0x2e,0x38,0x30,
0x39,0x2c,0x32,0x32,0x2e,0x32,0x38,0x34,0x7a,0x20,
0x4d,0x34,0x2e,0x35,0x31,0x34,0x2c,0x31,0x38,0x2e,
0x35,0x33,0x6c,0x32,0x2e,0x35,0x34,0x35,0x2c,0x31,
0x2e,0x36,0x33,0x32,0x76,0x2d,0x33,0x2e,0x32,0x36,
0x35,0x4c,0x34,0x2e,0x35,0x31,0x34,0x2c,0x31,0x38,
0x2e,0x35,0x33,0x7a,0x22,0x2f,0x3e,0x0d,0x0a,0x09,
0x3c,0x2f,0x67,0x3e,0x0d,0x0a,0x09,0x3c,0x67,0x3e,
0x0d,0x0a,0x09,0x09,0x3c,0x70,0x61,0x74,0x68,0x20,
0x66,0x69,0x6c,0x6c,0x3d,0x22,0x23,0x46,0x46,0x46,
0x46,0x46,0x46,0x22,0x20,0x64,0x3d,0x22,0x4d,0x32,
0x39,0x2e,0x31,0x39,0x35,0x2c,0x32,0x32,0x2e,0x32,
0x38,0x34,0x63,0x2d,0x30,0x2e,0x31,0x32,0x34,0x2c,
0x30,0x2d,0x30,0x2e,0x32,0x34,0x36,0x2d,0x30,0x2e,
0x30,0x33,0x2d,0x30,0x2e,0x33,0x35,0x38,0x2d,0x30,
0x2e,0x30,0x39,0x32,0x63,0x2d,0x30,0x2e,0x32,0x34,
0x31,0x2d,0x30,0x2e,0x31,0x33,0x32,0x2d,0x30,0x2e,
0x33,0x39,0x32,0x2d,0x30,0x2e,0x33,0x38,0x34,0x2d,
0x30,0x2e,0x33,0x39,0x32,0x2d,0x30,0x2e,0x36,0x35,
0x38,0x76,0x2d,0x36,0x2e,0x30,0x31,0x0d,0x0a,0x09,
0x09,0x09,0x63,0x30,0x2d,0x30,0x2e,0x32,0x37,0x34,
0x2c,0x30,0x2e,0x31,0x34,0x39,0x2d,0x30,0x2e,0x35,
0x32,0x36,0x2c,0x30,0x2e,0x33,0x39,0x32,0x2d,0x30,
0x2e,0x36,0x35,0x38,0x63,0x30,0x2e,0x32,0x33,0x39,
0x2d,0x30,0x2e,0x31,0x33,0x31,0x2c,0x30,0x2e,0x35,
0x33,0x33,0x2d,0x30,0x2e,0x31,0x32,0x33,0x2c,0x30,
0x2e,0x37,0x36,0x35,0x2c,0x30,0x2e,0x30,0x32,0x37,
0x6c,0x34,0x2e,0x36,0x38,0x35,0x2c,0x33,0x2e,0x30,
0x30,0x35,0x63,0x30,0x2e,0x32,0x31,0x35,0x2c,0x30,
0x2e,0x31,0x33,0x38,0x2c,0x30,0x2e,0x33,0x34,0x35,
0x2c,0x30,0x2e,0x33,0x37,0x36,0x2c,0x30,0x2e,0x33,
0x34,0x35,0x2c,0x30,0x2e,0x36,0x33,0x31,0x0d,0x0a,
0x09,0x09,0x09,0x73,0x2d,0x30,0x2e,0x31,0x33,0x2c,
0x30,0x2e,0x34,0x39,0x33,0x2d,0x30,0x2e,0x33,0x34,
0x35,0x2c,0x30,0x2e,0x36,0x33,0x31,0x6c,0x2d,0x34,
0x2e,0x36,0x38,0x35,0x2c,0x33,0x2e,0x30,0x30,0x34,
0x43,0x32,0x39,0x2e,0x34,0x37,0x38,0x2c,0x32,0x32,
0x2e,0x32,0x34,0x34,0x2c,0x32,0x39,0x2e,0x33,0x33,
0x36,0x2c,0x32,0x32,0x2e,0x32,0x38,0x34,0x2c,0x32,
0x39,0x2e,0x31,0x39,0x35,0x2c,0x32,0x32,0x2e,0x32,
0x38,0x34,0x7a,0x20,0x4d,0x32,0x39,0x2e,0x39,0x34,
0x35,0x2c,0x31,0x36,0x2e,0x38,0x39,0x36,0x76,0x33,
0x2e,0x32,0x36,0x36,0x6c,0x32,0x2e,0x35,0x34,0x36,
0x2d,0x31,0x2e,0x36,0x33,0x33,0x0d,0x0a,0x09,0x09,
0x09,0x4c,0x32,0x39,0x2e,0x39,0x34,0x35,0x2c,0x31,
0x36,0x2e,0x38,0x39,0x36,0x7a,0x22,0x2f,0x3e,0x0d,
0x0a,0x09,0x3c,0x2f,0x67,0x3e,0x0d,0x0a,0x09,0x3c,
0x67,0x3e,0x0d,0x0a,0x09,0x09,0x3c,0x70,0x61,0x74,
0x68,0x20,0x66,0x69,0x6c,0x6c,0x3d,0x22,0x23,0x46,
0x46,0x46,0x46,0x46,0x46,0x22,0x20,0x64,0x3d,0x22,
0x4d,0x31,0x38,0x2e,0x35,0x33,0x2c,0x33,0x33,0x2e,
0x38,0x37,0x36,0x6c,0x33,0x2e,0x30,0x30,0x37,0x2d,
0x34,0x2e,0x36,0x38,0x34,0x68,0x2d,0x36,0x2e,0x30,
0x31,0x32,0x4c,0x31,0x38,0x2e,0x35,0x33,0x2c,0x33,
0x33,0x2e,0x38,0x37,0x36,0x7a,0x22,0x2f,0x3e,0x0d,
0x0a,0x09,0x09,0x3c,0x70,0x61,0x74,0x68,0x20,0x66,
0x69,0x6c,0x6c,0x3d,0x22,0x23,0x46,0x46,0x46,0x46,
0x46,0x46,0x22,0x20,0x64,0x3d,0x22,0x4d,0x31,0x38,
0x2e,0x35,0x33,0x2c,0x33,0x34,0x2e,0x36,0x32,0x36,
0x4c,0x31,0x38,0x2e,0x35,0x33,0x2c,0x33,0x34,0x2e,
0x36,0x32,0x36,0x63,0x2d,0x30,0x2e,0x32,0x35,0x35,
0x2c,0x30,0x2d,0x30,0x2e,0x34,0x39,0x32,0x2d,0x30,
0x2e,0x31,0x33,0x2d,0x30,0x2e,0x36,0x33,0x31,0x2d,
0x30,0x2e,0x33,0x34,0x35,0x6c,0x2d,0x33,0x2e,0x30,
0x30,0x35,0x2d,0x34,0x2e,0x36,0x38,0x34,0x0d,0x0a,
0x09,0x09,0x09,0x63,0x2d,0x30,0x2e,0x31,0x34,0x37,
0x2d,0x30,0x2e,0x32,0x33,0x31,0x2d,0x30,0x2e,0x31,
0x35,0x38,0x2d,0x30,0x2e,0x35,0x32,0x34,0x2d,0x30,
0x2e,0x30,0x32,0x36,0x2d,0x30,0x2e,0x37,0x36,0x36,
0x73,0x30,0x2e,0x33,0x38,0x34,0x2d,0x30,0x2e,0x33,
0x39,0x31,0x2c,0x30,0x2e,0x36,0x35,0x37,0x2d,0x30,
0x2e,0x33,0x39,0x31,0x68,0x36,0x2e,0x30,0x31,0x32,
0x63,0x30,0x2e,0x32,0x37,0x33,0x2c,0x30,0x2c,0x30,
0x2e,0x35,0x32,0x35,0x2c,0x30,0x2e,0x31,0x34,0x38,
0x2c,0x30,0x2e,0x36,0x35,0x37,0x2c,0x30,0x2e,0x33,
0x39,0x31,0x0d,0x0a,0x09,0x09,0x09,0x63,0x30,0x2e,
0x31,0x33,0x33,0x2c,0x30,0x2e,0x32,0x34,0x2c,0x30,
0x2e,0x31,0x32,0x31,0x2c,0x30,0x2e,0x35,0x33,0x33,
0x2d,0x30,0x2e,0x30,0x32,0x36,0x2c,0x30,0x2e,0x37,
0x36,0x36,0x6c,0x2d,0x33,0x2e,0x30,0x30,0x35,0x2c,
0x34,0x2e,0x36,0x38,0x34,0x43,0x31,0x39,0x2e,0x30,
0x32,0x33,0x2c,0x33,0x34,0x2e,0x34,0x39,0x36,0x2c,
0x31,0x38,0x2e,0x37,0x38,0x36,0x2c,0x33,0x34,0x2e,
0x36,0x32,0x36,0x2c,0x31,0x38,0x2e,0x35,0x33,0x2c,
0x33,0x34,0x2e,0x36,0x32,0x36,0x7a,0x20,0x4d,0x31,
0x36,0x2e,0x38,0x39,0x37,0x2c,0x32,0x39,0x2e,0x39,
0x34,0x32,0x6c,0x31,0x2e,0x36,0x33,0x33,0x2c,0x32,
0x2e,0x35,0x34,0x35,0x0d,0x0a,0x09,0x09,0x09,0x6c,
0x31,0x2e,0x36,0x33,0x35,0x2d,0x32,0x2e,0x35,0x34,
0x35,0x48,0x31,0x36,0x2e,0x38,0x39,0x37,0x7a,0x22,
0x2f,0x3e,0x0d,0x0a,0x09,0x3c,0x2f,0x67,0x3e,0x0d,
0x0a,0x3c,0x2f,0x67,0x3e,0x0d,0x0a,0x3c,0x2f,0x73,
0x76,0x67,0x3e,0x0d,0x0a
};

View file

@ -0,0 +1,329 @@
//this file was auto-generated from "dpad_left.svg" by res2h
#include "../Resources.h"
const size_t help_dpad_left_svg_size = 3212;
const unsigned char help_dpad_left_svg_data[3212] = {
0x3c,0x3f,0x78,0x6d,0x6c,0x20,0x76,0x65,0x72,0x73,
0x69,0x6f,0x6e,0x3d,0x22,0x31,0x2e,0x30,0x22,0x20,
0x65,0x6e,0x63,0x6f,0x64,0x69,0x6e,0x67,0x3d,0x22,
0x75,0x74,0x66,0x2d,0x38,0x22,0x3f,0x3e,0x0d,0x0a,
0x3c,0x21,0x2d,0x2d,0x20,0x47,0x65,0x6e,0x65,0x72,
0x61,0x74,0x6f,0x72,0x3a,0x20,0x41,0x64,0x6f,0x62,
0x65,0x20,0x49,0x6c,0x6c,0x75,0x73,0x74,0x72,0x61,
0x74,0x6f,0x72,0x20,0x31,0x36,0x2e,0x30,0x2e,0x33,
0x2c,0x20,0x53,0x56,0x47,0x20,0x45,0x78,0x70,0x6f,
0x72,0x74,0x20,0x50,0x6c,0x75,0x67,0x2d,0x49,0x6e,
0x20,0x2e,0x20,0x53,0x56,0x47,0x20,0x56,0x65,0x72,
0x73,0x69,0x6f,0x6e,0x3a,0x20,0x36,0x2e,0x30,0x30,
0x20,0x42,0x75,0x69,0x6c,0x64,0x20,0x30,0x29,0x20,
0x20,0x2d,0x2d,0x3e,0x0d,0x0a,0x3c,0x21,0x44,0x4f,
0x43,0x54,0x59,0x50,0x45,0x20,0x73,0x76,0x67,0x20,
0x50,0x55,0x42,0x4c,0x49,0x43,0x20,0x22,0x2d,0x2f,
0x2f,0x57,0x33,0x43,0x2f,0x2f,0x44,0x54,0x44,0x20,
0x53,0x56,0x47,0x20,0x31,0x2e,0x31,0x2f,0x2f,0x45,
0x4e,0x22,0x20,0x22,0x68,0x74,0x74,0x70,0x3a,0x2f,
0x2f,0x77,0x77,0x77,0x2e,0x77,0x33,0x2e,0x6f,0x72,
0x67,0x2f,0x47,0x72,0x61,0x70,0x68,0x69,0x63,0x73,
0x2f,0x53,0x56,0x47,0x2f,0x31,0x2e,0x31,0x2f,0x44,
0x54,0x44,0x2f,0x73,0x76,0x67,0x31,0x31,0x2e,0x64,
0x74,0x64,0x22,0x3e,0x0d,0x0a,0x3c,0x73,0x76,0x67,
0x20,0x76,0x65,0x72,0x73,0x69,0x6f,0x6e,0x3d,0x22,
0x31,0x2e,0x31,0x22,0x20,0x69,0x64,0x3d,0x22,0x5f,
0x78,0x33,0x30,0x5f,0x22,0x20,0x78,0x6d,0x6c,0x6e,
0x73,0x3d,0x22,0x68,0x74,0x74,0x70,0x3a,0x2f,0x2f,
0x77,0x77,0x77,0x2e,0x77,0x33,0x2e,0x6f,0x72,0x67,
0x2f,0x32,0x30,0x30,0x30,0x2f,0x73,0x76,0x67,0x22,
0x20,0x78,0x6d,0x6c,0x6e,0x73,0x3a,0x78,0x6c,0x69,
0x6e,0x6b,0x3d,0x22,0x68,0x74,0x74,0x70,0x3a,0x2f,
0x2f,0x77,0x77,0x77,0x2e,0x77,0x33,0x2e,0x6f,0x72,
0x67,0x2f,0x31,0x39,0x39,0x39,0x2f,0x78,0x6c,0x69,
0x6e,0x6b,0x22,0x20,0x78,0x3d,0x22,0x30,0x70,0x78,
0x22,0x20,0x79,0x3d,0x22,0x30,0x70,0x78,0x22,0x0d,
0x0a,0x09,0x20,0x77,0x69,0x64,0x74,0x68,0x3d,0x22,
0x33,0x37,0x2e,0x30,0x36,0x31,0x70,0x78,0x22,0x20,
0x68,0x65,0x69,0x67,0x68,0x74,0x3d,0x22,0x33,0x37,
0x2e,0x30,0x36,0x31,0x70,0x78,0x22,0x20,0x76,0x69,
0x65,0x77,0x42,0x6f,0x78,0x3d,0x22,0x30,0x20,0x30,
0x20,0x33,0x37,0x2e,0x30,0x36,0x31,0x20,0x33,0x37,
0x2e,0x30,0x36,0x31,0x22,0x20,0x65,0x6e,0x61,0x62,
0x6c,0x65,0x2d,0x62,0x61,0x63,0x6b,0x67,0x72,0x6f,
0x75,0x6e,0x64,0x3d,0x22,0x6e,0x65,0x77,0x20,0x30,
0x20,0x30,0x20,0x33,0x37,0x2e,0x30,0x36,0x31,0x20,
0x33,0x37,0x2e,0x30,0x36,0x31,0x22,0x20,0x78,0x6d,
0x6c,0x3a,0x73,0x70,0x61,0x63,0x65,0x3d,0x22,0x70,
0x72,0x65,0x73,0x65,0x72,0x76,0x65,0x22,0x3e,0x0d,
0x0a,0x3c,0x67,0x3e,0x0d,0x0a,0x09,0x3c,0x67,0x3e,
0x0d,0x0a,0x09,0x09,0x3c,0x67,0x3e,0x0d,0x0a,0x09,
0x09,0x09,0x3c,0x70,0x61,0x74,0x68,0x20,0x66,0x69,
0x6c,0x6c,0x3d,0x22,0x23,0x46,0x46,0x46,0x46,0x46,
0x46,0x22,0x20,0x64,0x3d,0x22,0x4d,0x32,0x32,0x2e,
0x30,0x38,0x36,0x2c,0x33,0x37,0x2e,0x30,0x36,0x68,
0x2d,0x37,0x2e,0x31,0x31,0x31,0x63,0x2d,0x32,0x2e,
0x32,0x38,0x39,0x2c,0x30,0x2d,0x33,0x2e,0x31,0x31,
0x39,0x2d,0x31,0x2e,0x38,0x36,0x36,0x2d,0x33,0x2e,
0x31,0x31,0x39,0x2d,0x33,0x2e,0x31,0x32,0x31,0x76,
0x2d,0x38,0x2e,0x37,0x33,0x32,0x48,0x33,0x2e,0x31,
0x32,0x31,0x43,0x30,0x2e,0x38,0x33,0x31,0x2c,0x32,
0x35,0x2e,0x32,0x30,0x36,0x2c,0x30,0x2c,0x32,0x33,
0x2e,0x33,0x34,0x2c,0x30,0x2c,0x32,0x32,0x2e,0x30,
0x38,0x35,0x0d,0x0a,0x09,0x09,0x09,0x09,0x76,0x2d,
0x37,0x2e,0x31,0x31,0x63,0x30,0x2d,0x32,0x2e,0x32,
0x38,0x39,0x2c,0x31,0x2e,0x38,0x36,0x37,0x2d,0x33,
0x2e,0x31,0x32,0x2c,0x33,0x2e,0x31,0x32,0x31,0x2d,
0x33,0x2e,0x31,0x32,0x68,0x38,0x2e,0x37,0x33,0x33,
0x56,0x33,0x2e,0x31,0x32,0x31,0x43,0x31,0x31,0x2e,
0x38,0x35,0x35,0x2c,0x30,0x2e,0x38,0x33,0x31,0x2c,
0x31,0x33,0x2e,0x37,0x32,0x2c,0x30,0x2c,0x31,0x34,
0x2e,0x39,0x37,0x34,0x2c,0x30,0x68,0x37,0x2e,0x31,
0x31,0x31,0x63,0x32,0x2e,0x32,0x39,0x2c,0x30,0x2c,
0x33,0x2e,0x31,0x32,0x31,0x2c,0x31,0x2e,0x38,0x36,
0x37,0x2c,0x33,0x2e,0x31,0x32,0x31,0x2c,0x33,0x2e,
0x31,0x32,0x31,0x76,0x38,0x2e,0x37,0x33,0x32,0x0d,
0x0a,0x09,0x09,0x09,0x09,0x68,0x38,0x2e,0x37,0x33,
0x31,0x63,0x32,0x2e,0x32,0x39,0x2c,0x30,0x2c,0x33,
0x2e,0x31,0x32,0x31,0x2c,0x31,0x2e,0x38,0x36,0x35,
0x2c,0x33,0x2e,0x31,0x32,0x31,0x2c,0x33,0x2e,0x31,
0x32,0x76,0x37,0x2e,0x31,0x31,0x63,0x30,0x2c,0x32,
0x2e,0x32,0x39,0x2d,0x31,0x2e,0x38,0x36,0x36,0x2c,
0x33,0x2e,0x31,0x32,0x31,0x2d,0x33,0x2e,0x31,0x32,
0x31,0x2c,0x33,0x2e,0x31,0x32,0x31,0x68,0x2d,0x38,
0x2e,0x37,0x33,0x31,0x76,0x38,0x2e,0x37,0x33,0x32,
0x0d,0x0a,0x09,0x09,0x09,0x09,0x43,0x32,0x35,0x2e,
0x32,0x30,0x37,0x2c,0x33,0x36,0x2e,0x32,0x32,0x39,
0x2c,0x32,0x33,0x2e,0x33,0x34,0x31,0x2c,0x33,0x37,
0x2e,0x30,0x36,0x2c,0x32,0x32,0x2e,0x30,0x38,0x36,
0x2c,0x33,0x37,0x2e,0x30,0x36,0x7a,0x20,0x4d,0x33,
0x2e,0x31,0x32,0x31,0x2c,0x31,0x33,0x2e,0x33,0x35,
0x34,0x43,0x32,0x2e,0x37,0x34,0x35,0x2c,0x31,0x33,
0x2e,0x33,0x35,0x39,0x2c,0x31,0x2e,0x35,0x2c,0x31,
0x33,0x2e,0x34,0x39,0x33,0x2c,0x31,0x2e,0x35,0x2c,
0x31,0x34,0x2e,0x39,0x37,0x34,0x76,0x37,0x2e,0x31,
0x31,0x0d,0x0a,0x09,0x09,0x09,0x09,0x63,0x30,0x2e,
0x30,0x30,0x36,0x2c,0x30,0x2e,0x33,0x37,0x36,0x2c,
0x30,0x2e,0x31,0x33,0x39,0x2c,0x31,0x2e,0x36,0x32,
0x31,0x2c,0x31,0x2e,0x36,0x32,0x31,0x2c,0x31,0x2e,
0x36,0x32,0x31,0x68,0x31,0x30,0x2e,0x32,0x33,0x33,
0x76,0x31,0x30,0x2e,0x32,0x33,0x32,0x63,0x30,0x2e,
0x30,0x30,0x35,0x2c,0x30,0x2e,0x33,0x37,0x36,0x2c,
0x30,0x2e,0x31,0x34,0x2c,0x31,0x2e,0x36,0x32,0x31,
0x2c,0x31,0x2e,0x36,0x31,0x39,0x2c,0x31,0x2e,0x36,
0x32,0x31,0x68,0x37,0x2e,0x31,0x30,0x38,0x0d,0x0a,
0x09,0x09,0x09,0x09,0x63,0x30,0x2e,0x33,0x38,0x34,
0x2d,0x30,0x2e,0x30,0x30,0x37,0x2c,0x31,0x2e,0x36,
0x32,0x34,0x2d,0x30,0x2e,0x31,0x34,0x33,0x2c,0x31,
0x2e,0x36,0x32,0x34,0x2d,0x31,0x2e,0x36,0x32,0x31,
0x56,0x32,0x33,0x2e,0x37,0x30,0x36,0x68,0x31,0x30,
0x2e,0x32,0x33,0x31,0x63,0x30,0x2e,0x33,0x37,0x36,
0x2d,0x30,0x2e,0x30,0x30,0x36,0x2c,0x31,0x2e,0x36,
0x32,0x31,0x2d,0x30,0x2e,0x31,0x34,0x2c,0x31,0x2e,
0x36,0x32,0x31,0x2d,0x31,0x2e,0x36,0x32,0x31,0x76,
0x2d,0x37,0x2e,0x31,0x31,0x0d,0x0a,0x09,0x09,0x09,
0x09,0x63,0x2d,0x30,0x2e,0x30,0x30,0x36,0x2d,0x30,
0x2e,0x33,0x37,0x36,0x2d,0x30,0x2e,0x31,0x34,0x2d,
0x31,0x2e,0x36,0x32,0x2d,0x31,0x2e,0x36,0x32,0x31,
0x2d,0x31,0x2e,0x36,0x32,0x68,0x2d,0x31,0x30,0x2e,
0x32,0x33,0x56,0x33,0x2e,0x31,0x32,0x31,0x43,0x32,
0x33,0x2e,0x37,0x30,0x31,0x2c,0x32,0x2e,0x37,0x34,
0x35,0x2c,0x32,0x33,0x2e,0x35,0x36,0x37,0x2c,0x31,
0x2e,0x35,0x2c,0x32,0x32,0x2e,0x30,0x38,0x36,0x2c,
0x31,0x2e,0x35,0x68,0x2d,0x37,0x2e,0x31,0x31,0x31,
0x0d,0x0a,0x09,0x09,0x09,0x09,0x63,0x2d,0x30,0x2e,
0x33,0x37,0x36,0x2c,0x30,0x2e,0x30,0x30,0x36,0x2d,
0x31,0x2e,0x36,0x31,0x39,0x2c,0x30,0x2e,0x31,0x34,
0x2d,0x31,0x2e,0x36,0x31,0x39,0x2c,0x31,0x2e,0x36,
0x32,0x31,0x76,0x31,0x30,0x2e,0x32,0x33,0x32,0x4c,
0x33,0x2e,0x31,0x32,0x31,0x2c,0x31,0x33,0x2e,0x33,
0x35,0x34,0x4c,0x33,0x2e,0x31,0x32,0x31,0x2c,0x31,
0x33,0x2e,0x33,0x35,0x34,0x7a,0x22,0x2f,0x3e,0x0d,
0x0a,0x09,0x09,0x3c,0x2f,0x67,0x3e,0x0d,0x0a,0x09,
0x3c,0x2f,0x67,0x3e,0x0d,0x0a,0x09,0x3c,0x67,0x3e,
0x0d,0x0a,0x09,0x09,0x3c,0x70,0x61,0x74,0x68,0x20,
0x66,0x69,0x6c,0x6c,0x3d,0x22,0x23,0x46,0x46,0x46,
0x46,0x46,0x46,0x22,0x20,0x64,0x3d,0x22,0x4d,0x31,
0x38,0x2e,0x35,0x33,0x31,0x2c,0x32,0x32,0x2e,0x31,
0x38,0x31,0x63,0x2d,0x32,0x2e,0x30,0x31,0x33,0x2c,
0x30,0x2d,0x33,0x2e,0x36,0x34,0x39,0x2d,0x31,0x2e,
0x36,0x33,0x39,0x2d,0x33,0x2e,0x36,0x34,0x39,0x2d,
0x33,0x2e,0x36,0x35,0x31,0x73,0x31,0x2e,0x36,0x33,
0x38,0x2d,0x33,0x2e,0x36,0x35,0x2c,0x33,0x2e,0x36,
0x34,0x39,0x2d,0x33,0x2e,0x36,0x35,0x63,0x32,0x2e,
0x30,0x31,0x33,0x2c,0x30,0x2c,0x33,0x2e,0x36,0x35,
0x2c,0x31,0x2e,0x36,0x33,0x39,0x2c,0x33,0x2e,0x36,
0x35,0x2c,0x33,0x2e,0x36,0x35,0x0d,0x0a,0x09,0x09,
0x09,0x43,0x32,0x32,0x2e,0x31,0x38,0x32,0x2c,0x32,
0x30,0x2e,0x35,0x34,0x33,0x2c,0x32,0x30,0x2e,0x35,
0x34,0x34,0x2c,0x32,0x32,0x2e,0x31,0x38,0x31,0x2c,
0x31,0x38,0x2e,0x35,0x33,0x31,0x2c,0x32,0x32,0x2e,
0x31,0x38,0x31,0x7a,0x20,0x4d,0x31,0x38,0x2e,0x35,
0x33,0x31,0x2c,0x31,0x36,0x2e,0x33,0x37,0x39,0x63,
0x2d,0x31,0x2e,0x31,0x38,0x36,0x2c,0x30,0x2d,0x32,
0x2e,0x31,0x34,0x39,0x2c,0x30,0x2e,0x39,0x36,0x35,
0x2d,0x32,0x2e,0x31,0x34,0x39,0x2c,0x32,0x2e,0x31,
0x35,0x73,0x30,0x2e,0x39,0x36,0x35,0x2c,0x32,0x2e,
0x31,0x35,0x31,0x2c,0x32,0x2e,0x31,0x34,0x39,0x2c,
0x32,0x2e,0x31,0x35,0x31,0x0d,0x0a,0x09,0x09,0x09,
0x63,0x31,0x2e,0x31,0x38,0x36,0x2c,0x30,0x2c,0x32,
0x2e,0x31,0x35,0x2d,0x30,0x2e,0x39,0x36,0x36,0x2c,
0x32,0x2e,0x31,0x35,0x2d,0x32,0x2e,0x31,0x35,0x31,
0x43,0x32,0x30,0x2e,0x36,0x38,0x32,0x2c,0x31,0x37,
0x2e,0x33,0x34,0x34,0x2c,0x31,0x39,0x2e,0x37,0x31,
0x37,0x2c,0x31,0x36,0x2e,0x33,0x37,0x39,0x2c,0x31,
0x38,0x2e,0x35,0x33,0x31,0x2c,0x31,0x36,0x2e,0x33,
0x37,0x39,0x7a,0x22,0x2f,0x3e,0x0d,0x0a,0x09,0x3c,
0x2f,0x67,0x3e,0x0d,0x0a,0x09,0x3c,0x67,0x3e,0x0d,
0x0a,0x09,0x09,0x3c,0x70,0x61,0x74,0x68,0x20,0x66,
0x69,0x6c,0x6c,0x3d,0x22,0x23,0x46,0x46,0x46,0x46,
0x46,0x46,0x22,0x20,0x64,0x3d,0x22,0x4d,0x32,0x31,
0x2e,0x35,0x33,0x36,0x2c,0x38,0x2e,0x36,0x31,0x36,
0x68,0x2d,0x36,0x2e,0x30,0x31,0x32,0x63,0x2d,0x30,
0x2e,0x32,0x37,0x33,0x2c,0x30,0x2d,0x30,0x2e,0x35,
0x32,0x35,0x2d,0x30,0x2e,0x31,0x35,0x2d,0x30,0x2e,
0x36,0x35,0x37,0x2d,0x30,0x2e,0x33,0x39,0x63,0x2d,
0x30,0x2e,0x31,0x33,0x32,0x2d,0x30,0x2e,0x32,0x34,
0x31,0x2d,0x30,0x2e,0x31,0x32,0x31,0x2d,0x30,0x2e,
0x35,0x33,0x34,0x2c,0x30,0x2e,0x30,0x32,0x36,0x2d,
0x30,0x2e,0x37,0x36,0x36,0x6c,0x33,0x2e,0x30,0x30,
0x35,0x2d,0x34,0x2e,0x36,0x38,0x34,0x0d,0x0a,0x09,
0x09,0x09,0x63,0x30,0x2e,0x32,0x37,0x36,0x2d,0x30,
0x2e,0x34,0x33,0x31,0x2c,0x30,0x2e,0x39,0x38,0x36,
0x2d,0x30,0x2e,0x34,0x33,0x2c,0x31,0x2e,0x32,0x36,
0x34,0x2c,0x30,0x6c,0x33,0x2e,0x30,0x30,0x35,0x2c,
0x34,0x2e,0x36,0x38,0x34,0x63,0x30,0x2e,0x31,0x34,
0x37,0x2c,0x30,0x2e,0x32,0x33,0x31,0x2c,0x30,0x2e,
0x31,0x35,0x39,0x2c,0x30,0x2e,0x35,0x32,0x34,0x2c,
0x30,0x2e,0x30,0x32,0x36,0x2c,0x30,0x2e,0x37,0x36,
0x36,0x43,0x32,0x32,0x2e,0x30,0x36,0x33,0x2c,0x38,
0x2e,0x34,0x36,0x36,0x2c,0x32,0x31,0x2e,0x38,0x31,
0x31,0x2c,0x38,0x2e,0x36,0x31,0x36,0x2c,0x32,0x31,
0x2e,0x35,0x33,0x36,0x2c,0x38,0x2e,0x36,0x31,0x36,
0x7a,0x0d,0x0a,0x09,0x09,0x09,0x20,0x4d,0x31,0x36,
0x2e,0x38,0x39,0x37,0x2c,0x37,0x2e,0x31,0x31,0x36,
0x68,0x33,0x2e,0x32,0x36,0x38,0x4c,0x31,0x38,0x2e,
0x35,0x33,0x2c,0x34,0x2e,0x35,0x37,0x31,0x4c,0x31,
0x36,0x2e,0x38,0x39,0x37,0x2c,0x37,0x2e,0x31,0x31,
0x36,0x7a,0x22,0x2f,0x3e,0x0d,0x0a,0x09,0x3c,0x2f,
0x67,0x3e,0x0d,0x0a,0x09,0x3c,0x67,0x3e,0x0d,0x0a,
0x09,0x09,0x3c,0x70,0x61,0x74,0x68,0x20,0x66,0x69,
0x6c,0x6c,0x3d,0x22,0x23,0x46,0x46,0x46,0x46,0x46,
0x46,0x22,0x20,0x64,0x3d,0x22,0x4d,0x33,0x2e,0x31,
0x32,0x35,0x2c,0x31,0x38,0x2e,0x35,0x33,0x6c,0x34,
0x2e,0x36,0x38,0x34,0x2c,0x33,0x2e,0x30,0x30,0x34,
0x76,0x2d,0x36,0x2e,0x30,0x31,0x4c,0x33,0x2e,0x31,
0x32,0x35,0x2c,0x31,0x38,0x2e,0x35,0x33,0x7a,0x22,
0x2f,0x3e,0x0d,0x0a,0x09,0x09,0x3c,0x70,0x61,0x74,
0x68,0x20,0x66,0x69,0x6c,0x6c,0x3d,0x22,0x23,0x46,
0x46,0x46,0x46,0x46,0x46,0x22,0x20,0x64,0x3d,0x22,
0x4d,0x37,0x2e,0x38,0x30,0x39,0x2c,0x32,0x32,0x2e,
0x32,0x38,0x34,0x63,0x2d,0x30,0x2e,0x31,0x34,0x31,
0x2c,0x30,0x2d,0x30,0x2e,0x32,0x38,0x32,0x2d,0x30,
0x2e,0x30,0x34,0x2d,0x30,0x2e,0x34,0x30,0x35,0x2d,
0x30,0x2e,0x31,0x31,0x39,0x4c,0x32,0x2e,0x37,0x32,
0x2c,0x31,0x39,0x2e,0x31,0x36,0x32,0x63,0x2d,0x30,
0x2e,0x32,0x31,0x35,0x2d,0x30,0x2e,0x31,0x33,0x38,
0x2d,0x30,0x2e,0x33,0x34,0x35,0x2d,0x30,0x2e,0x33,
0x37,0x36,0x2d,0x30,0x2e,0x33,0x34,0x35,0x2d,0x30,
0x2e,0x36,0x33,0x31,0x0d,0x0a,0x09,0x09,0x09,0x73,
0x30,0x2e,0x31,0x33,0x2d,0x30,0x2e,0x34,0x39,0x33,
0x2c,0x30,0x2e,0x33,0x34,0x35,0x2d,0x30,0x2e,0x36,
0x33,0x31,0x6c,0x34,0x2e,0x36,0x38,0x34,0x2d,0x33,
0x2e,0x30,0x30,0x36,0x63,0x30,0x2e,0x32,0x33,0x2d,
0x30,0x2e,0x31,0x34,0x38,0x2c,0x30,0x2e,0x35,0x32,
0x34,0x2d,0x30,0x2e,0x31,0x35,0x38,0x2c,0x30,0x2e,
0x37,0x36,0x36,0x2d,0x30,0x2e,0x30,0x32,0x37,0x63,
0x30,0x2e,0x32,0x34,0x2c,0x30,0x2e,0x31,0x33,0x31,
0x2c,0x30,0x2e,0x33,0x39,0x2c,0x30,0x2e,0x33,0x38,
0x34,0x2c,0x30,0x2e,0x33,0x39,0x2c,0x30,0x2e,0x36,
0x35,0x38,0x76,0x36,0x2e,0x30,0x31,0x0d,0x0a,0x09,
0x09,0x09,0x63,0x30,0x2c,0x30,0x2e,0x32,0x37,0x34,
0x2d,0x30,0x2e,0x31,0x34,0x38,0x2c,0x30,0x2e,0x35,
0x32,0x36,0x2d,0x30,0x2e,0x33,0x39,0x2c,0x30,0x2e,
0x36,0x35,0x38,0x43,0x38,0x2e,0x30,0x35,0x36,0x2c,
0x32,0x32,0x2e,0x32,0x35,0x34,0x2c,0x37,0x2e,0x39,
0x33,0x32,0x2c,0x32,0x32,0x2e,0x32,0x38,0x34,0x2c,
0x37,0x2e,0x38,0x30,0x39,0x2c,0x32,0x32,0x2e,0x32,
0x38,0x34,0x7a,0x20,0x4d,0x34,0x2e,0x35,0x31,0x34,
0x2c,0x31,0x38,0x2e,0x35,0x33,0x6c,0x32,0x2e,0x35,
0x34,0x35,0x2c,0x31,0x2e,0x36,0x33,0x32,0x76,0x2d,
0x33,0x2e,0x32,0x36,0x35,0x4c,0x34,0x2e,0x35,0x31,
0x34,0x2c,0x31,0x38,0x2e,0x35,0x33,0x7a,0x22,0x2f,
0x3e,0x0d,0x0a,0x09,0x3c,0x2f,0x67,0x3e,0x0d,0x0a,
0x09,0x3c,0x67,0x3e,0x0d,0x0a,0x09,0x09,0x3c,0x70,
0x61,0x74,0x68,0x20,0x66,0x69,0x6c,0x6c,0x3d,0x22,
0x23,0x46,0x46,0x46,0x46,0x46,0x46,0x22,0x20,0x64,
0x3d,0x22,0x4d,0x32,0x39,0x2e,0x31,0x39,0x35,0x2c,
0x32,0x32,0x2e,0x32,0x38,0x34,0x63,0x2d,0x30,0x2e,
0x31,0x32,0x34,0x2c,0x30,0x2d,0x30,0x2e,0x32,0x34,
0x36,0x2d,0x30,0x2e,0x30,0x33,0x2d,0x30,0x2e,0x33,
0x35,0x38,0x2d,0x30,0x2e,0x30,0x39,0x32,0x63,0x2d,
0x30,0x2e,0x32,0x34,0x31,0x2d,0x30,0x2e,0x31,0x33,
0x32,0x2d,0x30,0x2e,0x33,0x39,0x32,0x2d,0x30,0x2e,
0x33,0x38,0x34,0x2d,0x30,0x2e,0x33,0x39,0x32,0x2d,
0x30,0x2e,0x36,0x35,0x38,0x76,0x2d,0x36,0x2e,0x30,
0x31,0x0d,0x0a,0x09,0x09,0x09,0x63,0x30,0x2d,0x30,
0x2e,0x32,0x37,0x34,0x2c,0x30,0x2e,0x31,0x34,0x39,
0x2d,0x30,0x2e,0x35,0x32,0x36,0x2c,0x30,0x2e,0x33,
0x39,0x32,0x2d,0x30,0x2e,0x36,0x35,0x38,0x63,0x30,
0x2e,0x32,0x33,0x39,0x2d,0x30,0x2e,0x31,0x33,0x31,
0x2c,0x30,0x2e,0x35,0x33,0x33,0x2d,0x30,0x2e,0x31,
0x32,0x33,0x2c,0x30,0x2e,0x37,0x36,0x35,0x2c,0x30,
0x2e,0x30,0x32,0x37,0x6c,0x34,0x2e,0x36,0x38,0x35,
0x2c,0x33,0x2e,0x30,0x30,0x35,0x63,0x30,0x2e,0x32,
0x31,0x35,0x2c,0x30,0x2e,0x31,0x33,0x38,0x2c,0x30,
0x2e,0x33,0x34,0x35,0x2c,0x30,0x2e,0x33,0x37,0x36,
0x2c,0x30,0x2e,0x33,0x34,0x35,0x2c,0x30,0x2e,0x36,
0x33,0x31,0x0d,0x0a,0x09,0x09,0x09,0x73,0x2d,0x30,
0x2e,0x31,0x33,0x2c,0x30,0x2e,0x34,0x39,0x33,0x2d,
0x30,0x2e,0x33,0x34,0x35,0x2c,0x30,0x2e,0x36,0x33,
0x31,0x6c,0x2d,0x34,0x2e,0x36,0x38,0x35,0x2c,0x33,
0x2e,0x30,0x30,0x34,0x43,0x32,0x39,0x2e,0x34,0x37,
0x38,0x2c,0x32,0x32,0x2e,0x32,0x34,0x34,0x2c,0x32,
0x39,0x2e,0x33,0x33,0x36,0x2c,0x32,0x32,0x2e,0x32,
0x38,0x34,0x2c,0x32,0x39,0x2e,0x31,0x39,0x35,0x2c,
0x32,0x32,0x2e,0x32,0x38,0x34,0x7a,0x20,0x4d,0x32,
0x39,0x2e,0x39,0x34,0x35,0x2c,0x31,0x36,0x2e,0x38,
0x39,0x36,0x76,0x33,0x2e,0x32,0x36,0x36,0x6c,0x32,
0x2e,0x35,0x34,0x36,0x2d,0x31,0x2e,0x36,0x33,0x33,
0x0d,0x0a,0x09,0x09,0x09,0x4c,0x32,0x39,0x2e,0x39,
0x34,0x35,0x2c,0x31,0x36,0x2e,0x38,0x39,0x36,0x7a,
0x22,0x2f,0x3e,0x0d,0x0a,0x09,0x3c,0x2f,0x67,0x3e,
0x0d,0x0a,0x09,0x3c,0x67,0x3e,0x0d,0x0a,0x09,0x09,
0x3c,0x70,0x61,0x74,0x68,0x20,0x66,0x69,0x6c,0x6c,
0x3d,0x22,0x23,0x46,0x46,0x46,0x46,0x46,0x46,0x22,
0x20,0x64,0x3d,0x22,0x4d,0x31,0x38,0x2e,0x35,0x33,
0x2c,0x33,0x34,0x2e,0x36,0x32,0x36,0x4c,0x31,0x38,
0x2e,0x35,0x33,0x2c,0x33,0x34,0x2e,0x36,0x32,0x36,
0x63,0x2d,0x30,0x2e,0x32,0x35,0x35,0x2c,0x30,0x2d,
0x30,0x2e,0x34,0x39,0x32,0x2d,0x30,0x2e,0x31,0x33,
0x2d,0x30,0x2e,0x36,0x33,0x31,0x2d,0x30,0x2e,0x33,
0x34,0x35,0x6c,0x2d,0x33,0x2e,0x30,0x30,0x35,0x2d,
0x34,0x2e,0x36,0x38,0x34,0x0d,0x0a,0x09,0x09,0x09,
0x63,0x2d,0x30,0x2e,0x31,0x34,0x37,0x2d,0x30,0x2e,
0x32,0x33,0x31,0x2d,0x30,0x2e,0x31,0x35,0x38,0x2d,
0x30,0x2e,0x35,0x32,0x34,0x2d,0x30,0x2e,0x30,0x32,
0x36,0x2d,0x30,0x2e,0x37,0x36,0x36,0x73,0x30,0x2e,
0x33,0x38,0x34,0x2d,0x30,0x2e,0x33,0x39,0x31,0x2c,
0x30,0x2e,0x36,0x35,0x37,0x2d,0x30,0x2e,0x33,0x39,
0x31,0x68,0x36,0x2e,0x30,0x31,0x32,0x63,0x30,0x2e,
0x32,0x37,0x33,0x2c,0x30,0x2c,0x30,0x2e,0x35,0x32,
0x35,0x2c,0x30,0x2e,0x31,0x34,0x38,0x2c,0x30,0x2e,
0x36,0x35,0x37,0x2c,0x30,0x2e,0x33,0x39,0x31,0x0d,
0x0a,0x09,0x09,0x09,0x63,0x30,0x2e,0x31,0x33,0x33,
0x2c,0x30,0x2e,0x32,0x34,0x2c,0x30,0x2e,0x31,0x32,
0x31,0x2c,0x30,0x2e,0x35,0x33,0x33,0x2d,0x30,0x2e,
0x30,0x32,0x36,0x2c,0x30,0x2e,0x37,0x36,0x36,0x6c,
0x2d,0x33,0x2e,0x30,0x30,0x35,0x2c,0x34,0x2e,0x36,
0x38,0x34,0x43,0x31,0x39,0x2e,0x30,0x32,0x33,0x2c,
0x33,0x34,0x2e,0x34,0x39,0x36,0x2c,0x31,0x38,0x2e,
0x37,0x38,0x36,0x2c,0x33,0x34,0x2e,0x36,0x32,0x36,
0x2c,0x31,0x38,0x2e,0x35,0x33,0x2c,0x33,0x34,0x2e,
0x36,0x32,0x36,0x7a,0x20,0x4d,0x31,0x36,0x2e,0x38,
0x39,0x37,0x2c,0x32,0x39,0x2e,0x39,0x34,0x32,0x6c,
0x31,0x2e,0x36,0x33,0x33,0x2c,0x32,0x2e,0x35,0x34,
0x35,0x0d,0x0a,0x09,0x09,0x09,0x6c,0x31,0x2e,0x36,
0x33,0x35,0x2d,0x32,0x2e,0x35,0x34,0x35,0x48,0x31,
0x36,0x2e,0x38,0x39,0x37,0x7a,0x22,0x2f,0x3e,0x0d,
0x0a,0x09,0x3c,0x2f,0x67,0x3e,0x0d,0x0a,0x3c,0x2f,
0x67,0x3e,0x0d,0x0a,0x3c,0x2f,0x73,0x76,0x67,0x3e,
0x0d,0x0a
};

View file

@ -0,0 +1,336 @@
//this file was auto-generated from "dpad_leftright.svg" by res2h
#include "../Resources.h"
const size_t help_dpad_leftright_svg_size = 3290;
const unsigned char help_dpad_leftright_svg_data[3290] = {
0x3c,0x3f,0x78,0x6d,0x6c,0x20,0x76,0x65,0x72,0x73,
0x69,0x6f,0x6e,0x3d,0x22,0x31,0x2e,0x30,0x22,0x20,
0x65,0x6e,0x63,0x6f,0x64,0x69,0x6e,0x67,0x3d,0x22,
0x75,0x74,0x66,0x2d,0x38,0x22,0x3f,0x3e,0x0d,0x0a,
0x3c,0x21,0x2d,0x2d,0x20,0x47,0x65,0x6e,0x65,0x72,
0x61,0x74,0x6f,0x72,0x3a,0x20,0x41,0x64,0x6f,0x62,
0x65,0x20,0x49,0x6c,0x6c,0x75,0x73,0x74,0x72,0x61,
0x74,0x6f,0x72,0x20,0x31,0x36,0x2e,0x30,0x2e,0x33,
0x2c,0x20,0x53,0x56,0x47,0x20,0x45,0x78,0x70,0x6f,
0x72,0x74,0x20,0x50,0x6c,0x75,0x67,0x2d,0x49,0x6e,
0x20,0x2e,0x20,0x53,0x56,0x47,0x20,0x56,0x65,0x72,
0x73,0x69,0x6f,0x6e,0x3a,0x20,0x36,0x2e,0x30,0x30,
0x20,0x42,0x75,0x69,0x6c,0x64,0x20,0x30,0x29,0x20,
0x20,0x2d,0x2d,0x3e,0x0d,0x0a,0x3c,0x21,0x44,0x4f,
0x43,0x54,0x59,0x50,0x45,0x20,0x73,0x76,0x67,0x20,
0x50,0x55,0x42,0x4c,0x49,0x43,0x20,0x22,0x2d,0x2f,
0x2f,0x57,0x33,0x43,0x2f,0x2f,0x44,0x54,0x44,0x20,
0x53,0x56,0x47,0x20,0x31,0x2e,0x31,0x2f,0x2f,0x45,
0x4e,0x22,0x20,0x22,0x68,0x74,0x74,0x70,0x3a,0x2f,
0x2f,0x77,0x77,0x77,0x2e,0x77,0x33,0x2e,0x6f,0x72,
0x67,0x2f,0x47,0x72,0x61,0x70,0x68,0x69,0x63,0x73,
0x2f,0x53,0x56,0x47,0x2f,0x31,0x2e,0x31,0x2f,0x44,
0x54,0x44,0x2f,0x73,0x76,0x67,0x31,0x31,0x2e,0x64,
0x74,0x64,0x22,0x3e,0x0d,0x0a,0x3c,0x73,0x76,0x67,
0x20,0x76,0x65,0x72,0x73,0x69,0x6f,0x6e,0x3d,0x22,
0x31,0x2e,0x31,0x22,0x20,0x69,0x64,0x3d,0x22,0x5f,
0x78,0x33,0x30,0x5f,0x22,0x20,0x78,0x6d,0x6c,0x6e,
0x73,0x3d,0x22,0x68,0x74,0x74,0x70,0x3a,0x2f,0x2f,
0x77,0x77,0x77,0x2e,0x77,0x33,0x2e,0x6f,0x72,0x67,
0x2f,0x32,0x30,0x30,0x30,0x2f,0x73,0x76,0x67,0x22,
0x20,0x78,0x6d,0x6c,0x6e,0x73,0x3a,0x78,0x6c,0x69,
0x6e,0x6b,0x3d,0x22,0x68,0x74,0x74,0x70,0x3a,0x2f,
0x2f,0x77,0x77,0x77,0x2e,0x77,0x33,0x2e,0x6f,0x72,
0x67,0x2f,0x31,0x39,0x39,0x39,0x2f,0x78,0x6c,0x69,
0x6e,0x6b,0x22,0x20,0x78,0x3d,0x22,0x30,0x70,0x78,
0x22,0x20,0x79,0x3d,0x22,0x30,0x70,0x78,0x22,0x0d,
0x0a,0x09,0x20,0x77,0x69,0x64,0x74,0x68,0x3d,0x22,
0x33,0x37,0x2e,0x30,0x36,0x31,0x70,0x78,0x22,0x20,
0x68,0x65,0x69,0x67,0x68,0x74,0x3d,0x22,0x33,0x37,
0x2e,0x30,0x36,0x31,0x70,0x78,0x22,0x20,0x76,0x69,
0x65,0x77,0x42,0x6f,0x78,0x3d,0x22,0x30,0x20,0x30,
0x20,0x33,0x37,0x2e,0x30,0x36,0x31,0x20,0x33,0x37,
0x2e,0x30,0x36,0x31,0x22,0x20,0x65,0x6e,0x61,0x62,
0x6c,0x65,0x2d,0x62,0x61,0x63,0x6b,0x67,0x72,0x6f,
0x75,0x6e,0x64,0x3d,0x22,0x6e,0x65,0x77,0x20,0x30,
0x20,0x30,0x20,0x33,0x37,0x2e,0x30,0x36,0x31,0x20,
0x33,0x37,0x2e,0x30,0x36,0x31,0x22,0x20,0x78,0x6d,
0x6c,0x3a,0x73,0x70,0x61,0x63,0x65,0x3d,0x22,0x70,
0x72,0x65,0x73,0x65,0x72,0x76,0x65,0x22,0x3e,0x0d,
0x0a,0x3c,0x67,0x3e,0x0d,0x0a,0x09,0x3c,0x67,0x3e,
0x0d,0x0a,0x09,0x09,0x3c,0x67,0x3e,0x0d,0x0a,0x09,
0x09,0x09,0x3c,0x70,0x61,0x74,0x68,0x20,0x66,0x69,
0x6c,0x6c,0x3d,0x22,0x23,0x46,0x46,0x46,0x46,0x46,
0x46,0x22,0x20,0x64,0x3d,0x22,0x4d,0x32,0x32,0x2e,
0x30,0x38,0x36,0x2c,0x33,0x37,0x2e,0x30,0x36,0x68,
0x2d,0x37,0x2e,0x31,0x31,0x31,0x63,0x2d,0x32,0x2e,
0x32,0x38,0x39,0x2c,0x30,0x2d,0x33,0x2e,0x31,0x31,
0x39,0x2d,0x31,0x2e,0x38,0x36,0x36,0x2d,0x33,0x2e,
0x31,0x31,0x39,0x2d,0x33,0x2e,0x31,0x32,0x31,0x76,
0x2d,0x38,0x2e,0x37,0x33,0x32,0x48,0x33,0x2e,0x31,
0x32,0x31,0x43,0x30,0x2e,0x38,0x33,0x31,0x2c,0x32,
0x35,0x2e,0x32,0x30,0x36,0x2c,0x30,0x2c,0x32,0x33,
0x2e,0x33,0x34,0x2c,0x30,0x2c,0x32,0x32,0x2e,0x30,
0x38,0x35,0x0d,0x0a,0x09,0x09,0x09,0x09,0x76,0x2d,
0x37,0x2e,0x31,0x31,0x63,0x30,0x2d,0x32,0x2e,0x32,
0x38,0x39,0x2c,0x31,0x2e,0x38,0x36,0x37,0x2d,0x33,
0x2e,0x31,0x32,0x2c,0x33,0x2e,0x31,0x32,0x31,0x2d,
0x33,0x2e,0x31,0x32,0x68,0x38,0x2e,0x37,0x33,0x33,
0x56,0x33,0x2e,0x31,0x32,0x31,0x43,0x31,0x31,0x2e,
0x38,0x35,0x35,0x2c,0x30,0x2e,0x38,0x33,0x31,0x2c,
0x31,0x33,0x2e,0x37,0x32,0x2c,0x30,0x2c,0x31,0x34,
0x2e,0x39,0x37,0x34,0x2c,0x30,0x68,0x37,0x2e,0x31,
0x31,0x31,0x63,0x32,0x2e,0x32,0x39,0x2c,0x30,0x2c,
0x33,0x2e,0x31,0x32,0x31,0x2c,0x31,0x2e,0x38,0x36,
0x37,0x2c,0x33,0x2e,0x31,0x32,0x31,0x2c,0x33,0x2e,
0x31,0x32,0x31,0x76,0x38,0x2e,0x37,0x33,0x32,0x0d,
0x0a,0x09,0x09,0x09,0x09,0x68,0x38,0x2e,0x37,0x33,
0x31,0x63,0x32,0x2e,0x32,0x39,0x2c,0x30,0x2c,0x33,
0x2e,0x31,0x32,0x31,0x2c,0x31,0x2e,0x38,0x36,0x35,
0x2c,0x33,0x2e,0x31,0x32,0x31,0x2c,0x33,0x2e,0x31,
0x32,0x76,0x37,0x2e,0x31,0x31,0x63,0x30,0x2c,0x32,
0x2e,0x32,0x39,0x2d,0x31,0x2e,0x38,0x36,0x36,0x2c,
0x33,0x2e,0x31,0x32,0x31,0x2d,0x33,0x2e,0x31,0x32,
0x31,0x2c,0x33,0x2e,0x31,0x32,0x31,0x68,0x2d,0x38,
0x2e,0x37,0x33,0x31,0x76,0x38,0x2e,0x37,0x33,0x32,
0x0d,0x0a,0x09,0x09,0x09,0x09,0x43,0x32,0x35,0x2e,
0x32,0x30,0x37,0x2c,0x33,0x36,0x2e,0x32,0x32,0x39,
0x2c,0x32,0x33,0x2e,0x33,0x34,0x31,0x2c,0x33,0x37,
0x2e,0x30,0x36,0x2c,0x32,0x32,0x2e,0x30,0x38,0x36,
0x2c,0x33,0x37,0x2e,0x30,0x36,0x7a,0x20,0x4d,0x33,
0x2e,0x31,0x32,0x31,0x2c,0x31,0x33,0x2e,0x33,0x35,
0x34,0x43,0x32,0x2e,0x37,0x34,0x35,0x2c,0x31,0x33,
0x2e,0x33,0x35,0x39,0x2c,0x31,0x2e,0x35,0x2c,0x31,
0x33,0x2e,0x34,0x39,0x33,0x2c,0x31,0x2e,0x35,0x2c,
0x31,0x34,0x2e,0x39,0x37,0x34,0x76,0x37,0x2e,0x31,
0x31,0x0d,0x0a,0x09,0x09,0x09,0x09,0x63,0x30,0x2e,
0x30,0x30,0x36,0x2c,0x30,0x2e,0x33,0x37,0x36,0x2c,
0x30,0x2e,0x31,0x33,0x39,0x2c,0x31,0x2e,0x36,0x32,
0x31,0x2c,0x31,0x2e,0x36,0x32,0x31,0x2c,0x31,0x2e,
0x36,0x32,0x31,0x68,0x31,0x30,0x2e,0x32,0x33,0x33,
0x76,0x31,0x30,0x2e,0x32,0x33,0x32,0x63,0x30,0x2e,
0x30,0x30,0x35,0x2c,0x30,0x2e,0x33,0x37,0x36,0x2c,
0x30,0x2e,0x31,0x34,0x2c,0x31,0x2e,0x36,0x32,0x31,
0x2c,0x31,0x2e,0x36,0x31,0x39,0x2c,0x31,0x2e,0x36,
0x32,0x31,0x68,0x37,0x2e,0x31,0x30,0x38,0x0d,0x0a,
0x09,0x09,0x09,0x09,0x63,0x30,0x2e,0x33,0x38,0x34,
0x2d,0x30,0x2e,0x30,0x30,0x37,0x2c,0x31,0x2e,0x36,
0x32,0x34,0x2d,0x30,0x2e,0x31,0x34,0x33,0x2c,0x31,
0x2e,0x36,0x32,0x34,0x2d,0x31,0x2e,0x36,0x32,0x31,
0x56,0x32,0x33,0x2e,0x37,0x30,0x36,0x68,0x31,0x30,
0x2e,0x32,0x33,0x31,0x63,0x30,0x2e,0x33,0x37,0x36,
0x2d,0x30,0x2e,0x30,0x30,0x36,0x2c,0x31,0x2e,0x36,
0x32,0x31,0x2d,0x30,0x2e,0x31,0x34,0x2c,0x31,0x2e,
0x36,0x32,0x31,0x2d,0x31,0x2e,0x36,0x32,0x31,0x76,
0x2d,0x37,0x2e,0x31,0x31,0x0d,0x0a,0x09,0x09,0x09,
0x09,0x63,0x2d,0x30,0x2e,0x30,0x30,0x36,0x2d,0x30,
0x2e,0x33,0x37,0x36,0x2d,0x30,0x2e,0x31,0x34,0x2d,
0x31,0x2e,0x36,0x32,0x2d,0x31,0x2e,0x36,0x32,0x31,
0x2d,0x31,0x2e,0x36,0x32,0x68,0x2d,0x31,0x30,0x2e,
0x32,0x33,0x56,0x33,0x2e,0x31,0x32,0x31,0x43,0x32,
0x33,0x2e,0x37,0x30,0x31,0x2c,0x32,0x2e,0x37,0x34,
0x35,0x2c,0x32,0x33,0x2e,0x35,0x36,0x37,0x2c,0x31,
0x2e,0x35,0x2c,0x32,0x32,0x2e,0x30,0x38,0x36,0x2c,
0x31,0x2e,0x35,0x68,0x2d,0x37,0x2e,0x31,0x31,0x31,
0x0d,0x0a,0x09,0x09,0x09,0x09,0x63,0x2d,0x30,0x2e,
0x33,0x37,0x36,0x2c,0x30,0x2e,0x30,0x30,0x36,0x2d,
0x31,0x2e,0x36,0x31,0x39,0x2c,0x30,0x2e,0x31,0x34,
0x2d,0x31,0x2e,0x36,0x31,0x39,0x2c,0x31,0x2e,0x36,
0x32,0x31,0x76,0x31,0x30,0x2e,0x32,0x33,0x32,0x4c,
0x33,0x2e,0x31,0x32,0x31,0x2c,0x31,0x33,0x2e,0x33,
0x35,0x34,0x4c,0x33,0x2e,0x31,0x32,0x31,0x2c,0x31,
0x33,0x2e,0x33,0x35,0x34,0x7a,0x22,0x2f,0x3e,0x0d,
0x0a,0x09,0x09,0x3c,0x2f,0x67,0x3e,0x0d,0x0a,0x09,
0x3c,0x2f,0x67,0x3e,0x0d,0x0a,0x09,0x3c,0x67,0x3e,
0x0d,0x0a,0x09,0x09,0x3c,0x70,0x61,0x74,0x68,0x20,
0x66,0x69,0x6c,0x6c,0x3d,0x22,0x23,0x46,0x46,0x46,
0x46,0x46,0x46,0x22,0x20,0x64,0x3d,0x22,0x4d,0x31,
0x38,0x2e,0x35,0x33,0x31,0x2c,0x32,0x32,0x2e,0x31,
0x38,0x31,0x63,0x2d,0x32,0x2e,0x30,0x31,0x33,0x2c,
0x30,0x2d,0x33,0x2e,0x36,0x34,0x39,0x2d,0x31,0x2e,
0x36,0x33,0x39,0x2d,0x33,0x2e,0x36,0x34,0x39,0x2d,
0x33,0x2e,0x36,0x35,0x31,0x73,0x31,0x2e,0x36,0x33,
0x38,0x2d,0x33,0x2e,0x36,0x35,0x2c,0x33,0x2e,0x36,
0x34,0x39,0x2d,0x33,0x2e,0x36,0x35,0x63,0x32,0x2e,
0x30,0x31,0x33,0x2c,0x30,0x2c,0x33,0x2e,0x36,0x35,
0x2c,0x31,0x2e,0x36,0x33,0x39,0x2c,0x33,0x2e,0x36,
0x35,0x2c,0x33,0x2e,0x36,0x35,0x0d,0x0a,0x09,0x09,
0x09,0x43,0x32,0x32,0x2e,0x31,0x38,0x32,0x2c,0x32,
0x30,0x2e,0x35,0x34,0x33,0x2c,0x32,0x30,0x2e,0x35,
0x34,0x34,0x2c,0x32,0x32,0x2e,0x31,0x38,0x31,0x2c,
0x31,0x38,0x2e,0x35,0x33,0x31,0x2c,0x32,0x32,0x2e,
0x31,0x38,0x31,0x7a,0x20,0x4d,0x31,0x38,0x2e,0x35,
0x33,0x31,0x2c,0x31,0x36,0x2e,0x33,0x37,0x39,0x63,
0x2d,0x31,0x2e,0x31,0x38,0x36,0x2c,0x30,0x2d,0x32,
0x2e,0x31,0x34,0x39,0x2c,0x30,0x2e,0x39,0x36,0x35,
0x2d,0x32,0x2e,0x31,0x34,0x39,0x2c,0x32,0x2e,0x31,
0x35,0x73,0x30,0x2e,0x39,0x36,0x35,0x2c,0x32,0x2e,
0x31,0x35,0x31,0x2c,0x32,0x2e,0x31,0x34,0x39,0x2c,
0x32,0x2e,0x31,0x35,0x31,0x0d,0x0a,0x09,0x09,0x09,
0x63,0x31,0x2e,0x31,0x38,0x36,0x2c,0x30,0x2c,0x32,
0x2e,0x31,0x35,0x2d,0x30,0x2e,0x39,0x36,0x36,0x2c,
0x32,0x2e,0x31,0x35,0x2d,0x32,0x2e,0x31,0x35,0x31,
0x43,0x32,0x30,0x2e,0x36,0x38,0x32,0x2c,0x31,0x37,
0x2e,0x33,0x34,0x34,0x2c,0x31,0x39,0x2e,0x37,0x31,
0x37,0x2c,0x31,0x36,0x2e,0x33,0x37,0x39,0x2c,0x31,
0x38,0x2e,0x35,0x33,0x31,0x2c,0x31,0x36,0x2e,0x33,
0x37,0x39,0x7a,0x22,0x2f,0x3e,0x0d,0x0a,0x09,0x3c,
0x2f,0x67,0x3e,0x0d,0x0a,0x09,0x3c,0x67,0x3e,0x0d,
0x0a,0x09,0x09,0x3c,0x70,0x61,0x74,0x68,0x20,0x66,
0x69,0x6c,0x6c,0x3d,0x22,0x23,0x46,0x46,0x46,0x46,
0x46,0x46,0x22,0x20,0x64,0x3d,0x22,0x4d,0x32,0x31,
0x2e,0x35,0x33,0x36,0x2c,0x38,0x2e,0x36,0x31,0x36,
0x68,0x2d,0x36,0x2e,0x30,0x31,0x32,0x63,0x2d,0x30,
0x2e,0x32,0x37,0x33,0x2c,0x30,0x2d,0x30,0x2e,0x35,
0x32,0x35,0x2d,0x30,0x2e,0x31,0x35,0x2d,0x30,0x2e,
0x36,0x35,0x37,0x2d,0x30,0x2e,0x33,0x39,0x63,0x2d,
0x30,0x2e,0x31,0x33,0x32,0x2d,0x30,0x2e,0x32,0x34,
0x31,0x2d,0x30,0x2e,0x31,0x32,0x31,0x2d,0x30,0x2e,
0x35,0x33,0x34,0x2c,0x30,0x2e,0x30,0x32,0x36,0x2d,
0x30,0x2e,0x37,0x36,0x36,0x6c,0x33,0x2e,0x30,0x30,
0x35,0x2d,0x34,0x2e,0x36,0x38,0x34,0x0d,0x0a,0x09,
0x09,0x09,0x63,0x30,0x2e,0x32,0x37,0x36,0x2d,0x30,
0x2e,0x34,0x33,0x31,0x2c,0x30,0x2e,0x39,0x38,0x36,
0x2d,0x30,0x2e,0x34,0x33,0x2c,0x31,0x2e,0x32,0x36,
0x34,0x2c,0x30,0x6c,0x33,0x2e,0x30,0x30,0x35,0x2c,
0x34,0x2e,0x36,0x38,0x34,0x63,0x30,0x2e,0x31,0x34,
0x37,0x2c,0x30,0x2e,0x32,0x33,0x31,0x2c,0x30,0x2e,
0x31,0x35,0x39,0x2c,0x30,0x2e,0x35,0x32,0x34,0x2c,
0x30,0x2e,0x30,0x32,0x36,0x2c,0x30,0x2e,0x37,0x36,
0x36,0x43,0x32,0x32,0x2e,0x30,0x36,0x33,0x2c,0x38,
0x2e,0x34,0x36,0x36,0x2c,0x32,0x31,0x2e,0x38,0x31,
0x31,0x2c,0x38,0x2e,0x36,0x31,0x36,0x2c,0x32,0x31,
0x2e,0x35,0x33,0x36,0x2c,0x38,0x2e,0x36,0x31,0x36,
0x7a,0x0d,0x0a,0x09,0x09,0x09,0x20,0x4d,0x31,0x36,
0x2e,0x38,0x39,0x37,0x2c,0x37,0x2e,0x31,0x31,0x36,
0x68,0x33,0x2e,0x32,0x36,0x38,0x4c,0x31,0x38,0x2e,
0x35,0x33,0x2c,0x34,0x2e,0x35,0x37,0x31,0x4c,0x31,
0x36,0x2e,0x38,0x39,0x37,0x2c,0x37,0x2e,0x31,0x31,
0x36,0x7a,0x22,0x2f,0x3e,0x0d,0x0a,0x09,0x3c,0x2f,
0x67,0x3e,0x0d,0x0a,0x09,0x3c,0x67,0x3e,0x0d,0x0a,
0x09,0x09,0x3c,0x70,0x61,0x74,0x68,0x20,0x66,0x69,
0x6c,0x6c,0x3d,0x22,0x23,0x46,0x46,0x46,0x46,0x46,
0x46,0x22,0x20,0x64,0x3d,0x22,0x4d,0x33,0x2e,0x31,
0x32,0x35,0x2c,0x31,0x38,0x2e,0x35,0x33,0x6c,0x34,
0x2e,0x36,0x38,0x34,0x2c,0x33,0x2e,0x30,0x30,0x34,
0x76,0x2d,0x36,0x2e,0x30,0x31,0x4c,0x33,0x2e,0x31,
0x32,0x35,0x2c,0x31,0x38,0x2e,0x35,0x33,0x7a,0x22,
0x2f,0x3e,0x0d,0x0a,0x09,0x09,0x3c,0x70,0x61,0x74,
0x68,0x20,0x66,0x69,0x6c,0x6c,0x3d,0x22,0x23,0x46,
0x46,0x46,0x46,0x46,0x46,0x22,0x20,0x64,0x3d,0x22,
0x4d,0x37,0x2e,0x38,0x30,0x39,0x2c,0x32,0x32,0x2e,
0x32,0x38,0x34,0x63,0x2d,0x30,0x2e,0x31,0x34,0x31,
0x2c,0x30,0x2d,0x30,0x2e,0x32,0x38,0x32,0x2d,0x30,
0x2e,0x30,0x34,0x2d,0x30,0x2e,0x34,0x30,0x35,0x2d,
0x30,0x2e,0x31,0x31,0x39,0x4c,0x32,0x2e,0x37,0x32,
0x2c,0x31,0x39,0x2e,0x31,0x36,0x32,0x63,0x2d,0x30,
0x2e,0x32,0x31,0x35,0x2d,0x30,0x2e,0x31,0x33,0x38,
0x2d,0x30,0x2e,0x33,0x34,0x35,0x2d,0x30,0x2e,0x33,
0x37,0x36,0x2d,0x30,0x2e,0x33,0x34,0x35,0x2d,0x30,
0x2e,0x36,0x33,0x31,0x0d,0x0a,0x09,0x09,0x09,0x73,
0x30,0x2e,0x31,0x33,0x2d,0x30,0x2e,0x34,0x39,0x33,
0x2c,0x30,0x2e,0x33,0x34,0x35,0x2d,0x30,0x2e,0x36,
0x33,0x31,0x6c,0x34,0x2e,0x36,0x38,0x34,0x2d,0x33,
0x2e,0x30,0x30,0x36,0x63,0x30,0x2e,0x32,0x33,0x2d,
0x30,0x2e,0x31,0x34,0x38,0x2c,0x30,0x2e,0x35,0x32,
0x34,0x2d,0x30,0x2e,0x31,0x35,0x38,0x2c,0x30,0x2e,
0x37,0x36,0x36,0x2d,0x30,0x2e,0x30,0x32,0x37,0x63,
0x30,0x2e,0x32,0x34,0x2c,0x30,0x2e,0x31,0x33,0x31,
0x2c,0x30,0x2e,0x33,0x39,0x2c,0x30,0x2e,0x33,0x38,
0x34,0x2c,0x30,0x2e,0x33,0x39,0x2c,0x30,0x2e,0x36,
0x35,0x38,0x76,0x36,0x2e,0x30,0x31,0x0d,0x0a,0x09,
0x09,0x09,0x63,0x30,0x2c,0x30,0x2e,0x32,0x37,0x34,
0x2d,0x30,0x2e,0x31,0x34,0x38,0x2c,0x30,0x2e,0x35,
0x32,0x36,0x2d,0x30,0x2e,0x33,0x39,0x2c,0x30,0x2e,
0x36,0x35,0x38,0x43,0x38,0x2e,0x30,0x35,0x36,0x2c,
0x32,0x32,0x2e,0x32,0x35,0x34,0x2c,0x37,0x2e,0x39,
0x33,0x32,0x2c,0x32,0x32,0x2e,0x32,0x38,0x34,0x2c,
0x37,0x2e,0x38,0x30,0x39,0x2c,0x32,0x32,0x2e,0x32,
0x38,0x34,0x7a,0x20,0x4d,0x34,0x2e,0x35,0x31,0x34,
0x2c,0x31,0x38,0x2e,0x35,0x33,0x6c,0x32,0x2e,0x35,
0x34,0x35,0x2c,0x31,0x2e,0x36,0x33,0x32,0x76,0x2d,
0x33,0x2e,0x32,0x36,0x35,0x4c,0x34,0x2e,0x35,0x31,
0x34,0x2c,0x31,0x38,0x2e,0x35,0x33,0x7a,0x22,0x2f,
0x3e,0x0d,0x0a,0x09,0x3c,0x2f,0x67,0x3e,0x0d,0x0a,
0x09,0x3c,0x67,0x3e,0x0d,0x0a,0x09,0x09,0x3c,0x70,
0x61,0x74,0x68,0x20,0x66,0x69,0x6c,0x6c,0x3d,0x22,
0x23,0x46,0x46,0x46,0x46,0x46,0x46,0x22,0x20,0x64,
0x3d,0x22,0x4d,0x33,0x33,0x2e,0x38,0x37,0x39,0x2c,
0x31,0x38,0x2e,0x35,0x32,0x39,0x6c,0x2d,0x34,0x2e,
0x36,0x38,0x35,0x2d,0x33,0x2e,0x30,0x30,0x35,0x76,
0x36,0x2e,0x30,0x31,0x4c,0x33,0x33,0x2e,0x38,0x37,
0x39,0x2c,0x31,0x38,0x2e,0x35,0x32,0x39,0x7a,0x22,
0x2f,0x3e,0x0d,0x0a,0x09,0x09,0x3c,0x70,0x61,0x74,
0x68,0x20,0x66,0x69,0x6c,0x6c,0x3d,0x22,0x23,0x46,
0x46,0x46,0x46,0x46,0x46,0x22,0x20,0x64,0x3d,0x22,
0x4d,0x32,0x39,0x2e,0x31,0x39,0x35,0x2c,0x32,0x32,
0x2e,0x32,0x38,0x34,0x63,0x2d,0x30,0x2e,0x31,0x32,
0x34,0x2c,0x30,0x2d,0x30,0x2e,0x32,0x34,0x36,0x2d,
0x30,0x2e,0x30,0x33,0x2d,0x30,0x2e,0x33,0x35,0x38,
0x2d,0x30,0x2e,0x30,0x39,0x32,0x63,0x2d,0x30,0x2e,
0x32,0x34,0x31,0x2d,0x30,0x2e,0x31,0x33,0x32,0x2d,
0x30,0x2e,0x33,0x39,0x32,0x2d,0x30,0x2e,0x33,0x38,
0x34,0x2d,0x30,0x2e,0x33,0x39,0x32,0x2d,0x30,0x2e,
0x36,0x35,0x38,0x76,0x2d,0x36,0x2e,0x30,0x31,0x0d,
0x0a,0x09,0x09,0x09,0x63,0x30,0x2d,0x30,0x2e,0x32,
0x37,0x34,0x2c,0x30,0x2e,0x31,0x34,0x39,0x2d,0x30,
0x2e,0x35,0x32,0x36,0x2c,0x30,0x2e,0x33,0x39,0x32,
0x2d,0x30,0x2e,0x36,0x35,0x38,0x63,0x30,0x2e,0x32,
0x33,0x39,0x2d,0x30,0x2e,0x31,0x33,0x31,0x2c,0x30,
0x2e,0x35,0x33,0x33,0x2d,0x30,0x2e,0x31,0x32,0x33,
0x2c,0x30,0x2e,0x37,0x36,0x35,0x2c,0x30,0x2e,0x30,
0x32,0x37,0x6c,0x34,0x2e,0x36,0x38,0x35,0x2c,0x33,
0x2e,0x30,0x30,0x35,0x63,0x30,0x2e,0x32,0x31,0x35,
0x2c,0x30,0x2e,0x31,0x33,0x38,0x2c,0x30,0x2e,0x33,
0x34,0x35,0x2c,0x30,0x2e,0x33,0x37,0x36,0x2c,0x30,
0x2e,0x33,0x34,0x35,0x2c,0x30,0x2e,0x36,0x33,0x31,
0x0d,0x0a,0x09,0x09,0x09,0x73,0x2d,0x30,0x2e,0x31,
0x33,0x2c,0x30,0x2e,0x34,0x39,0x33,0x2d,0x30,0x2e,
0x33,0x34,0x35,0x2c,0x30,0x2e,0x36,0x33,0x31,0x6c,
0x2d,0x34,0x2e,0x36,0x38,0x35,0x2c,0x33,0x2e,0x30,
0x30,0x34,0x43,0x32,0x39,0x2e,0x34,0x37,0x38,0x2c,
0x32,0x32,0x2e,0x32,0x34,0x34,0x2c,0x32,0x39,0x2e,
0x33,0x33,0x36,0x2c,0x32,0x32,0x2e,0x32,0x38,0x34,
0x2c,0x32,0x39,0x2e,0x31,0x39,0x35,0x2c,0x32,0x32,
0x2e,0x32,0x38,0x34,0x7a,0x20,0x4d,0x32,0x39,0x2e,
0x39,0x34,0x35,0x2c,0x31,0x36,0x2e,0x38,0x39,0x36,
0x76,0x33,0x2e,0x32,0x36,0x36,0x6c,0x32,0x2e,0x35,
0x34,0x36,0x2d,0x31,0x2e,0x36,0x33,0x33,0x0d,0x0a,
0x09,0x09,0x09,0x4c,0x32,0x39,0x2e,0x39,0x34,0x35,
0x2c,0x31,0x36,0x2e,0x38,0x39,0x36,0x7a,0x22,0x2f,
0x3e,0x0d,0x0a,0x09,0x3c,0x2f,0x67,0x3e,0x0d,0x0a,
0x09,0x3c,0x67,0x3e,0x0d,0x0a,0x09,0x09,0x3c,0x70,
0x61,0x74,0x68,0x20,0x66,0x69,0x6c,0x6c,0x3d,0x22,
0x23,0x46,0x46,0x46,0x46,0x46,0x46,0x22,0x20,0x64,
0x3d,0x22,0x4d,0x31,0x38,0x2e,0x35,0x33,0x2c,0x33,
0x34,0x2e,0x36,0x32,0x36,0x4c,0x31,0x38,0x2e,0x35,
0x33,0x2c,0x33,0x34,0x2e,0x36,0x32,0x36,0x63,0x2d,
0x30,0x2e,0x32,0x35,0x35,0x2c,0x30,0x2d,0x30,0x2e,
0x34,0x39,0x32,0x2d,0x30,0x2e,0x31,0x33,0x2d,0x30,
0x2e,0x36,0x33,0x31,0x2d,0x30,0x2e,0x33,0x34,0x35,
0x6c,0x2d,0x33,0x2e,0x30,0x30,0x35,0x2d,0x34,0x2e,
0x36,0x38,0x34,0x0d,0x0a,0x09,0x09,0x09,0x63,0x2d,
0x30,0x2e,0x31,0x34,0x37,0x2d,0x30,0x2e,0x32,0x33,
0x31,0x2d,0x30,0x2e,0x31,0x35,0x38,0x2d,0x30,0x2e,
0x35,0x32,0x34,0x2d,0x30,0x2e,0x30,0x32,0x36,0x2d,
0x30,0x2e,0x37,0x36,0x36,0x73,0x30,0x2e,0x33,0x38,
0x34,0x2d,0x30,0x2e,0x33,0x39,0x31,0x2c,0x30,0x2e,
0x36,0x35,0x37,0x2d,0x30,0x2e,0x33,0x39,0x31,0x68,
0x36,0x2e,0x30,0x31,0x32,0x63,0x30,0x2e,0x32,0x37,
0x33,0x2c,0x30,0x2c,0x30,0x2e,0x35,0x32,0x35,0x2c,
0x30,0x2e,0x31,0x34,0x38,0x2c,0x30,0x2e,0x36,0x35,
0x37,0x2c,0x30,0x2e,0x33,0x39,0x31,0x0d,0x0a,0x09,
0x09,0x09,0x63,0x30,0x2e,0x31,0x33,0x33,0x2c,0x30,
0x2e,0x32,0x34,0x2c,0x30,0x2e,0x31,0x32,0x31,0x2c,
0x30,0x2e,0x35,0x33,0x33,0x2d,0x30,0x2e,0x30,0x32,
0x36,0x2c,0x30,0x2e,0x37,0x36,0x36,0x6c,0x2d,0x33,
0x2e,0x30,0x30,0x35,0x2c,0x34,0x2e,0x36,0x38,0x34,
0x43,0x31,0x39,0x2e,0x30,0x32,0x33,0x2c,0x33,0x34,
0x2e,0x34,0x39,0x36,0x2c,0x31,0x38,0x2e,0x37,0x38,
0x36,0x2c,0x33,0x34,0x2e,0x36,0x32,0x36,0x2c,0x31,
0x38,0x2e,0x35,0x33,0x2c,0x33,0x34,0x2e,0x36,0x32,
0x36,0x7a,0x20,0x4d,0x31,0x36,0x2e,0x38,0x39,0x37,
0x2c,0x32,0x39,0x2e,0x39,0x34,0x32,0x6c,0x31,0x2e,
0x36,0x33,0x33,0x2c,0x32,0x2e,0x35,0x34,0x35,0x0d,
0x0a,0x09,0x09,0x09,0x6c,0x31,0x2e,0x36,0x33,0x35,
0x2d,0x32,0x2e,0x35,0x34,0x35,0x48,0x31,0x36,0x2e,
0x38,0x39,0x37,0x7a,0x22,0x2f,0x3e,0x0d,0x0a,0x09,
0x3c,0x2f,0x67,0x3e,0x0d,0x0a,0x3c,0x2f,0x67,0x3e,
0x0d,0x0a,0x3c,0x2f,0x73,0x76,0x67,0x3e,0x0d,0x0a
};

View file

@ -0,0 +1,329 @@
//this file was auto-generated from "dpad_right.svg" by res2h
#include "../Resources.h"
const size_t help_dpad_right_svg_size = 3216;
const unsigned char help_dpad_right_svg_data[3216] = {
0x3c,0x3f,0x78,0x6d,0x6c,0x20,0x76,0x65,0x72,0x73,
0x69,0x6f,0x6e,0x3d,0x22,0x31,0x2e,0x30,0x22,0x20,
0x65,0x6e,0x63,0x6f,0x64,0x69,0x6e,0x67,0x3d,0x22,
0x75,0x74,0x66,0x2d,0x38,0x22,0x3f,0x3e,0x0d,0x0a,
0x3c,0x21,0x2d,0x2d,0x20,0x47,0x65,0x6e,0x65,0x72,
0x61,0x74,0x6f,0x72,0x3a,0x20,0x41,0x64,0x6f,0x62,
0x65,0x20,0x49,0x6c,0x6c,0x75,0x73,0x74,0x72,0x61,
0x74,0x6f,0x72,0x20,0x31,0x36,0x2e,0x30,0x2e,0x33,
0x2c,0x20,0x53,0x56,0x47,0x20,0x45,0x78,0x70,0x6f,
0x72,0x74,0x20,0x50,0x6c,0x75,0x67,0x2d,0x49,0x6e,
0x20,0x2e,0x20,0x53,0x56,0x47,0x20,0x56,0x65,0x72,
0x73,0x69,0x6f,0x6e,0x3a,0x20,0x36,0x2e,0x30,0x30,
0x20,0x42,0x75,0x69,0x6c,0x64,0x20,0x30,0x29,0x20,
0x20,0x2d,0x2d,0x3e,0x0d,0x0a,0x3c,0x21,0x44,0x4f,
0x43,0x54,0x59,0x50,0x45,0x20,0x73,0x76,0x67,0x20,
0x50,0x55,0x42,0x4c,0x49,0x43,0x20,0x22,0x2d,0x2f,
0x2f,0x57,0x33,0x43,0x2f,0x2f,0x44,0x54,0x44,0x20,
0x53,0x56,0x47,0x20,0x31,0x2e,0x31,0x2f,0x2f,0x45,
0x4e,0x22,0x20,0x22,0x68,0x74,0x74,0x70,0x3a,0x2f,
0x2f,0x77,0x77,0x77,0x2e,0x77,0x33,0x2e,0x6f,0x72,
0x67,0x2f,0x47,0x72,0x61,0x70,0x68,0x69,0x63,0x73,
0x2f,0x53,0x56,0x47,0x2f,0x31,0x2e,0x31,0x2f,0x44,
0x54,0x44,0x2f,0x73,0x76,0x67,0x31,0x31,0x2e,0x64,
0x74,0x64,0x22,0x3e,0x0d,0x0a,0x3c,0x73,0x76,0x67,
0x20,0x76,0x65,0x72,0x73,0x69,0x6f,0x6e,0x3d,0x22,
0x31,0x2e,0x31,0x22,0x20,0x69,0x64,0x3d,0x22,0x5f,
0x78,0x33,0x30,0x5f,0x22,0x20,0x78,0x6d,0x6c,0x6e,
0x73,0x3d,0x22,0x68,0x74,0x74,0x70,0x3a,0x2f,0x2f,
0x77,0x77,0x77,0x2e,0x77,0x33,0x2e,0x6f,0x72,0x67,
0x2f,0x32,0x30,0x30,0x30,0x2f,0x73,0x76,0x67,0x22,
0x20,0x78,0x6d,0x6c,0x6e,0x73,0x3a,0x78,0x6c,0x69,
0x6e,0x6b,0x3d,0x22,0x68,0x74,0x74,0x70,0x3a,0x2f,
0x2f,0x77,0x77,0x77,0x2e,0x77,0x33,0x2e,0x6f,0x72,
0x67,0x2f,0x31,0x39,0x39,0x39,0x2f,0x78,0x6c,0x69,
0x6e,0x6b,0x22,0x20,0x78,0x3d,0x22,0x30,0x70,0x78,
0x22,0x20,0x79,0x3d,0x22,0x30,0x70,0x78,0x22,0x0d,
0x0a,0x09,0x20,0x77,0x69,0x64,0x74,0x68,0x3d,0x22,
0x33,0x37,0x2e,0x30,0x36,0x31,0x70,0x78,0x22,0x20,
0x68,0x65,0x69,0x67,0x68,0x74,0x3d,0x22,0x33,0x37,
0x2e,0x30,0x36,0x31,0x70,0x78,0x22,0x20,0x76,0x69,
0x65,0x77,0x42,0x6f,0x78,0x3d,0x22,0x30,0x20,0x30,
0x20,0x33,0x37,0x2e,0x30,0x36,0x31,0x20,0x33,0x37,
0x2e,0x30,0x36,0x31,0x22,0x20,0x65,0x6e,0x61,0x62,
0x6c,0x65,0x2d,0x62,0x61,0x63,0x6b,0x67,0x72,0x6f,
0x75,0x6e,0x64,0x3d,0x22,0x6e,0x65,0x77,0x20,0x30,
0x20,0x30,0x20,0x33,0x37,0x2e,0x30,0x36,0x31,0x20,
0x33,0x37,0x2e,0x30,0x36,0x31,0x22,0x20,0x78,0x6d,
0x6c,0x3a,0x73,0x70,0x61,0x63,0x65,0x3d,0x22,0x70,
0x72,0x65,0x73,0x65,0x72,0x76,0x65,0x22,0x3e,0x0d,
0x0a,0x3c,0x67,0x3e,0x0d,0x0a,0x09,0x3c,0x67,0x3e,
0x0d,0x0a,0x09,0x09,0x3c,0x67,0x3e,0x0d,0x0a,0x09,
0x09,0x09,0x3c,0x70,0x61,0x74,0x68,0x20,0x66,0x69,
0x6c,0x6c,0x3d,0x22,0x23,0x46,0x46,0x46,0x46,0x46,
0x46,0x22,0x20,0x64,0x3d,0x22,0x4d,0x32,0x32,0x2e,
0x30,0x38,0x36,0x2c,0x33,0x37,0x2e,0x30,0x36,0x68,
0x2d,0x37,0x2e,0x31,0x31,0x31,0x63,0x2d,0x32,0x2e,
0x32,0x38,0x39,0x2c,0x30,0x2d,0x33,0x2e,0x31,0x31,
0x39,0x2d,0x31,0x2e,0x38,0x36,0x36,0x2d,0x33,0x2e,
0x31,0x31,0x39,0x2d,0x33,0x2e,0x31,0x32,0x31,0x76,
0x2d,0x38,0x2e,0x37,0x33,0x32,0x48,0x33,0x2e,0x31,
0x32,0x31,0x43,0x30,0x2e,0x38,0x33,0x31,0x2c,0x32,
0x35,0x2e,0x32,0x30,0x36,0x2c,0x30,0x2c,0x32,0x33,
0x2e,0x33,0x34,0x2c,0x30,0x2c,0x32,0x32,0x2e,0x30,
0x38,0x35,0x0d,0x0a,0x09,0x09,0x09,0x09,0x76,0x2d,
0x37,0x2e,0x31,0x31,0x63,0x30,0x2d,0x32,0x2e,0x32,
0x38,0x39,0x2c,0x31,0x2e,0x38,0x36,0x37,0x2d,0x33,
0x2e,0x31,0x32,0x2c,0x33,0x2e,0x31,0x32,0x31,0x2d,
0x33,0x2e,0x31,0x32,0x68,0x38,0x2e,0x37,0x33,0x33,
0x56,0x33,0x2e,0x31,0x32,0x31,0x43,0x31,0x31,0x2e,
0x38,0x35,0x35,0x2c,0x30,0x2e,0x38,0x33,0x31,0x2c,
0x31,0x33,0x2e,0x37,0x32,0x2c,0x30,0x2c,0x31,0x34,
0x2e,0x39,0x37,0x34,0x2c,0x30,0x68,0x37,0x2e,0x31,
0x31,0x31,0x63,0x32,0x2e,0x32,0x39,0x2c,0x30,0x2c,
0x33,0x2e,0x31,0x32,0x31,0x2c,0x31,0x2e,0x38,0x36,
0x37,0x2c,0x33,0x2e,0x31,0x32,0x31,0x2c,0x33,0x2e,
0x31,0x32,0x31,0x76,0x38,0x2e,0x37,0x33,0x32,0x0d,
0x0a,0x09,0x09,0x09,0x09,0x68,0x38,0x2e,0x37,0x33,
0x31,0x63,0x32,0x2e,0x32,0x39,0x2c,0x30,0x2c,0x33,
0x2e,0x31,0x32,0x31,0x2c,0x31,0x2e,0x38,0x36,0x35,
0x2c,0x33,0x2e,0x31,0x32,0x31,0x2c,0x33,0x2e,0x31,
0x32,0x76,0x37,0x2e,0x31,0x31,0x63,0x30,0x2c,0x32,
0x2e,0x32,0x39,0x2d,0x31,0x2e,0x38,0x36,0x36,0x2c,
0x33,0x2e,0x31,0x32,0x31,0x2d,0x33,0x2e,0x31,0x32,
0x31,0x2c,0x33,0x2e,0x31,0x32,0x31,0x68,0x2d,0x38,
0x2e,0x37,0x33,0x31,0x76,0x38,0x2e,0x37,0x33,0x32,
0x0d,0x0a,0x09,0x09,0x09,0x09,0x43,0x32,0x35,0x2e,
0x32,0x30,0x37,0x2c,0x33,0x36,0x2e,0x32,0x32,0x39,
0x2c,0x32,0x33,0x2e,0x33,0x34,0x31,0x2c,0x33,0x37,
0x2e,0x30,0x36,0x2c,0x32,0x32,0x2e,0x30,0x38,0x36,
0x2c,0x33,0x37,0x2e,0x30,0x36,0x7a,0x20,0x4d,0x33,
0x2e,0x31,0x32,0x31,0x2c,0x31,0x33,0x2e,0x33,0x35,
0x34,0x43,0x32,0x2e,0x37,0x34,0x35,0x2c,0x31,0x33,
0x2e,0x33,0x35,0x39,0x2c,0x31,0x2e,0x35,0x2c,0x31,
0x33,0x2e,0x34,0x39,0x33,0x2c,0x31,0x2e,0x35,0x2c,
0x31,0x34,0x2e,0x39,0x37,0x34,0x76,0x37,0x2e,0x31,
0x31,0x0d,0x0a,0x09,0x09,0x09,0x09,0x63,0x30,0x2e,
0x30,0x30,0x36,0x2c,0x30,0x2e,0x33,0x37,0x36,0x2c,
0x30,0x2e,0x31,0x33,0x39,0x2c,0x31,0x2e,0x36,0x32,
0x31,0x2c,0x31,0x2e,0x36,0x32,0x31,0x2c,0x31,0x2e,
0x36,0x32,0x31,0x68,0x31,0x30,0x2e,0x32,0x33,0x33,
0x76,0x31,0x30,0x2e,0x32,0x33,0x32,0x63,0x30,0x2e,
0x30,0x30,0x35,0x2c,0x30,0x2e,0x33,0x37,0x36,0x2c,
0x30,0x2e,0x31,0x34,0x2c,0x31,0x2e,0x36,0x32,0x31,
0x2c,0x31,0x2e,0x36,0x31,0x39,0x2c,0x31,0x2e,0x36,
0x32,0x31,0x68,0x37,0x2e,0x31,0x30,0x38,0x0d,0x0a,
0x09,0x09,0x09,0x09,0x63,0x30,0x2e,0x33,0x38,0x34,
0x2d,0x30,0x2e,0x30,0x30,0x37,0x2c,0x31,0x2e,0x36,
0x32,0x34,0x2d,0x30,0x2e,0x31,0x34,0x33,0x2c,0x31,
0x2e,0x36,0x32,0x34,0x2d,0x31,0x2e,0x36,0x32,0x31,
0x56,0x32,0x33,0x2e,0x37,0x30,0x36,0x68,0x31,0x30,
0x2e,0x32,0x33,0x31,0x63,0x30,0x2e,0x33,0x37,0x36,
0x2d,0x30,0x2e,0x30,0x30,0x36,0x2c,0x31,0x2e,0x36,
0x32,0x31,0x2d,0x30,0x2e,0x31,0x34,0x2c,0x31,0x2e,
0x36,0x32,0x31,0x2d,0x31,0x2e,0x36,0x32,0x31,0x76,
0x2d,0x37,0x2e,0x31,0x31,0x0d,0x0a,0x09,0x09,0x09,
0x09,0x63,0x2d,0x30,0x2e,0x30,0x30,0x36,0x2d,0x30,
0x2e,0x33,0x37,0x36,0x2d,0x30,0x2e,0x31,0x34,0x2d,
0x31,0x2e,0x36,0x32,0x2d,0x31,0x2e,0x36,0x32,0x31,
0x2d,0x31,0x2e,0x36,0x32,0x68,0x2d,0x31,0x30,0x2e,
0x32,0x33,0x56,0x33,0x2e,0x31,0x32,0x31,0x43,0x32,
0x33,0x2e,0x37,0x30,0x31,0x2c,0x32,0x2e,0x37,0x34,
0x35,0x2c,0x32,0x33,0x2e,0x35,0x36,0x37,0x2c,0x31,
0x2e,0x35,0x2c,0x32,0x32,0x2e,0x30,0x38,0x36,0x2c,
0x31,0x2e,0x35,0x68,0x2d,0x37,0x2e,0x31,0x31,0x31,
0x0d,0x0a,0x09,0x09,0x09,0x09,0x63,0x2d,0x30,0x2e,
0x33,0x37,0x36,0x2c,0x30,0x2e,0x30,0x30,0x36,0x2d,
0x31,0x2e,0x36,0x31,0x39,0x2c,0x30,0x2e,0x31,0x34,
0x2d,0x31,0x2e,0x36,0x31,0x39,0x2c,0x31,0x2e,0x36,
0x32,0x31,0x76,0x31,0x30,0x2e,0x32,0x33,0x32,0x4c,
0x33,0x2e,0x31,0x32,0x31,0x2c,0x31,0x33,0x2e,0x33,
0x35,0x34,0x4c,0x33,0x2e,0x31,0x32,0x31,0x2c,0x31,
0x33,0x2e,0x33,0x35,0x34,0x7a,0x22,0x2f,0x3e,0x0d,
0x0a,0x09,0x09,0x3c,0x2f,0x67,0x3e,0x0d,0x0a,0x09,
0x3c,0x2f,0x67,0x3e,0x0d,0x0a,0x09,0x3c,0x67,0x3e,
0x0d,0x0a,0x09,0x09,0x3c,0x70,0x61,0x74,0x68,0x20,
0x66,0x69,0x6c,0x6c,0x3d,0x22,0x23,0x46,0x46,0x46,
0x46,0x46,0x46,0x22,0x20,0x64,0x3d,0x22,0x4d,0x31,
0x38,0x2e,0x35,0x33,0x31,0x2c,0x32,0x32,0x2e,0x31,
0x38,0x31,0x63,0x2d,0x32,0x2e,0x30,0x31,0x33,0x2c,
0x30,0x2d,0x33,0x2e,0x36,0x34,0x39,0x2d,0x31,0x2e,
0x36,0x33,0x39,0x2d,0x33,0x2e,0x36,0x34,0x39,0x2d,
0x33,0x2e,0x36,0x35,0x31,0x73,0x31,0x2e,0x36,0x33,
0x38,0x2d,0x33,0x2e,0x36,0x35,0x2c,0x33,0x2e,0x36,
0x34,0x39,0x2d,0x33,0x2e,0x36,0x35,0x63,0x32,0x2e,
0x30,0x31,0x33,0x2c,0x30,0x2c,0x33,0x2e,0x36,0x35,
0x2c,0x31,0x2e,0x36,0x33,0x39,0x2c,0x33,0x2e,0x36,
0x35,0x2c,0x33,0x2e,0x36,0x35,0x0d,0x0a,0x09,0x09,
0x09,0x43,0x32,0x32,0x2e,0x31,0x38,0x32,0x2c,0x32,
0x30,0x2e,0x35,0x34,0x33,0x2c,0x32,0x30,0x2e,0x35,
0x34,0x34,0x2c,0x32,0x32,0x2e,0x31,0x38,0x31,0x2c,
0x31,0x38,0x2e,0x35,0x33,0x31,0x2c,0x32,0x32,0x2e,
0x31,0x38,0x31,0x7a,0x20,0x4d,0x31,0x38,0x2e,0x35,
0x33,0x31,0x2c,0x31,0x36,0x2e,0x33,0x37,0x39,0x63,
0x2d,0x31,0x2e,0x31,0x38,0x36,0x2c,0x30,0x2d,0x32,
0x2e,0x31,0x34,0x39,0x2c,0x30,0x2e,0x39,0x36,0x35,
0x2d,0x32,0x2e,0x31,0x34,0x39,0x2c,0x32,0x2e,0x31,
0x35,0x73,0x30,0x2e,0x39,0x36,0x35,0x2c,0x32,0x2e,
0x31,0x35,0x31,0x2c,0x32,0x2e,0x31,0x34,0x39,0x2c,
0x32,0x2e,0x31,0x35,0x31,0x0d,0x0a,0x09,0x09,0x09,
0x63,0x31,0x2e,0x31,0x38,0x36,0x2c,0x30,0x2c,0x32,
0x2e,0x31,0x35,0x2d,0x30,0x2e,0x39,0x36,0x36,0x2c,
0x32,0x2e,0x31,0x35,0x2d,0x32,0x2e,0x31,0x35,0x31,
0x43,0x32,0x30,0x2e,0x36,0x38,0x32,0x2c,0x31,0x37,
0x2e,0x33,0x34,0x34,0x2c,0x31,0x39,0x2e,0x37,0x31,
0x37,0x2c,0x31,0x36,0x2e,0x33,0x37,0x39,0x2c,0x31,
0x38,0x2e,0x35,0x33,0x31,0x2c,0x31,0x36,0x2e,0x33,
0x37,0x39,0x7a,0x22,0x2f,0x3e,0x0d,0x0a,0x09,0x3c,
0x2f,0x67,0x3e,0x0d,0x0a,0x09,0x3c,0x67,0x3e,0x0d,
0x0a,0x09,0x09,0x3c,0x70,0x61,0x74,0x68,0x20,0x66,
0x69,0x6c,0x6c,0x3d,0x22,0x23,0x46,0x46,0x46,0x46,
0x46,0x46,0x22,0x20,0x64,0x3d,0x22,0x4d,0x32,0x31,
0x2e,0x35,0x33,0x36,0x2c,0x38,0x2e,0x36,0x31,0x36,
0x68,0x2d,0x36,0x2e,0x30,0x31,0x32,0x63,0x2d,0x30,
0x2e,0x32,0x37,0x33,0x2c,0x30,0x2d,0x30,0x2e,0x35,
0x32,0x35,0x2d,0x30,0x2e,0x31,0x35,0x2d,0x30,0x2e,
0x36,0x35,0x37,0x2d,0x30,0x2e,0x33,0x39,0x63,0x2d,
0x30,0x2e,0x31,0x33,0x32,0x2d,0x30,0x2e,0x32,0x34,
0x31,0x2d,0x30,0x2e,0x31,0x32,0x31,0x2d,0x30,0x2e,
0x35,0x33,0x34,0x2c,0x30,0x2e,0x30,0x32,0x36,0x2d,
0x30,0x2e,0x37,0x36,0x36,0x6c,0x33,0x2e,0x30,0x30,
0x35,0x2d,0x34,0x2e,0x36,0x38,0x34,0x0d,0x0a,0x09,
0x09,0x09,0x63,0x30,0x2e,0x32,0x37,0x36,0x2d,0x30,
0x2e,0x34,0x33,0x31,0x2c,0x30,0x2e,0x39,0x38,0x36,
0x2d,0x30,0x2e,0x34,0x33,0x2c,0x31,0x2e,0x32,0x36,
0x34,0x2c,0x30,0x6c,0x33,0x2e,0x30,0x30,0x35,0x2c,
0x34,0x2e,0x36,0x38,0x34,0x63,0x30,0x2e,0x31,0x34,
0x37,0x2c,0x30,0x2e,0x32,0x33,0x31,0x2c,0x30,0x2e,
0x31,0x35,0x39,0x2c,0x30,0x2e,0x35,0x32,0x34,0x2c,
0x30,0x2e,0x30,0x32,0x36,0x2c,0x30,0x2e,0x37,0x36,
0x36,0x43,0x32,0x32,0x2e,0x30,0x36,0x33,0x2c,0x38,
0x2e,0x34,0x36,0x36,0x2c,0x32,0x31,0x2e,0x38,0x31,
0x31,0x2c,0x38,0x2e,0x36,0x31,0x36,0x2c,0x32,0x31,
0x2e,0x35,0x33,0x36,0x2c,0x38,0x2e,0x36,0x31,0x36,
0x7a,0x0d,0x0a,0x09,0x09,0x09,0x20,0x4d,0x31,0x36,
0x2e,0x38,0x39,0x37,0x2c,0x37,0x2e,0x31,0x31,0x36,
0x68,0x33,0x2e,0x32,0x36,0x38,0x4c,0x31,0x38,0x2e,
0x35,0x33,0x2c,0x34,0x2e,0x35,0x37,0x31,0x4c,0x31,
0x36,0x2e,0x38,0x39,0x37,0x2c,0x37,0x2e,0x31,0x31,
0x36,0x7a,0x22,0x2f,0x3e,0x0d,0x0a,0x09,0x3c,0x2f,
0x67,0x3e,0x0d,0x0a,0x09,0x3c,0x67,0x3e,0x0d,0x0a,
0x09,0x09,0x3c,0x70,0x61,0x74,0x68,0x20,0x66,0x69,
0x6c,0x6c,0x3d,0x22,0x23,0x46,0x46,0x46,0x46,0x46,
0x46,0x22,0x20,0x64,0x3d,0x22,0x4d,0x37,0x2e,0x38,
0x30,0x39,0x2c,0x32,0x32,0x2e,0x32,0x38,0x34,0x63,
0x2d,0x30,0x2e,0x31,0x34,0x31,0x2c,0x30,0x2d,0x30,
0x2e,0x32,0x38,0x32,0x2d,0x30,0x2e,0x30,0x34,0x2d,
0x30,0x2e,0x34,0x30,0x35,0x2d,0x30,0x2e,0x31,0x31,
0x39,0x4c,0x32,0x2e,0x37,0x32,0x2c,0x31,0x39,0x2e,
0x31,0x36,0x32,0x63,0x2d,0x30,0x2e,0x32,0x31,0x35,
0x2d,0x30,0x2e,0x31,0x33,0x38,0x2d,0x30,0x2e,0x33,
0x34,0x35,0x2d,0x30,0x2e,0x33,0x37,0x36,0x2d,0x30,
0x2e,0x33,0x34,0x35,0x2d,0x30,0x2e,0x36,0x33,0x31,
0x0d,0x0a,0x09,0x09,0x09,0x73,0x30,0x2e,0x31,0x33,
0x2d,0x30,0x2e,0x34,0x39,0x33,0x2c,0x30,0x2e,0x33,
0x34,0x35,0x2d,0x30,0x2e,0x36,0x33,0x31,0x6c,0x34,
0x2e,0x36,0x38,0x34,0x2d,0x33,0x2e,0x30,0x30,0x36,
0x63,0x30,0x2e,0x32,0x33,0x2d,0x30,0x2e,0x31,0x34,
0x38,0x2c,0x30,0x2e,0x35,0x32,0x34,0x2d,0x30,0x2e,
0x31,0x35,0x38,0x2c,0x30,0x2e,0x37,0x36,0x36,0x2d,
0x30,0x2e,0x30,0x32,0x37,0x63,0x30,0x2e,0x32,0x34,
0x2c,0x30,0x2e,0x31,0x33,0x31,0x2c,0x30,0x2e,0x33,
0x39,0x2c,0x30,0x2e,0x33,0x38,0x34,0x2c,0x30,0x2e,
0x33,0x39,0x2c,0x30,0x2e,0x36,0x35,0x38,0x76,0x36,
0x2e,0x30,0x31,0x0d,0x0a,0x09,0x09,0x09,0x63,0x30,
0x2c,0x30,0x2e,0x32,0x37,0x34,0x2d,0x30,0x2e,0x31,
0x34,0x38,0x2c,0x30,0x2e,0x35,0x32,0x36,0x2d,0x30,
0x2e,0x33,0x39,0x2c,0x30,0x2e,0x36,0x35,0x38,0x43,
0x38,0x2e,0x30,0x35,0x36,0x2c,0x32,0x32,0x2e,0x32,
0x35,0x34,0x2c,0x37,0x2e,0x39,0x33,0x32,0x2c,0x32,
0x32,0x2e,0x32,0x38,0x34,0x2c,0x37,0x2e,0x38,0x30,
0x39,0x2c,0x32,0x32,0x2e,0x32,0x38,0x34,0x7a,0x20,
0x4d,0x34,0x2e,0x35,0x31,0x34,0x2c,0x31,0x38,0x2e,
0x35,0x33,0x6c,0x32,0x2e,0x35,0x34,0x35,0x2c,0x31,
0x2e,0x36,0x33,0x32,0x76,0x2d,0x33,0x2e,0x32,0x36,
0x35,0x4c,0x34,0x2e,0x35,0x31,0x34,0x2c,0x31,0x38,
0x2e,0x35,0x33,0x7a,0x22,0x2f,0x3e,0x0d,0x0a,0x09,
0x3c,0x2f,0x67,0x3e,0x0d,0x0a,0x09,0x3c,0x67,0x3e,
0x0d,0x0a,0x09,0x09,0x3c,0x70,0x61,0x74,0x68,0x20,
0x66,0x69,0x6c,0x6c,0x3d,0x22,0x23,0x46,0x46,0x46,
0x46,0x46,0x46,0x22,0x20,0x64,0x3d,0x22,0x4d,0x33,
0x33,0x2e,0x38,0x37,0x39,0x2c,0x31,0x38,0x2e,0x35,
0x32,0x39,0x6c,0x2d,0x34,0x2e,0x36,0x38,0x35,0x2d,
0x33,0x2e,0x30,0x30,0x35,0x76,0x36,0x2e,0x30,0x31,
0x4c,0x33,0x33,0x2e,0x38,0x37,0x39,0x2c,0x31,0x38,
0x2e,0x35,0x32,0x39,0x7a,0x22,0x2f,0x3e,0x0d,0x0a,
0x09,0x09,0x3c,0x70,0x61,0x74,0x68,0x20,0x66,0x69,
0x6c,0x6c,0x3d,0x22,0x23,0x46,0x46,0x46,0x46,0x46,
0x46,0x22,0x20,0x64,0x3d,0x22,0x4d,0x32,0x39,0x2e,
0x31,0x39,0x35,0x2c,0x32,0x32,0x2e,0x32,0x38,0x34,
0x63,0x2d,0x30,0x2e,0x31,0x32,0x34,0x2c,0x30,0x2d,
0x30,0x2e,0x32,0x34,0x36,0x2d,0x30,0x2e,0x30,0x33,
0x2d,0x30,0x2e,0x33,0x35,0x38,0x2d,0x30,0x2e,0x30,
0x39,0x32,0x63,0x2d,0x30,0x2e,0x32,0x34,0x31,0x2d,
0x30,0x2e,0x31,0x33,0x32,0x2d,0x30,0x2e,0x33,0x39,
0x32,0x2d,0x30,0x2e,0x33,0x38,0x34,0x2d,0x30,0x2e,
0x33,0x39,0x32,0x2d,0x30,0x2e,0x36,0x35,0x38,0x76,
0x2d,0x36,0x2e,0x30,0x31,0x0d,0x0a,0x09,0x09,0x09,
0x63,0x30,0x2d,0x30,0x2e,0x32,0x37,0x34,0x2c,0x30,
0x2e,0x31,0x34,0x39,0x2d,0x30,0x2e,0x35,0x32,0x36,
0x2c,0x30,0x2e,0x33,0x39,0x32,0x2d,0x30,0x2e,0x36,
0x35,0x38,0x63,0x30,0x2e,0x32,0x33,0x39,0x2d,0x30,
0x2e,0x31,0x33,0x31,0x2c,0x30,0x2e,0x35,0x33,0x33,
0x2d,0x30,0x2e,0x31,0x32,0x33,0x2c,0x30,0x2e,0x37,
0x36,0x35,0x2c,0x30,0x2e,0x30,0x32,0x37,0x6c,0x34,
0x2e,0x36,0x38,0x35,0x2c,0x33,0x2e,0x30,0x30,0x35,
0x63,0x30,0x2e,0x32,0x31,0x35,0x2c,0x30,0x2e,0x31,
0x33,0x38,0x2c,0x30,0x2e,0x33,0x34,0x35,0x2c,0x30,
0x2e,0x33,0x37,0x36,0x2c,0x30,0x2e,0x33,0x34,0x35,
0x2c,0x30,0x2e,0x36,0x33,0x31,0x0d,0x0a,0x09,0x09,
0x09,0x73,0x2d,0x30,0x2e,0x31,0x33,0x2c,0x30,0x2e,
0x34,0x39,0x33,0x2d,0x30,0x2e,0x33,0x34,0x35,0x2c,
0x30,0x2e,0x36,0x33,0x31,0x6c,0x2d,0x34,0x2e,0x36,
0x38,0x35,0x2c,0x33,0x2e,0x30,0x30,0x34,0x43,0x32,
0x39,0x2e,0x34,0x37,0x38,0x2c,0x32,0x32,0x2e,0x32,
0x34,0x34,0x2c,0x32,0x39,0x2e,0x33,0x33,0x36,0x2c,
0x32,0x32,0x2e,0x32,0x38,0x34,0x2c,0x32,0x39,0x2e,
0x31,0x39,0x35,0x2c,0x32,0x32,0x2e,0x32,0x38,0x34,
0x7a,0x20,0x4d,0x32,0x39,0x2e,0x39,0x34,0x35,0x2c,
0x31,0x36,0x2e,0x38,0x39,0x36,0x76,0x33,0x2e,0x32,
0x36,0x36,0x6c,0x32,0x2e,0x35,0x34,0x36,0x2d,0x31,
0x2e,0x36,0x33,0x33,0x0d,0x0a,0x09,0x09,0x09,0x4c,
0x32,0x39,0x2e,0x39,0x34,0x35,0x2c,0x31,0x36,0x2e,
0x38,0x39,0x36,0x7a,0x22,0x2f,0x3e,0x0d,0x0a,0x09,
0x3c,0x2f,0x67,0x3e,0x0d,0x0a,0x09,0x3c,0x67,0x3e,
0x0d,0x0a,0x09,0x09,0x3c,0x70,0x61,0x74,0x68,0x20,
0x66,0x69,0x6c,0x6c,0x3d,0x22,0x23,0x46,0x46,0x46,
0x46,0x46,0x46,0x22,0x20,0x64,0x3d,0x22,0x4d,0x31,
0x38,0x2e,0x35,0x33,0x2c,0x33,0x34,0x2e,0x36,0x32,
0x36,0x4c,0x31,0x38,0x2e,0x35,0x33,0x2c,0x33,0x34,
0x2e,0x36,0x32,0x36,0x63,0x2d,0x30,0x2e,0x32,0x35,
0x35,0x2c,0x30,0x2d,0x30,0x2e,0x34,0x39,0x32,0x2d,
0x30,0x2e,0x31,0x33,0x2d,0x30,0x2e,0x36,0x33,0x31,
0x2d,0x30,0x2e,0x33,0x34,0x35,0x6c,0x2d,0x33,0x2e,
0x30,0x30,0x35,0x2d,0x34,0x2e,0x36,0x38,0x34,0x0d,
0x0a,0x09,0x09,0x09,0x63,0x2d,0x30,0x2e,0x31,0x34,
0x37,0x2d,0x30,0x2e,0x32,0x33,0x31,0x2d,0x30,0x2e,
0x31,0x35,0x38,0x2d,0x30,0x2e,0x35,0x32,0x34,0x2d,
0x30,0x2e,0x30,0x32,0x36,0x2d,0x30,0x2e,0x37,0x36,
0x36,0x73,0x30,0x2e,0x33,0x38,0x34,0x2d,0x30,0x2e,
0x33,0x39,0x31,0x2c,0x30,0x2e,0x36,0x35,0x37,0x2d,
0x30,0x2e,0x33,0x39,0x31,0x68,0x36,0x2e,0x30,0x31,
0x32,0x63,0x30,0x2e,0x32,0x37,0x33,0x2c,0x30,0x2c,
0x30,0x2e,0x35,0x32,0x35,0x2c,0x30,0x2e,0x31,0x34,
0x38,0x2c,0x30,0x2e,0x36,0x35,0x37,0x2c,0x30,0x2e,
0x33,0x39,0x31,0x0d,0x0a,0x09,0x09,0x09,0x63,0x30,
0x2e,0x31,0x33,0x33,0x2c,0x30,0x2e,0x32,0x34,0x2c,
0x30,0x2e,0x31,0x32,0x31,0x2c,0x30,0x2e,0x35,0x33,
0x33,0x2d,0x30,0x2e,0x30,0x32,0x36,0x2c,0x30,0x2e,
0x37,0x36,0x36,0x6c,0x2d,0x33,0x2e,0x30,0x30,0x35,
0x2c,0x34,0x2e,0x36,0x38,0x34,0x43,0x31,0x39,0x2e,
0x30,0x32,0x33,0x2c,0x33,0x34,0x2e,0x34,0x39,0x36,
0x2c,0x31,0x38,0x2e,0x37,0x38,0x36,0x2c,0x33,0x34,
0x2e,0x36,0x32,0x36,0x2c,0x31,0x38,0x2e,0x35,0x33,
0x2c,0x33,0x34,0x2e,0x36,0x32,0x36,0x7a,0x20,0x4d,
0x31,0x36,0x2e,0x38,0x39,0x37,0x2c,0x32,0x39,0x2e,
0x39,0x34,0x32,0x6c,0x31,0x2e,0x36,0x33,0x33,0x2c,
0x32,0x2e,0x35,0x34,0x35,0x0d,0x0a,0x09,0x09,0x09,
0x6c,0x31,0x2e,0x36,0x33,0x35,0x2d,0x32,0x2e,0x35,
0x34,0x35,0x48,0x31,0x36,0x2e,0x38,0x39,0x37,0x7a,
0x22,0x2f,0x3e,0x0d,0x0a,0x09,0x3c,0x2f,0x67,0x3e,
0x0d,0x0a,0x3c,0x2f,0x67,0x3e,0x0d,0x0a,0x3c,0x2f,
0x73,0x76,0x67,0x3e,0x0d,0x0a
};

View file

@ -0,0 +1,329 @@
//this file was auto-generated from "dpad_up.svg" by res2h
#include "../Resources.h"
const size_t help_dpad_up_svg_size = 3213;
const unsigned char help_dpad_up_svg_data[3213] = {
0x3c,0x3f,0x78,0x6d,0x6c,0x20,0x76,0x65,0x72,0x73,
0x69,0x6f,0x6e,0x3d,0x22,0x31,0x2e,0x30,0x22,0x20,
0x65,0x6e,0x63,0x6f,0x64,0x69,0x6e,0x67,0x3d,0x22,
0x75,0x74,0x66,0x2d,0x38,0x22,0x3f,0x3e,0x0d,0x0a,
0x3c,0x21,0x2d,0x2d,0x20,0x47,0x65,0x6e,0x65,0x72,
0x61,0x74,0x6f,0x72,0x3a,0x20,0x41,0x64,0x6f,0x62,
0x65,0x20,0x49,0x6c,0x6c,0x75,0x73,0x74,0x72,0x61,
0x74,0x6f,0x72,0x20,0x31,0x36,0x2e,0x30,0x2e,0x33,
0x2c,0x20,0x53,0x56,0x47,0x20,0x45,0x78,0x70,0x6f,
0x72,0x74,0x20,0x50,0x6c,0x75,0x67,0x2d,0x49,0x6e,
0x20,0x2e,0x20,0x53,0x56,0x47,0x20,0x56,0x65,0x72,
0x73,0x69,0x6f,0x6e,0x3a,0x20,0x36,0x2e,0x30,0x30,
0x20,0x42,0x75,0x69,0x6c,0x64,0x20,0x30,0x29,0x20,
0x20,0x2d,0x2d,0x3e,0x0d,0x0a,0x3c,0x21,0x44,0x4f,
0x43,0x54,0x59,0x50,0x45,0x20,0x73,0x76,0x67,0x20,
0x50,0x55,0x42,0x4c,0x49,0x43,0x20,0x22,0x2d,0x2f,
0x2f,0x57,0x33,0x43,0x2f,0x2f,0x44,0x54,0x44,0x20,
0x53,0x56,0x47,0x20,0x31,0x2e,0x31,0x2f,0x2f,0x45,
0x4e,0x22,0x20,0x22,0x68,0x74,0x74,0x70,0x3a,0x2f,
0x2f,0x77,0x77,0x77,0x2e,0x77,0x33,0x2e,0x6f,0x72,
0x67,0x2f,0x47,0x72,0x61,0x70,0x68,0x69,0x63,0x73,
0x2f,0x53,0x56,0x47,0x2f,0x31,0x2e,0x31,0x2f,0x44,
0x54,0x44,0x2f,0x73,0x76,0x67,0x31,0x31,0x2e,0x64,
0x74,0x64,0x22,0x3e,0x0d,0x0a,0x3c,0x73,0x76,0x67,
0x20,0x76,0x65,0x72,0x73,0x69,0x6f,0x6e,0x3d,0x22,
0x31,0x2e,0x31,0x22,0x20,0x69,0x64,0x3d,0x22,0x5f,
0x78,0x33,0x30,0x5f,0x22,0x20,0x78,0x6d,0x6c,0x6e,
0x73,0x3d,0x22,0x68,0x74,0x74,0x70,0x3a,0x2f,0x2f,
0x77,0x77,0x77,0x2e,0x77,0x33,0x2e,0x6f,0x72,0x67,
0x2f,0x32,0x30,0x30,0x30,0x2f,0x73,0x76,0x67,0x22,
0x20,0x78,0x6d,0x6c,0x6e,0x73,0x3a,0x78,0x6c,0x69,
0x6e,0x6b,0x3d,0x22,0x68,0x74,0x74,0x70,0x3a,0x2f,
0x2f,0x77,0x77,0x77,0x2e,0x77,0x33,0x2e,0x6f,0x72,
0x67,0x2f,0x31,0x39,0x39,0x39,0x2f,0x78,0x6c,0x69,
0x6e,0x6b,0x22,0x20,0x78,0x3d,0x22,0x30,0x70,0x78,
0x22,0x20,0x79,0x3d,0x22,0x30,0x70,0x78,0x22,0x0d,
0x0a,0x09,0x20,0x77,0x69,0x64,0x74,0x68,0x3d,0x22,
0x33,0x37,0x2e,0x30,0x36,0x31,0x70,0x78,0x22,0x20,
0x68,0x65,0x69,0x67,0x68,0x74,0x3d,0x22,0x33,0x37,
0x2e,0x30,0x36,0x31,0x70,0x78,0x22,0x20,0x76,0x69,
0x65,0x77,0x42,0x6f,0x78,0x3d,0x22,0x30,0x20,0x30,
0x20,0x33,0x37,0x2e,0x30,0x36,0x31,0x20,0x33,0x37,
0x2e,0x30,0x36,0x31,0x22,0x20,0x65,0x6e,0x61,0x62,
0x6c,0x65,0x2d,0x62,0x61,0x63,0x6b,0x67,0x72,0x6f,
0x75,0x6e,0x64,0x3d,0x22,0x6e,0x65,0x77,0x20,0x30,
0x20,0x30,0x20,0x33,0x37,0x2e,0x30,0x36,0x31,0x20,
0x33,0x37,0x2e,0x30,0x36,0x31,0x22,0x20,0x78,0x6d,
0x6c,0x3a,0x73,0x70,0x61,0x63,0x65,0x3d,0x22,0x70,
0x72,0x65,0x73,0x65,0x72,0x76,0x65,0x22,0x3e,0x0d,
0x0a,0x3c,0x67,0x3e,0x0d,0x0a,0x09,0x3c,0x67,0x3e,
0x0d,0x0a,0x09,0x09,0x3c,0x67,0x3e,0x0d,0x0a,0x09,
0x09,0x09,0x3c,0x70,0x61,0x74,0x68,0x20,0x66,0x69,
0x6c,0x6c,0x3d,0x22,0x23,0x46,0x46,0x46,0x46,0x46,
0x46,0x22,0x20,0x64,0x3d,0x22,0x4d,0x32,0x32,0x2e,
0x30,0x38,0x36,0x2c,0x33,0x37,0x2e,0x30,0x36,0x68,
0x2d,0x37,0x2e,0x31,0x31,0x31,0x63,0x2d,0x32,0x2e,
0x32,0x38,0x39,0x2c,0x30,0x2d,0x33,0x2e,0x31,0x31,
0x39,0x2d,0x31,0x2e,0x38,0x36,0x36,0x2d,0x33,0x2e,
0x31,0x31,0x39,0x2d,0x33,0x2e,0x31,0x32,0x31,0x76,
0x2d,0x38,0x2e,0x37,0x33,0x32,0x48,0x33,0x2e,0x31,
0x32,0x31,0x43,0x30,0x2e,0x38,0x33,0x31,0x2c,0x32,
0x35,0x2e,0x32,0x30,0x36,0x2c,0x30,0x2c,0x32,0x33,
0x2e,0x33,0x34,0x2c,0x30,0x2c,0x32,0x32,0x2e,0x30,
0x38,0x35,0x0d,0x0a,0x09,0x09,0x09,0x09,0x76,0x2d,
0x37,0x2e,0x31,0x31,0x63,0x30,0x2d,0x32,0x2e,0x32,
0x38,0x39,0x2c,0x31,0x2e,0x38,0x36,0x37,0x2d,0x33,
0x2e,0x31,0x32,0x2c,0x33,0x2e,0x31,0x32,0x31,0x2d,
0x33,0x2e,0x31,0x32,0x68,0x38,0x2e,0x37,0x33,0x33,
0x56,0x33,0x2e,0x31,0x32,0x31,0x43,0x31,0x31,0x2e,
0x38,0x35,0x35,0x2c,0x30,0x2e,0x38,0x33,0x31,0x2c,
0x31,0x33,0x2e,0x37,0x32,0x2c,0x30,0x2c,0x31,0x34,
0x2e,0x39,0x37,0x34,0x2c,0x30,0x68,0x37,0x2e,0x31,
0x31,0x31,0x63,0x32,0x2e,0x32,0x39,0x2c,0x30,0x2c,
0x33,0x2e,0x31,0x32,0x31,0x2c,0x31,0x2e,0x38,0x36,
0x37,0x2c,0x33,0x2e,0x31,0x32,0x31,0x2c,0x33,0x2e,
0x31,0x32,0x31,0x76,0x38,0x2e,0x37,0x33,0x32,0x0d,
0x0a,0x09,0x09,0x09,0x09,0x68,0x38,0x2e,0x37,0x33,
0x31,0x63,0x32,0x2e,0x32,0x39,0x2c,0x30,0x2c,0x33,
0x2e,0x31,0x32,0x31,0x2c,0x31,0x2e,0x38,0x36,0x35,
0x2c,0x33,0x2e,0x31,0x32,0x31,0x2c,0x33,0x2e,0x31,
0x32,0x76,0x37,0x2e,0x31,0x31,0x63,0x30,0x2c,0x32,
0x2e,0x32,0x39,0x2d,0x31,0x2e,0x38,0x36,0x36,0x2c,
0x33,0x2e,0x31,0x32,0x31,0x2d,0x33,0x2e,0x31,0x32,
0x31,0x2c,0x33,0x2e,0x31,0x32,0x31,0x68,0x2d,0x38,
0x2e,0x37,0x33,0x31,0x76,0x38,0x2e,0x37,0x33,0x32,
0x0d,0x0a,0x09,0x09,0x09,0x09,0x43,0x32,0x35,0x2e,
0x32,0x30,0x37,0x2c,0x33,0x36,0x2e,0x32,0x32,0x39,
0x2c,0x32,0x33,0x2e,0x33,0x34,0x31,0x2c,0x33,0x37,
0x2e,0x30,0x36,0x2c,0x32,0x32,0x2e,0x30,0x38,0x36,
0x2c,0x33,0x37,0x2e,0x30,0x36,0x7a,0x20,0x4d,0x33,
0x2e,0x31,0x32,0x31,0x2c,0x31,0x33,0x2e,0x33,0x35,
0x34,0x43,0x32,0x2e,0x37,0x34,0x35,0x2c,0x31,0x33,
0x2e,0x33,0x35,0x39,0x2c,0x31,0x2e,0x35,0x2c,0x31,
0x33,0x2e,0x34,0x39,0x33,0x2c,0x31,0x2e,0x35,0x2c,
0x31,0x34,0x2e,0x39,0x37,0x34,0x76,0x37,0x2e,0x31,
0x31,0x0d,0x0a,0x09,0x09,0x09,0x09,0x63,0x30,0x2e,
0x30,0x30,0x36,0x2c,0x30,0x2e,0x33,0x37,0x36,0x2c,
0x30,0x2e,0x31,0x33,0x39,0x2c,0x31,0x2e,0x36,0x32,
0x31,0x2c,0x31,0x2e,0x36,0x32,0x31,0x2c,0x31,0x2e,
0x36,0x32,0x31,0x68,0x31,0x30,0x2e,0x32,0x33,0x33,
0x76,0x31,0x30,0x2e,0x32,0x33,0x32,0x63,0x30,0x2e,
0x30,0x30,0x35,0x2c,0x30,0x2e,0x33,0x37,0x36,0x2c,
0x30,0x2e,0x31,0x34,0x2c,0x31,0x2e,0x36,0x32,0x31,
0x2c,0x31,0x2e,0x36,0x31,0x39,0x2c,0x31,0x2e,0x36,
0x32,0x31,0x68,0x37,0x2e,0x31,0x30,0x38,0x0d,0x0a,
0x09,0x09,0x09,0x09,0x63,0x30,0x2e,0x33,0x38,0x34,
0x2d,0x30,0x2e,0x30,0x30,0x37,0x2c,0x31,0x2e,0x36,
0x32,0x34,0x2d,0x30,0x2e,0x31,0x34,0x33,0x2c,0x31,
0x2e,0x36,0x32,0x34,0x2d,0x31,0x2e,0x36,0x32,0x31,
0x56,0x32,0x33,0x2e,0x37,0x30,0x36,0x68,0x31,0x30,
0x2e,0x32,0x33,0x31,0x63,0x30,0x2e,0x33,0x37,0x36,
0x2d,0x30,0x2e,0x30,0x30,0x36,0x2c,0x31,0x2e,0x36,
0x32,0x31,0x2d,0x30,0x2e,0x31,0x34,0x2c,0x31,0x2e,
0x36,0x32,0x31,0x2d,0x31,0x2e,0x36,0x32,0x31,0x76,
0x2d,0x37,0x2e,0x31,0x31,0x0d,0x0a,0x09,0x09,0x09,
0x09,0x63,0x2d,0x30,0x2e,0x30,0x30,0x36,0x2d,0x30,
0x2e,0x33,0x37,0x36,0x2d,0x30,0x2e,0x31,0x34,0x2d,
0x31,0x2e,0x36,0x32,0x2d,0x31,0x2e,0x36,0x32,0x31,
0x2d,0x31,0x2e,0x36,0x32,0x68,0x2d,0x31,0x30,0x2e,
0x32,0x33,0x56,0x33,0x2e,0x31,0x32,0x31,0x43,0x32,
0x33,0x2e,0x37,0x30,0x31,0x2c,0x32,0x2e,0x37,0x34,
0x35,0x2c,0x32,0x33,0x2e,0x35,0x36,0x37,0x2c,0x31,
0x2e,0x35,0x2c,0x32,0x32,0x2e,0x30,0x38,0x36,0x2c,
0x31,0x2e,0x35,0x68,0x2d,0x37,0x2e,0x31,0x31,0x31,
0x0d,0x0a,0x09,0x09,0x09,0x09,0x63,0x2d,0x30,0x2e,
0x33,0x37,0x36,0x2c,0x30,0x2e,0x30,0x30,0x36,0x2d,
0x31,0x2e,0x36,0x31,0x39,0x2c,0x30,0x2e,0x31,0x34,
0x2d,0x31,0x2e,0x36,0x31,0x39,0x2c,0x31,0x2e,0x36,
0x32,0x31,0x76,0x31,0x30,0x2e,0x32,0x33,0x32,0x4c,
0x33,0x2e,0x31,0x32,0x31,0x2c,0x31,0x33,0x2e,0x33,
0x35,0x34,0x4c,0x33,0x2e,0x31,0x32,0x31,0x2c,0x31,
0x33,0x2e,0x33,0x35,0x34,0x7a,0x22,0x2f,0x3e,0x0d,
0x0a,0x09,0x09,0x3c,0x2f,0x67,0x3e,0x0d,0x0a,0x09,
0x3c,0x2f,0x67,0x3e,0x0d,0x0a,0x09,0x3c,0x67,0x3e,
0x0d,0x0a,0x09,0x09,0x3c,0x70,0x61,0x74,0x68,0x20,
0x66,0x69,0x6c,0x6c,0x3d,0x22,0x23,0x46,0x46,0x46,
0x46,0x46,0x46,0x22,0x20,0x64,0x3d,0x22,0x4d,0x31,
0x38,0x2e,0x35,0x33,0x31,0x2c,0x32,0x32,0x2e,0x31,
0x38,0x31,0x63,0x2d,0x32,0x2e,0x30,0x31,0x33,0x2c,
0x30,0x2d,0x33,0x2e,0x36,0x34,0x39,0x2d,0x31,0x2e,
0x36,0x33,0x39,0x2d,0x33,0x2e,0x36,0x34,0x39,0x2d,
0x33,0x2e,0x36,0x35,0x31,0x73,0x31,0x2e,0x36,0x33,
0x38,0x2d,0x33,0x2e,0x36,0x35,0x2c,0x33,0x2e,0x36,
0x34,0x39,0x2d,0x33,0x2e,0x36,0x35,0x63,0x32,0x2e,
0x30,0x31,0x33,0x2c,0x30,0x2c,0x33,0x2e,0x36,0x35,
0x2c,0x31,0x2e,0x36,0x33,0x39,0x2c,0x33,0x2e,0x36,
0x35,0x2c,0x33,0x2e,0x36,0x35,0x0d,0x0a,0x09,0x09,
0x09,0x43,0x32,0x32,0x2e,0x31,0x38,0x32,0x2c,0x32,
0x30,0x2e,0x35,0x34,0x33,0x2c,0x32,0x30,0x2e,0x35,
0x34,0x34,0x2c,0x32,0x32,0x2e,0x31,0x38,0x31,0x2c,
0x31,0x38,0x2e,0x35,0x33,0x31,0x2c,0x32,0x32,0x2e,
0x31,0x38,0x31,0x7a,0x20,0x4d,0x31,0x38,0x2e,0x35,
0x33,0x31,0x2c,0x31,0x36,0x2e,0x33,0x37,0x39,0x63,
0x2d,0x31,0x2e,0x31,0x38,0x36,0x2c,0x30,0x2d,0x32,
0x2e,0x31,0x34,0x39,0x2c,0x30,0x2e,0x39,0x36,0x35,
0x2d,0x32,0x2e,0x31,0x34,0x39,0x2c,0x32,0x2e,0x31,
0x35,0x73,0x30,0x2e,0x39,0x36,0x35,0x2c,0x32,0x2e,
0x31,0x35,0x31,0x2c,0x32,0x2e,0x31,0x34,0x39,0x2c,
0x32,0x2e,0x31,0x35,0x31,0x0d,0x0a,0x09,0x09,0x09,
0x63,0x31,0x2e,0x31,0x38,0x36,0x2c,0x30,0x2c,0x32,
0x2e,0x31,0x35,0x2d,0x30,0x2e,0x39,0x36,0x36,0x2c,
0x32,0x2e,0x31,0x35,0x2d,0x32,0x2e,0x31,0x35,0x31,
0x43,0x32,0x30,0x2e,0x36,0x38,0x32,0x2c,0x31,0x37,
0x2e,0x33,0x34,0x34,0x2c,0x31,0x39,0x2e,0x37,0x31,
0x37,0x2c,0x31,0x36,0x2e,0x33,0x37,0x39,0x2c,0x31,
0x38,0x2e,0x35,0x33,0x31,0x2c,0x31,0x36,0x2e,0x33,
0x37,0x39,0x7a,0x22,0x2f,0x3e,0x0d,0x0a,0x09,0x3c,
0x2f,0x67,0x3e,0x0d,0x0a,0x09,0x3c,0x67,0x3e,0x0d,
0x0a,0x09,0x09,0x3c,0x70,0x61,0x74,0x68,0x20,0x66,
0x69,0x6c,0x6c,0x3d,0x22,0x23,0x46,0x46,0x46,0x46,
0x46,0x46,0x22,0x20,0x64,0x3d,0x22,0x4d,0x31,0x38,
0x2e,0x35,0x33,0x2c,0x33,0x2e,0x31,0x38,0x33,0x6c,
0x2d,0x33,0x2e,0x30,0x30,0x35,0x2c,0x34,0x2e,0x36,
0x38,0x34,0x68,0x36,0x2e,0x30,0x31,0x32,0x4c,0x31,
0x38,0x2e,0x35,0x33,0x2c,0x33,0x2e,0x31,0x38,0x33,
0x7a,0x22,0x2f,0x3e,0x0d,0x0a,0x09,0x09,0x3c,0x70,
0x61,0x74,0x68,0x20,0x66,0x69,0x6c,0x6c,0x3d,0x22,
0x23,0x46,0x46,0x46,0x46,0x46,0x46,0x22,0x20,0x64,
0x3d,0x22,0x4d,0x32,0x31,0x2e,0x35,0x33,0x36,0x2c,
0x38,0x2e,0x36,0x31,0x36,0x68,0x2d,0x36,0x2e,0x30,
0x31,0x32,0x63,0x2d,0x30,0x2e,0x32,0x37,0x33,0x2c,
0x30,0x2d,0x30,0x2e,0x35,0x32,0x35,0x2d,0x30,0x2e,
0x31,0x35,0x2d,0x30,0x2e,0x36,0x35,0x37,0x2d,0x30,
0x2e,0x33,0x39,0x63,0x2d,0x30,0x2e,0x31,0x33,0x32,
0x2d,0x30,0x2e,0x32,0x34,0x31,0x2d,0x30,0x2e,0x31,
0x32,0x31,0x2d,0x30,0x2e,0x35,0x33,0x34,0x2c,0x30,
0x2e,0x30,0x32,0x36,0x2d,0x30,0x2e,0x37,0x36,0x36,
0x6c,0x33,0x2e,0x30,0x30,0x35,0x2d,0x34,0x2e,0x36,
0x38,0x34,0x0d,0x0a,0x09,0x09,0x09,0x63,0x30,0x2e,
0x32,0x37,0x36,0x2d,0x30,0x2e,0x34,0x33,0x31,0x2c,
0x30,0x2e,0x39,0x38,0x36,0x2d,0x30,0x2e,0x34,0x33,
0x2c,0x31,0x2e,0x32,0x36,0x34,0x2c,0x30,0x6c,0x33,
0x2e,0x30,0x30,0x35,0x2c,0x34,0x2e,0x36,0x38,0x34,
0x63,0x30,0x2e,0x31,0x34,0x37,0x2c,0x30,0x2e,0x32,
0x33,0x31,0x2c,0x30,0x2e,0x31,0x35,0x39,0x2c,0x30,
0x2e,0x35,0x32,0x34,0x2c,0x30,0x2e,0x30,0x32,0x36,
0x2c,0x30,0x2e,0x37,0x36,0x36,0x43,0x32,0x32,0x2e,
0x30,0x36,0x33,0x2c,0x38,0x2e,0x34,0x36,0x36,0x2c,
0x32,0x31,0x2e,0x38,0x31,0x31,0x2c,0x38,0x2e,0x36,
0x31,0x36,0x2c,0x32,0x31,0x2e,0x35,0x33,0x36,0x2c,
0x38,0x2e,0x36,0x31,0x36,0x7a,0x0d,0x0a,0x09,0x09,
0x09,0x20,0x4d,0x31,0x36,0x2e,0x38,0x39,0x37,0x2c,
0x37,0x2e,0x31,0x31,0x36,0x68,0x33,0x2e,0x32,0x36,
0x38,0x4c,0x31,0x38,0x2e,0x35,0x33,0x2c,0x34,0x2e,
0x35,0x37,0x31,0x4c,0x31,0x36,0x2e,0x38,0x39,0x37,
0x2c,0x37,0x2e,0x31,0x31,0x36,0x7a,0x22,0x2f,0x3e,
0x0d,0x0a,0x09,0x3c,0x2f,0x67,0x3e,0x0d,0x0a,0x09,
0x3c,0x67,0x3e,0x0d,0x0a,0x09,0x09,0x3c,0x70,0x61,
0x74,0x68,0x20,0x66,0x69,0x6c,0x6c,0x3d,0x22,0x23,
0x46,0x46,0x46,0x46,0x46,0x46,0x22,0x20,0x64,0x3d,
0x22,0x4d,0x37,0x2e,0x38,0x30,0x39,0x2c,0x32,0x32,
0x2e,0x32,0x38,0x34,0x63,0x2d,0x30,0x2e,0x31,0x34,
0x31,0x2c,0x30,0x2d,0x30,0x2e,0x32,0x38,0x32,0x2d,
0x30,0x2e,0x30,0x34,0x2d,0x30,0x2e,0x34,0x30,0x35,
0x2d,0x30,0x2e,0x31,0x31,0x39,0x4c,0x32,0x2e,0x37,
0x32,0x2c,0x31,0x39,0x2e,0x31,0x36,0x32,0x63,0x2d,
0x30,0x2e,0x32,0x31,0x35,0x2d,0x30,0x2e,0x31,0x33,
0x38,0x2d,0x30,0x2e,0x33,0x34,0x35,0x2d,0x30,0x2e,
0x33,0x37,0x36,0x2d,0x30,0x2e,0x33,0x34,0x35,0x2d,
0x30,0x2e,0x36,0x33,0x31,0x0d,0x0a,0x09,0x09,0x09,
0x73,0x30,0x2e,0x31,0x33,0x2d,0x30,0x2e,0x34,0x39,
0x33,0x2c,0x30,0x2e,0x33,0x34,0x35,0x2d,0x30,0x2e,
0x36,0x33,0x31,0x6c,0x34,0x2e,0x36,0x38,0x34,0x2d,
0x33,0x2e,0x30,0x30,0x36,0x63,0x30,0x2e,0x32,0x33,
0x2d,0x30,0x2e,0x31,0x34,0x38,0x2c,0x30,0x2e,0x35,
0x32,0x34,0x2d,0x30,0x2e,0x31,0x35,0x38,0x2c,0x30,
0x2e,0x37,0x36,0x36,0x2d,0x30,0x2e,0x30,0x32,0x37,
0x63,0x30,0x2e,0x32,0x34,0x2c,0x30,0x2e,0x31,0x33,
0x31,0x2c,0x30,0x2e,0x33,0x39,0x2c,0x30,0x2e,0x33,
0x38,0x34,0x2c,0x30,0x2e,0x33,0x39,0x2c,0x30,0x2e,
0x36,0x35,0x38,0x76,0x36,0x2e,0x30,0x31,0x0d,0x0a,
0x09,0x09,0x09,0x63,0x30,0x2c,0x30,0x2e,0x32,0x37,
0x34,0x2d,0x30,0x2e,0x31,0x34,0x38,0x2c,0x30,0x2e,
0x35,0x32,0x36,0x2d,0x30,0x2e,0x33,0x39,0x2c,0x30,
0x2e,0x36,0x35,0x38,0x43,0x38,0x2e,0x30,0x35,0x36,
0x2c,0x32,0x32,0x2e,0x32,0x35,0x34,0x2c,0x37,0x2e,
0x39,0x33,0x32,0x2c,0x32,0x32,0x2e,0x32,0x38,0x34,
0x2c,0x37,0x2e,0x38,0x30,0x39,0x2c,0x32,0x32,0x2e,
0x32,0x38,0x34,0x7a,0x20,0x4d,0x34,0x2e,0x35,0x31,
0x34,0x2c,0x31,0x38,0x2e,0x35,0x33,0x6c,0x32,0x2e,
0x35,0x34,0x35,0x2c,0x31,0x2e,0x36,0x33,0x32,0x76,
0x2d,0x33,0x2e,0x32,0x36,0x35,0x4c,0x34,0x2e,0x35,
0x31,0x34,0x2c,0x31,0x38,0x2e,0x35,0x33,0x7a,0x22,
0x2f,0x3e,0x0d,0x0a,0x09,0x3c,0x2f,0x67,0x3e,0x0d,
0x0a,0x09,0x3c,0x67,0x3e,0x0d,0x0a,0x09,0x09,0x3c,
0x70,0x61,0x74,0x68,0x20,0x66,0x69,0x6c,0x6c,0x3d,
0x22,0x23,0x46,0x46,0x46,0x46,0x46,0x46,0x22,0x20,
0x64,0x3d,0x22,0x4d,0x32,0x39,0x2e,0x31,0x39,0x35,
0x2c,0x32,0x32,0x2e,0x32,0x38,0x34,0x63,0x2d,0x30,
0x2e,0x31,0x32,0x34,0x2c,0x30,0x2d,0x30,0x2e,0x32,
0x34,0x36,0x2d,0x30,0x2e,0x30,0x33,0x2d,0x30,0x2e,
0x33,0x35,0x38,0x2d,0x30,0x2e,0x30,0x39,0x32,0x63,
0x2d,0x30,0x2e,0x32,0x34,0x31,0x2d,0x30,0x2e,0x31,
0x33,0x32,0x2d,0x30,0x2e,0x33,0x39,0x32,0x2d,0x30,
0x2e,0x33,0x38,0x34,0x2d,0x30,0x2e,0x33,0x39,0x32,
0x2d,0x30,0x2e,0x36,0x35,0x38,0x76,0x2d,0x36,0x2e,
0x30,0x31,0x0d,0x0a,0x09,0x09,0x09,0x63,0x30,0x2d,
0x30,0x2e,0x32,0x37,0x34,0x2c,0x30,0x2e,0x31,0x34,
0x39,0x2d,0x30,0x2e,0x35,0x32,0x36,0x2c,0x30,0x2e,
0x33,0x39,0x32,0x2d,0x30,0x2e,0x36,0x35,0x38,0x63,
0x30,0x2e,0x32,0x33,0x39,0x2d,0x30,0x2e,0x31,0x33,
0x31,0x2c,0x30,0x2e,0x35,0x33,0x33,0x2d,0x30,0x2e,
0x31,0x32,0x33,0x2c,0x30,0x2e,0x37,0x36,0x35,0x2c,
0x30,0x2e,0x30,0x32,0x37,0x6c,0x34,0x2e,0x36,0x38,
0x35,0x2c,0x33,0x2e,0x30,0x30,0x35,0x63,0x30,0x2e,
0x32,0x31,0x35,0x2c,0x30,0x2e,0x31,0x33,0x38,0x2c,
0x30,0x2e,0x33,0x34,0x35,0x2c,0x30,0x2e,0x33,0x37,
0x36,0x2c,0x30,0x2e,0x33,0x34,0x35,0x2c,0x30,0x2e,
0x36,0x33,0x31,0x0d,0x0a,0x09,0x09,0x09,0x73,0x2d,
0x30,0x2e,0x31,0x33,0x2c,0x30,0x2e,0x34,0x39,0x33,
0x2d,0x30,0x2e,0x33,0x34,0x35,0x2c,0x30,0x2e,0x36,
0x33,0x31,0x6c,0x2d,0x34,0x2e,0x36,0x38,0x35,0x2c,
0x33,0x2e,0x30,0x30,0x34,0x43,0x32,0x39,0x2e,0x34,
0x37,0x38,0x2c,0x32,0x32,0x2e,0x32,0x34,0x34,0x2c,
0x32,0x39,0x2e,0x33,0x33,0x36,0x2c,0x32,0x32,0x2e,
0x32,0x38,0x34,0x2c,0x32,0x39,0x2e,0x31,0x39,0x35,
0x2c,0x32,0x32,0x2e,0x32,0x38,0x34,0x7a,0x20,0x4d,
0x32,0x39,0x2e,0x39,0x34,0x35,0x2c,0x31,0x36,0x2e,
0x38,0x39,0x36,0x76,0x33,0x2e,0x32,0x36,0x36,0x6c,
0x32,0x2e,0x35,0x34,0x36,0x2d,0x31,0x2e,0x36,0x33,
0x33,0x0d,0x0a,0x09,0x09,0x09,0x4c,0x32,0x39,0x2e,
0x39,0x34,0x35,0x2c,0x31,0x36,0x2e,0x38,0x39,0x36,
0x7a,0x22,0x2f,0x3e,0x0d,0x0a,0x09,0x3c,0x2f,0x67,
0x3e,0x0d,0x0a,0x09,0x3c,0x67,0x3e,0x0d,0x0a,0x09,
0x09,0x3c,0x70,0x61,0x74,0x68,0x20,0x66,0x69,0x6c,
0x6c,0x3d,0x22,0x23,0x46,0x46,0x46,0x46,0x46,0x46,
0x22,0x20,0x64,0x3d,0x22,0x4d,0x31,0x38,0x2e,0x35,
0x33,0x2c,0x33,0x34,0x2e,0x36,0x32,0x36,0x4c,0x31,
0x38,0x2e,0x35,0x33,0x2c,0x33,0x34,0x2e,0x36,0x32,
0x36,0x63,0x2d,0x30,0x2e,0x32,0x35,0x35,0x2c,0x30,
0x2d,0x30,0x2e,0x34,0x39,0x32,0x2d,0x30,0x2e,0x31,
0x33,0x2d,0x30,0x2e,0x36,0x33,0x31,0x2d,0x30,0x2e,
0x33,0x34,0x35,0x6c,0x2d,0x33,0x2e,0x30,0x30,0x35,
0x2d,0x34,0x2e,0x36,0x38,0x34,0x0d,0x0a,0x09,0x09,
0x09,0x63,0x2d,0x30,0x2e,0x31,0x34,0x37,0x2d,0x30,
0x2e,0x32,0x33,0x31,0x2d,0x30,0x2e,0x31,0x35,0x38,
0x2d,0x30,0x2e,0x35,0x32,0x34,0x2d,0x30,0x2e,0x30,
0x32,0x36,0x2d,0x30,0x2e,0x37,0x36,0x36,0x73,0x30,
0x2e,0x33,0x38,0x34,0x2d,0x30,0x2e,0x33,0x39,0x31,
0x2c,0x30,0x2e,0x36,0x35,0x37,0x2d,0x30,0x2e,0x33,
0x39,0x31,0x68,0x36,0x2e,0x30,0x31,0x32,0x63,0x30,
0x2e,0x32,0x37,0x33,0x2c,0x30,0x2c,0x30,0x2e,0x35,
0x32,0x35,0x2c,0x30,0x2e,0x31,0x34,0x38,0x2c,0x30,
0x2e,0x36,0x35,0x37,0x2c,0x30,0x2e,0x33,0x39,0x31,
0x0d,0x0a,0x09,0x09,0x09,0x63,0x30,0x2e,0x31,0x33,
0x33,0x2c,0x30,0x2e,0x32,0x34,0x2c,0x30,0x2e,0x31,
0x32,0x31,0x2c,0x30,0x2e,0x35,0x33,0x33,0x2d,0x30,
0x2e,0x30,0x32,0x36,0x2c,0x30,0x2e,0x37,0x36,0x36,
0x6c,0x2d,0x33,0x2e,0x30,0x30,0x35,0x2c,0x34,0x2e,
0x36,0x38,0x34,0x43,0x31,0x39,0x2e,0x30,0x32,0x33,
0x2c,0x33,0x34,0x2e,0x34,0x39,0x36,0x2c,0x31,0x38,
0x2e,0x37,0x38,0x36,0x2c,0x33,0x34,0x2e,0x36,0x32,
0x36,0x2c,0x31,0x38,0x2e,0x35,0x33,0x2c,0x33,0x34,
0x2e,0x36,0x32,0x36,0x7a,0x20,0x4d,0x31,0x36,0x2e,
0x38,0x39,0x37,0x2c,0x32,0x39,0x2e,0x39,0x34,0x32,
0x6c,0x31,0x2e,0x36,0x33,0x33,0x2c,0x32,0x2e,0x35,
0x34,0x35,0x0d,0x0a,0x09,0x09,0x09,0x6c,0x31,0x2e,
0x36,0x33,0x35,0x2d,0x32,0x2e,0x35,0x34,0x35,0x48,
0x31,0x36,0x2e,0x38,0x39,0x37,0x7a,0x22,0x2f,0x3e,
0x0d,0x0a,0x09,0x3c,0x2f,0x67,0x3e,0x0d,0x0a,0x3c,
0x2f,0x67,0x3e,0x0d,0x0a,0x3c,0x2f,0x73,0x76,0x67,
0x3e,0x0d,0x0a
};

View file

@ -0,0 +1,336 @@
//this file was auto-generated from "dpad_updown.svg" by res2h
#include "../Resources.h"
const size_t help_dpad_updown_svg_size = 3290;
const unsigned char help_dpad_updown_svg_data[3290] = {
0x3c,0x3f,0x78,0x6d,0x6c,0x20,0x76,0x65,0x72,0x73,
0x69,0x6f,0x6e,0x3d,0x22,0x31,0x2e,0x30,0x22,0x20,
0x65,0x6e,0x63,0x6f,0x64,0x69,0x6e,0x67,0x3d,0x22,
0x75,0x74,0x66,0x2d,0x38,0x22,0x3f,0x3e,0x0d,0x0a,
0x3c,0x21,0x2d,0x2d,0x20,0x47,0x65,0x6e,0x65,0x72,
0x61,0x74,0x6f,0x72,0x3a,0x20,0x41,0x64,0x6f,0x62,
0x65,0x20,0x49,0x6c,0x6c,0x75,0x73,0x74,0x72,0x61,
0x74,0x6f,0x72,0x20,0x31,0x36,0x2e,0x30,0x2e,0x33,
0x2c,0x20,0x53,0x56,0x47,0x20,0x45,0x78,0x70,0x6f,
0x72,0x74,0x20,0x50,0x6c,0x75,0x67,0x2d,0x49,0x6e,
0x20,0x2e,0x20,0x53,0x56,0x47,0x20,0x56,0x65,0x72,
0x73,0x69,0x6f,0x6e,0x3a,0x20,0x36,0x2e,0x30,0x30,
0x20,0x42,0x75,0x69,0x6c,0x64,0x20,0x30,0x29,0x20,
0x20,0x2d,0x2d,0x3e,0x0d,0x0a,0x3c,0x21,0x44,0x4f,
0x43,0x54,0x59,0x50,0x45,0x20,0x73,0x76,0x67,0x20,
0x50,0x55,0x42,0x4c,0x49,0x43,0x20,0x22,0x2d,0x2f,
0x2f,0x57,0x33,0x43,0x2f,0x2f,0x44,0x54,0x44,0x20,
0x53,0x56,0x47,0x20,0x31,0x2e,0x31,0x2f,0x2f,0x45,
0x4e,0x22,0x20,0x22,0x68,0x74,0x74,0x70,0x3a,0x2f,
0x2f,0x77,0x77,0x77,0x2e,0x77,0x33,0x2e,0x6f,0x72,
0x67,0x2f,0x47,0x72,0x61,0x70,0x68,0x69,0x63,0x73,
0x2f,0x53,0x56,0x47,0x2f,0x31,0x2e,0x31,0x2f,0x44,
0x54,0x44,0x2f,0x73,0x76,0x67,0x31,0x31,0x2e,0x64,
0x74,0x64,0x22,0x3e,0x0d,0x0a,0x3c,0x73,0x76,0x67,
0x20,0x76,0x65,0x72,0x73,0x69,0x6f,0x6e,0x3d,0x22,
0x31,0x2e,0x31,0x22,0x20,0x69,0x64,0x3d,0x22,0x5f,
0x78,0x33,0x30,0x5f,0x22,0x20,0x78,0x6d,0x6c,0x6e,
0x73,0x3d,0x22,0x68,0x74,0x74,0x70,0x3a,0x2f,0x2f,
0x77,0x77,0x77,0x2e,0x77,0x33,0x2e,0x6f,0x72,0x67,
0x2f,0x32,0x30,0x30,0x30,0x2f,0x73,0x76,0x67,0x22,
0x20,0x78,0x6d,0x6c,0x6e,0x73,0x3a,0x78,0x6c,0x69,
0x6e,0x6b,0x3d,0x22,0x68,0x74,0x74,0x70,0x3a,0x2f,
0x2f,0x77,0x77,0x77,0x2e,0x77,0x33,0x2e,0x6f,0x72,
0x67,0x2f,0x31,0x39,0x39,0x39,0x2f,0x78,0x6c,0x69,
0x6e,0x6b,0x22,0x20,0x78,0x3d,0x22,0x30,0x70,0x78,
0x22,0x20,0x79,0x3d,0x22,0x30,0x70,0x78,0x22,0x0d,
0x0a,0x09,0x20,0x77,0x69,0x64,0x74,0x68,0x3d,0x22,
0x33,0x37,0x2e,0x30,0x36,0x31,0x70,0x78,0x22,0x20,
0x68,0x65,0x69,0x67,0x68,0x74,0x3d,0x22,0x33,0x37,
0x2e,0x30,0x36,0x31,0x70,0x78,0x22,0x20,0x76,0x69,
0x65,0x77,0x42,0x6f,0x78,0x3d,0x22,0x30,0x20,0x30,
0x20,0x33,0x37,0x2e,0x30,0x36,0x31,0x20,0x33,0x37,
0x2e,0x30,0x36,0x31,0x22,0x20,0x65,0x6e,0x61,0x62,
0x6c,0x65,0x2d,0x62,0x61,0x63,0x6b,0x67,0x72,0x6f,
0x75,0x6e,0x64,0x3d,0x22,0x6e,0x65,0x77,0x20,0x30,
0x20,0x30,0x20,0x33,0x37,0x2e,0x30,0x36,0x31,0x20,
0x33,0x37,0x2e,0x30,0x36,0x31,0x22,0x20,0x78,0x6d,
0x6c,0x3a,0x73,0x70,0x61,0x63,0x65,0x3d,0x22,0x70,
0x72,0x65,0x73,0x65,0x72,0x76,0x65,0x22,0x3e,0x0d,
0x0a,0x3c,0x67,0x3e,0x0d,0x0a,0x09,0x3c,0x67,0x3e,
0x0d,0x0a,0x09,0x09,0x3c,0x67,0x3e,0x0d,0x0a,0x09,
0x09,0x09,0x3c,0x70,0x61,0x74,0x68,0x20,0x66,0x69,
0x6c,0x6c,0x3d,0x22,0x23,0x46,0x46,0x46,0x46,0x46,
0x46,0x22,0x20,0x64,0x3d,0x22,0x4d,0x32,0x32,0x2e,
0x30,0x38,0x36,0x2c,0x33,0x37,0x2e,0x30,0x36,0x68,
0x2d,0x37,0x2e,0x31,0x31,0x31,0x63,0x2d,0x32,0x2e,
0x32,0x38,0x39,0x2c,0x30,0x2d,0x33,0x2e,0x31,0x31,
0x39,0x2d,0x31,0x2e,0x38,0x36,0x36,0x2d,0x33,0x2e,
0x31,0x31,0x39,0x2d,0x33,0x2e,0x31,0x32,0x31,0x76,
0x2d,0x38,0x2e,0x37,0x33,0x32,0x48,0x33,0x2e,0x31,
0x32,0x31,0x43,0x30,0x2e,0x38,0x33,0x31,0x2c,0x32,
0x35,0x2e,0x32,0x30,0x36,0x2c,0x30,0x2c,0x32,0x33,
0x2e,0x33,0x34,0x2c,0x30,0x2c,0x32,0x32,0x2e,0x30,
0x38,0x35,0x0d,0x0a,0x09,0x09,0x09,0x09,0x76,0x2d,
0x37,0x2e,0x31,0x31,0x63,0x30,0x2d,0x32,0x2e,0x32,
0x38,0x39,0x2c,0x31,0x2e,0x38,0x36,0x37,0x2d,0x33,
0x2e,0x31,0x32,0x2c,0x33,0x2e,0x31,0x32,0x31,0x2d,
0x33,0x2e,0x31,0x32,0x68,0x38,0x2e,0x37,0x33,0x33,
0x56,0x33,0x2e,0x31,0x32,0x31,0x43,0x31,0x31,0x2e,
0x38,0x35,0x35,0x2c,0x30,0x2e,0x38,0x33,0x31,0x2c,
0x31,0x33,0x2e,0x37,0x32,0x2c,0x30,0x2c,0x31,0x34,
0x2e,0x39,0x37,0x34,0x2c,0x30,0x68,0x37,0x2e,0x31,
0x31,0x31,0x63,0x32,0x2e,0x32,0x39,0x2c,0x30,0x2c,
0x33,0x2e,0x31,0x32,0x31,0x2c,0x31,0x2e,0x38,0x36,
0x37,0x2c,0x33,0x2e,0x31,0x32,0x31,0x2c,0x33,0x2e,
0x31,0x32,0x31,0x76,0x38,0x2e,0x37,0x33,0x32,0x0d,
0x0a,0x09,0x09,0x09,0x09,0x68,0x38,0x2e,0x37,0x33,
0x31,0x63,0x32,0x2e,0x32,0x39,0x2c,0x30,0x2c,0x33,
0x2e,0x31,0x32,0x31,0x2c,0x31,0x2e,0x38,0x36,0x35,
0x2c,0x33,0x2e,0x31,0x32,0x31,0x2c,0x33,0x2e,0x31,
0x32,0x76,0x37,0x2e,0x31,0x31,0x63,0x30,0x2c,0x32,
0x2e,0x32,0x39,0x2d,0x31,0x2e,0x38,0x36,0x36,0x2c,
0x33,0x2e,0x31,0x32,0x31,0x2d,0x33,0x2e,0x31,0x32,
0x31,0x2c,0x33,0x2e,0x31,0x32,0x31,0x68,0x2d,0x38,
0x2e,0x37,0x33,0x31,0x76,0x38,0x2e,0x37,0x33,0x32,
0x0d,0x0a,0x09,0x09,0x09,0x09,0x43,0x32,0x35,0x2e,
0x32,0x30,0x37,0x2c,0x33,0x36,0x2e,0x32,0x32,0x39,
0x2c,0x32,0x33,0x2e,0x33,0x34,0x31,0x2c,0x33,0x37,
0x2e,0x30,0x36,0x2c,0x32,0x32,0x2e,0x30,0x38,0x36,
0x2c,0x33,0x37,0x2e,0x30,0x36,0x7a,0x20,0x4d,0x33,
0x2e,0x31,0x32,0x31,0x2c,0x31,0x33,0x2e,0x33,0x35,
0x34,0x43,0x32,0x2e,0x37,0x34,0x35,0x2c,0x31,0x33,
0x2e,0x33,0x35,0x39,0x2c,0x31,0x2e,0x35,0x2c,0x31,
0x33,0x2e,0x34,0x39,0x33,0x2c,0x31,0x2e,0x35,0x2c,
0x31,0x34,0x2e,0x39,0x37,0x34,0x76,0x37,0x2e,0x31,
0x31,0x0d,0x0a,0x09,0x09,0x09,0x09,0x63,0x30,0x2e,
0x30,0x30,0x36,0x2c,0x30,0x2e,0x33,0x37,0x36,0x2c,
0x30,0x2e,0x31,0x33,0x39,0x2c,0x31,0x2e,0x36,0x32,
0x31,0x2c,0x31,0x2e,0x36,0x32,0x31,0x2c,0x31,0x2e,
0x36,0x32,0x31,0x68,0x31,0x30,0x2e,0x32,0x33,0x33,
0x76,0x31,0x30,0x2e,0x32,0x33,0x32,0x63,0x30,0x2e,
0x30,0x30,0x35,0x2c,0x30,0x2e,0x33,0x37,0x36,0x2c,
0x30,0x2e,0x31,0x34,0x2c,0x31,0x2e,0x36,0x32,0x31,
0x2c,0x31,0x2e,0x36,0x31,0x39,0x2c,0x31,0x2e,0x36,
0x32,0x31,0x68,0x37,0x2e,0x31,0x30,0x38,0x0d,0x0a,
0x09,0x09,0x09,0x09,0x63,0x30,0x2e,0x33,0x38,0x34,
0x2d,0x30,0x2e,0x30,0x30,0x37,0x2c,0x31,0x2e,0x36,
0x32,0x34,0x2d,0x30,0x2e,0x31,0x34,0x33,0x2c,0x31,
0x2e,0x36,0x32,0x34,0x2d,0x31,0x2e,0x36,0x32,0x31,
0x56,0x32,0x33,0x2e,0x37,0x30,0x36,0x68,0x31,0x30,
0x2e,0x32,0x33,0x31,0x63,0x30,0x2e,0x33,0x37,0x36,
0x2d,0x30,0x2e,0x30,0x30,0x36,0x2c,0x31,0x2e,0x36,
0x32,0x31,0x2d,0x30,0x2e,0x31,0x34,0x2c,0x31,0x2e,
0x36,0x32,0x31,0x2d,0x31,0x2e,0x36,0x32,0x31,0x76,
0x2d,0x37,0x2e,0x31,0x31,0x0d,0x0a,0x09,0x09,0x09,
0x09,0x63,0x2d,0x30,0x2e,0x30,0x30,0x36,0x2d,0x30,
0x2e,0x33,0x37,0x36,0x2d,0x30,0x2e,0x31,0x34,0x2d,
0x31,0x2e,0x36,0x32,0x2d,0x31,0x2e,0x36,0x32,0x31,
0x2d,0x31,0x2e,0x36,0x32,0x68,0x2d,0x31,0x30,0x2e,
0x32,0x33,0x56,0x33,0x2e,0x31,0x32,0x31,0x43,0x32,
0x33,0x2e,0x37,0x30,0x31,0x2c,0x32,0x2e,0x37,0x34,
0x35,0x2c,0x32,0x33,0x2e,0x35,0x36,0x37,0x2c,0x31,
0x2e,0x35,0x2c,0x32,0x32,0x2e,0x30,0x38,0x36,0x2c,
0x31,0x2e,0x35,0x68,0x2d,0x37,0x2e,0x31,0x31,0x31,
0x0d,0x0a,0x09,0x09,0x09,0x09,0x63,0x2d,0x30,0x2e,
0x33,0x37,0x36,0x2c,0x30,0x2e,0x30,0x30,0x36,0x2d,
0x31,0x2e,0x36,0x31,0x39,0x2c,0x30,0x2e,0x31,0x34,
0x2d,0x31,0x2e,0x36,0x31,0x39,0x2c,0x31,0x2e,0x36,
0x32,0x31,0x76,0x31,0x30,0x2e,0x32,0x33,0x32,0x4c,
0x33,0x2e,0x31,0x32,0x31,0x2c,0x31,0x33,0x2e,0x33,
0x35,0x34,0x4c,0x33,0x2e,0x31,0x32,0x31,0x2c,0x31,
0x33,0x2e,0x33,0x35,0x34,0x7a,0x22,0x2f,0x3e,0x0d,
0x0a,0x09,0x09,0x3c,0x2f,0x67,0x3e,0x0d,0x0a,0x09,
0x3c,0x2f,0x67,0x3e,0x0d,0x0a,0x09,0x3c,0x67,0x3e,
0x0d,0x0a,0x09,0x09,0x3c,0x70,0x61,0x74,0x68,0x20,
0x66,0x69,0x6c,0x6c,0x3d,0x22,0x23,0x46,0x46,0x46,
0x46,0x46,0x46,0x22,0x20,0x64,0x3d,0x22,0x4d,0x31,
0x38,0x2e,0x35,0x33,0x31,0x2c,0x32,0x32,0x2e,0x31,
0x38,0x31,0x63,0x2d,0x32,0x2e,0x30,0x31,0x33,0x2c,
0x30,0x2d,0x33,0x2e,0x36,0x34,0x39,0x2d,0x31,0x2e,
0x36,0x33,0x39,0x2d,0x33,0x2e,0x36,0x34,0x39,0x2d,
0x33,0x2e,0x36,0x35,0x31,0x73,0x31,0x2e,0x36,0x33,
0x38,0x2d,0x33,0x2e,0x36,0x35,0x2c,0x33,0x2e,0x36,
0x34,0x39,0x2d,0x33,0x2e,0x36,0x35,0x63,0x32,0x2e,
0x30,0x31,0x33,0x2c,0x30,0x2c,0x33,0x2e,0x36,0x35,
0x2c,0x31,0x2e,0x36,0x33,0x39,0x2c,0x33,0x2e,0x36,
0x35,0x2c,0x33,0x2e,0x36,0x35,0x0d,0x0a,0x09,0x09,
0x09,0x43,0x32,0x32,0x2e,0x31,0x38,0x32,0x2c,0x32,
0x30,0x2e,0x35,0x34,0x33,0x2c,0x32,0x30,0x2e,0x35,
0x34,0x34,0x2c,0x32,0x32,0x2e,0x31,0x38,0x31,0x2c,
0x31,0x38,0x2e,0x35,0x33,0x31,0x2c,0x32,0x32,0x2e,
0x31,0x38,0x31,0x7a,0x20,0x4d,0x31,0x38,0x2e,0x35,
0x33,0x31,0x2c,0x31,0x36,0x2e,0x33,0x37,0x39,0x63,
0x2d,0x31,0x2e,0x31,0x38,0x36,0x2c,0x30,0x2d,0x32,
0x2e,0x31,0x34,0x39,0x2c,0x30,0x2e,0x39,0x36,0x35,
0x2d,0x32,0x2e,0x31,0x34,0x39,0x2c,0x32,0x2e,0x31,
0x35,0x73,0x30,0x2e,0x39,0x36,0x35,0x2c,0x32,0x2e,
0x31,0x35,0x31,0x2c,0x32,0x2e,0x31,0x34,0x39,0x2c,
0x32,0x2e,0x31,0x35,0x31,0x0d,0x0a,0x09,0x09,0x09,
0x63,0x31,0x2e,0x31,0x38,0x36,0x2c,0x30,0x2c,0x32,
0x2e,0x31,0x35,0x2d,0x30,0x2e,0x39,0x36,0x36,0x2c,
0x32,0x2e,0x31,0x35,0x2d,0x32,0x2e,0x31,0x35,0x31,
0x43,0x32,0x30,0x2e,0x36,0x38,0x32,0x2c,0x31,0x37,
0x2e,0x33,0x34,0x34,0x2c,0x31,0x39,0x2e,0x37,0x31,
0x37,0x2c,0x31,0x36,0x2e,0x33,0x37,0x39,0x2c,0x31,
0x38,0x2e,0x35,0x33,0x31,0x2c,0x31,0x36,0x2e,0x33,
0x37,0x39,0x7a,0x22,0x2f,0x3e,0x0d,0x0a,0x09,0x3c,
0x2f,0x67,0x3e,0x0d,0x0a,0x09,0x3c,0x67,0x3e,0x0d,
0x0a,0x09,0x09,0x3c,0x70,0x61,0x74,0x68,0x20,0x66,
0x69,0x6c,0x6c,0x3d,0x22,0x23,0x46,0x46,0x46,0x46,
0x46,0x46,0x22,0x20,0x64,0x3d,0x22,0x4d,0x31,0x38,
0x2e,0x35,0x33,0x2c,0x33,0x2e,0x31,0x38,0x33,0x6c,
0x2d,0x33,0x2e,0x30,0x30,0x35,0x2c,0x34,0x2e,0x36,
0x38,0x34,0x68,0x36,0x2e,0x30,0x31,0x32,0x4c,0x31,
0x38,0x2e,0x35,0x33,0x2c,0x33,0x2e,0x31,0x38,0x33,
0x7a,0x22,0x2f,0x3e,0x0d,0x0a,0x09,0x09,0x3c,0x70,
0x61,0x74,0x68,0x20,0x66,0x69,0x6c,0x6c,0x3d,0x22,
0x23,0x46,0x46,0x46,0x46,0x46,0x46,0x22,0x20,0x64,
0x3d,0x22,0x4d,0x32,0x31,0x2e,0x35,0x33,0x36,0x2c,
0x38,0x2e,0x36,0x31,0x36,0x68,0x2d,0x36,0x2e,0x30,
0x31,0x32,0x63,0x2d,0x30,0x2e,0x32,0x37,0x33,0x2c,
0x30,0x2d,0x30,0x2e,0x35,0x32,0x35,0x2d,0x30,0x2e,
0x31,0x35,0x2d,0x30,0x2e,0x36,0x35,0x37,0x2d,0x30,
0x2e,0x33,0x39,0x63,0x2d,0x30,0x2e,0x31,0x33,0x32,
0x2d,0x30,0x2e,0x32,0x34,0x31,0x2d,0x30,0x2e,0x31,
0x32,0x31,0x2d,0x30,0x2e,0x35,0x33,0x34,0x2c,0x30,
0x2e,0x30,0x32,0x36,0x2d,0x30,0x2e,0x37,0x36,0x36,
0x6c,0x33,0x2e,0x30,0x30,0x35,0x2d,0x34,0x2e,0x36,
0x38,0x34,0x0d,0x0a,0x09,0x09,0x09,0x63,0x30,0x2e,
0x32,0x37,0x36,0x2d,0x30,0x2e,0x34,0x33,0x31,0x2c,
0x30,0x2e,0x39,0x38,0x36,0x2d,0x30,0x2e,0x34,0x33,
0x2c,0x31,0x2e,0x32,0x36,0x34,0x2c,0x30,0x6c,0x33,
0x2e,0x30,0x30,0x35,0x2c,0x34,0x2e,0x36,0x38,0x34,
0x63,0x30,0x2e,0x31,0x34,0x37,0x2c,0x30,0x2e,0x32,
0x33,0x31,0x2c,0x30,0x2e,0x31,0x35,0x39,0x2c,0x30,
0x2e,0x35,0x32,0x34,0x2c,0x30,0x2e,0x30,0x32,0x36,
0x2c,0x30,0x2e,0x37,0x36,0x36,0x43,0x32,0x32,0x2e,
0x30,0x36,0x33,0x2c,0x38,0x2e,0x34,0x36,0x36,0x2c,
0x32,0x31,0x2e,0x38,0x31,0x31,0x2c,0x38,0x2e,0x36,
0x31,0x36,0x2c,0x32,0x31,0x2e,0x35,0x33,0x36,0x2c,
0x38,0x2e,0x36,0x31,0x36,0x7a,0x0d,0x0a,0x09,0x09,
0x09,0x20,0x4d,0x31,0x36,0x2e,0x38,0x39,0x37,0x2c,
0x37,0x2e,0x31,0x31,0x36,0x68,0x33,0x2e,0x32,0x36,
0x38,0x4c,0x31,0x38,0x2e,0x35,0x33,0x2c,0x34,0x2e,
0x35,0x37,0x31,0x4c,0x31,0x36,0x2e,0x38,0x39,0x37,
0x2c,0x37,0x2e,0x31,0x31,0x36,0x7a,0x22,0x2f,0x3e,
0x0d,0x0a,0x09,0x3c,0x2f,0x67,0x3e,0x0d,0x0a,0x09,
0x3c,0x67,0x3e,0x0d,0x0a,0x09,0x09,0x3c,0x70,0x61,
0x74,0x68,0x20,0x66,0x69,0x6c,0x6c,0x3d,0x22,0x23,
0x46,0x46,0x46,0x46,0x46,0x46,0x22,0x20,0x64,0x3d,
0x22,0x4d,0x37,0x2e,0x38,0x30,0x39,0x2c,0x32,0x32,
0x2e,0x32,0x38,0x34,0x63,0x2d,0x30,0x2e,0x31,0x34,
0x31,0x2c,0x30,0x2d,0x30,0x2e,0x32,0x38,0x32,0x2d,
0x30,0x2e,0x30,0x34,0x2d,0x30,0x2e,0x34,0x30,0x35,
0x2d,0x30,0x2e,0x31,0x31,0x39,0x4c,0x32,0x2e,0x37,
0x32,0x2c,0x31,0x39,0x2e,0x31,0x36,0x32,0x63,0x2d,
0x30,0x2e,0x32,0x31,0x35,0x2d,0x30,0x2e,0x31,0x33,
0x38,0x2d,0x30,0x2e,0x33,0x34,0x35,0x2d,0x30,0x2e,
0x33,0x37,0x36,0x2d,0x30,0x2e,0x33,0x34,0x35,0x2d,
0x30,0x2e,0x36,0x33,0x31,0x0d,0x0a,0x09,0x09,0x09,
0x73,0x30,0x2e,0x31,0x33,0x2d,0x30,0x2e,0x34,0x39,
0x33,0x2c,0x30,0x2e,0x33,0x34,0x35,0x2d,0x30,0x2e,
0x36,0x33,0x31,0x6c,0x34,0x2e,0x36,0x38,0x34,0x2d,
0x33,0x2e,0x30,0x30,0x36,0x63,0x30,0x2e,0x32,0x33,
0x2d,0x30,0x2e,0x31,0x34,0x38,0x2c,0x30,0x2e,0x35,
0x32,0x34,0x2d,0x30,0x2e,0x31,0x35,0x38,0x2c,0x30,
0x2e,0x37,0x36,0x36,0x2d,0x30,0x2e,0x30,0x32,0x37,
0x63,0x30,0x2e,0x32,0x34,0x2c,0x30,0x2e,0x31,0x33,
0x31,0x2c,0x30,0x2e,0x33,0x39,0x2c,0x30,0x2e,0x33,
0x38,0x34,0x2c,0x30,0x2e,0x33,0x39,0x2c,0x30,0x2e,
0x36,0x35,0x38,0x76,0x36,0x2e,0x30,0x31,0x0d,0x0a,
0x09,0x09,0x09,0x63,0x30,0x2c,0x30,0x2e,0x32,0x37,
0x34,0x2d,0x30,0x2e,0x31,0x34,0x38,0x2c,0x30,0x2e,
0x35,0x32,0x36,0x2d,0x30,0x2e,0x33,0x39,0x2c,0x30,
0x2e,0x36,0x35,0x38,0x43,0x38,0x2e,0x30,0x35,0x36,
0x2c,0x32,0x32,0x2e,0x32,0x35,0x34,0x2c,0x37,0x2e,
0x39,0x33,0x32,0x2c,0x32,0x32,0x2e,0x32,0x38,0x34,
0x2c,0x37,0x2e,0x38,0x30,0x39,0x2c,0x32,0x32,0x2e,
0x32,0x38,0x34,0x7a,0x20,0x4d,0x34,0x2e,0x35,0x31,
0x34,0x2c,0x31,0x38,0x2e,0x35,0x33,0x6c,0x32,0x2e,
0x35,0x34,0x35,0x2c,0x31,0x2e,0x36,0x33,0x32,0x76,
0x2d,0x33,0x2e,0x32,0x36,0x35,0x4c,0x34,0x2e,0x35,
0x31,0x34,0x2c,0x31,0x38,0x2e,0x35,0x33,0x7a,0x22,
0x2f,0x3e,0x0d,0x0a,0x09,0x3c,0x2f,0x67,0x3e,0x0d,
0x0a,0x09,0x3c,0x67,0x3e,0x0d,0x0a,0x09,0x09,0x3c,
0x70,0x61,0x74,0x68,0x20,0x66,0x69,0x6c,0x6c,0x3d,
0x22,0x23,0x46,0x46,0x46,0x46,0x46,0x46,0x22,0x20,
0x64,0x3d,0x22,0x4d,0x32,0x39,0x2e,0x31,0x39,0x35,
0x2c,0x32,0x32,0x2e,0x32,0x38,0x34,0x63,0x2d,0x30,
0x2e,0x31,0x32,0x34,0x2c,0x30,0x2d,0x30,0x2e,0x32,
0x34,0x36,0x2d,0x30,0x2e,0x30,0x33,0x2d,0x30,0x2e,
0x33,0x35,0x38,0x2d,0x30,0x2e,0x30,0x39,0x32,0x63,
0x2d,0x30,0x2e,0x32,0x34,0x31,0x2d,0x30,0x2e,0x31,
0x33,0x32,0x2d,0x30,0x2e,0x33,0x39,0x32,0x2d,0x30,
0x2e,0x33,0x38,0x34,0x2d,0x30,0x2e,0x33,0x39,0x32,
0x2d,0x30,0x2e,0x36,0x35,0x38,0x76,0x2d,0x36,0x2e,
0x30,0x31,0x0d,0x0a,0x09,0x09,0x09,0x63,0x30,0x2d,
0x30,0x2e,0x32,0x37,0x34,0x2c,0x30,0x2e,0x31,0x34,
0x39,0x2d,0x30,0x2e,0x35,0x32,0x36,0x2c,0x30,0x2e,
0x33,0x39,0x32,0x2d,0x30,0x2e,0x36,0x35,0x38,0x63,
0x30,0x2e,0x32,0x33,0x39,0x2d,0x30,0x2e,0x31,0x33,
0x31,0x2c,0x30,0x2e,0x35,0x33,0x33,0x2d,0x30,0x2e,
0x31,0x32,0x33,0x2c,0x30,0x2e,0x37,0x36,0x35,0x2c,
0x30,0x2e,0x30,0x32,0x37,0x6c,0x34,0x2e,0x36,0x38,
0x35,0x2c,0x33,0x2e,0x30,0x30,0x35,0x63,0x30,0x2e,
0x32,0x31,0x35,0x2c,0x30,0x2e,0x31,0x33,0x38,0x2c,
0x30,0x2e,0x33,0x34,0x35,0x2c,0x30,0x2e,0x33,0x37,
0x36,0x2c,0x30,0x2e,0x33,0x34,0x35,0x2c,0x30,0x2e,
0x36,0x33,0x31,0x0d,0x0a,0x09,0x09,0x09,0x73,0x2d,
0x30,0x2e,0x31,0x33,0x2c,0x30,0x2e,0x34,0x39,0x33,
0x2d,0x30,0x2e,0x33,0x34,0x35,0x2c,0x30,0x2e,0x36,
0x33,0x31,0x6c,0x2d,0x34,0x2e,0x36,0x38,0x35,0x2c,
0x33,0x2e,0x30,0x30,0x34,0x43,0x32,0x39,0x2e,0x34,
0x37,0x38,0x2c,0x32,0x32,0x2e,0x32,0x34,0x34,0x2c,
0x32,0x39,0x2e,0x33,0x33,0x36,0x2c,0x32,0x32,0x2e,
0x32,0x38,0x34,0x2c,0x32,0x39,0x2e,0x31,0x39,0x35,
0x2c,0x32,0x32,0x2e,0x32,0x38,0x34,0x7a,0x20,0x4d,
0x32,0x39,0x2e,0x39,0x34,0x35,0x2c,0x31,0x36,0x2e,
0x38,0x39,0x36,0x76,0x33,0x2e,0x32,0x36,0x36,0x6c,
0x32,0x2e,0x35,0x34,0x36,0x2d,0x31,0x2e,0x36,0x33,
0x33,0x0d,0x0a,0x09,0x09,0x09,0x4c,0x32,0x39,0x2e,
0x39,0x34,0x35,0x2c,0x31,0x36,0x2e,0x38,0x39,0x36,
0x7a,0x22,0x2f,0x3e,0x0d,0x0a,0x09,0x3c,0x2f,0x67,
0x3e,0x0d,0x0a,0x09,0x3c,0x67,0x3e,0x0d,0x0a,0x09,
0x09,0x3c,0x70,0x61,0x74,0x68,0x20,0x66,0x69,0x6c,
0x6c,0x3d,0x22,0x23,0x46,0x46,0x46,0x46,0x46,0x46,
0x22,0x20,0x64,0x3d,0x22,0x4d,0x31,0x38,0x2e,0x35,
0x33,0x2c,0x33,0x33,0x2e,0x38,0x37,0x36,0x6c,0x33,
0x2e,0x30,0x30,0x37,0x2d,0x34,0x2e,0x36,0x38,0x34,
0x68,0x2d,0x36,0x2e,0x30,0x31,0x32,0x4c,0x31,0x38,
0x2e,0x35,0x33,0x2c,0x33,0x33,0x2e,0x38,0x37,0x36,
0x7a,0x22,0x2f,0x3e,0x0d,0x0a,0x09,0x09,0x3c,0x70,
0x61,0x74,0x68,0x20,0x66,0x69,0x6c,0x6c,0x3d,0x22,
0x23,0x46,0x46,0x46,0x46,0x46,0x46,0x22,0x20,0x64,
0x3d,0x22,0x4d,0x31,0x38,0x2e,0x35,0x33,0x2c,0x33,
0x34,0x2e,0x36,0x32,0x36,0x4c,0x31,0x38,0x2e,0x35,
0x33,0x2c,0x33,0x34,0x2e,0x36,0x32,0x36,0x63,0x2d,
0x30,0x2e,0x32,0x35,0x35,0x2c,0x30,0x2d,0x30,0x2e,
0x34,0x39,0x32,0x2d,0x30,0x2e,0x31,0x33,0x2d,0x30,
0x2e,0x36,0x33,0x31,0x2d,0x30,0x2e,0x33,0x34,0x35,
0x6c,0x2d,0x33,0x2e,0x30,0x30,0x35,0x2d,0x34,0x2e,
0x36,0x38,0x34,0x0d,0x0a,0x09,0x09,0x09,0x63,0x2d,
0x30,0x2e,0x31,0x34,0x37,0x2d,0x30,0x2e,0x32,0x33,
0x31,0x2d,0x30,0x2e,0x31,0x35,0x38,0x2d,0x30,0x2e,
0x35,0x32,0x34,0x2d,0x30,0x2e,0x30,0x32,0x36,0x2d,
0x30,0x2e,0x37,0x36,0x36,0x73,0x30,0x2e,0x33,0x38,
0x34,0x2d,0x30,0x2e,0x33,0x39,0x31,0x2c,0x30,0x2e,
0x36,0x35,0x37,0x2d,0x30,0x2e,0x33,0x39,0x31,0x68,
0x36,0x2e,0x30,0x31,0x32,0x63,0x30,0x2e,0x32,0x37,
0x33,0x2c,0x30,0x2c,0x30,0x2e,0x35,0x32,0x35,0x2c,
0x30,0x2e,0x31,0x34,0x38,0x2c,0x30,0x2e,0x36,0x35,
0x37,0x2c,0x30,0x2e,0x33,0x39,0x31,0x0d,0x0a,0x09,
0x09,0x09,0x63,0x30,0x2e,0x31,0x33,0x33,0x2c,0x30,
0x2e,0x32,0x34,0x2c,0x30,0x2e,0x31,0x32,0x31,0x2c,
0x30,0x2e,0x35,0x33,0x33,0x2d,0x30,0x2e,0x30,0x32,
0x36,0x2c,0x30,0x2e,0x37,0x36,0x36,0x6c,0x2d,0x33,
0x2e,0x30,0x30,0x35,0x2c,0x34,0x2e,0x36,0x38,0x34,
0x43,0x31,0x39,0x2e,0x30,0x32,0x33,0x2c,0x33,0x34,
0x2e,0x34,0x39,0x36,0x2c,0x31,0x38,0x2e,0x37,0x38,
0x36,0x2c,0x33,0x34,0x2e,0x36,0x32,0x36,0x2c,0x31,
0x38,0x2e,0x35,0x33,0x2c,0x33,0x34,0x2e,0x36,0x32,
0x36,0x7a,0x20,0x4d,0x31,0x36,0x2e,0x38,0x39,0x37,
0x2c,0x32,0x39,0x2e,0x39,0x34,0x32,0x6c,0x31,0x2e,
0x36,0x33,0x33,0x2c,0x32,0x2e,0x35,0x34,0x35,0x0d,
0x0a,0x09,0x09,0x09,0x6c,0x31,0x2e,0x36,0x33,0x35,
0x2d,0x32,0x2e,0x35,0x34,0x35,0x48,0x31,0x36,0x2e,
0x38,0x39,0x37,0x7a,0x22,0x2f,0x3e,0x0d,0x0a,0x09,
0x3c,0x2f,0x67,0x3e,0x0d,0x0a,0x3c,0x2f,0x67,0x3e,
0x0d,0x0a,0x3c,0x2f,0x73,0x76,0x67,0x3e,0x0d,0x0a
};

141
data/converted/off_svg.cpp Normal file
View file

@ -0,0 +1,141 @@
//this file was auto-generated from "off.svg" by res2h
#include "../Resources.h"
const size_t off_svg_size = 1338;
const unsigned char off_svg_data[1338] = {
0x3c,0x3f,0x78,0x6d,0x6c,0x20,0x76,0x65,0x72,0x73,
0x69,0x6f,0x6e,0x3d,0x22,0x31,0x2e,0x30,0x22,0x20,
0x65,0x6e,0x63,0x6f,0x64,0x69,0x6e,0x67,0x3d,0x22,
0x75,0x74,0x66,0x2d,0x38,0x22,0x3f,0x3e,0x0d,0x0a,
0x3c,0x21,0x2d,0x2d,0x20,0x47,0x65,0x6e,0x65,0x72,
0x61,0x74,0x6f,0x72,0x3a,0x20,0x41,0x64,0x6f,0x62,
0x65,0x20,0x49,0x6c,0x6c,0x75,0x73,0x74,0x72,0x61,
0x74,0x6f,0x72,0x20,0x31,0x36,0x2e,0x30,0x2e,0x33,
0x2c,0x20,0x53,0x56,0x47,0x20,0x45,0x78,0x70,0x6f,
0x72,0x74,0x20,0x50,0x6c,0x75,0x67,0x2d,0x49,0x6e,
0x20,0x2e,0x20,0x53,0x56,0x47,0x20,0x56,0x65,0x72,
0x73,0x69,0x6f,0x6e,0x3a,0x20,0x36,0x2e,0x30,0x30,
0x20,0x42,0x75,0x69,0x6c,0x64,0x20,0x30,0x29,0x20,
0x20,0x2d,0x2d,0x3e,0x0d,0x0a,0x3c,0x21,0x44,0x4f,
0x43,0x54,0x59,0x50,0x45,0x20,0x73,0x76,0x67,0x20,
0x50,0x55,0x42,0x4c,0x49,0x43,0x20,0x22,0x2d,0x2f,
0x2f,0x57,0x33,0x43,0x2f,0x2f,0x44,0x54,0x44,0x20,
0x53,0x56,0x47,0x20,0x31,0x2e,0x31,0x2f,0x2f,0x45,
0x4e,0x22,0x20,0x22,0x68,0x74,0x74,0x70,0x3a,0x2f,
0x2f,0x77,0x77,0x77,0x2e,0x77,0x33,0x2e,0x6f,0x72,
0x67,0x2f,0x47,0x72,0x61,0x70,0x68,0x69,0x63,0x73,
0x2f,0x53,0x56,0x47,0x2f,0x31,0x2e,0x31,0x2f,0x44,
0x54,0x44,0x2f,0x73,0x76,0x67,0x31,0x31,0x2e,0x64,
0x74,0x64,0x22,0x3e,0x0d,0x0a,0x3c,0x73,0x76,0x67,
0x20,0x76,0x65,0x72,0x73,0x69,0x6f,0x6e,0x3d,0x22,
0x31,0x2e,0x31,0x22,0x20,0x69,0x64,0x3d,0x22,0x45,
0x62,0x65,0x6e,0x65,0x5f,0x31,0x22,0x20,0x78,0x6d,
0x6c,0x6e,0x73,0x3d,0x22,0x68,0x74,0x74,0x70,0x3a,
0x2f,0x2f,0x77,0x77,0x77,0x2e,0x77,0x33,0x2e,0x6f,
0x72,0x67,0x2f,0x32,0x30,0x30,0x30,0x2f,0x73,0x76,
0x67,0x22,0x20,0x78,0x6d,0x6c,0x6e,0x73,0x3a,0x78,
0x6c,0x69,0x6e,0x6b,0x3d,0x22,0x68,0x74,0x74,0x70,
0x3a,0x2f,0x2f,0x77,0x77,0x77,0x2e,0x77,0x33,0x2e,
0x6f,0x72,0x67,0x2f,0x31,0x39,0x39,0x39,0x2f,0x78,
0x6c,0x69,0x6e,0x6b,0x22,0x20,0x78,0x3d,0x22,0x30,
0x70,0x78,0x22,0x20,0x79,0x3d,0x22,0x30,0x70,0x78,
0x22,0x0d,0x0a,0x09,0x20,0x77,0x69,0x64,0x74,0x68,
0x3d,0x22,0x34,0x33,0x2e,0x39,0x31,0x36,0x70,0x78,
0x22,0x20,0x68,0x65,0x69,0x67,0x68,0x74,0x3d,0x22,
0x32,0x31,0x2e,0x39,0x35,0x39,0x70,0x78,0x22,0x20,
0x76,0x69,0x65,0x77,0x42,0x6f,0x78,0x3d,0x22,0x30,
0x20,0x30,0x20,0x34,0x33,0x2e,0x39,0x31,0x36,0x20,
0x32,0x31,0x2e,0x39,0x35,0x39,0x22,0x20,0x65,0x6e,
0x61,0x62,0x6c,0x65,0x2d,0x62,0x61,0x63,0x6b,0x67,
0x72,0x6f,0x75,0x6e,0x64,0x3d,0x22,0x6e,0x65,0x77,
0x20,0x30,0x20,0x30,0x20,0x34,0x33,0x2e,0x39,0x31,
0x36,0x20,0x32,0x31,0x2e,0x39,0x35,0x39,0x22,0x20,
0x78,0x6d,0x6c,0x3a,0x73,0x70,0x61,0x63,0x65,0x3d,
0x22,0x70,0x72,0x65,0x73,0x65,0x72,0x76,0x65,0x22,
0x3e,0x0d,0x0a,0x3c,0x70,0x61,0x74,0x68,0x20,0x66,
0x69,0x6c,0x6c,0x3d,0x22,0x23,0x37,0x37,0x37,0x37,
0x37,0x37,0x22,0x20,0x64,0x3d,0x22,0x4d,0x32,0x39,
0x2e,0x32,0x39,0x31,0x2c,0x31,0x35,0x2e,0x36,0x39,
0x68,0x31,0x2e,0x39,0x33,0x34,0x76,0x2d,0x34,0x2e,
0x31,0x31,0x33,0x68,0x35,0x2e,0x34,0x32,0x76,0x2d,
0x31,0x2e,0x34,0x37,0x39,0x68,0x2d,0x35,0x2e,0x34,
0x32,0x56,0x37,0x2e,0x37,0x30,0x34,0x68,0x35,0x2e,
0x37,0x32,0x39,0x56,0x36,0x2e,0x32,0x32,0x35,0x68,
0x2d,0x37,0x2e,0x36,0x36,0x32,0x56,0x31,0x35,0x2e,
0x36,0x39,0x7a,0x20,0x4d,0x31,0x39,0x2e,0x38,0x31,
0x2c,0x31,0x35,0x2e,0x36,0x39,0x68,0x31,0x2e,0x39,
0x33,0x36,0x76,0x2d,0x34,0x2e,0x31,0x31,0x33,0x0d,
0x0a,0x09,0x68,0x35,0x2e,0x34,0x31,0x36,0x76,0x2d,
0x31,0x2e,0x34,0x37,0x39,0x68,0x2d,0x35,0x2e,0x34,
0x31,0x36,0x56,0x37,0x2e,0x37,0x30,0x34,0x68,0x35,
0x2e,0x37,0x32,0x35,0x56,0x36,0x2e,0x32,0x32,0x35,
0x68,0x2d,0x37,0x2e,0x36,0x36,0x56,0x31,0x35,0x2e,
0x36,0x39,0x7a,0x20,0x4d,0x31,0x32,0x2e,0x33,0x37,
0x38,0x2c,0x31,0x34,0x2e,0x34,0x37,0x33,0x63,0x2d,
0x32,0x2e,0x31,0x36,0x36,0x2c,0x30,0x2d,0x33,0x2e,
0x34,0x30,0x34,0x2d,0x31,0x2e,0x34,0x33,0x35,0x2d,
0x33,0x2e,0x34,0x30,0x34,0x2d,0x33,0x2e,0x35,0x31,
0x37,0x0d,0x0a,0x09,0x63,0x30,0x2d,0x32,0x2e,0x30,
0x38,0x33,0x2c,0x31,0x2e,0x32,0x33,0x38,0x2d,0x33,
0x2e,0x35,0x31,0x38,0x2c,0x33,0x2e,0x34,0x30,0x34,
0x2d,0x33,0x2e,0x35,0x31,0x38,0x63,0x32,0x2e,0x31,
0x36,0x37,0x2c,0x30,0x2c,0x33,0x2e,0x34,0x30,0x36,
0x2c,0x31,0x2e,0x34,0x33,0x35,0x2c,0x33,0x2e,0x34,
0x30,0x36,0x2c,0x33,0x2e,0x35,0x31,0x38,0x43,0x31,
0x35,0x2e,0x37,0x38,0x34,0x2c,0x31,0x33,0x2e,0x30,
0x33,0x38,0x2c,0x31,0x34,0x2e,0x35,0x34,0x35,0x2c,
0x31,0x34,0x2e,0x34,0x37,0x33,0x2c,0x31,0x32,0x2e,
0x33,0x37,0x38,0x2c,0x31,0x34,0x2e,0x34,0x37,0x33,
0x20,0x4d,0x31,0x32,0x2e,0x33,0x37,0x38,0x2c,0x31,
0x35,0x2e,0x39,0x35,0x36,0x0d,0x0a,0x09,0x63,0x33,
0x2e,0x38,0x39,0x36,0x2c,0x30,0x2c,0x35,0x2e,0x34,
0x31,0x39,0x2d,0x32,0x2e,0x33,0x33,0x35,0x2c,0x35,
0x2e,0x34,0x31,0x39,0x2d,0x35,0x73,0x2d,0x31,0x2e,
0x35,0x32,0x32,0x2d,0x34,0x2e,0x39,0x39,0x37,0x2d,
0x35,0x2e,0x34,0x31,0x39,0x2d,0x34,0x2e,0x39,0x39,
0x37,0x63,0x2d,0x33,0x2e,0x38,0x39,0x36,0x2c,0x30,
0x2d,0x35,0x2e,0x34,0x31,0x36,0x2c,0x32,0x2e,0x33,
0x33,0x32,0x2d,0x35,0x2e,0x34,0x31,0x36,0x2c,0x34,
0x2e,0x39,0x39,0x37,0x53,0x38,0x2e,0x34,0x38,0x32,
0x2c,0x31,0x35,0x2e,0x39,0x35,0x36,0x2c,0x31,0x32,
0x2e,0x33,0x37,0x38,0x2c,0x31,0x35,0x2e,0x39,0x35,
0x36,0x22,0x2f,0x3e,0x0d,0x0a,0x3c,0x70,0x61,0x74,
0x68,0x20,0x66,0x69,0x6c,0x6c,0x3d,0x22,0x23,0x37,
0x37,0x37,0x37,0x37,0x37,0x22,0x20,0x64,0x3d,0x22,
0x4d,0x33,0x39,0x2e,0x36,0x36,0x34,0x2c,0x31,0x2e,
0x35,0x63,0x31,0x2e,0x35,0x31,0x38,0x2c,0x30,0x2c,
0x32,0x2e,0x37,0x35,0x32,0x2c,0x31,0x2e,0x32,0x33,
0x34,0x2c,0x32,0x2e,0x37,0x35,0x32,0x2c,0x32,0x2e,
0x37,0x35,0x32,0x76,0x31,0x33,0x2e,0x34,0x35,0x35,
0x63,0x30,0x2c,0x31,0x2e,0x35,0x31,0x38,0x2d,0x31,
0x2e,0x32,0x33,0x34,0x2c,0x32,0x2e,0x37,0x35,0x32,
0x2d,0x32,0x2e,0x37,0x35,0x32,0x2c,0x32,0x2e,0x37,
0x35,0x32,0x48,0x34,0x2e,0x32,0x35,0x32,0x0d,0x0a,
0x09,0x63,0x2d,0x31,0x2e,0x35,0x31,0x38,0x2c,0x30,
0x2d,0x32,0x2e,0x37,0x35,0x32,0x2d,0x31,0x2e,0x32,
0x33,0x34,0x2d,0x32,0x2e,0x37,0x35,0x32,0x2d,0x32,
0x2e,0x37,0x35,0x32,0x56,0x34,0x2e,0x32,0x35,0x32,
0x43,0x31,0x2e,0x35,0x2c,0x32,0x2e,0x37,0x33,0x34,
0x2c,0x32,0x2e,0x37,0x33,0x34,0x2c,0x31,0x2e,0x35,
0x2c,0x34,0x2e,0x32,0x35,0x32,0x2c,0x31,0x2e,0x35,
0x48,0x33,0x39,0x2e,0x36,0x36,0x34,0x20,0x4d,0x33,
0x39,0x2e,0x36,0x36,0x34,0x2c,0x30,0x48,0x34,0x2e,
0x32,0x35,0x32,0x43,0x31,0x2e,0x39,0x31,0x34,0x2c,
0x30,0x2c,0x30,0x2c,0x31,0x2e,0x39,0x31,0x34,0x2c,
0x30,0x2c,0x34,0x2e,0x32,0x35,0x32,0x76,0x31,0x33,
0x2e,0x34,0x35,0x35,0x0d,0x0a,0x09,0x63,0x30,0x2c,
0x32,0x2e,0x33,0x33,0x39,0x2c,0x31,0x2e,0x39,0x31,
0x34,0x2c,0x34,0x2e,0x32,0x35,0x32,0x2c,0x34,0x2e,
0x32,0x35,0x32,0x2c,0x34,0x2e,0x32,0x35,0x32,0x68,
0x33,0x35,0x2e,0x34,0x31,0x32,0x63,0x32,0x2e,0x33,
0x33,0x39,0x2c,0x30,0x2c,0x34,0x2e,0x32,0x35,0x32,
0x2d,0x31,0x2e,0x39,0x31,0x33,0x2c,0x34,0x2e,0x32,
0x35,0x32,0x2d,0x34,0x2e,0x32,0x35,0x32,0x56,0x34,
0x2e,0x32,0x35,0x32,0x43,0x34,0x33,0x2e,0x39,0x31,
0x36,0x2c,0x31,0x2e,0x39,0x31,0x34,0x2c,0x34,0x32,
0x2e,0x30,0x30,0x33,0x2c,0x30,0x2c,0x33,0x39,0x2e,
0x36,0x36,0x34,0x2c,0x30,0x4c,0x33,0x39,0x2e,0x36,
0x36,0x34,0x2c,0x30,0x7a,0x22,0x2f,0x3e,0x0d,0x0a,
0x3c,0x2f,0x73,0x76,0x67,0x3e,0x0d,0x0a
};

122
data/converted/on_svg.cpp Normal file
View file

@ -0,0 +1,122 @@
//this file was auto-generated from "on.svg" by res2h
#include "../Resources.h"
const size_t on_svg_size = 1146;
const unsigned char on_svg_data[1146] = {
0x3c,0x3f,0x78,0x6d,0x6c,0x20,0x76,0x65,0x72,0x73,
0x69,0x6f,0x6e,0x3d,0x22,0x31,0x2e,0x30,0x22,0x20,
0x65,0x6e,0x63,0x6f,0x64,0x69,0x6e,0x67,0x3d,0x22,
0x75,0x74,0x66,0x2d,0x38,0x22,0x3f,0x3e,0x0d,0x0a,
0x3c,0x21,0x2d,0x2d,0x20,0x47,0x65,0x6e,0x65,0x72,
0x61,0x74,0x6f,0x72,0x3a,0x20,0x41,0x64,0x6f,0x62,
0x65,0x20,0x49,0x6c,0x6c,0x75,0x73,0x74,0x72,0x61,
0x74,0x6f,0x72,0x20,0x31,0x36,0x2e,0x30,0x2e,0x33,
0x2c,0x20,0x53,0x56,0x47,0x20,0x45,0x78,0x70,0x6f,
0x72,0x74,0x20,0x50,0x6c,0x75,0x67,0x2d,0x49,0x6e,
0x20,0x2e,0x20,0x53,0x56,0x47,0x20,0x56,0x65,0x72,
0x73,0x69,0x6f,0x6e,0x3a,0x20,0x36,0x2e,0x30,0x30,
0x20,0x42,0x75,0x69,0x6c,0x64,0x20,0x30,0x29,0x20,
0x20,0x2d,0x2d,0x3e,0x0d,0x0a,0x3c,0x21,0x44,0x4f,
0x43,0x54,0x59,0x50,0x45,0x20,0x73,0x76,0x67,0x20,
0x50,0x55,0x42,0x4c,0x49,0x43,0x20,0x22,0x2d,0x2f,
0x2f,0x57,0x33,0x43,0x2f,0x2f,0x44,0x54,0x44,0x20,
0x53,0x56,0x47,0x20,0x31,0x2e,0x31,0x2f,0x2f,0x45,
0x4e,0x22,0x20,0x22,0x68,0x74,0x74,0x70,0x3a,0x2f,
0x2f,0x77,0x77,0x77,0x2e,0x77,0x33,0x2e,0x6f,0x72,
0x67,0x2f,0x47,0x72,0x61,0x70,0x68,0x69,0x63,0x73,
0x2f,0x53,0x56,0x47,0x2f,0x31,0x2e,0x31,0x2f,0x44,
0x54,0x44,0x2f,0x73,0x76,0x67,0x31,0x31,0x2e,0x64,
0x74,0x64,0x22,0x3e,0x0d,0x0a,0x3c,0x73,0x76,0x67,
0x20,0x76,0x65,0x72,0x73,0x69,0x6f,0x6e,0x3d,0x22,
0x31,0x2e,0x31,0x22,0x20,0x69,0x64,0x3d,0x22,0x45,
0x62,0x65,0x6e,0x65,0x5f,0x31,0x22,0x20,0x78,0x6d,
0x6c,0x6e,0x73,0x3d,0x22,0x68,0x74,0x74,0x70,0x3a,
0x2f,0x2f,0x77,0x77,0x77,0x2e,0x77,0x33,0x2e,0x6f,
0x72,0x67,0x2f,0x32,0x30,0x30,0x30,0x2f,0x73,0x76,
0x67,0x22,0x20,0x78,0x6d,0x6c,0x6e,0x73,0x3a,0x78,
0x6c,0x69,0x6e,0x6b,0x3d,0x22,0x68,0x74,0x74,0x70,
0x3a,0x2f,0x2f,0x77,0x77,0x77,0x2e,0x77,0x33,0x2e,
0x6f,0x72,0x67,0x2f,0x31,0x39,0x39,0x39,0x2f,0x78,
0x6c,0x69,0x6e,0x6b,0x22,0x20,0x78,0x3d,0x22,0x30,
0x70,0x78,0x22,0x20,0x79,0x3d,0x22,0x30,0x70,0x78,
0x22,0x0d,0x0a,0x09,0x20,0x77,0x69,0x64,0x74,0x68,
0x3d,0x22,0x34,0x33,0x2e,0x39,0x31,0x36,0x70,0x78,
0x22,0x20,0x68,0x65,0x69,0x67,0x68,0x74,0x3d,0x22,
0x32,0x31,0x2e,0x39,0x35,0x39,0x70,0x78,0x22,0x20,
0x76,0x69,0x65,0x77,0x42,0x6f,0x78,0x3d,0x22,0x30,
0x20,0x30,0x20,0x34,0x33,0x2e,0x39,0x31,0x36,0x20,
0x32,0x31,0x2e,0x39,0x35,0x39,0x22,0x20,0x65,0x6e,
0x61,0x62,0x6c,0x65,0x2d,0x62,0x61,0x63,0x6b,0x67,
0x72,0x6f,0x75,0x6e,0x64,0x3d,0x22,0x6e,0x65,0x77,
0x20,0x30,0x20,0x30,0x20,0x34,0x33,0x2e,0x39,0x31,
0x36,0x20,0x32,0x31,0x2e,0x39,0x35,0x39,0x22,0x20,
0x78,0x6d,0x6c,0x3a,0x73,0x70,0x61,0x63,0x65,0x3d,
0x22,0x70,0x72,0x65,0x73,0x65,0x72,0x76,0x65,0x22,
0x3e,0x0d,0x0a,0x3c,0x67,0x3e,0x0d,0x0a,0x09,0x3c,
0x70,0x61,0x74,0x68,0x20,0x66,0x69,0x6c,0x6c,0x3d,
0x22,0x23,0x37,0x37,0x37,0x37,0x37,0x37,0x22,0x20,
0x64,0x3d,0x22,0x4d,0x31,0x35,0x2e,0x37,0x35,0x34,
0x2c,0x37,0x2e,0x34,0x36,0x31,0x63,0x2d,0x32,0x2e,
0x33,0x31,0x39,0x2c,0x30,0x2d,0x33,0x2e,0x36,0x34,
0x33,0x2c,0x31,0x2e,0x34,0x33,0x34,0x2d,0x33,0x2e,
0x36,0x34,0x33,0x2c,0x33,0x2e,0x35,0x31,0x38,0x63,
0x30,0x2c,0x32,0x2e,0x30,0x38,0x33,0x2c,0x31,0x2e,
0x33,0x32,0x35,0x2c,0x33,0x2e,0x35,0x32,0x31,0x2c,
0x33,0x2e,0x36,0x34,0x33,0x2c,0x33,0x2e,0x35,0x32,
0x31,0x0d,0x0a,0x09,0x09,0x63,0x32,0x2e,0x33,0x32,
0x2c,0x30,0x2c,0x33,0x2e,0x36,0x34,0x34,0x2d,0x31,
0x2e,0x34,0x33,0x37,0x2c,0x33,0x2e,0x36,0x34,0x35,
0x2d,0x33,0x2e,0x35,0x32,0x31,0x43,0x31,0x39,0x2e,
0x33,0x39,0x39,0x2c,0x38,0x2e,0x38,0x39,0x35,0x2c,
0x31,0x38,0x2e,0x30,0x37,0x34,0x2c,0x37,0x2e,0x34,
0x36,0x31,0x2c,0x31,0x35,0x2e,0x37,0x35,0x34,0x2c,
0x37,0x2e,0x34,0x36,0x31,0x7a,0x22,0x2f,0x3e,0x0d,
0x0a,0x09,0x3c,0x70,0x61,0x74,0x68,0x20,0x66,0x69,
0x6c,0x6c,0x3d,0x22,0x23,0x37,0x37,0x37,0x37,0x37,
0x37,0x22,0x20,0x64,0x3d,0x22,0x4d,0x33,0x39,0x2e,
0x36,0x36,0x34,0x2c,0x30,0x48,0x34,0x2e,0x32,0x35,
0x32,0x43,0x31,0x2e,0x39,0x31,0x34,0x2c,0x30,0x2c,
0x30,0x2c,0x31,0x2e,0x39,0x31,0x34,0x2c,0x30,0x2c,
0x34,0x2e,0x32,0x35,0x32,0x76,0x31,0x33,0x2e,0x34,
0x35,0x35,0x63,0x30,0x2c,0x32,0x2e,0x33,0x33,0x39,
0x2c,0x31,0x2e,0x39,0x31,0x34,0x2c,0x34,0x2e,0x32,
0x35,0x32,0x2c,0x34,0x2e,0x32,0x35,0x32,0x2c,0x34,
0x2e,0x32,0x35,0x32,0x68,0x33,0x35,0x2e,0x34,0x31,
0x32,0x0d,0x0a,0x09,0x09,0x63,0x32,0x2e,0x33,0x33,
0x39,0x2c,0x30,0x2c,0x34,0x2e,0x32,0x35,0x32,0x2d,
0x31,0x2e,0x39,0x31,0x33,0x2c,0x34,0x2e,0x32,0x35,
0x32,0x2d,0x34,0x2e,0x32,0x35,0x32,0x56,0x34,0x2e,
0x32,0x35,0x32,0x43,0x34,0x33,0x2e,0x39,0x31,0x36,
0x2c,0x31,0x2e,0x39,0x31,0x34,0x2c,0x34,0x32,0x2e,
0x30,0x30,0x33,0x2c,0x30,0x2c,0x33,0x39,0x2e,0x36,
0x36,0x34,0x2c,0x30,0x7a,0x20,0x4d,0x31,0x35,0x2e,
0x37,0x35,0x34,0x2c,0x31,0x35,0x2e,0x39,0x37,0x39,
0x63,0x2d,0x34,0x2e,0x31,0x36,0x38,0x2c,0x30,0x2d,
0x35,0x2e,0x37,0x39,0x36,0x2d,0x32,0x2e,0x33,0x33,
0x34,0x2d,0x35,0x2e,0x37,0x39,0x36,0x2d,0x35,0x0d,
0x0a,0x09,0x09,0x63,0x30,0x2d,0x32,0x2e,0x36,0x36,
0x39,0x2c,0x31,0x2e,0x36,0x32,0x38,0x2d,0x35,0x2e,
0x30,0x30,0x31,0x2c,0x35,0x2e,0x37,0x39,0x36,0x2d,
0x35,0x2e,0x30,0x30,0x31,0x63,0x34,0x2e,0x31,0x37,
0x2c,0x30,0x2c,0x35,0x2e,0x37,0x39,0x38,0x2c,0x32,
0x2e,0x33,0x33,0x32,0x2c,0x35,0x2e,0x37,0x39,0x38,
0x2c,0x35,0x2e,0x30,0x30,0x31,0x43,0x32,0x31,0x2e,
0x35,0x35,0x32,0x2c,0x31,0x33,0x2e,0x36,0x34,0x34,
0x2c,0x31,0x39,0x2e,0x39,0x32,0x34,0x2c,0x31,0x35,
0x2e,0x39,0x37,0x39,0x2c,0x31,0x35,0x2e,0x37,0x35,
0x34,0x2c,0x31,0x35,0x2e,0x39,0x37,0x39,0x7a,0x20,
0x4d,0x33,0x33,0x2e,0x39,0x35,0x37,0x2c,0x31,0x35,
0x2e,0x37,0x31,0x35,0x0d,0x0a,0x09,0x09,0x68,0x2d,
0x32,0x2e,0x33,0x33,0x32,0x4c,0x32,0x35,0x2e,0x37,
0x32,0x2c,0x38,0x2e,0x36,0x30,0x32,0x68,0x2d,0x30,
0x2e,0x30,0x32,0x37,0x76,0x37,0x2e,0x31,0x31,0x33,
0x68,0x2d,0x31,0x2e,0x39,0x38,0x38,0x56,0x36,0x2e,
0x32,0x34,0x34,0x68,0x32,0x2e,0x33,0x37,0x33,0x6c,
0x35,0x2e,0x38,0x36,0x35,0x2c,0x37,0x2e,0x31,0x31,
0x34,0x68,0x30,0x2e,0x30,0x32,0x37,0x56,0x36,0x2e,
0x32,0x34,0x34,0x68,0x31,0x2e,0x39,0x38,0x37,0x56,
0x31,0x35,0x2e,0x37,0x31,0x35,0x7a,0x22,0x2f,0x3e,
0x0d,0x0a,0x3c,0x2f,0x67,0x3e,0x0d,0x0a,0x3c,0x2f,
0x73,0x76,0x67,0x3e,0x0d,0x0a
};

File diff suppressed because it is too large Load diff

File diff suppressed because it is too large Load diff

View file

@ -0,0 +1,92 @@
//this file was auto-generated from "option_arrow.svg" by res2h
#include "../Resources.h"
const size_t option_arrow_svg_size = 850;
const unsigned char option_arrow_svg_data[850] = {
0x3c,0x3f,0x78,0x6d,0x6c,0x20,0x76,0x65,0x72,0x73,
0x69,0x6f,0x6e,0x3d,0x22,0x31,0x2e,0x30,0x22,0x20,
0x65,0x6e,0x63,0x6f,0x64,0x69,0x6e,0x67,0x3d,0x22,
0x75,0x74,0x66,0x2d,0x38,0x22,0x3f,0x3e,0x0d,0x0a,
0x3c,0x21,0x2d,0x2d,0x20,0x47,0x65,0x6e,0x65,0x72,
0x61,0x74,0x6f,0x72,0x3a,0x20,0x41,0x64,0x6f,0x62,
0x65,0x20,0x49,0x6c,0x6c,0x75,0x73,0x74,0x72,0x61,
0x74,0x6f,0x72,0x20,0x31,0x36,0x2e,0x30,0x2e,0x33,
0x2c,0x20,0x53,0x56,0x47,0x20,0x45,0x78,0x70,0x6f,
0x72,0x74,0x20,0x50,0x6c,0x75,0x67,0x2d,0x49,0x6e,
0x20,0x2e,0x20,0x53,0x56,0x47,0x20,0x56,0x65,0x72,
0x73,0x69,0x6f,0x6e,0x3a,0x20,0x36,0x2e,0x30,0x30,
0x20,0x42,0x75,0x69,0x6c,0x64,0x20,0x30,0x29,0x20,
0x20,0x2d,0x2d,0x3e,0x0d,0x0a,0x3c,0x21,0x44,0x4f,
0x43,0x54,0x59,0x50,0x45,0x20,0x73,0x76,0x67,0x20,
0x50,0x55,0x42,0x4c,0x49,0x43,0x20,0x22,0x2d,0x2f,
0x2f,0x57,0x33,0x43,0x2f,0x2f,0x44,0x54,0x44,0x20,
0x53,0x56,0x47,0x20,0x31,0x2e,0x31,0x2f,0x2f,0x45,
0x4e,0x22,0x20,0x22,0x68,0x74,0x74,0x70,0x3a,0x2f,
0x2f,0x77,0x77,0x77,0x2e,0x77,0x33,0x2e,0x6f,0x72,
0x67,0x2f,0x47,0x72,0x61,0x70,0x68,0x69,0x63,0x73,
0x2f,0x53,0x56,0x47,0x2f,0x31,0x2e,0x31,0x2f,0x44,
0x54,0x44,0x2f,0x73,0x76,0x67,0x31,0x31,0x2e,0x64,
0x74,0x64,0x22,0x3e,0x0d,0x0a,0x3c,0x73,0x76,0x67,
0x20,0x76,0x65,0x72,0x73,0x69,0x6f,0x6e,0x3d,0x22,
0x31,0x2e,0x31,0x22,0x20,0x69,0x64,0x3d,0x22,0x45,
0x62,0x65,0x6e,0x65,0x5f,0x31,0x22,0x20,0x78,0x6d,
0x6c,0x6e,0x73,0x3d,0x22,0x68,0x74,0x74,0x70,0x3a,
0x2f,0x2f,0x77,0x77,0x77,0x2e,0x77,0x33,0x2e,0x6f,
0x72,0x67,0x2f,0x32,0x30,0x30,0x30,0x2f,0x73,0x76,
0x67,0x22,0x20,0x78,0x6d,0x6c,0x6e,0x73,0x3a,0x78,
0x6c,0x69,0x6e,0x6b,0x3d,0x22,0x68,0x74,0x74,0x70,
0x3a,0x2f,0x2f,0x77,0x77,0x77,0x2e,0x77,0x33,0x2e,
0x6f,0x72,0x67,0x2f,0x31,0x39,0x39,0x39,0x2f,0x78,
0x6c,0x69,0x6e,0x6b,0x22,0x20,0x78,0x3d,0x22,0x30,
0x70,0x78,0x22,0x20,0x79,0x3d,0x22,0x30,0x70,0x78,
0x22,0x0d,0x0a,0x09,0x20,0x77,0x69,0x64,0x74,0x68,
0x3d,0x22,0x31,0x32,0x2e,0x31,0x35,0x38,0x70,0x78,
0x22,0x20,0x68,0x65,0x69,0x67,0x68,0x74,0x3d,0x22,
0x32,0x31,0x2e,0x39,0x31,0x33,0x70,0x78,0x22,0x20,
0x76,0x69,0x65,0x77,0x42,0x6f,0x78,0x3d,0x22,0x30,
0x20,0x30,0x20,0x31,0x32,0x2e,0x31,0x35,0x38,0x20,
0x32,0x31,0x2e,0x39,0x31,0x33,0x22,0x20,0x65,0x6e,
0x61,0x62,0x6c,0x65,0x2d,0x62,0x61,0x63,0x6b,0x67,
0x72,0x6f,0x75,0x6e,0x64,0x3d,0x22,0x6e,0x65,0x77,
0x20,0x30,0x20,0x30,0x20,0x31,0x32,0x2e,0x31,0x35,
0x38,0x20,0x32,0x31,0x2e,0x39,0x31,0x33,0x22,0x20,
0x78,0x6d,0x6c,0x3a,0x73,0x70,0x61,0x63,0x65,0x3d,
0x22,0x70,0x72,0x65,0x73,0x65,0x72,0x76,0x65,0x22,
0x3e,0x0d,0x0a,0x3c,0x67,0x3e,0x0d,0x0a,0x09,0x3c,
0x70,0x61,0x74,0x68,0x20,0x66,0x69,0x6c,0x6c,0x3d,
0x22,0x23,0x37,0x37,0x37,0x37,0x37,0x37,0x22,0x20,
0x64,0x3d,0x22,0x4d,0x30,0x2e,0x37,0x35,0x2c,0x32,
0x31,0x2e,0x39,0x31,0x33,0x63,0x2d,0x30,0x2e,0x31,
0x2c,0x30,0x2d,0x30,0x2e,0x32,0x2d,0x30,0x2e,0x30,
0x32,0x2d,0x30,0x2e,0x32,0x39,0x34,0x2d,0x30,0x2e,
0x30,0x36,0x31,0x43,0x30,0x2e,0x31,0x37,0x39,0x2c,
0x32,0x31,0x2e,0x37,0x33,0x35,0x2c,0x30,0x2c,0x32,
0x31,0x2e,0x34,0x36,0x33,0x2c,0x30,0x2c,0x32,0x31,
0x2e,0x31,0x36,0x33,0x56,0x30,0x2e,0x37,0x35,0x0d,
0x0a,0x09,0x09,0x63,0x30,0x2d,0x30,0x2e,0x33,0x2c,
0x30,0x2e,0x31,0x37,0x39,0x2d,0x30,0x2e,0x35,0x37,
0x32,0x2c,0x30,0x2e,0x34,0x35,0x36,0x2d,0x30,0x2e,
0x36,0x39,0x43,0x30,0x2e,0x37,0x33,0x2d,0x30,0x2e,
0x30,0x35,0x37,0x2c,0x31,0x2e,0x30,0x35,0x32,0x2c,
0x30,0x2c,0x31,0x2e,0x32,0x36,0x39,0x2c,0x30,0x2e,
0x32,0x30,0x38,0x6c,0x31,0x30,0x2e,0x36,0x35,0x38,
0x2c,0x31,0x30,0x2e,0x32,0x30,0x36,0x63,0x30,0x2e,
0x31,0x34,0x37,0x2c,0x30,0x2e,0x31,0x34,0x31,0x2c,
0x30,0x2e,0x32,0x33,0x31,0x2c,0x30,0x2e,0x33,0x33,
0x37,0x2c,0x30,0x2e,0x32,0x33,0x31,0x2c,0x30,0x2e,
0x35,0x34,0x32,0x0d,0x0a,0x09,0x09,0x73,0x2d,0x30,
0x2e,0x30,0x38,0x34,0x2c,0x30,0x2e,0x34,0x2d,0x30,
0x2e,0x32,0x33,0x31,0x2c,0x30,0x2e,0x35,0x34,0x32,
0x4c,0x31,0x2e,0x32,0x36,0x39,0x2c,0x32,0x31,0x2e,
0x37,0x30,0x35,0x43,0x31,0x2e,0x31,0x32,0x36,0x2c,
0x32,0x31,0x2e,0x38,0x34,0x2c,0x30,0x2e,0x39,0x33,
0x39,0x2c,0x32,0x31,0x2e,0x39,0x31,0x33,0x2c,0x30,
0x2e,0x37,0x35,0x2c,0x32,0x31,0x2e,0x39,0x31,0x33,
0x7a,0x20,0x4d,0x31,0x2e,0x35,0x2c,0x32,0x2e,0x35,
0x30,0x36,0x76,0x31,0x36,0x2e,0x38,0x39,0x39,0x6c,
0x38,0x2e,0x38,0x32,0x34,0x2d,0x38,0x2e,0x34,0x35,
0x4c,0x31,0x2e,0x35,0x2c,0x32,0x2e,0x35,0x30,0x36,
0x7a,0x22,0x2f,0x3e,0x0d,0x0a,0x3c,0x2f,0x67,0x3e,
0x0d,0x0a,0x3c,0x2f,0x73,0x76,0x67,0x3e,0x0d,0x0a
};

File diff suppressed because it is too large Load diff

View file

@ -0,0 +1,70 @@
//this file was auto-generated from "slider_knob.svg" by res2h
#include "../Resources.h"
const size_t slider_knob_svg_size = 627;
const unsigned char slider_knob_svg_data[627] = {
0x3c,0x3f,0x78,0x6d,0x6c,0x20,0x76,0x65,0x72,0x73,
0x69,0x6f,0x6e,0x3d,0x22,0x31,0x2e,0x30,0x22,0x20,
0x65,0x6e,0x63,0x6f,0x64,0x69,0x6e,0x67,0x3d,0x22,
0x75,0x74,0x66,0x2d,0x38,0x22,0x3f,0x3e,0x0d,0x0a,
0x3c,0x21,0x2d,0x2d,0x20,0x47,0x65,0x6e,0x65,0x72,
0x61,0x74,0x6f,0x72,0x3a,0x20,0x41,0x64,0x6f,0x62,
0x65,0x20,0x49,0x6c,0x6c,0x75,0x73,0x74,0x72,0x61,
0x74,0x6f,0x72,0x20,0x31,0x36,0x2e,0x30,0x2e,0x33,
0x2c,0x20,0x53,0x56,0x47,0x20,0x45,0x78,0x70,0x6f,
0x72,0x74,0x20,0x50,0x6c,0x75,0x67,0x2d,0x49,0x6e,
0x20,0x2e,0x20,0x53,0x56,0x47,0x20,0x56,0x65,0x72,
0x73,0x69,0x6f,0x6e,0x3a,0x20,0x36,0x2e,0x30,0x30,
0x20,0x42,0x75,0x69,0x6c,0x64,0x20,0x30,0x29,0x20,
0x20,0x2d,0x2d,0x3e,0x0d,0x0a,0x3c,0x21,0x44,0x4f,
0x43,0x54,0x59,0x50,0x45,0x20,0x73,0x76,0x67,0x20,
0x50,0x55,0x42,0x4c,0x49,0x43,0x20,0x22,0x2d,0x2f,
0x2f,0x57,0x33,0x43,0x2f,0x2f,0x44,0x54,0x44,0x20,
0x53,0x56,0x47,0x20,0x31,0x2e,0x31,0x2f,0x2f,0x45,
0x4e,0x22,0x20,0x22,0x68,0x74,0x74,0x70,0x3a,0x2f,
0x2f,0x77,0x77,0x77,0x2e,0x77,0x33,0x2e,0x6f,0x72,
0x67,0x2f,0x47,0x72,0x61,0x70,0x68,0x69,0x63,0x73,
0x2f,0x53,0x56,0x47,0x2f,0x31,0x2e,0x31,0x2f,0x44,
0x54,0x44,0x2f,0x73,0x76,0x67,0x31,0x31,0x2e,0x64,
0x74,0x64,0x22,0x3e,0x0d,0x0a,0x3c,0x73,0x76,0x67,
0x20,0x76,0x65,0x72,0x73,0x69,0x6f,0x6e,0x3d,0x22,
0x31,0x2e,0x31,0x22,0x20,0x69,0x64,0x3d,0x22,0x45,
0x62,0x65,0x6e,0x65,0x5f,0x31,0x22,0x20,0x78,0x6d,
0x6c,0x6e,0x73,0x3d,0x22,0x68,0x74,0x74,0x70,0x3a,
0x2f,0x2f,0x77,0x77,0x77,0x2e,0x77,0x33,0x2e,0x6f,
0x72,0x67,0x2f,0x32,0x30,0x30,0x30,0x2f,0x73,0x76,
0x67,0x22,0x20,0x78,0x6d,0x6c,0x6e,0x73,0x3a,0x78,
0x6c,0x69,0x6e,0x6b,0x3d,0x22,0x68,0x74,0x74,0x70,
0x3a,0x2f,0x2f,0x77,0x77,0x77,0x2e,0x77,0x33,0x2e,
0x6f,0x72,0x67,0x2f,0x31,0x39,0x39,0x39,0x2f,0x78,
0x6c,0x69,0x6e,0x6b,0x22,0x20,0x78,0x3d,0x22,0x30,
0x70,0x78,0x22,0x20,0x79,0x3d,0x22,0x30,0x70,0x78,
0x22,0x0d,0x0a,0x09,0x20,0x77,0x69,0x64,0x74,0x68,
0x3d,0x22,0x31,0x36,0x70,0x78,0x22,0x20,0x68,0x65,
0x69,0x67,0x68,0x74,0x3d,0x22,0x31,0x36,0x70,0x78,
0x22,0x20,0x76,0x69,0x65,0x77,0x42,0x6f,0x78,0x3d,
0x22,0x30,0x20,0x30,0x20,0x31,0x36,0x20,0x31,0x36,
0x22,0x20,0x65,0x6e,0x61,0x62,0x6c,0x65,0x2d,0x62,
0x61,0x63,0x6b,0x67,0x72,0x6f,0x75,0x6e,0x64,0x3d,
0x22,0x6e,0x65,0x77,0x20,0x30,0x20,0x30,0x20,0x31,
0x36,0x20,0x31,0x36,0x22,0x20,0x78,0x6d,0x6c,0x3a,
0x73,0x70,0x61,0x63,0x65,0x3d,0x22,0x70,0x72,0x65,
0x73,0x65,0x72,0x76,0x65,0x22,0x3e,0x0d,0x0a,0x3c,
0x70,0x61,0x74,0x68,0x20,0x66,0x69,0x6c,0x6c,0x2d,
0x72,0x75,0x6c,0x65,0x3d,0x22,0x65,0x76,0x65,0x6e,
0x6f,0x64,0x64,0x22,0x20,0x63,0x6c,0x69,0x70,0x2d,
0x72,0x75,0x6c,0x65,0x3d,0x22,0x65,0x76,0x65,0x6e,
0x6f,0x64,0x64,0x22,0x20,0x66,0x69,0x6c,0x6c,0x3d,
0x22,0x23,0x37,0x37,0x37,0x37,0x37,0x37,0x22,0x20,
0x64,0x3d,0x22,0x4d,0x38,0x2c,0x30,0x63,0x34,0x2e,
0x34,0x31,0x38,0x2c,0x30,0x2c,0x38,0x2c,0x33,0x2e,
0x35,0x38,0x32,0x2c,0x38,0x2c,0x38,0x63,0x30,0x2c,
0x34,0x2e,0x34,0x31,0x38,0x2d,0x33,0x2e,0x35,0x38,
0x32,0x2c,0x38,0x2d,0x38,0x2c,0x38,0x73,0x2d,0x38,
0x2d,0x33,0x2e,0x35,0x38,0x32,0x2d,0x38,0x2d,0x38,
0x0d,0x0a,0x09,0x43,0x30,0x2c,0x33,0x2e,0x35,0x38,
0x32,0x2c,0x33,0x2e,0x35,0x38,0x33,0x2c,0x30,0x2c,
0x38,0x2c,0x30,0x7a,0x22,0x2f,0x3e,0x0d,0x0a,0x3c,
0x2f,0x73,0x76,0x67,0x3e,0x0d,0x0a
};

File diff suppressed because it is too large Load diff

View file

@ -0,0 +1,124 @@
//this file was auto-generated from "star_filled.svg" by res2h
#include "../Resources.h"
const size_t star_filled_svg_size = 1164;
const unsigned char star_filled_svg_data[1164] = {
0x3c,0x3f,0x78,0x6d,0x6c,0x20,0x76,0x65,0x72,0x73,
0x69,0x6f,0x6e,0x3d,0x22,0x31,0x2e,0x30,0x22,0x20,
0x65,0x6e,0x63,0x6f,0x64,0x69,0x6e,0x67,0x3d,0x22,
0x75,0x74,0x66,0x2d,0x38,0x22,0x3f,0x3e,0x0d,0x0a,
0x3c,0x21,0x2d,0x2d,0x20,0x47,0x65,0x6e,0x65,0x72,
0x61,0x74,0x6f,0x72,0x3a,0x20,0x41,0x64,0x6f,0x62,
0x65,0x20,0x49,0x6c,0x6c,0x75,0x73,0x74,0x72,0x61,
0x74,0x6f,0x72,0x20,0x31,0x36,0x2e,0x30,0x2e,0x33,
0x2c,0x20,0x53,0x56,0x47,0x20,0x45,0x78,0x70,0x6f,
0x72,0x74,0x20,0x50,0x6c,0x75,0x67,0x2d,0x49,0x6e,
0x20,0x2e,0x20,0x53,0x56,0x47,0x20,0x56,0x65,0x72,
0x73,0x69,0x6f,0x6e,0x3a,0x20,0x36,0x2e,0x30,0x30,
0x20,0x42,0x75,0x69,0x6c,0x64,0x20,0x30,0x29,0x20,
0x20,0x2d,0x2d,0x3e,0x0d,0x0a,0x3c,0x21,0x44,0x4f,
0x43,0x54,0x59,0x50,0x45,0x20,0x73,0x76,0x67,0x20,
0x50,0x55,0x42,0x4c,0x49,0x43,0x20,0x22,0x2d,0x2f,
0x2f,0x57,0x33,0x43,0x2f,0x2f,0x44,0x54,0x44,0x20,
0x53,0x56,0x47,0x20,0x31,0x2e,0x31,0x2f,0x2f,0x45,
0x4e,0x22,0x20,0x22,0x68,0x74,0x74,0x70,0x3a,0x2f,
0x2f,0x77,0x77,0x77,0x2e,0x77,0x33,0x2e,0x6f,0x72,
0x67,0x2f,0x47,0x72,0x61,0x70,0x68,0x69,0x63,0x73,
0x2f,0x53,0x56,0x47,0x2f,0x31,0x2e,0x31,0x2f,0x44,
0x54,0x44,0x2f,0x73,0x76,0x67,0x31,0x31,0x2e,0x64,
0x74,0x64,0x22,0x3e,0x0d,0x0a,0x3c,0x73,0x76,0x67,
0x20,0x76,0x65,0x72,0x73,0x69,0x6f,0x6e,0x3d,0x22,
0x31,0x2e,0x31,0x22,0x20,0x69,0x64,0x3d,0x22,0x45,
0x62,0x65,0x6e,0x65,0x5f,0x31,0x22,0x20,0x78,0x6d,
0x6c,0x6e,0x73,0x3d,0x22,0x68,0x74,0x74,0x70,0x3a,
0x2f,0x2f,0x77,0x77,0x77,0x2e,0x77,0x33,0x2e,0x6f,
0x72,0x67,0x2f,0x32,0x30,0x30,0x30,0x2f,0x73,0x76,
0x67,0x22,0x20,0x78,0x6d,0x6c,0x6e,0x73,0x3a,0x78,
0x6c,0x69,0x6e,0x6b,0x3d,0x22,0x68,0x74,0x74,0x70,
0x3a,0x2f,0x2f,0x77,0x77,0x77,0x2e,0x77,0x33,0x2e,
0x6f,0x72,0x67,0x2f,0x31,0x39,0x39,0x39,0x2f,0x78,
0x6c,0x69,0x6e,0x6b,0x22,0x20,0x78,0x3d,0x22,0x30,
0x70,0x78,0x22,0x20,0x79,0x3d,0x22,0x30,0x70,0x78,
0x22,0x0d,0x0a,0x09,0x20,0x77,0x69,0x64,0x74,0x68,
0x3d,0x22,0x32,0x31,0x2e,0x37,0x37,0x35,0x70,0x78,
0x22,0x20,0x68,0x65,0x69,0x67,0x68,0x74,0x3d,0x22,
0x32,0x30,0x2e,0x37,0x36,0x32,0x70,0x78,0x22,0x20,
0x76,0x69,0x65,0x77,0x42,0x6f,0x78,0x3d,0x22,0x30,
0x20,0x30,0x20,0x32,0x31,0x2e,0x37,0x37,0x35,0x20,
0x32,0x30,0x2e,0x37,0x36,0x32,0x22,0x20,0x65,0x6e,
0x61,0x62,0x6c,0x65,0x2d,0x62,0x61,0x63,0x6b,0x67,
0x72,0x6f,0x75,0x6e,0x64,0x3d,0x22,0x6e,0x65,0x77,
0x20,0x30,0x20,0x30,0x20,0x32,0x31,0x2e,0x37,0x37,
0x35,0x20,0x32,0x30,0x2e,0x37,0x36,0x32,0x22,0x20,
0x78,0x6d,0x6c,0x3a,0x73,0x70,0x61,0x63,0x65,0x3d,
0x22,0x70,0x72,0x65,0x73,0x65,0x72,0x76,0x65,0x22,
0x3e,0x0d,0x0a,0x3c,0x70,0x61,0x74,0x68,0x20,0x66,
0x69,0x6c,0x6c,0x3d,0x22,0x23,0x37,0x37,0x37,0x37,
0x37,0x37,0x22,0x20,0x64,0x3d,0x22,0x4d,0x38,0x2e,
0x37,0x31,0x2c,0x32,0x2e,0x30,0x37,0x36,0x63,0x2d,
0x30,0x2e,0x31,0x38,0x32,0x2c,0x30,0x2d,0x30,0x2e,
0x33,0x36,0x34,0x2c,0x30,0x2e,0x31,0x34,0x2d,0x30,
0x2e,0x35,0x30,0x31,0x2c,0x30,0x2e,0x34,0x31,0x39,
0x4c,0x36,0x2e,0x33,0x35,0x2c,0x36,0x2e,0x32,0x36,
0x31,0x63,0x2d,0x30,0x2e,0x32,0x37,0x36,0x2c,0x30,
0x2e,0x35,0x36,0x2d,0x31,0x2e,0x30,0x30,0x37,0x2c,
0x31,0x2e,0x30,0x39,0x31,0x2d,0x31,0x2e,0x36,0x32,
0x34,0x2c,0x31,0x2e,0x31,0x38,0x4c,0x30,0x2e,0x35,
0x37,0x32,0x2c,0x38,0x2e,0x30,0x34,0x35,0x0d,0x0a,
0x09,0x43,0x2d,0x30,0x2e,0x30,0x34,0x36,0x2c,0x38,
0x2e,0x31,0x33,0x35,0x2d,0x30,0x2e,0x31,0x38,0x35,
0x2c,0x38,0x2e,0x35,0x36,0x34,0x2c,0x30,0x2e,0x32,
0x36,0x32,0x2c,0x39,0x6c,0x33,0x2e,0x30,0x30,0x37,
0x2c,0x32,0x2e,0x39,0x33,0x31,0x63,0x30,0x2e,0x34,
0x34,0x37,0x2c,0x30,0x2e,0x34,0x33,0x36,0x2c,0x30,
0x2e,0x37,0x32,0x36,0x2c,0x31,0x2e,0x32,0x39,0x35,
0x2c,0x30,0x2e,0x36,0x32,0x2c,0x31,0x2e,0x39,0x30,
0x39,0x6c,0x2d,0x30,0x2e,0x37,0x31,0x2c,0x34,0x2e,
0x31,0x34,0x0d,0x0a,0x09,0x63,0x2d,0x30,0x2e,0x30,
0x37,0x37,0x2c,0x30,0x2e,0x34,0x34,0x36,0x2c,0x30,
0x2e,0x30,0x39,0x34,0x2c,0x30,0x2e,0x37,0x30,0x38,
0x2c,0x30,0x2e,0x34,0x30,0x35,0x2c,0x30,0x2e,0x37,
0x30,0x38,0x63,0x30,0x2e,0x31,0x31,0x38,0x2c,0x30,
0x2c,0x30,0x2e,0x32,0x35,0x35,0x2d,0x30,0x2e,0x30,
0x33,0x38,0x2c,0x30,0x2e,0x34,0x30,0x37,0x2d,0x30,
0x2e,0x31,0x31,0x37,0x6c,0x33,0x2e,0x37,0x31,0x37,
0x2d,0x31,0x2e,0x39,0x35,0x36,0x63,0x30,0x2e,0x32,
0x37,0x36,0x2d,0x30,0x2e,0x31,0x34,0x35,0x2c,0x30,
0x2e,0x36,0x34,0x2d,0x30,0x2e,0x32,0x31,0x36,0x2c,
0x31,0x2e,0x30,0x30,0x33,0x2d,0x30,0x2e,0x32,0x31,
0x36,0x0d,0x0a,0x09,0x63,0x30,0x2e,0x33,0x36,0x34,
0x2c,0x30,0x2c,0x30,0x2e,0x37,0x32,0x39,0x2c,0x30,
0x2e,0x30,0x37,0x32,0x2c,0x31,0x2e,0x30,0x30,0x34,
0x2c,0x30,0x2e,0x32,0x31,0x36,0x6c,0x33,0x2e,0x37,
0x31,0x37,0x2c,0x31,0x2e,0x39,0x35,0x36,0x63,0x30,
0x2e,0x31,0x35,0x2c,0x30,0x2e,0x30,0x37,0x39,0x2c,
0x30,0x2e,0x32,0x38,0x39,0x2c,0x30,0x2e,0x31,0x31,
0x37,0x2c,0x30,0x2e,0x34,0x30,0x37,0x2c,0x30,0x2e,
0x31,0x31,0x37,0x63,0x30,0x2e,0x33,0x31,0x31,0x2c,
0x30,0x2c,0x30,0x2e,0x34,0x38,0x31,0x2d,0x30,0x2e,
0x32,0x36,0x32,0x2c,0x30,0x2e,0x34,0x30,0x35,0x2d,
0x30,0x2e,0x37,0x30,0x38,0x6c,0x2d,0x30,0x2e,0x37,
0x31,0x31,0x2d,0x34,0x2e,0x31,0x34,0x0d,0x0a,0x09,
0x63,0x2d,0x30,0x2e,0x31,0x30,0x35,0x2d,0x30,0x2e,
0x36,0x31,0x34,0x2c,0x30,0x2e,0x31,0x37,0x34,0x2d,
0x31,0x2e,0x34,0x37,0x34,0x2c,0x30,0x2e,0x36,0x31,
0x39,0x2d,0x31,0x2e,0x39,0x30,0x39,0x4c,0x31,0x37,
0x2e,0x31,0x36,0x2c,0x39,0x63,0x30,0x2e,0x34,0x34,
0x36,0x2d,0x30,0x2e,0x34,0x33,0x36,0x2c,0x30,0x2e,
0x33,0x30,0x37,0x2d,0x30,0x2e,0x38,0x36,0x35,0x2d,
0x30,0x2e,0x33,0x31,0x31,0x2d,0x30,0x2e,0x39,0x35,
0x35,0x6c,0x2d,0x34,0x2e,0x31,0x35,0x34,0x2d,0x30,
0x2e,0x36,0x30,0x33,0x0d,0x0a,0x09,0x63,0x2d,0x30,
0x2e,0x36,0x31,0x37,0x2d,0x30,0x2e,0x30,0x38,0x39,
0x2d,0x31,0x2e,0x33,0x34,0x39,0x2d,0x30,0x2e,0x36,
0x32,0x2d,0x31,0x2e,0x36,0x32,0x34,0x2d,0x31,0x2e,
0x31,0x38,0x4c,0x39,0x2e,0x32,0x31,0x33,0x2c,0x32,
0x2e,0x34,0x39,0x35,0x43,0x39,0x2e,0x30,0x37,0x34,
0x2c,0x32,0x2e,0x32,0x31,0x36,0x2c,0x38,0x2e,0x38,
0x39,0x33,0x2c,0x32,0x2e,0x30,0x37,0x36,0x2c,0x38,
0x2e,0x37,0x31,0x2c,0x32,0x2e,0x30,0x37,0x36,0x4c,
0x38,0x2e,0x37,0x31,0x2c,0x32,0x2e,0x30,0x37,0x36,
0x7a,0x22,0x2f,0x3e,0x0d,0x0a,0x3c,0x2f,0x73,0x76,
0x67,0x3e,0x0d,0x0a
};

View file

@ -0,0 +1,196 @@
//this file was auto-generated from "star_unfilled.svg" by res2h
#include "../Resources.h"
const size_t star_unfilled_svg_size = 1889;
const unsigned char star_unfilled_svg_data[1889] = {
0x3c,0x3f,0x78,0x6d,0x6c,0x20,0x76,0x65,0x72,0x73,
0x69,0x6f,0x6e,0x3d,0x22,0x31,0x2e,0x30,0x22,0x20,
0x65,0x6e,0x63,0x6f,0x64,0x69,0x6e,0x67,0x3d,0x22,
0x75,0x74,0x66,0x2d,0x38,0x22,0x3f,0x3e,0x0d,0x0a,
0x3c,0x21,0x2d,0x2d,0x20,0x47,0x65,0x6e,0x65,0x72,
0x61,0x74,0x6f,0x72,0x3a,0x20,0x41,0x64,0x6f,0x62,
0x65,0x20,0x49,0x6c,0x6c,0x75,0x73,0x74,0x72,0x61,
0x74,0x6f,0x72,0x20,0x31,0x36,0x2e,0x30,0x2e,0x33,
0x2c,0x20,0x53,0x56,0x47,0x20,0x45,0x78,0x70,0x6f,
0x72,0x74,0x20,0x50,0x6c,0x75,0x67,0x2d,0x49,0x6e,
0x20,0x2e,0x20,0x53,0x56,0x47,0x20,0x56,0x65,0x72,
0x73,0x69,0x6f,0x6e,0x3a,0x20,0x36,0x2e,0x30,0x30,
0x20,0x42,0x75,0x69,0x6c,0x64,0x20,0x30,0x29,0x20,
0x20,0x2d,0x2d,0x3e,0x0d,0x0a,0x3c,0x21,0x44,0x4f,
0x43,0x54,0x59,0x50,0x45,0x20,0x73,0x76,0x67,0x20,
0x50,0x55,0x42,0x4c,0x49,0x43,0x20,0x22,0x2d,0x2f,
0x2f,0x57,0x33,0x43,0x2f,0x2f,0x44,0x54,0x44,0x20,
0x53,0x56,0x47,0x20,0x31,0x2e,0x31,0x2f,0x2f,0x45,
0x4e,0x22,0x20,0x22,0x68,0x74,0x74,0x70,0x3a,0x2f,
0x2f,0x77,0x77,0x77,0x2e,0x77,0x33,0x2e,0x6f,0x72,
0x67,0x2f,0x47,0x72,0x61,0x70,0x68,0x69,0x63,0x73,
0x2f,0x53,0x56,0x47,0x2f,0x31,0x2e,0x31,0x2f,0x44,
0x54,0x44,0x2f,0x73,0x76,0x67,0x31,0x31,0x2e,0x64,
0x74,0x64,0x22,0x3e,0x0d,0x0a,0x3c,0x73,0x76,0x67,
0x20,0x76,0x65,0x72,0x73,0x69,0x6f,0x6e,0x3d,0x22,
0x31,0x2e,0x31,0x22,0x20,0x69,0x64,0x3d,0x22,0x45,
0x62,0x65,0x6e,0x65,0x5f,0x31,0x22,0x20,0x78,0x6d,
0x6c,0x6e,0x73,0x3d,0x22,0x68,0x74,0x74,0x70,0x3a,
0x2f,0x2f,0x77,0x77,0x77,0x2e,0x77,0x33,0x2e,0x6f,
0x72,0x67,0x2f,0x32,0x30,0x30,0x30,0x2f,0x73,0x76,
0x67,0x22,0x20,0x78,0x6d,0x6c,0x6e,0x73,0x3a,0x78,
0x6c,0x69,0x6e,0x6b,0x3d,0x22,0x68,0x74,0x74,0x70,
0x3a,0x2f,0x2f,0x77,0x77,0x77,0x2e,0x77,0x33,0x2e,
0x6f,0x72,0x67,0x2f,0x31,0x39,0x39,0x39,0x2f,0x78,
0x6c,0x69,0x6e,0x6b,0x22,0x20,0x78,0x3d,0x22,0x30,
0x70,0x78,0x22,0x20,0x79,0x3d,0x22,0x30,0x70,0x78,
0x22,0x0d,0x0a,0x09,0x20,0x77,0x69,0x64,0x74,0x68,
0x3d,0x22,0x32,0x31,0x2e,0x37,0x37,0x35,0x70,0x78,
0x22,0x20,0x68,0x65,0x69,0x67,0x68,0x74,0x3d,0x22,
0x32,0x30,0x2e,0x37,0x36,0x32,0x70,0x78,0x22,0x20,
0x76,0x69,0x65,0x77,0x42,0x6f,0x78,0x3d,0x22,0x30,
0x20,0x30,0x20,0x32,0x31,0x2e,0x37,0x37,0x35,0x20,
0x32,0x30,0x2e,0x37,0x36,0x32,0x22,0x20,0x65,0x6e,
0x61,0x62,0x6c,0x65,0x2d,0x62,0x61,0x63,0x6b,0x67,
0x72,0x6f,0x75,0x6e,0x64,0x3d,0x22,0x6e,0x65,0x77,
0x20,0x30,0x20,0x30,0x20,0x32,0x31,0x2e,0x37,0x37,
0x35,0x20,0x32,0x30,0x2e,0x37,0x36,0x32,0x22,0x20,
0x78,0x6d,0x6c,0x3a,0x73,0x70,0x61,0x63,0x65,0x3d,
0x22,0x70,0x72,0x65,0x73,0x65,0x72,0x76,0x65,0x22,
0x3e,0x0d,0x0a,0x3c,0x70,0x61,0x74,0x68,0x20,0x66,
0x69,0x6c,0x6c,0x3d,0x22,0x23,0x37,0x37,0x37,0x37,
0x37,0x37,0x22,0x20,0x64,0x3d,0x22,0x4d,0x38,0x2e,
0x37,0x31,0x2c,0x32,0x2e,0x34,0x38,0x63,0x30,0x2e,
0x30,0x32,0x36,0x2c,0x30,0x2e,0x30,0x31,0x38,0x2c,
0x30,0x2e,0x30,0x38,0x33,0x2c,0x30,0x2e,0x30,0x37,
0x2c,0x30,0x2e,0x31,0x34,0x33,0x2c,0x30,0x2e,0x31,
0x39,0x33,0x6c,0x31,0x2e,0x38,0x35,0x39,0x2c,0x33,
0x2e,0x37,0x36,0x36,0x63,0x30,0x2e,0x33,0x33,0x33,
0x2c,0x30,0x2e,0x36,0x37,0x36,0x2c,0x31,0x2e,0x31,
0x38,0x2c,0x31,0x2e,0x32,0x39,0x31,0x2c,0x31,0x2e,
0x39,0x32,0x34,0x2c,0x31,0x2e,0x33,0x39,0x38,0x6c,
0x34,0x2e,0x31,0x35,0x35,0x2c,0x30,0x2e,0x36,0x30,
0x33,0x0d,0x0a,0x09,0x63,0x30,0x2e,0x31,0x35,0x2c,
0x30,0x2e,0x30,0x32,0x32,0x2c,0x30,0x2e,0x32,0x31,
0x38,0x2c,0x30,0x2e,0x30,0x36,0x36,0x2c,0x30,0x2e,
0x32,0x32,0x37,0x2c,0x30,0x2e,0x30,0x36,0x36,0x63,
0x30,0x2e,0x30,0x30,0x31,0x2c,0x30,0x2c,0x30,0x2e,
0x30,0x30,0x31,0x2c,0x30,0x2c,0x30,0x2e,0x30,0x30,
0x31,0x2c,0x30,0x63,0x30,0x2c,0x30,0x2e,0x30,0x31,
0x39,0x2d,0x30,0x2e,0x30,0x32,0x35,0x2c,0x30,0x2e,
0x30,0x39,0x36,0x2d,0x30,0x2e,0x31,0x34,0x2c,0x30,
0x2e,0x32,0x30,0x37,0x6c,0x2d,0x33,0x2e,0x30,0x30,
0x39,0x2c,0x32,0x2e,0x39,0x33,0x31,0x0d,0x0a,0x09,
0x63,0x2d,0x30,0x2e,0x35,0x33,0x39,0x2c,0x30,0x2e,
0x35,0x32,0x36,0x2d,0x30,0x2e,0x38,0x36,0x32,0x2c,
0x31,0x2e,0x35,0x32,0x31,0x2d,0x30,0x2e,0x37,0x33,
0x35,0x2c,0x32,0x2e,0x32,0x36,0x33,0x6c,0x30,0x2e,
0x37,0x31,0x31,0x2c,0x34,0x2e,0x31,0x34,0x63,0x30,
0x2e,0x30,0x32,0x37,0x2c,0x30,0x2e,0x31,0x35,0x36,
0x2c,0x30,0x2e,0x30,0x30,0x33,0x2c,0x30,0x2e,0x32,
0x33,0x34,0x2d,0x30,0x2e,0x30,0x31,0x31,0x2c,0x30,
0x2e,0x32,0x33,0x39,0x63,0x2d,0x30,0x2e,0x30,0x32,
0x35,0x2c,0x30,0x2d,0x30,0x2e,0x30,0x39,0x38,0x2d,
0x30,0x2e,0x30,0x30,0x38,0x2d,0x30,0x2e,0x32,0x32,
0x31,0x2d,0x30,0x2e,0x30,0x37,0x31,0x4c,0x39,0x2e,
0x39,0x2c,0x31,0x36,0x2e,0x32,0x36,0x0d,0x0a,0x09,
0x63,0x2d,0x30,0x2e,0x33,0x32,0x34,0x2d,0x30,0x2e,
0x31,0x37,0x31,0x2d,0x30,0x2e,0x37,0x34,0x37,0x2d,
0x30,0x2e,0x32,0x36,0x34,0x2d,0x31,0x2e,0x31,0x39,
0x2d,0x30,0x2e,0x32,0x36,0x34,0x53,0x37,0x2e,0x38,
0x34,0x33,0x2c,0x31,0x36,0x2e,0x30,0x39,0x2c,0x37,
0x2e,0x35,0x32,0x2c,0x31,0x36,0x2e,0x32,0x36,0x6c,
0x2d,0x33,0x2e,0x37,0x31,0x36,0x2c,0x31,0x2e,0x39,
0x35,0x34,0x63,0x2d,0x30,0x2e,0x31,0x32,0x33,0x2c,
0x30,0x2e,0x30,0x36,0x33,0x2d,0x30,0x2e,0x31,0x39,
0x36,0x2c,0x30,0x2e,0x30,0x37,0x31,0x2d,0x30,0x2e,
0x32,0x32,0x34,0x2c,0x30,0x2e,0x30,0x38,0x32,0x0d,
0x0a,0x09,0x63,0x2d,0x30,0x2e,0x30,0x31,0x2d,0x30,
0x2e,0x30,0x31,0x36,0x2d,0x30,0x2e,0x30,0x33,0x34,
0x2d,0x30,0x2e,0x30,0x39,0x34,0x2d,0x30,0x2e,0x30,
0x30,0x38,0x2d,0x30,0x2e,0x32,0x35,0x6c,0x30,0x2e,
0x37,0x31,0x2d,0x34,0x2e,0x31,0x34,0x63,0x30,0x2e,
0x31,0x32,0x38,0x2d,0x30,0x2e,0x37,0x34,0x33,0x2d,
0x30,0x2e,0x31,0x39,0x35,0x2d,0x31,0x2e,0x37,0x33,
0x37,0x2d,0x30,0x2e,0x37,0x33,0x35,0x2d,0x32,0x2e,
0x32,0x36,0x33,0x4c,0x30,0x2e,0x35,0x34,0x31,0x2c,
0x38,0x2e,0x37,0x31,0x32,0x43,0x30,0x2e,0x34,0x32,
0x37,0x2c,0x38,0x2e,0x36,0x30,0x32,0x2c,0x30,0x2e,
0x34,0x2c,0x38,0x2e,0x35,0x32,0x35,0x2c,0x30,0x2e,
0x33,0x39,0x35,0x2c,0x38,0x2e,0x35,0x32,0x35,0x0d,
0x0a,0x09,0x6c,0x30,0x2c,0x30,0x43,0x30,0x2e,0x34,
0x30,0x35,0x2c,0x38,0x2e,0x35,0x31,0x2c,0x30,0x2e,
0x34,0x37,0x32,0x2c,0x38,0x2e,0x34,0x36,0x34,0x2c,
0x30,0x2e,0x36,0x33,0x2c,0x38,0x2e,0x34,0x34,0x31,
0x6c,0x34,0x2e,0x31,0x35,0x33,0x2d,0x30,0x2e,0x36,
0x30,0x33,0x43,0x35,0x2e,0x35,0x33,0x2c,0x37,0x2e,
0x37,0x33,0x2c,0x36,0x2e,0x33,0x37,0x35,0x2c,0x37,
0x2e,0x31,0x31,0x35,0x2c,0x36,0x2e,0x37,0x30,0x39,
0x2c,0x36,0x2e,0x34,0x33,0x39,0x6c,0x31,0x2e,0x38,
0x35,0x39,0x2d,0x33,0x2e,0x37,0x36,0x36,0x0d,0x0a,
0x09,0x43,0x38,0x2e,0x36,0x32,0x38,0x2c,0x32,0x2e,
0x35,0x35,0x2c,0x38,0x2e,0x36,0x38,0x35,0x2c,0x32,
0x2e,0x34,0x39,0x36,0x2c,0x38,0x2e,0x37,0x31,0x2c,
0x32,0x2e,0x34,0x38,0x20,0x4d,0x38,0x2e,0x37,0x31,
0x2c,0x32,0x2e,0x30,0x37,0x36,0x63,0x2d,0x30,0x2e,
0x31,0x38,0x32,0x2c,0x30,0x2d,0x30,0x2e,0x33,0x36,
0x34,0x2c,0x30,0x2e,0x31,0x34,0x2d,0x30,0x2e,0x35,
0x30,0x31,0x2c,0x30,0x2e,0x34,0x31,0x39,0x4c,0x36,
0x2e,0x33,0x35,0x2c,0x36,0x2e,0x32,0x36,0x32,0x63,
0x2d,0x30,0x2e,0x32,0x37,0x36,0x2c,0x30,0x2e,0x35,
0x36,0x2d,0x31,0x2e,0x30,0x30,0x37,0x2c,0x31,0x2e,
0x30,0x39,0x31,0x2d,0x31,0x2e,0x36,0x32,0x34,0x2c,
0x31,0x2e,0x31,0x38,0x0d,0x0a,0x09,0x4c,0x30,0x2e,
0x35,0x37,0x32,0x2c,0x38,0x2e,0x30,0x34,0x35,0x63,
0x2d,0x30,0x2e,0x36,0x31,0x38,0x2c,0x30,0x2e,0x30,
0x39,0x2d,0x30,0x2e,0x37,0x35,0x37,0x2c,0x30,0x2e,
0x35,0x32,0x2d,0x30,0x2e,0x33,0x31,0x2c,0x30,0x2e,
0x39,0x35,0x35,0x6c,0x33,0x2e,0x30,0x30,0x37,0x2c,
0x32,0x2e,0x39,0x33,0x31,0x63,0x30,0x2e,0x34,0x34,
0x37,0x2c,0x30,0x2e,0x34,0x33,0x36,0x2c,0x30,0x2e,
0x37,0x32,0x36,0x2c,0x31,0x2e,0x32,0x39,0x35,0x2c,
0x30,0x2e,0x36,0x32,0x2c,0x31,0x2e,0x39,0x30,0x39,
0x6c,0x2d,0x30,0x2e,0x37,0x31,0x2c,0x34,0x2e,0x31,
0x33,0x39,0x0d,0x0a,0x09,0x63,0x2d,0x30,0x2e,0x30,
0x37,0x37,0x2c,0x30,0x2e,0x34,0x34,0x36,0x2c,0x30,
0x2e,0x30,0x39,0x34,0x2c,0x30,0x2e,0x37,0x30,0x38,
0x2c,0x30,0x2e,0x34,0x30,0x35,0x2c,0x30,0x2e,0x37,
0x30,0x38,0x63,0x30,0x2e,0x31,0x31,0x38,0x2c,0x30,
0x2c,0x30,0x2e,0x32,0x35,0x35,0x2d,0x30,0x2e,0x30,
0x33,0x38,0x2c,0x30,0x2e,0x34,0x30,0x37,0x2d,0x30,
0x2e,0x31,0x31,0x37,0x6c,0x33,0x2e,0x37,0x31,0x37,
0x2d,0x31,0x2e,0x39,0x35,0x35,0x63,0x30,0x2e,0x32,
0x37,0x36,0x2d,0x30,0x2e,0x31,0x34,0x35,0x2c,0x30,
0x2e,0x36,0x34,0x2d,0x30,0x2e,0x32,0x31,0x36,0x2c,
0x31,0x2e,0x30,0x30,0x33,0x2d,0x30,0x2e,0x32,0x31,
0x36,0x0d,0x0a,0x09,0x63,0x30,0x2e,0x33,0x36,0x34,
0x2c,0x30,0x2c,0x30,0x2e,0x37,0x32,0x39,0x2c,0x30,
0x2e,0x30,0x37,0x32,0x2c,0x31,0x2e,0x30,0x30,0x34,
0x2c,0x30,0x2e,0x32,0x31,0x36,0x6c,0x33,0x2e,0x37,
0x31,0x37,0x2c,0x31,0x2e,0x39,0x35,0x35,0x63,0x30,
0x2e,0x31,0x35,0x2c,0x30,0x2e,0x30,0x37,0x39,0x2c,
0x30,0x2e,0x32,0x38,0x39,0x2c,0x30,0x2e,0x31,0x31,
0x37,0x2c,0x30,0x2e,0x34,0x30,0x37,0x2c,0x30,0x2e,
0x31,0x31,0x37,0x63,0x30,0x2e,0x33,0x31,0x31,0x2c,
0x30,0x2c,0x30,0x2e,0x34,0x38,0x31,0x2d,0x30,0x2e,
0x32,0x36,0x32,0x2c,0x30,0x2e,0x34,0x30,0x35,0x2d,
0x30,0x2e,0x37,0x30,0x38,0x6c,0x2d,0x30,0x2e,0x37,
0x31,0x31,0x2d,0x34,0x2e,0x31,0x33,0x39,0x0d,0x0a,
0x09,0x63,0x2d,0x30,0x2e,0x31,0x30,0x35,0x2d,0x30,
0x2e,0x36,0x31,0x34,0x2c,0x30,0x2e,0x31,0x37,0x34,
0x2d,0x31,0x2e,0x34,0x37,0x34,0x2c,0x30,0x2e,0x36,
0x31,0x39,0x2d,0x31,0x2e,0x39,0x30,0x39,0x6c,0x33,
0x2e,0x30,0x30,0x39,0x2d,0x32,0x2e,0x39,0x33,0x31,
0x63,0x30,0x2e,0x34,0x34,0x36,0x2d,0x30,0x2e,0x34,
0x33,0x35,0x2c,0x30,0x2e,0x33,0x30,0x37,0x2d,0x30,
0x2e,0x38,0x36,0x35,0x2d,0x30,0x2e,0x33,0x31,0x31,
0x2d,0x30,0x2e,0x39,0x35,0x35,0x6c,0x2d,0x34,0x2e,
0x31,0x35,0x34,0x2d,0x30,0x2e,0x36,0x30,0x33,0x0d,
0x0a,0x09,0x63,0x2d,0x30,0x2e,0x36,0x31,0x37,0x2d,
0x30,0x2e,0x30,0x38,0x39,0x2d,0x31,0x2e,0x33,0x34,
0x39,0x2d,0x30,0x2e,0x36,0x32,0x2d,0x31,0x2e,0x36,
0x32,0x34,0x2d,0x31,0x2e,0x31,0x38,0x4c,0x39,0x2e,
0x32,0x31,0x33,0x2c,0x32,0x2e,0x34,0x39,0x35,0x43,
0x39,0x2e,0x30,0x37,0x34,0x2c,0x32,0x2e,0x32,0x31,
0x36,0x2c,0x38,0x2e,0x38,0x39,0x33,0x2c,0x32,0x2e,
0x30,0x37,0x36,0x2c,0x38,0x2e,0x37,0x31,0x2c,0x32,
0x2e,0x30,0x37,0x36,0x4c,0x38,0x2e,0x37,0x31,0x2c,
0x32,0x2e,0x30,0x37,0x36,0x7a,0x22,0x2f,0x3e,0x0d,
0x0a,0x3c,0x2f,0x73,0x76,0x67,0x3e,0x0d,0x0a
};

View file

@ -1,13 +1,13 @@
//this file was auto-generated from "corner.png" by res2h
//this file was auto-generated from "textinput_ninepatch_active.png" by res2h
#include "../Resources.h"
const size_t corner_png_size = 2946;
const unsigned char corner_png_data[2946] = {
const size_t textinput_ninepatch_active_png_size = 3084;
const unsigned char textinput_ninepatch_active_png_data[3084] = {
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,0x09,0x70,0x48,0x59,
0x00,0x0d,0x49,0x48,0x44,0x52,0x00,0x00,0x00,0x30,
0x00,0x00,0x00,0x30,0x08,0x06,0x00,0x00,0x00,0x57,
0x02,0xf9,0x87,0x00,0x00,0x00,0x09,0x70,0x48,0x59,
0x73,0x00,0x00,0x0b,0x13,0x00,0x00,0x0b,0x13,0x01,
0x00,0x9a,0x9c,0x18,0x00,0x00,0x0a,0x4f,0x69,0x43,
0x43,0x50,0x50,0x68,0x6f,0x74,0x6f,0x73,0x68,0x6f,
@ -274,29 +274,43 @@ const unsigned char corner_png_data[2946] = {
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,0x9d,0x49,
0x44,0x41,0x54,0x78,0xda,0xa4,0x90,0x31,0x0a,0xc2,
0x40,0x10,0x00,0x27,0x49,0x15,0x08,0x04,0xd2,0x5a,
0x59,0x05,0xac,0x7c,0x80,0x20,0xa4,0xca,0x7b,0x04,
0xc1,0x4f,0xf8,0x12,0x1f,0xe0,0x1b,0xfc,0x81,0x60,
0x6b,0x65,0xe5,0x0f,0xc6,0xea,0x20,0x48,0x8c,0xc9,
0xdd,0xc0,0xc2,0x35,0x33,0xdc,0x6e,0xa6,0xb2,0x80,
0x3d,0xd0,0x03,0x3b,0xa0,0x04,0x36,0xa8,0xff,0xa6,
0x56,0xcf,0xea,0xcb,0x11,0xa6,0xc4,0x42,0x3d,0xa8,
0x6f,0x27,0xf8,0x25,0x37,0xea,0xd5,0x19,0x8c,0xc9,
0x6b,0xf5,0xe1,0x4c,0xb2,0xaf,0x23,0xd6,0xc0,0x0d,
0x68,0xe7,0x5e,0x35,0x1f,0xbc,0x0b,0xe0,0xb2,0x44,
0x06,0x18,0x7e,0xfd,0x64,0x04,0x61,0x85,0x15,0x70,
0x07,0x2a,0x16,0x12,0x56,0x38,0xc6,0xc8,0x00,0x99,
0x5a,0x02,0x4f,0xa0,0x89,0x09,0xe4,0x40,0x17,0x2b,
0x87,0x40,0x4f,0x02,0x39,0xb0,0x4d,0x0d,0xb4,0xa9,
0x81,0x2a,0x25,0xf0,0x19,0x00,0x11,0x68,0x32,0x6a,
0xb1,0xe9,0x64,0xd5,0x00,0x00,0x00,0x00,0x49,0x45,
0x4e,0x44,0xae,0x42,0x60,0x82
0xfc,0x63,0x33,0x2d,0xdb,0x00,0x00,0x00,0x20,0x63,
0x48,0x52,0x4d,0x00,0x00,0x7a,0x25,0x00,0x00,0x80,
0x83,0x00,0x00,0xf9,0xff,0x00,0x00,0x80,0xe9,0x00,
0x00,0x75,0x30,0x00,0x00,0xea,0x60,0x00,0x00,0x3a,
0x98,0x00,0x00,0x17,0x6f,0x92,0x5f,0xc5,0x46,0x00,
0x00,0x01,0x37,0x49,0x44,0x41,0x54,0x78,0xda,0xec,
0xda,0xbd,0x4d,0xc3,0x40,0x00,0xc5,0xf1,0x7f,0x2e,
0x27,0x45,0x4a,0x47,0x47,0x43,0x8f,0x0d,0x9e,0x84,
0x26,0x56,0x0a,0x26,0x48,0xc4,0x00,0x48,0x71,0x4d,
0xe5,0x11,0x50,0x46,0x40,0xb2,0xbd,0x80,0x4b,0x8f,
0x10,0xc7,0x5e,0x81,0x05,0xa2,0x18,0xf9,0x30,0x45,
0x62,0x89,0x82,0x01,0xce,0xe2,0xbd,0xea,0x74,0xd5,
0xfb,0xdd,0x47,0x75,0x37,0x1b,0x86,0x81,0x24,0x49,
0x0c,0xf0,0x02,0x6c,0x81,0x7b,0x60,0x81,0x9f,0xe9,
0x80,0x16,0xd8,0x03,0xef,0x69,0x9a,0x7e,0xcf,0xcf,
0xe7,0xb3,0x01,0x3e,0x80,0x57,0xe0,0x16,0xb0,0xf8,
0x1b,0x7b,0xed,0xf8,0x04,0x3c,0x96,0x65,0x99,0xd9,
0xeb,0xaa,0xaf,0x97,0xcb,0x25,0x71,0x1c,0x13,0x04,
0x01,0xd6,0xfa,0x69,0xe8,0xfb,0x9e,0xa6,0x69,0x28,
0x8a,0x82,0xd3,0xe9,0xb4,0x06,0x36,0x06,0xd8,0x00,
0xac,0x56,0x2b,0xa2,0x28,0xf2,0xb6,0x3c,0x80,0xb5,
0x96,0x28,0x8a,0x88,0xe3,0x78,0x9c,0xda,0x1a,0xe0,
0x01,0x20,0x0c,0x43,0xa6,0x92,0x20,0x08,0xc6,0x61,
0x68,0xc6,0x0b,0xeb,0xf3,0xca,0xff,0xb5,0x13,0xd7,
0x2c,0x0c,0x13,0x8f,0x00,0x02,0x08,0x20,0x80,0x00,
0x02,0x08,0x20,0x80,0x00,0x02,0x08,0x20,0x80,0x00,
0x02,0x08,0x20,0x80,0x00,0x02,0x08,0x20,0x80,0x00,
0x02,0x08,0x20,0x80,0x00,0x02,0xfc,0x47,0x40,0x07,
0x97,0x47,0xe4,0xa9,0xe4,0x57,0xd7,0xce,0x00,0x47,
0x80,0xa6,0x69,0x26,0x03,0x68,0xdb,0x76,0x1c,0x1e,
0x0d,0x97,0x8f,0x13,0x14,0x45,0xc1,0xe1,0x70,0xc0,
0x39,0xe7,0x6d,0x71,0xe7,0x1c,0x75,0x5d,0x93,0xe7,
0xf9,0x38,0xb5,0x9f,0xed,0x76,0xbb,0xf1,0xb3,0xc7,
0x7a,0x62,0xc7,0x3f,0x03,0x9e,0xe7,0x55,0x55,0x0d,
0x65,0x59,0x66,0xc0,0x27,0x70,0x07,0xdc,0x00,0x73,
0x4f,0x4b,0x7f,0x01,0x35,0xf0,0x06,0x24,0x69,0x9a,
0xba,0x9f,0x01,0x00,0x79,0x0c,0x54,0x84,0x18,0x0e,
0x50,0x30,0x00,0x00,0x00,0x00,0x49,0x45,0x4e,0x44,
0xae,0x42,0x60,0x82
};

View file

@ -0,0 +1,135 @@
//this file was auto-generated from "textinput_ninepatch.png" by res2h
#include "../Resources.h"
const size_t textinput_ninepatch_png_size = 1275;
const unsigned char textinput_ninepatch_png_data[1275] = {
0x89,0x50,0x4e,0x47,0x0d,0x0a,0x1a,0x0a,0x00,0x00,
0x00,0x0d,0x49,0x48,0x44,0x52,0x00,0x00,0x00,0x30,
0x00,0x00,0x00,0x30,0x08,0x06,0x00,0x00,0x00,0x57,
0x02,0xf9,0x87,0x00,0x00,0x00,0x19,0x74,0x45,0x58,
0x74,0x53,0x6f,0x66,0x74,0x77,0x61,0x72,0x65,0x00,
0x41,0x64,0x6f,0x62,0x65,0x20,0x49,0x6d,0x61,0x67,
0x65,0x52,0x65,0x61,0x64,0x79,0x71,0xc9,0x65,0x3c,
0x00,0x00,0x03,0x68,0x69,0x54,0x58,0x74,0x58,0x4d,
0x4c,0x3a,0x63,0x6f,0x6d,0x2e,0x61,0x64,0x6f,0x62,
0x65,0x2e,0x78,0x6d,0x70,0x00,0x00,0x00,0x00,0x00,
0x3c,0x3f,0x78,0x70,0x61,0x63,0x6b,0x65,0x74,0x20,
0x62,0x65,0x67,0x69,0x6e,0x3d,0x22,0xef,0xbb,0xbf,
0x22,0x20,0x69,0x64,0x3d,0x22,0x57,0x35,0x4d,0x30,
0x4d,0x70,0x43,0x65,0x68,0x69,0x48,0x7a,0x72,0x65,
0x53,0x7a,0x4e,0x54,0x63,0x7a,0x6b,0x63,0x39,0x64,
0x22,0x3f,0x3e,0x20,0x3c,0x78,0x3a,0x78,0x6d,0x70,
0x6d,0x65,0x74,0x61,0x20,0x78,0x6d,0x6c,0x6e,0x73,
0x3a,0x78,0x3d,0x22,0x61,0x64,0x6f,0x62,0x65,0x3a,
0x6e,0x73,0x3a,0x6d,0x65,0x74,0x61,0x2f,0x22,0x20,
0x78,0x3a,0x78,0x6d,0x70,0x74,0x6b,0x3d,0x22,0x41,
0x64,0x6f,0x62,0x65,0x20,0x58,0x4d,0x50,0x20,0x43,
0x6f,0x72,0x65,0x20,0x35,0x2e,0x33,0x2d,0x63,0x30,
0x31,0x31,0x20,0x36,0x36,0x2e,0x31,0x34,0x35,0x36,
0x36,0x31,0x2c,0x20,0x32,0x30,0x31,0x32,0x2f,0x30,
0x32,0x2f,0x30,0x36,0x2d,0x31,0x34,0x3a,0x35,0x36,
0x3a,0x32,0x37,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
0x20,0x22,0x3e,0x20,0x3c,0x72,0x64,0x66,0x3a,0x52,
0x44,0x46,0x20,0x78,0x6d,0x6c,0x6e,0x73,0x3a,0x72,
0x64,0x66,0x3d,0x22,0x68,0x74,0x74,0x70,0x3a,0x2f,
0x2f,0x77,0x77,0x77,0x2e,0x77,0x33,0x2e,0x6f,0x72,
0x67,0x2f,0x31,0x39,0x39,0x39,0x2f,0x30,0x32,0x2f,
0x32,0x32,0x2d,0x72,0x64,0x66,0x2d,0x73,0x79,0x6e,
0x74,0x61,0x78,0x2d,0x6e,0x73,0x23,0x22,0x3e,0x20,
0x3c,0x72,0x64,0x66,0x3a,0x44,0x65,0x73,0x63,0x72,
0x69,0x70,0x74,0x69,0x6f,0x6e,0x20,0x72,0x64,0x66,
0x3a,0x61,0x62,0x6f,0x75,0x74,0x3d,0x22,0x22,0x20,
0x78,0x6d,0x6c,0x6e,0x73,0x3a,0x78,0x6d,0x70,0x4d,
0x4d,0x3d,0x22,0x68,0x74,0x74,0x70,0x3a,0x2f,0x2f,
0x6e,0x73,0x2e,0x61,0x64,0x6f,0x62,0x65,0x2e,0x63,
0x6f,0x6d,0x2f,0x78,0x61,0x70,0x2f,0x31,0x2e,0x30,
0x2f,0x6d,0x6d,0x2f,0x22,0x20,0x78,0x6d,0x6c,0x6e,
0x73,0x3a,0x73,0x74,0x52,0x65,0x66,0x3d,0x22,0x68,
0x74,0x74,0x70,0x3a,0x2f,0x2f,0x6e,0x73,0x2e,0x61,
0x64,0x6f,0x62,0x65,0x2e,0x63,0x6f,0x6d,0x2f,0x78,
0x61,0x70,0x2f,0x31,0x2e,0x30,0x2f,0x73,0x54,0x79,
0x70,0x65,0x2f,0x52,0x65,0x73,0x6f,0x75,0x72,0x63,
0x65,0x52,0x65,0x66,0x23,0x22,0x20,0x78,0x6d,0x6c,
0x6e,0x73,0x3a,0x78,0x6d,0x70,0x3d,0x22,0x68,0x74,
0x74,0x70,0x3a,0x2f,0x2f,0x6e,0x73,0x2e,0x61,0x64,
0x6f,0x62,0x65,0x2e,0x63,0x6f,0x6d,0x2f,0x78,0x61,
0x70,0x2f,0x31,0x2e,0x30,0x2f,0x22,0x20,0x78,0x6d,
0x70,0x4d,0x4d,0x3a,0x4f,0x72,0x69,0x67,0x69,0x6e,
0x61,0x6c,0x44,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,
0x49,0x44,0x3d,0x22,0x78,0x6d,0x70,0x2e,0x64,0x69,
0x64,0x3a,0x45,0x39,0x31,0x35,0x37,0x37,0x33,0x42,
0x31,0x31,0x32,0x30,0x36,0x38,0x31,0x31,0x38,0x30,
0x38,0x33,0x43,0x37,0x45,0x33,0x31,0x45,0x41,0x35,
0x41,0x37,0x35,0x33,0x22,0x20,0x78,0x6d,0x70,0x4d,
0x4d,0x3a,0x44,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,
0x49,0x44,0x3d,0x22,0x78,0x6d,0x70,0x2e,0x64,0x69,
0x64,0x3a,0x33,0x42,0x37,0x42,0x36,0x33,0x37,0x36,
0x39,0x44,0x38,0x38,0x31,0x31,0x45,0x33,0x41,0x39,
0x31,0x44,0x42,0x44,0x46,0x44,0x34,0x30,0x39,0x39,
0x32,0x45,0x45,0x33,0x22,0x20,0x78,0x6d,0x70,0x4d,
0x4d,0x3a,0x49,0x6e,0x73,0x74,0x61,0x6e,0x63,0x65,
0x49,0x44,0x3d,0x22,0x78,0x6d,0x70,0x2e,0x69,0x69,
0x64,0x3a,0x39,0x38,0x44,0x38,0x30,0x39,0x45,0x34,
0x39,0x44,0x38,0x37,0x31,0x31,0x45,0x33,0x41,0x39,
0x31,0x44,0x42,0x44,0x46,0x44,0x34,0x30,0x39,0x39,
0x32,0x45,0x45,0x33,0x22,0x20,0x78,0x6d,0x70,0x3a,
0x43,0x72,0x65,0x61,0x74,0x6f,0x72,0x54,0x6f,0x6f,
0x6c,0x3d,0x22,0x41,0x64,0x6f,0x62,0x65,0x20,0x50,
0x68,0x6f,0x74,0x6f,0x73,0x68,0x6f,0x70,0x20,0x43,
0x53,0x36,0x20,0x28,0x4d,0x61,0x63,0x69,0x6e,0x74,
0x6f,0x73,0x68,0x29,0x22,0x3e,0x20,0x3c,0x78,0x6d,
0x70,0x4d,0x4d,0x3a,0x44,0x65,0x72,0x69,0x76,0x65,
0x64,0x46,0x72,0x6f,0x6d,0x20,0x73,0x74,0x52,0x65,
0x66,0x3a,0x69,0x6e,0x73,0x74,0x61,0x6e,0x63,0x65,
0x49,0x44,0x3d,0x22,0x78,0x6d,0x70,0x2e,0x69,0x69,
0x64,0x3a,0x45,0x39,0x31,0x35,0x37,0x37,0x33,0x42,
0x31,0x31,0x32,0x30,0x36,0x38,0x31,0x31,0x38,0x30,
0x38,0x33,0x43,0x37,0x45,0x33,0x31,0x45,0x41,0x35,
0x41,0x37,0x35,0x33,0x22,0x20,0x73,0x74,0x52,0x65,
0x66,0x3a,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,
0x49,0x44,0x3d,0x22,0x78,0x6d,0x70,0x2e,0x64,0x69,
0x64,0x3a,0x45,0x39,0x31,0x35,0x37,0x37,0x33,0x42,
0x31,0x31,0x32,0x30,0x36,0x38,0x31,0x31,0x38,0x30,
0x38,0x33,0x43,0x37,0x45,0x33,0x31,0x45,0x41,0x35,
0x41,0x37,0x35,0x33,0x22,0x2f,0x3e,0x20,0x3c,0x2f,
0x72,0x64,0x66,0x3a,0x44,0x65,0x73,0x63,0x72,0x69,
0x70,0x74,0x69,0x6f,0x6e,0x3e,0x20,0x3c,0x2f,0x72,
0x64,0x66,0x3a,0x52,0x44,0x46,0x3e,0x20,0x3c,0x2f,
0x78,0x3a,0x78,0x6d,0x70,0x6d,0x65,0x74,0x61,0x3e,
0x20,0x3c,0x3f,0x78,0x70,0x61,0x63,0x6b,0x65,0x74,
0x20,0x65,0x6e,0x64,0x3d,0x22,0x72,0x22,0x3f,0x3e,
0x18,0xec,0x12,0x45,0x00,0x00,0x01,0x29,0x49,0x44,
0x41,0x54,0x78,0xda,0xec,0x9a,0x41,0x6a,0x02,0x31,
0x18,0x85,0x7f,0x43,0xc0,0xad,0xd1,0x13,0x98,0x55,
0xb1,0x17,0xa8,0x7b,0x6f,0xe0,0x62,0x4e,0xa0,0x14,
0x7a,0xa1,0x62,0x6f,0x20,0x78,0x0d,0xa7,0xeb,0x2e,
0xa4,0xba,0x88,0x37,0x98,0xb8,0x55,0xa6,0x33,0xfd,
0x5f,0x49,0xc1,0x45,0x0f,0x90,0xd0,0xf7,0xe0,0x41,
0x60,0x36,0xdf,0x97,0x64,0x56,0xf9,0x07,0x7d,0xdf,
0x4b,0xfd,0x5e,0x1b,0x11,0x79,0xd6,0xae,0xb5,0x0f,
0xda,0xa1,0xe4,0x99,0xab,0xf6,0x53,0xbb,0xd1,0xbe,
0xce,0x9f,0xe6,0xdd,0x60,0x5f,0xef,0x01,0xbf,0xd5,
0x2e,0xa5,0xac,0xec,0xb4,0x95,0x4d,0xbb,0xbe,0xb4,
0xd6,0x8a,0xf7,0x5e,0xdc,0xc8,0x89,0x31,0x26,0x4b,
0xe2,0xae,0xeb,0x24,0x5e,0xa2,0x84,0x10,0xa4,0x6d,
0x5b,0x6c,0xf8,0x0a,0xa4,0x2b,0x7c,0xf4,0x53,0x2f,
0x93,0xf1,0x24,0x5b,0x78,0x04,0x6c,0x60,0x04,0x6b,
0xca,0x1a,0xb4,0x8f,0x58,0x39,0xe7,0x8a,0xb9,0x3b,
0x77,0xac,0x33,0xf3,0xfb,0xc3,0xe6,0xbc,0xf3,0x7f,
0x9d,0x44,0xca,0xd0,0x48,0xe1,0xa1,0x00,0x05,0x28,
0x40,0x01,0x0a,0x50,0x80,0x02,0x14,0xa0,0x00,0x05,
0x28,0x40,0x01,0x0a,0x50,0x80,0x02,0x14,0xa0,0x00,
0x05,0x28,0x40,0x01,0x0a,0x50,0x80,0x02,0x14,0xa0,
0x00,0x05,0xfe,0xa3,0x00,0x9e,0xef,0x7f,0x1e,0x91,
0x4b,0xc9,0x1d,0xeb,0x15,0x02,0x07,0xac,0x62,0x8c,
0xc5,0x08,0xe0,0xb5,0x3e,0xe5,0x00,0x01,0x0c,0x4e,
0x48,0x38,0x07,0x69,0x9a,0x46,0x30,0xfc,0x91,0x6b,
0xc0,0x06,0x46,0x8c,0x1a,0xa4,0x6c,0x6c,0x12,0x58,
0x60,0xf6,0xe0,0x78,0x3a,0x96,0x74,0xfd,0x31,0xec,
0xf1,0x66,0x30,0xb2,0xa2,0x8b,0x4a,0xfb,0xa2,0xfd,
0xd0,0xde,0x32,0x86,0xbe,0x25,0x46,0xb0,0x56,0xca,
0xfe,0xf5,0x2d,0xc0,0x00,0x3b,0xe6,0x51,0x95,0x79,
0xeb,0x7d,0x04,0x00,0x00,0x00,0x00,0x49,0x45,0x4e,
0x44,0xae,0x42,0x60,0x82
};

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

11
data/resources/arrow.svg Normal file
View file

@ -0,0 +1,11 @@
<?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="12.165px" height="21.921px" viewBox="0 0 12.165 21.921" enable-background="new 0 0 12.165 21.921" xml:space="preserve">
<g>
<path fill="#777777" d="M0.75,21.921c-0.197,0-0.395-0.077-0.542-0.231c-0.287-0.299-0.276-0.773,0.023-1.061l10.098-9.668
L0.231,1.292c-0.299-0.286-0.31-0.761-0.023-1.06c0.286-0.3,0.761-0.31,1.06-0.023l10.665,10.211
c0.147,0.141,0.231,0.337,0.231,0.542s-0.084,0.4-0.231,0.542L1.269,21.713C1.124,21.852,0.937,21.921,0.75,21.921z"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 838 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.8 KiB

22
data/resources/busy_0.svg Normal file
View file

@ -0,0 +1,22 @@
<?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="21.002px" height="22.002px" viewBox="0 0 21.002 22.002" enable-background="new 0 0 21.002 22.002" xml:space="preserve">
<g opacity="0.5">
<path fill="#777777" d="M21.002,21.293c0,0.39-0.319,0.709-0.709,0.709h-7.937c-0.39,0-0.709-0.319-0.709-0.709v-8.379
c0-0.39,0.319-0.709,0.709-0.709h7.937c0.39,0,0.709,0.319,0.709,0.709V21.293z"/>
</g>
<g opacity="0.5">
<path fill="#777777" d="M21.002,9.088c0,0.39-0.319,0.708-0.709,0.708h-7.937c-0.39,0-0.709-0.319-0.709-0.708V0.708
c0-0.39,0.319-0.708,0.709-0.708h7.937c0.39,0,0.709,0.319,0.709,0.708V9.088z"/>
</g>
<g opacity="0.5">
<path fill="#777777" d="M9.354,21.293c0,0.39-0.319,0.709-0.708,0.709H0.708C0.319,22.002,0,21.683,0,21.293v-8.379
c0-0.39,0.319-0.709,0.708-0.709h7.938c0.39,0,0.708,0.319,0.708,0.709V21.293z"/>
</g>
<g>
<path fill="#777777" d="M9.354,9.087c0,0.39-0.319,0.708-0.708,0.708H0.708C0.319,9.796,0,9.477,0,9.087V0.708
C0,0.319,0.319,0,0.708,0h7.938c0.39,0,0.708,0.319,0.708,0.708V9.087z"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.3 KiB

22
data/resources/busy_1.svg Normal file
View file

@ -0,0 +1,22 @@
<?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="21.002px" height="22.002px" viewBox="0 0 21.002 22.002" enable-background="new 0 0 21.002 22.002" xml:space="preserve">
<g opacity="0.5">
<path fill="#777777" d="M21.002,21.293c0,0.39-0.319,0.709-0.709,0.709h-7.937c-0.39,0-0.709-0.319-0.709-0.709v-8.379
c0-0.39,0.319-0.709,0.709-0.709h7.937c0.39,0,0.709,0.319,0.709,0.709V21.293z"/>
</g>
<g>
<path fill="#777777" d="M21.002,9.088c0,0.39-0.319,0.708-0.709,0.708h-7.937c-0.39,0-0.709-0.319-0.709-0.708V0.708
c0-0.39,0.319-0.708,0.709-0.708h7.937c0.39,0,0.709,0.319,0.709,0.708V9.088z"/>
</g>
<g opacity="0.5">
<path fill="#777777" d="M9.354,21.293c0,0.39-0.319,0.709-0.708,0.709H0.708C0.319,22.002,0,21.683,0,21.293v-8.379
c0-0.39,0.319-0.709,0.708-0.709h7.938c0.39,0,0.708,0.319,0.708,0.709V21.293z"/>
</g>
<g opacity="0.5">
<path fill="#777777" d="M9.354,9.087c0,0.39-0.319,0.708-0.708,0.708H0.708C0.319,9.796,0,9.477,0,9.087V0.708
C0,0.319,0.319,0,0.708,0h7.938c0.39,0,0.708,0.319,0.708,0.708V9.087z"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.3 KiB

22
data/resources/busy_2.svg Normal file
View file

@ -0,0 +1,22 @@
<?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="21.002px" height="22.002px" viewBox="0 0 21.002 22.002" enable-background="new 0 0 21.002 22.002" xml:space="preserve">
<g>
<path fill="#777777" d="M21.002,21.293c0,0.39-0.319,0.709-0.709,0.709h-7.937c-0.39,0-0.709-0.319-0.709-0.709v-8.379
c0-0.39,0.319-0.709,0.709-0.709h7.937c0.39,0,0.709,0.319,0.709,0.709V21.293z"/>
</g>
<g opacity="0.5">
<path fill="#777777" d="M21.002,9.088c0,0.39-0.319,0.708-0.709,0.708h-7.937c-0.39,0-0.709-0.319-0.709-0.708V0.708
c0-0.39,0.319-0.708,0.709-0.708h7.937c0.39,0,0.709,0.319,0.709,0.708V9.088z"/>
</g>
<g opacity="0.5">
<path fill="#777777" d="M9.354,21.293c0,0.39-0.319,0.709-0.708,0.709H0.708C0.319,22.002,0,21.683,0,21.293v-8.379
c0-0.39,0.319-0.709,0.708-0.709h7.938c0.39,0,0.708,0.319,0.708,0.709V21.293z"/>
</g>
<g opacity="0.5">
<path fill="#777777" d="M9.354,9.087c0,0.39-0.319,0.708-0.708,0.708H0.708C0.319,9.796,0,9.477,0,9.087V0.708
C0,0.319,0.319,0,0.708,0h7.938c0.39,0,0.708,0.319,0.708,0.708V9.087z"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.3 KiB

22
data/resources/busy_3.svg Normal file
View file

@ -0,0 +1,22 @@
<?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="21.002px" height="22.002px" viewBox="0 0 21.002 22.002" enable-background="new 0 0 21.002 22.002" xml:space="preserve">
<g opacity="0.5">
<path fill="#777777" d="M21.002,21.293c0,0.39-0.319,0.709-0.709,0.709h-7.937c-0.39,0-0.709-0.319-0.709-0.709v-8.379
c0-0.39,0.319-0.709,0.709-0.709h7.937c0.39,0,0.709,0.319,0.709,0.709V21.293z"/>
</g>
<g opacity="0.5">
<path fill="#777777" d="M21.002,9.088c0,0.39-0.319,0.708-0.709,0.708h-7.937c-0.39,0-0.709-0.319-0.709-0.708V0.708
c0-0.39,0.319-0.708,0.709-0.708h7.937c0.39,0,0.709,0.319,0.709,0.708V9.088z"/>
</g>
<g>
<path fill="#777777" d="M9.354,21.293c0,0.39-0.319,0.709-0.708,0.709H0.708C0.319,22.002,0,21.683,0,21.293v-8.379
c0-0.39,0.319-0.709,0.708-0.709h7.938c0.39,0,0.708,0.319,0.708,0.709V21.293z"/>
</g>
<g opacity="0.5">
<path fill="#777777" d="M9.354,9.087c0,0.39-0.319,0.708-0.708,0.708H0.708C0.319,9.796,0,9.477,0,9.087V0.708
C0,0.319,0.319,0,0.708,0h7.938c0.39,0,0.708,0.319,0.708,0.708V9.087z"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.3 KiB

BIN
data/resources/button.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.1 KiB

View file

@ -0,0 +1,23 @@
<?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="21.962px" height="21.959px" viewBox="0 0 21.962 21.959" enable-background="new 0 0 21.962 21.959" xml:space="preserve">
<path fill="#777777" d="M17.71,1.5c1.518,0,2.752,1.234,2.752,2.752v13.455c0,1.518-1.234,2.752-2.752,2.752H4.252
c-1.518,0-2.752-1.234-2.752-2.752V4.252C1.5,2.734,2.734,1.5,4.252,1.5H17.71 M17.71,0H4.252C1.914,0,0,1.914,0,4.252v13.455
c0,2.339,1.914,4.252,4.252,4.252H17.71c2.339,0,4.252-1.913,4.252-4.252V4.252C21.962,1.914,20.049,0,17.71,0L17.71,0z"/>
<g>
<g>
<rect x="10.232" y="1.079" transform="matrix(0.7071 0.7071 -0.7071 0.7071 10.9801 -4.5494)" fill="#777777" width="1.5" height="19.8"/>
</g>
<g>
<rect x="10.232" y="1.079" transform="matrix(0.7071 0.7071 -0.7071 0.7071 10.9801 -4.5494)" fill="#777777" width="1.5" height="19.8"/>
</g>
<g>
<rect x="1.082" y="10.23" transform="matrix(0.7071 0.7071 -0.7071 0.7071 10.9793 -4.5494)" fill="#777777" width="19.8" height="1.5"/>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.3 KiB

View file

@ -0,0 +1,9 @@
<?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="21.962px" height="21.959px" viewBox="0 0 21.962 21.959" enable-background="new 0 0 21.962 21.959" xml:space="preserve">
<path fill="#777777" d="M17.71,1.5c1.518,0,2.752,1.234,2.752,2.752v13.455c0,1.518-1.234,2.752-2.752,2.752H4.252
c-1.518,0-2.752-1.234-2.752-2.752V4.252C1.5,2.734,2.734,1.5,4.252,1.5H17.71 M17.71,0H4.252C1.914,0,0,1.914,0,4.252v13.455
c0,2.339,1.914,4.252,4.252,4.252H17.71c2.339,0,4.252-1.913,4.252-4.252V4.252C21.962,1.914,20.049,0,17.71,0L17.71,0z"/>
</svg>

After

Width:  |  Height:  |  Size: 850 B

View file

@ -0,0 +1,12 @@
<?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="21.002px" height="22.002px" viewBox="0 0 21.002 22.002" enable-background="new 0 0 21.002 22.002" xml:space="preserve">
<g>
<rect y="10.251" fill="#777777" width="21.002" height="1.5"/>
</g>
<g>
<rect x="9.751" fill="#777777" width="1.5" height="22.002"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 638 B

View file

@ -0,0 +1,9 @@
<?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="21.002px" height="22.002px" viewBox="0 0 21.002 22.002" enable-background="new 0 0 21.002 22.002" xml:space="preserve">
<g>
<rect y="10.251" fill="#777777" width="21.002" height="1.5"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 567 B

BIN
data/resources/frame.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.7 KiB

View file

@ -0,0 +1,16 @@
<?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="_x30_" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
width="37.061px" height="37.061px" viewBox="0 0 37.061 37.061" enable-background="new 0 0 37.061 37.061" xml:space="preserve">
<g>
<g>
<path fill="#FFFFFF" d="M18.914,14.579l-1.682,5.308h3.405l-1.67-5.308H18.914z M18.531,3.029c-8.562,0-15.501,6.94-15.501,15.5
c0,8.563,6.939,15.502,15.501,15.502S34.03,27.091,34.03,18.529C34.03,9.97,27.091,3.029,18.531,3.029z M22.227,24.925
l-0.919-2.913h-4.741l-0.918,2.913h-2.735l4.646-13.509h2.774l4.629,13.509H22.227z"/>
</g>
</g>
<g opacity="0">
<path fill="#FFFFFF" d="M36.961,0.1v36.861H0.1V0.1H36.961 M37.061,0H0v37.06h37.061V0L37.061,0z"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 965 B

View file

@ -0,0 +1,21 @@
<?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="B" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
width="37.061px" height="37.061px" viewBox="0 0 37.061 37.061" enable-background="new 0 0 37.061 37.061" xml:space="preserve">
<g>
<g>
<path fill="#FFFFFF" d="M19.47,18.949h-2.699v3.887h2.496c0.717,0,1.267-0.154,1.644-0.467c0.378-0.313,0.563-0.772,0.563-1.385
c0-0.659-0.16-1.165-0.48-1.513C20.671,19.124,20.163,18.949,19.47,18.949z M20.389,16.63c0.39-0.297,0.585-0.729,0.585-1.299
c0-0.625-0.197-1.086-0.59-1.383s-0.979-0.445-1.758-0.445h-1.855v3.572h1.948C19.442,17.075,19.999,16.927,20.389,16.63z
M18.53,3.031c-8.561,0-15.5,6.938-15.5,15.5c0,8.56,6.939,15.5,15.5,15.5c8.563,0,15.5-6.939,15.5-15.5
C34.03,9.969,27.091,3.031,18.53,3.031z M22.894,23.927c-0.854,0.665-2.063,0.997-3.627,0.997h-5.205V11.416h4.564
c1.59,0,2.83,0.31,3.721,0.929c0.891,0.617,1.336,1.543,1.336,2.773c0,0.625-0.166,1.184-0.496,1.674
c-0.332,0.492-0.813,0.86-1.441,1.108c0.811,0.174,1.418,0.544,1.821,1.113c0.405,0.568,0.607,1.229,0.607,1.977
C24.174,22.283,23.747,23.262,22.894,23.927z"/>
</g>
</g>
<g opacity="0">
<path fill="#FFFFFF" d="M36.961,0.1v36.861H0.1V0.1H36.961 M37.061,0H0v37.06h37.061V0L37.061,0z"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.4 KiB

View file

@ -0,0 +1,13 @@
<?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="_x30_" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
width="37.061px" height="37.061px" viewBox="0 0 37.061 37.061" enable-background="new 0 0 37.061 37.061" xml:space="preserve">
<g>
<path fill="#FFFFFF" d="M29.254,11.526c3.478,0,6.307,3.14,6.307,6.997c0,3.866-2.829,7.011-6.307,7.011H7.76
c-3.452-0.03-6.26-3.177-6.26-7.011c0-3.828,2.808-6.966,6.247-6.997H29.254 M29.254,10.026c-0.021,0-21.507,0-21.507,0
C3.466,10.064,0,13.846,0,18.523c0,4.678,3.466,8.473,7.747,8.511c0,0,21.483,0,21.507,0c4.313,0,7.807-3.812,7.807-8.511
S33.566,10.026,29.254,10.026L29.254,10.026z"/>
</g>
<polygon fill="#FFFFFF" points="15.92,22.212 21.141,22.212 21.141,20.85 17.543,20.85 17.543,14.833 15.92,14.833 "/>
</svg>

After

Width:  |  Height:  |  Size: 1,013 B

View file

@ -0,0 +1,16 @@
<?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="_x30_" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
width="37.061px" height="37.061px" viewBox="0 0 37.061 37.061" enable-background="new 0 0 37.061 37.061" xml:space="preserve">
<path fill="#FFFFFF" d="M16.973,16.086h1.779c0.722,0,1.117,0.312,1.117,1.022c0,0.747-0.396,1.06-1.117,1.06h-1.779V16.086z
M15.353,22.212h1.62v-2.886h1.625c0.816,0,1.117,0.342,1.23,1.118c0.082,0.589,0.061,1.304,0.258,1.769h1.621
c-0.289-0.414-0.279-1.28-0.313-1.748c-0.051-0.744-0.275-1.521-1.07-1.728c0,0,1.166-0.303,1.166-1.873
c0-1.118-0.838-2.036-2.16-2.036h-3.979L15.353,22.212L15.353,22.212z"/>
<g>
<path fill="#FFFFFF" d="M29.254,11.526c3.478,0,6.307,3.14,6.307,6.996c0,3.866-2.829,7.012-6.307,7.012H7.76
c-3.452-0.03-6.26-3.177-6.26-7.012c0-3.827,2.808-6.966,6.247-6.996H29.254 M29.254,10.026c-0.021,0-21.507,0-21.507,0
C3.466,10.063,0,13.846,0,18.522c0,4.679,3.466,8.473,7.747,8.512c0,0,21.483,0,21.507,0c4.313,0,7.807-3.812,7.807-8.512
C37.061,13.823,33.566,10.026,29.254,10.026L29.254,10.026z"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.3 KiB

View file

@ -0,0 +1,25 @@
<?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="_x30_" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
width="37.061px" height="37.061px" viewBox="0 0 37.061 37.061" enable-background="new 0 0 37.061 37.061" xml:space="preserve">
<g>
<g>
<path fill="#FFFFFF" d="M33.217,19.118H3.845C1.722,19.118,0,20.89,0,23.075s1.722,3.957,3.845,3.957h29.372
c2.123,0,3.844-1.771,3.844-3.957C37.061,20.889,35.34,19.118,33.217,19.118z"/>
</g>
</g>
<path fill="#FFFFFF" d="M33.757,15.549h1.186V9.474h2.124V8.345h-5.433v1.128h2.123V15.549z M30.855,11.007
c-0.126-1.554-1.141-2.864-3.087-2.864c-2.225,0-3.162,1.773-3.162,3.805c0,2.026,0.979,3.804,3.021,3.804
c2.328,0,3.063-1.521,3.229-2.958h-1.28c-0.099,0.757-0.51,1.829-1.743,1.829c-1.175,0-1.988-1.042-1.988-2.546
c0-1.877,0.813-2.808,1.908-2.808c0.999,0,1.704,0.646,1.823,1.737L30.855,11.007L30.855,11.007z M18.659,15.549h4.973V14.42h-3.786
v-1.998h3.573v-1.129h-3.573V9.474h3.721V8.345H18.66L18.659,15.549L18.659,15.549z M12.979,15.549h4.625v-1.188h-3.437V8.345
h-1.188V15.549z M6.714,15.549h4.974V14.42H7.902v-1.998h3.572v-1.129H7.902V9.474h3.726V8.345H6.714V15.549z M0.149,10.372
c0,2.955,4.167,1.398,4.167,3.186c0,0.792-0.673,1.064-1.395,1.064c-0.976,0-1.591-0.456-1.624-1.407H0.015
C0.03,14.73,0.846,15.75,2.882,15.75c1.205,0,2.716-0.484,2.716-2.343c0-3.077-4.213-1.455-4.213-3.146
c0-0.677,0.523-0.991,1.313-0.991c0.99,0,1.388,0.605,1.428,1.163H5.41c-0.152-2.091-1.896-2.29-2.767-2.29
C1.266,8.143,0.149,8.767,0.149,10.372"/>
<g opacity="0">
<path fill="#FFFFFF" d="M36.961,0.1v36.861H0.1V0.1H36.961 M37.061,0H0v37.06h37.061V0L37.061,0z"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.8 KiB

View file

@ -0,0 +1,22 @@
<?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="_x30_" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
width="37.061px" height="37.061px" viewBox="0 0 37.061 37.061" enable-background="new 0 0 37.061 37.061" xml:space="preserve">
<path fill="#FFFFFF" d="M33.065,15.548h1.438V9.471h2.563v-1.13h-6.563v1.13h2.563L33.065,15.548L33.065,15.548z M24.351,11.573
V9.471h2.482c0.755,0,1.226,0.292,1.226,1.039c0,0.808-0.432,1.063-1.226,1.063H24.351z M22.917,15.548h1.434v-2.846h2.443
c1.053,0,1.188,0.727,1.188,1.755c0,0.526,0.068,0.89,0.174,1.091h1.552c-0.281-0.395-0.29-1.199-0.29-1.546
c0-1.019-0.18-1.766-0.994-1.945v-0.021c0.643-0.211,1.128-0.797,1.128-1.737c0-1.119-0.563-1.954-2.305-1.954h-4.327L22.917,15.548
L22.917,15.548z M14.032,15.548h1.551l0.708-1.786h3.217l0.718,1.786h1.603l-3.045-7.207h-1.704L14.032,15.548z M16.723,12.632
L17.91,9.59l1.168,3.042H16.723z M9.992,15.548h1.434V9.471h2.567v-1.13H7.425v1.13h2.567V15.548z M0.187,10.368
c0,2.956,5.036,1.4,5.036,3.188c0,0.792-0.813,1.064-1.684,1.064c-1.179,0-1.923-0.456-1.963-1.407H0.026
c0.021,1.516,1.005,2.538,3.469,2.538c1.455,0,3.28-0.486,3.28-2.345c0-3.079-5.093-1.454-5.093-3.148
c0-0.676,0.632-0.988,1.589-0.988c1.196,0,1.676,0.604,1.726,1.161h1.551c-0.185-2.093-2.29-2.292-3.345-2.292
C1.536,8.139,0.187,8.762,0.187,10.368"/>
<g>
<g>
<path fill="#FFFFFF" d="M33.217,19.118H3.845C1.722,19.118,0,20.89,0,23.075s1.722,3.957,3.845,3.957h29.372
c2.123,0,3.844-1.771,3.844-3.957C37.061,20.889,35.34,19.118,33.217,19.118z"/>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.7 KiB

View file

@ -0,0 +1,16 @@
<?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="_x30_" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
width="37.061px" height="37.061px" viewBox="0 0 37.061 37.061" enable-background="new 0 0 37.061 37.061" xml:space="preserve">
<g>
<g>
<path fill="#FFFFFF" d="M18.53,3.029c-8.561,0-15.5,6.94-15.5,15.5c0,8.563,6.939,15.502,15.5,15.502
c8.563,0,15.5-6.939,15.5-15.502C34.03,9.97,27.091,3.029,18.53,3.029z M21.465,24.925l-2.607-4.87l-2.604,4.87h-3.164l4.11-6.811
l-4.01-6.698h3.138l2.493,4.787l2.533-4.787h3.154L20.5,18.115l4.24,6.811H21.465z"/>
</g>
</g>
<g opacity="0">
<path fill="#FFFFFF" d="M36.961,0.1v36.861H0.1V0.1H36.961 M37.061,0H0v37.06h37.061V0L37.061,0z"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 949 B

View file

@ -0,0 +1,16 @@
<?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="_x30_" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
width="37.061px" height="37.061px" viewBox="0 0 37.061 37.061" enable-background="new 0 0 37.061 37.061" xml:space="preserve">
<g>
<g>
<path fill="#FFFFFF" d="M18.53,3.029c-8.561,0-15.5,6.94-15.5,15.5c0,8.562,6.939,15.502,15.5,15.502
c8.563,0,15.5-6.94,15.5-15.502C34.03,9.97,27.091,3.029,18.53,3.029z M20.102,20.174v4.75h-2.7v-4.89l-4.555-8.618h2.969
l2.95,6.226h0.056l2.95-6.226h2.971L20.102,20.174z"/>
</g>
</g>
<g opacity="0">
<path fill="#FFFFFF" d="M36.961,0.1v36.861H0.1V0.1H36.961 M37.061,0H0v37.06h37.061V0L37.061,0z"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 911 B

View file

@ -0,0 +1,53 @@
<?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="_x30_" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
width="37.061px" height="37.061px" viewBox="0 0 37.061 37.061" enable-background="new 0 0 37.061 37.061" xml:space="preserve">
<g>
<g>
<g>
<g>
<path fill="#FFFFFF" d="M22.085,37.058h-7.111c-2.289,0-3.119-1.866-3.119-3.121v-8.732H3.121C0.831,25.205,0,23.339,0,22.084
v-7.11c0-2.289,1.867-3.12,3.121-3.12h8.734V3.121c0-2.29,1.865-3.121,3.119-3.121h7.111c2.29,0,3.121,1.867,3.121,3.121v8.733
h8.731c1.201,0,2.154,0.525,2.684,1.48c0.207,0.375,0.456,1.112,0.429,1.639h0.008v7.11c0,2.29-1.866,3.121-3.121,3.121h-8.731
v8.732C25.206,36.227,23.34,37.058,22.085,37.058z M3.121,13.353C2.745,13.359,1.5,13.492,1.5,14.973v7.11
c0.006,0.376,0.139,1.621,1.621,1.621h10.233v10.232c0.005,0.376,0.139,1.621,1.619,1.621h7.108
c0.384-0.006,1.624-0.142,1.624-1.621V23.705h10.231c0.376-0.006,1.621-0.14,1.621-1.621v-7.121
c-0.005-0.287-0.112-1.609-1.62-1.609H23.707V3.121C23.701,2.745,23.568,1.5,22.086,1.5h-7.111
c-0.376,0.006-1.619,0.139-1.619,1.621v10.232H3.121z"/>
</g>
</g>
</g>
<g>
<path fill="#FFFFFF" d="M18.531,22.181c-2.012,0-3.649-1.638-3.649-3.651c0-2.013,1.637-3.65,3.649-3.65
c2.013,0,3.65,1.638,3.65,3.65C22.181,20.544,20.543,22.181,18.531,22.181z M18.531,16.38c-1.185,0-2.149,0.965-2.149,2.15
c0,1.187,0.964,2.151,2.149,2.151c1.186,0,2.15-0.965,2.15-2.151C20.681,17.344,19.716,16.38,18.531,16.38z"/>
</g>
<g>
<path fill="#FFFFFF" d="M18.53,3.183l-3.005,4.684h6.012L18.53,3.183z"/>
<path fill="#FFFFFF" d="M21.536,8.617h-6.012c-0.274,0-0.526-0.15-0.658-0.39c-0.131-0.241-0.121-0.534,0.027-0.765l3.005-4.684
c0.276-0.431,0.987-0.43,1.262,0l3.007,4.684c0.148,0.231,0.159,0.524,0.027,0.765C22.063,8.467,21.811,8.617,21.536,8.617z
M16.897,7.117h3.267L18.53,4.572L16.897,7.117z"/>
</g>
<g>
<path fill="#FFFFFF" d="M3.125,18.53l4.684,3.004v-6.01L3.125,18.53z"/>
<path fill="#FFFFFF" d="M7.809,22.284c-0.141,0-0.282-0.04-0.405-0.119L2.72,19.161c-0.215-0.137-0.345-0.375-0.345-0.631
s0.13-0.493,0.345-0.631l4.684-3.006c0.23-0.147,0.524-0.159,0.765-0.027c0.24,0.131,0.39,0.384,0.39,0.658v6.01
c0,0.274-0.149,0.526-0.39,0.658C8.056,22.254,7.932,22.284,7.809,22.284z M4.514,18.53l2.545,1.632v-3.265L4.514,18.53z"/>
</g>
<g>
<path fill="#FFFFFF" d="M33.879,18.529l-4.685-3.005v6.01L33.879,18.529z"/>
<path fill="#FFFFFF" d="M29.195,22.284c-0.124,0-0.247-0.03-0.359-0.092c-0.241-0.132-0.391-0.384-0.391-0.658v-6.01
c0-0.274,0.149-0.526,0.391-0.658c0.239-0.132,0.532-0.123,0.765,0.027l4.685,3.005c0.215,0.138,0.345,0.376,0.345,0.631
s-0.13,0.493-0.345,0.631L29.6,22.165C29.477,22.244,29.335,22.284,29.195,22.284z M29.945,16.896v3.266l2.546-1.633
L29.945,16.896z"/>
</g>
<g>
<path fill="#FFFFFF" d="M18.53,33.876l3.007-4.684h-6.012L18.53,33.876z"/>
<path fill="#FFFFFF" d="M18.53,34.626L18.53,34.626c-0.255,0-0.493-0.13-0.631-0.345l-3.005-4.684
c-0.148-0.231-0.158-0.524-0.027-0.765c0.132-0.241,0.384-0.391,0.658-0.391h6.012c0.274,0,0.526,0.149,0.658,0.391
c0.132,0.24,0.121,0.534-0.027,0.765l-3.007,4.684C19.023,34.496,18.785,34.626,18.53,34.626z M16.897,29.942l1.633,2.545
l1.634-2.545H16.897z"/>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 3.4 KiB

View file

@ -0,0 +1,48 @@
<?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="_x30_" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
width="37.061px" height="37.061px" viewBox="0 0 37.061 37.061" enable-background="new 0 0 37.061 37.061" xml:space="preserve">
<g>
<g>
<g>
<path fill="#FFFFFF" d="M22.086,37.06h-7.111c-2.289,0-3.119-1.866-3.119-3.121v-8.732H3.121C0.831,25.206,0,23.34,0,22.085
v-7.11c0-2.289,1.867-3.12,3.121-3.12h8.733V3.121C11.855,0.831,13.72,0,14.974,0h7.111c2.29,0,3.121,1.867,3.121,3.121v8.732
h8.731c2.29,0,3.121,1.865,3.121,3.12v7.11c0,2.29-1.866,3.121-3.121,3.121h-8.731v8.732
C25.207,36.229,23.341,37.06,22.086,37.06z M3.121,13.354C2.745,13.359,1.5,13.493,1.5,14.974v7.11
c0.006,0.376,0.139,1.621,1.621,1.621h10.233v10.232c0.005,0.376,0.14,1.621,1.619,1.621h7.108
c0.384-0.007,1.624-0.143,1.624-1.621V23.706h10.231c0.376-0.006,1.621-0.14,1.621-1.621v-7.11
c-0.006-0.376-0.14-1.62-1.621-1.62h-10.23V3.121C23.701,2.745,23.567,1.5,22.086,1.5h-7.111
c-0.376,0.006-1.619,0.14-1.619,1.621v10.232L3.121,13.354L3.121,13.354z"/>
</g>
</g>
<g>
<path fill="#FFFFFF" d="M18.531,22.181c-2.013,0-3.649-1.639-3.649-3.651s1.638-3.65,3.649-3.65c2.013,0,3.65,1.639,3.65,3.65
C22.182,20.543,20.544,22.181,18.531,22.181z M18.531,16.379c-1.186,0-2.149,0.965-2.149,2.15s0.965,2.151,2.149,2.151
c1.186,0,2.15-0.966,2.15-2.151C20.682,17.344,19.717,16.379,18.531,16.379z"/>
</g>
<g>
<path fill="#FFFFFF" d="M21.536,8.616h-6.012c-0.273,0-0.525-0.15-0.657-0.39c-0.132-0.241-0.121-0.534,0.026-0.766l3.005-4.684
c0.276-0.431,0.986-0.43,1.264,0l3.005,4.684c0.147,0.231,0.159,0.524,0.026,0.766C22.063,8.466,21.811,8.616,21.536,8.616z
M16.897,7.116h3.268L18.53,4.571L16.897,7.116z"/>
</g>
<g>
<path fill="#FFFFFF" d="M7.809,22.284c-0.141,0-0.282-0.04-0.405-0.119L2.72,19.162c-0.215-0.138-0.345-0.376-0.345-0.631
s0.13-0.493,0.345-0.631l4.684-3.006c0.23-0.148,0.524-0.158,0.766-0.027c0.24,0.131,0.39,0.384,0.39,0.658v6.01
c0,0.274-0.148,0.526-0.39,0.658C8.056,22.254,7.932,22.284,7.809,22.284z M4.514,18.53l2.545,1.632v-3.265L4.514,18.53z"/>
</g>
<g>
<path fill="#FFFFFF" d="M29.195,22.284c-0.124,0-0.246-0.03-0.358-0.092c-0.241-0.132-0.392-0.384-0.392-0.658v-6.01
c0-0.274,0.149-0.526,0.392-0.658c0.239-0.131,0.533-0.123,0.765,0.027l4.685,3.005c0.215,0.138,0.345,0.376,0.345,0.631
s-0.13,0.493-0.345,0.631l-4.685,3.004C29.478,22.244,29.336,22.284,29.195,22.284z M29.945,16.896v3.266l2.546-1.633
L29.945,16.896z"/>
</g>
<g>
<path fill="#FFFFFF" d="M18.53,33.876l3.007-4.684h-6.012L18.53,33.876z"/>
<path fill="#FFFFFF" d="M18.53,34.626L18.53,34.626c-0.255,0-0.492-0.13-0.631-0.345l-3.005-4.684
c-0.147-0.231-0.158-0.524-0.026-0.766s0.384-0.391,0.657-0.391h6.012c0.273,0,0.525,0.148,0.657,0.391
c0.133,0.24,0.121,0.533-0.026,0.766l-3.005,4.684C19.023,34.496,18.786,34.626,18.53,34.626z M16.897,29.942l1.633,2.545
l1.635-2.545H16.897z"/>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 3.1 KiB

View file

@ -0,0 +1,48 @@
<?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="_x30_" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
width="37.061px" height="37.061px" viewBox="0 0 37.061 37.061" enable-background="new 0 0 37.061 37.061" xml:space="preserve">
<g>
<g>
<g>
<path fill="#FFFFFF" d="M22.086,37.06h-7.111c-2.289,0-3.119-1.866-3.119-3.121v-8.732H3.121C0.831,25.206,0,23.34,0,22.085
v-7.11c0-2.289,1.867-3.12,3.121-3.12h8.733V3.121C11.855,0.831,13.72,0,14.974,0h7.111c2.29,0,3.121,1.867,3.121,3.121v8.732
h8.731c2.29,0,3.121,1.865,3.121,3.12v7.11c0,2.29-1.866,3.121-3.121,3.121h-8.731v8.732
C25.207,36.229,23.341,37.06,22.086,37.06z M3.121,13.354C2.745,13.359,1.5,13.493,1.5,14.974v7.11
c0.006,0.376,0.139,1.621,1.621,1.621h10.233v10.232c0.005,0.376,0.14,1.621,1.619,1.621h7.108
c0.384-0.007,1.624-0.143,1.624-1.621V23.706h10.231c0.376-0.006,1.621-0.14,1.621-1.621v-7.11
c-0.006-0.376-0.14-1.62-1.621-1.62h-10.23V3.121C23.701,2.745,23.567,1.5,22.086,1.5h-7.111
c-0.376,0.006-1.619,0.14-1.619,1.621v10.232L3.121,13.354L3.121,13.354z"/>
</g>
</g>
<g>
<path fill="#FFFFFF" d="M18.531,22.181c-2.013,0-3.649-1.639-3.649-3.651s1.638-3.65,3.649-3.65c2.013,0,3.65,1.639,3.65,3.65
C22.182,20.543,20.544,22.181,18.531,22.181z M18.531,16.379c-1.186,0-2.149,0.965-2.149,2.15s0.965,2.151,2.149,2.151
c1.186,0,2.15-0.966,2.15-2.151C20.682,17.344,19.717,16.379,18.531,16.379z"/>
</g>
<g>
<path fill="#FFFFFF" d="M21.536,8.616h-6.012c-0.273,0-0.525-0.15-0.657-0.39c-0.132-0.241-0.121-0.534,0.026-0.766l3.005-4.684
c0.276-0.431,0.986-0.43,1.264,0l3.005,4.684c0.147,0.231,0.159,0.524,0.026,0.766C22.063,8.466,21.811,8.616,21.536,8.616z
M16.897,7.116h3.268L18.53,4.571L16.897,7.116z"/>
</g>
<g>
<path fill="#FFFFFF" d="M3.125,18.53l4.684,3.004v-6.01L3.125,18.53z"/>
<path fill="#FFFFFF" d="M7.809,22.284c-0.141,0-0.282-0.04-0.405-0.119L2.72,19.162c-0.215-0.138-0.345-0.376-0.345-0.631
s0.13-0.493,0.345-0.631l4.684-3.006c0.23-0.148,0.524-0.158,0.766-0.027c0.24,0.131,0.39,0.384,0.39,0.658v6.01
c0,0.274-0.148,0.526-0.39,0.658C8.056,22.254,7.932,22.284,7.809,22.284z M4.514,18.53l2.545,1.632v-3.265L4.514,18.53z"/>
</g>
<g>
<path fill="#FFFFFF" d="M29.195,22.284c-0.124,0-0.246-0.03-0.358-0.092c-0.241-0.132-0.392-0.384-0.392-0.658v-6.01
c0-0.274,0.149-0.526,0.392-0.658c0.239-0.131,0.533-0.123,0.765,0.027l4.685,3.005c0.215,0.138,0.345,0.376,0.345,0.631
s-0.13,0.493-0.345,0.631l-4.685,3.004C29.478,22.244,29.336,22.284,29.195,22.284z M29.945,16.896v3.266l2.546-1.633
L29.945,16.896z"/>
</g>
<g>
<path fill="#FFFFFF" d="M18.53,34.626L18.53,34.626c-0.255,0-0.492-0.13-0.631-0.345l-3.005-4.684
c-0.147-0.231-0.158-0.524-0.026-0.766s0.384-0.391,0.657-0.391h6.012c0.273,0,0.525,0.148,0.657,0.391
c0.133,0.24,0.121,0.533-0.026,0.766l-3.005,4.684C19.023,34.496,18.786,34.626,18.53,34.626z M16.897,29.942l1.633,2.545
l1.635-2.545H16.897z"/>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 3.1 KiB

View file

@ -0,0 +1,49 @@
<?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="_x30_" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
width="37.061px" height="37.061px" viewBox="0 0 37.061 37.061" enable-background="new 0 0 37.061 37.061" xml:space="preserve">
<g>
<g>
<g>
<path fill="#FFFFFF" d="M22.086,37.06h-7.111c-2.289,0-3.119-1.866-3.119-3.121v-8.732H3.121C0.831,25.206,0,23.34,0,22.085
v-7.11c0-2.289,1.867-3.12,3.121-3.12h8.733V3.121C11.855,0.831,13.72,0,14.974,0h7.111c2.29,0,3.121,1.867,3.121,3.121v8.732
h8.731c2.29,0,3.121,1.865,3.121,3.12v7.11c0,2.29-1.866,3.121-3.121,3.121h-8.731v8.732
C25.207,36.229,23.341,37.06,22.086,37.06z M3.121,13.354C2.745,13.359,1.5,13.493,1.5,14.974v7.11
c0.006,0.376,0.139,1.621,1.621,1.621h10.233v10.232c0.005,0.376,0.14,1.621,1.619,1.621h7.108
c0.384-0.007,1.624-0.143,1.624-1.621V23.706h10.231c0.376-0.006,1.621-0.14,1.621-1.621v-7.11
c-0.006-0.376-0.14-1.62-1.621-1.62h-10.23V3.121C23.701,2.745,23.567,1.5,22.086,1.5h-7.111
c-0.376,0.006-1.619,0.14-1.619,1.621v10.232L3.121,13.354L3.121,13.354z"/>
</g>
</g>
<g>
<path fill="#FFFFFF" d="M18.531,22.181c-2.013,0-3.649-1.639-3.649-3.651s1.638-3.65,3.649-3.65c2.013,0,3.65,1.639,3.65,3.65
C22.182,20.543,20.544,22.181,18.531,22.181z M18.531,16.379c-1.186,0-2.149,0.965-2.149,2.15s0.965,2.151,2.149,2.151
c1.186,0,2.15-0.966,2.15-2.151C20.682,17.344,19.717,16.379,18.531,16.379z"/>
</g>
<g>
<path fill="#FFFFFF" d="M21.536,8.616h-6.012c-0.273,0-0.525-0.15-0.657-0.39c-0.132-0.241-0.121-0.534,0.026-0.766l3.005-4.684
c0.276-0.431,0.986-0.43,1.264,0l3.005,4.684c0.147,0.231,0.159,0.524,0.026,0.766C22.063,8.466,21.811,8.616,21.536,8.616z
M16.897,7.116h3.268L18.53,4.571L16.897,7.116z"/>
</g>
<g>
<path fill="#FFFFFF" d="M3.125,18.53l4.684,3.004v-6.01L3.125,18.53z"/>
<path fill="#FFFFFF" d="M7.809,22.284c-0.141,0-0.282-0.04-0.405-0.119L2.72,19.162c-0.215-0.138-0.345-0.376-0.345-0.631
s0.13-0.493,0.345-0.631l4.684-3.006c0.23-0.148,0.524-0.158,0.766-0.027c0.24,0.131,0.39,0.384,0.39,0.658v6.01
c0,0.274-0.148,0.526-0.39,0.658C8.056,22.254,7.932,22.284,7.809,22.284z M4.514,18.53l2.545,1.632v-3.265L4.514,18.53z"/>
</g>
<g>
<path fill="#FFFFFF" d="M33.879,18.529l-4.685-3.005v6.01L33.879,18.529z"/>
<path fill="#FFFFFF" d="M29.195,22.284c-0.124,0-0.246-0.03-0.358-0.092c-0.241-0.132-0.392-0.384-0.392-0.658v-6.01
c0-0.274,0.149-0.526,0.392-0.658c0.239-0.131,0.533-0.123,0.765,0.027l4.685,3.005c0.215,0.138,0.345,0.376,0.345,0.631
s-0.13,0.493-0.345,0.631l-4.685,3.004C29.478,22.244,29.336,22.284,29.195,22.284z M29.945,16.896v3.266l2.546-1.633
L29.945,16.896z"/>
</g>
<g>
<path fill="#FFFFFF" d="M18.53,34.626L18.53,34.626c-0.255,0-0.492-0.13-0.631-0.345l-3.005-4.684
c-0.147-0.231-0.158-0.524-0.026-0.766s0.384-0.391,0.657-0.391h6.012c0.273,0,0.525,0.148,0.657,0.391
c0.133,0.24,0.121,0.533-0.026,0.766l-3.005,4.684C19.023,34.496,18.786,34.626,18.53,34.626z M16.897,29.942l1.633,2.545
l1.635-2.545H16.897z"/>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 3.2 KiB

View file

@ -0,0 +1,48 @@
<?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="_x30_" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
width="37.061px" height="37.061px" viewBox="0 0 37.061 37.061" enable-background="new 0 0 37.061 37.061" xml:space="preserve">
<g>
<g>
<g>
<path fill="#FFFFFF" d="M22.086,37.06h-7.111c-2.289,0-3.119-1.866-3.119-3.121v-8.732H3.121C0.831,25.206,0,23.34,0,22.085
v-7.11c0-2.289,1.867-3.12,3.121-3.12h8.733V3.121C11.855,0.831,13.72,0,14.974,0h7.111c2.29,0,3.121,1.867,3.121,3.121v8.732
h8.731c2.29,0,3.121,1.865,3.121,3.12v7.11c0,2.29-1.866,3.121-3.121,3.121h-8.731v8.732
C25.207,36.229,23.341,37.06,22.086,37.06z M3.121,13.354C2.745,13.359,1.5,13.493,1.5,14.974v7.11
c0.006,0.376,0.139,1.621,1.621,1.621h10.233v10.232c0.005,0.376,0.14,1.621,1.619,1.621h7.108
c0.384-0.007,1.624-0.143,1.624-1.621V23.706h10.231c0.376-0.006,1.621-0.14,1.621-1.621v-7.11
c-0.006-0.376-0.14-1.62-1.621-1.62h-10.23V3.121C23.701,2.745,23.567,1.5,22.086,1.5h-7.111
c-0.376,0.006-1.619,0.14-1.619,1.621v10.232L3.121,13.354L3.121,13.354z"/>
</g>
</g>
<g>
<path fill="#FFFFFF" d="M18.531,22.181c-2.013,0-3.649-1.639-3.649-3.651s1.638-3.65,3.649-3.65c2.013,0,3.65,1.639,3.65,3.65
C22.182,20.543,20.544,22.181,18.531,22.181z M18.531,16.379c-1.186,0-2.149,0.965-2.149,2.15s0.965,2.151,2.149,2.151
c1.186,0,2.15-0.966,2.15-2.151C20.682,17.344,19.717,16.379,18.531,16.379z"/>
</g>
<g>
<path fill="#FFFFFF" d="M21.536,8.616h-6.012c-0.273,0-0.525-0.15-0.657-0.39c-0.132-0.241-0.121-0.534,0.026-0.766l3.005-4.684
c0.276-0.431,0.986-0.43,1.264,0l3.005,4.684c0.147,0.231,0.159,0.524,0.026,0.766C22.063,8.466,21.811,8.616,21.536,8.616z
M16.897,7.116h3.268L18.53,4.571L16.897,7.116z"/>
</g>
<g>
<path fill="#FFFFFF" d="M7.809,22.284c-0.141,0-0.282-0.04-0.405-0.119L2.72,19.162c-0.215-0.138-0.345-0.376-0.345-0.631
s0.13-0.493,0.345-0.631l4.684-3.006c0.23-0.148,0.524-0.158,0.766-0.027c0.24,0.131,0.39,0.384,0.39,0.658v6.01
c0,0.274-0.148,0.526-0.39,0.658C8.056,22.254,7.932,22.284,7.809,22.284z M4.514,18.53l2.545,1.632v-3.265L4.514,18.53z"/>
</g>
<g>
<path fill="#FFFFFF" d="M33.879,18.529l-4.685-3.005v6.01L33.879,18.529z"/>
<path fill="#FFFFFF" d="M29.195,22.284c-0.124,0-0.246-0.03-0.358-0.092c-0.241-0.132-0.392-0.384-0.392-0.658v-6.01
c0-0.274,0.149-0.526,0.392-0.658c0.239-0.131,0.533-0.123,0.765,0.027l4.685,3.005c0.215,0.138,0.345,0.376,0.345,0.631
s-0.13,0.493-0.345,0.631l-4.685,3.004C29.478,22.244,29.336,22.284,29.195,22.284z M29.945,16.896v3.266l2.546-1.633
L29.945,16.896z"/>
</g>
<g>
<path fill="#FFFFFF" d="M18.53,34.626L18.53,34.626c-0.255,0-0.492-0.13-0.631-0.345l-3.005-4.684
c-0.147-0.231-0.158-0.524-0.026-0.766s0.384-0.391,0.657-0.391h6.012c0.273,0,0.525,0.148,0.657,0.391
c0.133,0.24,0.121,0.533-0.026,0.766l-3.005,4.684C19.023,34.496,18.786,34.626,18.53,34.626z M16.897,29.942l1.633,2.545
l1.635-2.545H16.897z"/>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 3.1 KiB

View file

@ -0,0 +1,48 @@
<?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="_x30_" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
width="37.061px" height="37.061px" viewBox="0 0 37.061 37.061" enable-background="new 0 0 37.061 37.061" xml:space="preserve">
<g>
<g>
<g>
<path fill="#FFFFFF" d="M22.086,37.06h-7.111c-2.289,0-3.119-1.866-3.119-3.121v-8.732H3.121C0.831,25.206,0,23.34,0,22.085
v-7.11c0-2.289,1.867-3.12,3.121-3.12h8.733V3.121C11.855,0.831,13.72,0,14.974,0h7.111c2.29,0,3.121,1.867,3.121,3.121v8.732
h8.731c2.29,0,3.121,1.865,3.121,3.12v7.11c0,2.29-1.866,3.121-3.121,3.121h-8.731v8.732
C25.207,36.229,23.341,37.06,22.086,37.06z M3.121,13.354C2.745,13.359,1.5,13.493,1.5,14.974v7.11
c0.006,0.376,0.139,1.621,1.621,1.621h10.233v10.232c0.005,0.376,0.14,1.621,1.619,1.621h7.108
c0.384-0.007,1.624-0.143,1.624-1.621V23.706h10.231c0.376-0.006,1.621-0.14,1.621-1.621v-7.11
c-0.006-0.376-0.14-1.62-1.621-1.62h-10.23V3.121C23.701,2.745,23.567,1.5,22.086,1.5h-7.111
c-0.376,0.006-1.619,0.14-1.619,1.621v10.232L3.121,13.354L3.121,13.354z"/>
</g>
</g>
<g>
<path fill="#FFFFFF" d="M18.531,22.181c-2.013,0-3.649-1.639-3.649-3.651s1.638-3.65,3.649-3.65c2.013,0,3.65,1.639,3.65,3.65
C22.182,20.543,20.544,22.181,18.531,22.181z M18.531,16.379c-1.186,0-2.149,0.965-2.149,2.15s0.965,2.151,2.149,2.151
c1.186,0,2.15-0.966,2.15-2.151C20.682,17.344,19.717,16.379,18.531,16.379z"/>
</g>
<g>
<path fill="#FFFFFF" d="M18.53,3.183l-3.005,4.684h6.012L18.53,3.183z"/>
<path fill="#FFFFFF" d="M21.536,8.616h-6.012c-0.273,0-0.525-0.15-0.657-0.39c-0.132-0.241-0.121-0.534,0.026-0.766l3.005-4.684
c0.276-0.431,0.986-0.43,1.264,0l3.005,4.684c0.147,0.231,0.159,0.524,0.026,0.766C22.063,8.466,21.811,8.616,21.536,8.616z
M16.897,7.116h3.268L18.53,4.571L16.897,7.116z"/>
</g>
<g>
<path fill="#FFFFFF" d="M7.809,22.284c-0.141,0-0.282-0.04-0.405-0.119L2.72,19.162c-0.215-0.138-0.345-0.376-0.345-0.631
s0.13-0.493,0.345-0.631l4.684-3.006c0.23-0.148,0.524-0.158,0.766-0.027c0.24,0.131,0.39,0.384,0.39,0.658v6.01
c0,0.274-0.148,0.526-0.39,0.658C8.056,22.254,7.932,22.284,7.809,22.284z M4.514,18.53l2.545,1.632v-3.265L4.514,18.53z"/>
</g>
<g>
<path fill="#FFFFFF" d="M29.195,22.284c-0.124,0-0.246-0.03-0.358-0.092c-0.241-0.132-0.392-0.384-0.392-0.658v-6.01
c0-0.274,0.149-0.526,0.392-0.658c0.239-0.131,0.533-0.123,0.765,0.027l4.685,3.005c0.215,0.138,0.345,0.376,0.345,0.631
s-0.13,0.493-0.345,0.631l-4.685,3.004C29.478,22.244,29.336,22.284,29.195,22.284z M29.945,16.896v3.266l2.546-1.633
L29.945,16.896z"/>
</g>
<g>
<path fill="#FFFFFF" d="M18.53,34.626L18.53,34.626c-0.255,0-0.492-0.13-0.631-0.345l-3.005-4.684
c-0.147-0.231-0.158-0.524-0.026-0.766s0.384-0.391,0.657-0.391h6.012c0.273,0,0.525,0.148,0.657,0.391
c0.133,0.24,0.121,0.533-0.026,0.766l-3.005,4.684C19.023,34.496,18.786,34.626,18.53,34.626z M16.897,29.942l1.633,2.545
l1.635-2.545H16.897z"/>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 3.1 KiB

View file

@ -0,0 +1,49 @@
<?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="_x30_" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
width="37.061px" height="37.061px" viewBox="0 0 37.061 37.061" enable-background="new 0 0 37.061 37.061" xml:space="preserve">
<g>
<g>
<g>
<path fill="#FFFFFF" d="M22.086,37.06h-7.111c-2.289,0-3.119-1.866-3.119-3.121v-8.732H3.121C0.831,25.206,0,23.34,0,22.085
v-7.11c0-2.289,1.867-3.12,3.121-3.12h8.733V3.121C11.855,0.831,13.72,0,14.974,0h7.111c2.29,0,3.121,1.867,3.121,3.121v8.732
h8.731c2.29,0,3.121,1.865,3.121,3.12v7.11c0,2.29-1.866,3.121-3.121,3.121h-8.731v8.732
C25.207,36.229,23.341,37.06,22.086,37.06z M3.121,13.354C2.745,13.359,1.5,13.493,1.5,14.974v7.11
c0.006,0.376,0.139,1.621,1.621,1.621h10.233v10.232c0.005,0.376,0.14,1.621,1.619,1.621h7.108
c0.384-0.007,1.624-0.143,1.624-1.621V23.706h10.231c0.376-0.006,1.621-0.14,1.621-1.621v-7.11
c-0.006-0.376-0.14-1.62-1.621-1.62h-10.23V3.121C23.701,2.745,23.567,1.5,22.086,1.5h-7.111
c-0.376,0.006-1.619,0.14-1.619,1.621v10.232L3.121,13.354L3.121,13.354z"/>
</g>
</g>
<g>
<path fill="#FFFFFF" d="M18.531,22.181c-2.013,0-3.649-1.639-3.649-3.651s1.638-3.65,3.649-3.65c2.013,0,3.65,1.639,3.65,3.65
C22.182,20.543,20.544,22.181,18.531,22.181z M18.531,16.379c-1.186,0-2.149,0.965-2.149,2.15s0.965,2.151,2.149,2.151
c1.186,0,2.15-0.966,2.15-2.151C20.682,17.344,19.717,16.379,18.531,16.379z"/>
</g>
<g>
<path fill="#FFFFFF" d="M18.53,3.183l-3.005,4.684h6.012L18.53,3.183z"/>
<path fill="#FFFFFF" d="M21.536,8.616h-6.012c-0.273,0-0.525-0.15-0.657-0.39c-0.132-0.241-0.121-0.534,0.026-0.766l3.005-4.684
c0.276-0.431,0.986-0.43,1.264,0l3.005,4.684c0.147,0.231,0.159,0.524,0.026,0.766C22.063,8.466,21.811,8.616,21.536,8.616z
M16.897,7.116h3.268L18.53,4.571L16.897,7.116z"/>
</g>
<g>
<path fill="#FFFFFF" d="M7.809,22.284c-0.141,0-0.282-0.04-0.405-0.119L2.72,19.162c-0.215-0.138-0.345-0.376-0.345-0.631
s0.13-0.493,0.345-0.631l4.684-3.006c0.23-0.148,0.524-0.158,0.766-0.027c0.24,0.131,0.39,0.384,0.39,0.658v6.01
c0,0.274-0.148,0.526-0.39,0.658C8.056,22.254,7.932,22.284,7.809,22.284z M4.514,18.53l2.545,1.632v-3.265L4.514,18.53z"/>
</g>
<g>
<path fill="#FFFFFF" d="M29.195,22.284c-0.124,0-0.246-0.03-0.358-0.092c-0.241-0.132-0.392-0.384-0.392-0.658v-6.01
c0-0.274,0.149-0.526,0.392-0.658c0.239-0.131,0.533-0.123,0.765,0.027l4.685,3.005c0.215,0.138,0.345,0.376,0.345,0.631
s-0.13,0.493-0.345,0.631l-4.685,3.004C29.478,22.244,29.336,22.284,29.195,22.284z M29.945,16.896v3.266l2.546-1.633
L29.945,16.896z"/>
</g>
<g>
<path fill="#FFFFFF" d="M18.53,33.876l3.007-4.684h-6.012L18.53,33.876z"/>
<path fill="#FFFFFF" d="M18.53,34.626L18.53,34.626c-0.255,0-0.492-0.13-0.631-0.345l-3.005-4.684
c-0.147-0.231-0.158-0.524-0.026-0.766s0.384-0.391,0.657-0.391h6.012c0.273,0,0.525,0.148,0.657,0.391
c0.133,0.24,0.121,0.533-0.026,0.766l-3.005,4.684C19.023,34.496,18.786,34.626,18.53,34.626z M16.897,29.942l1.633,2.545
l1.635-2.545H16.897z"/>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 3.2 KiB

13
data/resources/off.svg Normal file
View file

@ -0,0 +1,13 @@
<?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="43.916px" height="21.959px" viewBox="0 0 43.916 21.959" enable-background="new 0 0 43.916 21.959" xml:space="preserve">
<path fill="#777777" d="M29.291,15.69h1.934v-4.113h5.42v-1.479h-5.42V7.704h5.729V6.225h-7.662V15.69z M19.81,15.69h1.936v-4.113
h5.416v-1.479h-5.416V7.704h5.725V6.225h-7.66V15.69z M12.378,14.473c-2.166,0-3.404-1.435-3.404-3.517
c0-2.083,1.238-3.518,3.404-3.518c2.167,0,3.406,1.435,3.406,3.518C15.784,13.038,14.545,14.473,12.378,14.473 M12.378,15.956
c3.896,0,5.419-2.335,5.419-5s-1.522-4.997-5.419-4.997c-3.896,0-5.416,2.332-5.416,4.997S8.482,15.956,12.378,15.956"/>
<path fill="#777777" d="M39.664,1.5c1.518,0,2.752,1.234,2.752,2.752v13.455c0,1.518-1.234,2.752-2.752,2.752H4.252
c-1.518,0-2.752-1.234-2.752-2.752V4.252C1.5,2.734,2.734,1.5,4.252,1.5H39.664 M39.664,0H4.252C1.914,0,0,1.914,0,4.252v13.455
c0,2.339,1.914,4.252,4.252,4.252h35.412c2.339,0,4.252-1.913,4.252-4.252V4.252C43.916,1.914,42.003,0,39.664,0L39.664,0z"/>
</svg>

After

Width:  |  Height:  |  Size: 1.3 KiB

14
data/resources/on.svg Normal file
View file

@ -0,0 +1,14 @@
<?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="43.916px" height="21.959px" viewBox="0 0 43.916 21.959" enable-background="new 0 0 43.916 21.959" xml:space="preserve">
<g>
<path fill="#777777" d="M15.754,7.461c-2.319,0-3.643,1.434-3.643,3.518c0,2.083,1.325,3.521,3.643,3.521
c2.32,0,3.644-1.437,3.645-3.521C19.399,8.895,18.074,7.461,15.754,7.461z"/>
<path fill="#777777" d="M39.664,0H4.252C1.914,0,0,1.914,0,4.252v13.455c0,2.339,1.914,4.252,4.252,4.252h35.412
c2.339,0,4.252-1.913,4.252-4.252V4.252C43.916,1.914,42.003,0,39.664,0z M15.754,15.979c-4.168,0-5.796-2.334-5.796-5
c0-2.669,1.628-5.001,5.796-5.001c4.17,0,5.798,2.332,5.798,5.001C21.552,13.644,19.924,15.979,15.754,15.979z M33.957,15.715
h-2.332L25.72,8.602h-0.027v7.113h-1.988V6.244h2.373l5.865,7.114h0.027V6.244h1.987V15.715z"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.1 KiB

Binary file not shown.

Some files were not shown because too many files have changed in this diff Show more