From c42cd2a30eea302c31676d9543eff6445843afd2 Mon Sep 17 00:00:00 2001
From: Simon Howard
Date: Sun, 29 Nov 2009 22:25:51 +0000
Subject: Include .lvimrc in dist.
Subversion-branch: /trunk/chocolate-doom
Subversion-revision: 1742
---
Makefile.am | 1 +
1 file changed, 1 insertion(+)
diff --git a/Makefile.am b/Makefile.am
index dc3a40d0..9dcad240 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -35,6 +35,7 @@ EXTRA_DIST= \
$(MSVC_FILES) \
$(CODEBLOCKS_FILES) \
$(DATA_FILES) \
+ .lvimrc \
config.h \
CMDLINE \
HACKING \
--
cgit v1.2.3
From d27d3bb8b68f1e0f066a0749601ff32431325983 Mon Sep 17 00:00:00 2001
From: Simon Howard
Date: Sun, 29 Nov 2009 22:50:17 +0000
Subject: Add other missing files to dist.
Subversion-branch: /trunk/chocolate-doom
Subversion-revision: 1743
---
Makefile.am | 1 +
man/Makefile.am | 9 +++++----
pkg/win32/GNUmakefile.am | 1 +
wince/Makefile.am | 1 +
4 files changed, 8 insertions(+), 4 deletions(-)
diff --git a/Makefile.am b/Makefile.am
index 9dcad240..3f43e3ab 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -24,6 +24,7 @@ CODEBLOCKS_FILES= \
codeblocks/textscreen.cbp
DATA_FILES= \
+ data/README \
data/doom.ico \
data/doom.png \
data/setup.ico \
diff --git a/man/Makefile.am b/man/Makefile.am
index d3c90f7e..698c0862 100644
--- a/man/Makefile.am
+++ b/man/Makefile.am
@@ -5,9 +5,9 @@ if HAVE_PYTHON
man_MANS=chocolate-doom.6 \
chocolate-server.6 \
- chocolate-setup.6 \
- default.cfg.5 \
- $(PACKAGE).cfg.5
+ chocolate-setup.6 \
+ default.cfg.5 \
+ $(PACKAGE).cfg.5
chocolate-doom.6: ../src $(MANPAGE_GEN_FILES)
./docgen -m manpage.template ../src > $@
@@ -21,5 +21,6 @@ $(PACKAGE).cfg.5: ../src extra.cfg.template
endif
EXTRA_DIST = $(man_MANS) $(MANPAGE_GEN_FILES) \
- wikipages
+ wikipages \
+ CMDLINE.template
diff --git a/pkg/win32/GNUmakefile.am b/pkg/win32/GNUmakefile.am
index edd57b6e..ed86d2cc 100644
--- a/pkg/win32/GNUmakefile.am
+++ b/pkg/win32/GNUmakefile.am
@@ -17,6 +17,7 @@ DOC_FILES=README \
CMDLINE \
TODO
+EXTRA_DIST=README
noinst_DATA=@PACKAGE_TARNAME@-@PACKAGE_VERSION@-win32.zip
@PACKAGE_TARNAME@-@PACKAGE_VERSION@-win32.zip : staging
diff --git a/wince/Makefile.am b/wince/Makefile.am
index 476b9a67..c19471ca 100644
--- a/wince/Makefile.am
+++ b/wince/Makefile.am
@@ -4,6 +4,7 @@ noinst_LIBRARIES=libc_wince.a
if WINDOWS_CE
libc_wince_a_SOURCES = \
+ libc_wince.h \
env.c env.h \
errno.c errno.h \
fileops.c fileops.h
--
cgit v1.2.3
From c09be2cdb7668f9f5246eaa3e7de060db94b432b Mon Sep 17 00:00:00 2001
From: Simon Howard
Date: Wed, 9 Dec 2009 02:40:39 +0000
Subject: Fix the setup tool on Windows Vista/7 to not prompt for elevated
permissions and to disable the "Program Compatibility Assistant" (thanks
hobbs and MikeRS).
Subversion-branch: /trunk/chocolate-doom
Subversion-revision: 1744
---
setup/setup-manifest.xml | 25 +++++++++++++++++++++----
setup/setup-res.rc.in | 2 +-
2 files changed, 22 insertions(+), 5 deletions(-)
diff --git a/setup/setup-manifest.xml b/setup/setup-manifest.xml
index 409a142b..c2788306 100644
--- a/setup/setup-manifest.xml
+++ b/setup/setup-manifest.xml
@@ -1,16 +1,33 @@
+
+
+
-
+
-
-
+
+
+
+
+
+
+
+
+
+
diff --git a/setup/setup-res.rc.in b/setup/setup-res.rc.in
index dc25135a..2bc3106c 100644
--- a/setup/setup-res.rc.in
+++ b/setup/setup-res.rc.in
@@ -1,6 +1,6 @@
1 ICON "../data/setup.ico"
-CREATEPROCESS_MANIFEST_RESOURCE_ID RT_MANIFEST "setup-manifest.xml"
+1 24 MOVEABLE PURE "setup-manifest.xml"
1 VERSIONINFO
PRODUCTVERSION @WINDOWS_RC_VERSION@
--
cgit v1.2.3
From 7972eefbf43cc2d68c958e4fa5ea93e14b12b7b2 Mon Sep 17 00:00:00 2001
From: Simon Howard
Date: Sat, 12 Dec 2009 01:20:49 +0000
Subject: Fix textscreen black border bug.
Subversion-branch: /trunk/chocolate-doom
Subversion-revision: 1745
---
textscreen/txt_sdl.c | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/textscreen/txt_sdl.c b/textscreen/txt_sdl.c
index cd7dd77d..0df9fc93 100644
--- a/textscreen/txt_sdl.c
+++ b/textscreen/txt_sdl.c
@@ -285,10 +285,10 @@ void TXT_UpdateScreenArea(int x, int y, int w, int h)
int x_end;
int y_end;
- x_end = LimitToRange(x + w, 0, TXT_SCREEN_W - 1);
- y_end = LimitToRange(y + h, 0, TXT_SCREEN_H - 1);
- x = LimitToRange(x, 0, TXT_SCREEN_W - 1);
- y = LimitToRange(y, 0, TXT_SCREEN_H - 1);
+ x_end = LimitToRange(x + w, 0, TXT_SCREEN_W);
+ y_end = LimitToRange(y + h, 0, TXT_SCREEN_H);
+ x = LimitToRange(x, 0, TXT_SCREEN_W);
+ y = LimitToRange(y, 0, TXT_SCREEN_H);
for (y1=y; y1 55246 bytes
data/setup.ico | Bin 2238 -> 55246 bytes
2 files changed, 0 insertions(+), 0 deletions(-)
diff --git a/data/doom.ico b/data/doom.ico
index f55ff28f..1aeb227d 100644
Binary files a/data/doom.ico and b/data/doom.ico differ
diff --git a/data/setup.ico b/data/setup.ico
index 6d734a11..86a3c558 100644
Binary files a/data/setup.ico and b/data/setup.ico differ
--
cgit v1.2.3
From 4f540343e63eb60f209ce7e8ce26db10c16ab4e6 Mon Sep 17 00:00:00 2001
From: Simon Howard
Date: Mon, 14 Dec 2009 20:57:04 +0000
Subject: Use GetModuleFileNameW to get the (Unicode) path to the Doom
executable. This hopefully fixes problems with Unicode directory names.
Subversion-branch: /trunk/chocolate-doom
Subversion-revision: 1747
---
setup/execute.c | 29 +++++++++++++++++++----------
1 file changed, 19 insertions(+), 10 deletions(-)
diff --git a/setup/execute.c b/setup/execute.c
index 8c4580e8..59f561be 100644
--- a/setup/execute.c
+++ b/setup/execute.c
@@ -185,29 +185,38 @@ static void ConcatWCString(wchar_t *buf, const char *value)
static wchar_t *BuildCommandLine(const char *program, const char *arg)
{
+ wchar_t exe_path[MAX_PATH];
wchar_t *result;
- char *sep;
+ wchar_t *sep;
+
+ // Get the path to this .exe file.
+
+ GetModuleFileNameW(NULL, exe_path, MAX_PATH);
- result = calloc(strlen(myargv[0]) + strlen(program) + strlen(arg) + 6,
+ // Allocate buffer to contain result string.
+
+ result = calloc(wcslen(exe_path) + strlen(program) + strlen(arg) + 6,
sizeof(wchar_t));
wcscpy(result, L"\"");
- sep = strrchr(myargv[0], DIR_SEPARATOR);
+ // Copy the path part of the filename (including ending \)
+ // into the result buffer:
+
+ sep = wcsrchr(exe_path, DIR_SEPARATOR);
if (sep != NULL)
{
- ConcatWCString(result, myargv[0]);
-
- // Cut off the string after the last directory separator,
- // before appending the actual program.
-
- result[sep - myargv[0] + 2] = '\0';
-
+ wcsncpy(result + 1, exe_path, sep - exe_path + 1);
+ result[sep - exe_path + 2] = '\0';
}
+ // Concatenate the name of the program:
+
ConcatWCString(result, program);
+ // End of program name, start of argument:
+
wcscat(result, L"\" \"");
ConcatWCString(result, arg);
--
cgit v1.2.3
From e81acc7df5f7939d93c6724e422f823111dfeba0 Mon Sep 17 00:00:00 2001
From: Simon Howard
Date: Fri, 18 Dec 2009 21:10:35 +0000
Subject: Make ExecuteCommand() under Unix return a failure when the executable
cannot be executed.
Subversion-branch: /trunk/chocolate-doom
Subversion-revision: 1748
---
setup/execute.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/setup/execute.c b/setup/execute.c
index 59f561be..8e753f60 100644
--- a/setup/execute.c
+++ b/setup/execute.c
@@ -312,7 +312,7 @@ static int ExecuteCommand(const char *program, const char *arg)
execvp(argv[0], (char **) argv);
- exit(-1);
+ exit(0x80);
}
else
{
@@ -321,7 +321,7 @@ static int ExecuteCommand(const char *program, const char *arg)
waitpid(childpid, &result, 0);
- if (WIFEXITED(result))
+ if (WIFEXITED(result) && WEXITSTATUS(result) != 0x80)
{
return WEXITSTATUS(result);
}
--
cgit v1.2.3
From 8a58f6fb1e499af578718f9563f079f67db07471 Mon Sep 17 00:00:00 2001
From: Simon Howard
Date: Fri, 18 Dec 2009 21:11:32 +0000
Subject: Update generated source files containing icon data.
Subversion-branch: /trunk/chocolate-doom
Subversion-revision: 1749
---
setup/setup_icon.c | 1094 ++++++++++++++++++++++++++++++++++++++++++--------
src/icon.c | 1126 +++++++++++++++++++++++++++++++++++++++++++---------
2 files changed, 1878 insertions(+), 342 deletions(-)
diff --git a/setup/setup_icon.c b/setup/setup_icon.c
index 1c18c56f..b20d2e2f 100644
--- a/setup/setup_icon.c
+++ b/setup/setup_icon.c
@@ -1,5 +1,5 @@
-static int setup_icon_w = 32;
-static int setup_icon_h = 32;
+static int setup_icon_w = 64;
+static int setup_icon_h = 64;
static unsigned char setup_icon_data[] = {
0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00,
@@ -28,235 +28,1003 @@ static unsigned char setup_icon_data[] = {
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,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00,
- 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00, 0xa2,0x86,0x73,
- 0xa9,0x8d,0x7a, 0xbc,0x9f,0x8c, 0xda,0xba,0xa0, 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,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,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00,
0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00,
- 0xbe,0x8e,0x68, 0xd7,0xb9,0xa5, 0xeb,0xd8,0xcd, 0xd3,0xbf,0xae,
- 0xbe,0xa1,0x8d, 0xeb,0xd8,0xcd, 0xc2,0x9d,0x86, 0x95,0x5d,0x38,
0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00,
- 0x00,0x00,0x00, 0x00,0x00,0x00, 0x78,0x7a,0x77, 0x78,0x7a,0x77,
0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00,
- 0x78,0x7a,0x77, 0x78,0x7a,0x77, 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, 0x9f,0x82,0x6a,
- 0xc5,0x9e,0x81, 0xd1,0xb2,0x98, 0xd4,0xac,0x8e, 0xeb,0xd8,0xcd,
- 0xc4,0x9b,0x79, 0xad,0x71,0x45, 0xd4,0xac,0x8e, 0xb9,0x93,0x76,
- 0xa1,0x75,0x56, 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00,
- 0x00,0x00,0x00, 0x78,0x7a,0x77, 0x6d,0x6f,0x6c, 0xcb,0xce,0xca,
- 0x51,0x52,0x50, 0x00,0x00,0x00, 0x00,0x00,0x00, 0x5b,0x5d,0x5a,
- 0xca,0xcc,0xc9, 0x77,0x79,0x76, 0x78,0x7a,0x77, 0x00,0x00,0x00,
0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00,
- 0x00,0x00,0x00, 0x00,0x00,0x00, 0xda,0xb4,0x9c, 0xd3,0xa3,0x83,
- 0xaf,0x91,0x78, 0xa7,0x83,0x6d, 0xc4,0xa7,0x93, 0xee,0xe2,0xd5,
- 0xeb,0xd8,0xcd, 0x8c,0x60,0x3d, 0x92,0x6f,0x59, 0xd0,0xa7,0x84,
- 0x84,0x54,0x33, 0xba,0x83,0x5b, 0x00,0x00,0x00, 0x00,0x00,0x00,
- 0x00,0x00,0x00, 0x78,0x7a,0x77, 0xa0,0xa2,0x9f, 0xdf,0xe1,0xde,
- 0x58,0x5a,0x58, 0x00,0x00,0x00, 0x00,0x00,0x00, 0x64,0x65,0x63,
- 0xdd,0xdf,0xdc, 0xa8,0xaa,0xa7, 0x78,0x7a,0x77, 0x00,0x00,0x00,
0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00,
- 0x00,0x00,0x00, 0xd4,0xb5,0x9b, 0xc3,0x8c,0x63, 0xc4,0x94,0x6e,
- 0x98,0x66,0x45, 0x78,0x50,0x2d, 0xd7,0xb9,0xa5, 0xee,0xdc,0xd1,
- 0xc4,0x9b,0x79, 0xb6,0x80,0x58, 0x65,0x45,0x26, 0xb6,0x79,0x4d,
- 0xcf,0xa5,0x83, 0x9a,0x6e,0x50, 0x00,0x00,0x00, 0x00,0x00,0x00,
- 0x00,0x00,0x00, 0x82,0x83,0x81, 0xbb,0xbd,0xba, 0xde,0xe0,0xdd,
- 0x58,0x5a,0x58, 0x00,0x00,0x00, 0x00,0x00,0x00, 0x64,0x65,0x63,
- 0xdc,0xde,0xdb, 0xc4,0xc6,0xc3, 0x78,0x7a,0x77, 0x00,0x00,0x00,
0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00,
- 0x9e,0x7b,0x65, 0xbc,0x8c,0x67, 0xaa,0x7d,0x5e, 0xa1,0x75,0x56,
- 0x89,0x5f,0x41, 0xc4,0xa7,0x93, 0xb7,0x88,0x63, 0x90,0x6c,0x51,
- 0x79,0x4b,0x2b, 0x8c,0x5b,0x34, 0x76,0x4e,0x31, 0x7f,0x50,0x30,
- 0xcf,0xa5,0x83, 0xd4,0xac,0x8e, 0x00,0x00,0x00, 0x00,0x00,0x00,
- 0x00,0x00,0x00, 0x77,0x79,0x76, 0xd2,0xd4,0xd1, 0xde,0xe0,0xdd,
- 0x64,0x65,0x63, 0x00,0x00,0x00, 0x00,0x00,0x00, 0x68,0x69,0x67,
- 0xdb,0xdd,0xda, 0xda,0xdc,0xd9, 0x78,0x7a,0x77, 0x00,0x00,0x00,
- 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00, 0xd8,0xb8,0x9e,
- 0xd4,0xac,0x8e, 0xc5,0x9e,0x81, 0xab,0x7e,0x5f, 0x9c,0x6f,0x4b,
- 0xbe,0xa1,0x8d, 0x8c,0x60,0x3d, 0x6e,0x47,0x2b, 0x87,0x5e,0x40,
- 0x5a,0x3b,0x23, 0x68,0x42,0x26, 0x65,0x40,0x23, 0x53,0x36,0x22,
- 0x7e,0x55,0x38, 0xce,0x9f,0x7e, 0xc3,0x8c,0x63, 0x00,0x00,0x00,
- 0x00,0x00,0x00, 0x77,0x79,0x76, 0xe1,0xe4,0xe0, 0xe1,0xe4,0xe0,
- 0xc4,0xc6,0xc3, 0x83,0x85,0x82, 0x8c,0x8d,0x8a, 0xd2,0xd4,0xd1,
- 0xee,0xdc,0xd1, 0xe1,0xe4,0xe0, 0x78,0x7a,0x77, 0x00,0x00,0x00,
- 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00, 0xcb,0x9a,0x74,
- 0xb6,0x80,0x58, 0x8c,0x60,0x3d, 0x76,0x4e,0x31, 0x88,0x57,0x31,
- 0x83,0x53,0x33, 0x84,0x54,0x33, 0x95,0x5d,0x38, 0x79,0x4b,0x2b,
- 0x5c,0x38,0x22, 0x84,0x54,0x33, 0x55,0x37,0x1e, 0x96,0x6b,0x4d,
- 0xb4,0x7f,0x5c, 0xba,0x83,0x5b, 0xb8,0x7b,0x4f, 0x00,0x00,0x00,
- 0x00,0x00,0x00, 0x00,0x00,0x00, 0x9a,0x9b,0x98, 0xd9,0xdb,0xd7,
- 0xe1,0xe4,0xe0, 0xde,0xe0,0xdd, 0xdd,0xdf,0xdc, 0xe0,0xe2,0xdf,
- 0xda,0xdc,0xd9, 0xa3,0xa5,0xa1, 0x00,0x00,0x00, 0x00,0x00,0x00,
- 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00, 0xc0,0x89,0x60,
- 0x89,0x5f,0x41, 0x84,0x54,0x33, 0x84,0x54,0x33, 0x8a,0x5a,0x39,
- 0x8f,0x5d,0x37, 0x78,0x50,0x2d, 0x8c,0x5b,0x34, 0x5a,0x3b,0x23,
- 0x5e,0x3f,0x27, 0x76,0x4e,0x31, 0x97,0x64,0x3d, 0x74,0x4b,0x29,
- 0x78,0x50,0x2d, 0x7b,0x4d,0x2c, 0xb6,0x80,0x58, 0x00,0x00,0x00,
- 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00, 0x64,0x65,0x63,
- 0xbe,0xc1,0xbd, 0xee,0xdc,0xd1, 0xe1,0xe4,0xe0, 0xc2,0xc4,0xc1,
- 0x68,0x69,0x67, 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00,
- 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00, 0x95,0x62,0x3b,
- 0x84,0x54,0x33, 0x88,0x57,0x31, 0x7e,0x6e,0x64, 0xc4,0x94,0x6e,
- 0x76,0x4e,0x31, 0x90,0x6c,0x51, 0xa1,0x7c,0x60, 0x9a,0x6e,0x50,
- 0x95,0x5d,0x38, 0xbc,0x7f,0x53, 0xad,0x71,0x45, 0x76,0x4e,0x31,
- 0x53,0x36,0x22, 0x4b,0x2f,0x1c, 0x70,0x49,0x2c, 0x00,0x00,0x00,
0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00,
- 0x51,0x52,0x50, 0xd2,0xd4,0xd1, 0xe0,0xe2,0xdf, 0x77,0x79,0x76,
0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00,
- 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00, 0x84,0x54,0x33,
- 0xa3,0x86,0x6e, 0xc4,0x94,0x6e, 0x88,0x64,0x44, 0xbc,0x8c,0x67,
- 0x9c,0x6f,0x4b, 0xa1,0x6d,0x45, 0x93,0x60,0x3a, 0xad,0x71,0x3f,
- 0xb4,0x7f,0x5c, 0xbc,0x8c,0x67, 0xc0,0x89,0x60, 0xb3,0x76,0x4b,
- 0xb8,0x7b,0x4f, 0x88,0x64,0x44, 0x00,0x00,0x00, 0x00,0x00,0x00,
0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00,
- 0x4a,0x4b,0x49, 0xdc,0xde,0xdb, 0xe1,0xe4,0xe0, 0x79,0x7b,0x78,
0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00,
- 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00, 0xa7,0x83,0x6d,
- 0xac,0x86,0x6a, 0x76,0x4e,0x31, 0x84,0x54,0x33, 0x5c,0x38,0x22,
- 0x57,0x38,0x20, 0x6c,0x46,0x29, 0x95,0x62,0x3b, 0xa3,0x6e,0x41,
- 0xb3,0x76,0x4b, 0xb8,0x7b,0x4f, 0x9d,0x64,0x3f, 0x7e,0x4f,0x2f,
- 0x63,0x3e,0x27, 0x95,0x62,0x3b, 0x00,0x00,0x00, 0x00,0x00,0x00,
0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00,
- 0x51,0x52,0x50, 0xdd,0xdf,0xdc, 0xe0,0xe2,0xdf, 0x82,0x83,0x81,
0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00,
- 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00, 0xb6,0x80,0x58,
- 0x98,0x74,0x59, 0x67,0x41,0x25, 0x4b,0x35,0x25, 0x81,0x52,0x31,
- 0x76,0x4e,0x31, 0x7b,0x4d,0x2c, 0x7e,0x4f,0x2f, 0x84,0x54,0x33,
- 0x8f,0x5d,0x37, 0x95,0x5d,0x38, 0x78,0x50,0x2d, 0x65,0x45,0x26,
- 0x65,0x40,0x23, 0x7e,0x4f,0x2f, 0x00,0x00,0x00, 0x00,0x00,0x00,
0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00,
- 0x55,0x56,0x54, 0xee,0xdc,0xd1, 0xde,0xe0,0xdd, 0x8c,0x8d,0x8a,
0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00,
- 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00, 0xb4,0x7f,0x5c,
- 0x86,0x56,0x35, 0x8c,0x60,0x3d, 0x89,0x5f,0x41, 0x63,0x44,0x2b,
- 0x57,0x38,0x20, 0x86,0x56,0x35, 0x88,0x57,0x31, 0x95,0x5d,0x38,
- 0x97,0x64,0x3d, 0x63,0x3e,0x27, 0x50,0x33,0x20, 0x78,0x50,0x2d,
- 0x78,0x50,0x2d, 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00,
0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00,
- 0x58,0x5a,0x58, 0xe0,0xe2,0xdf, 0xde,0xe0,0xdd, 0x8c,0x8d,0x8a,
0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00,
0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00,
- 0x86,0x56,0x35, 0x63,0x3e,0x27, 0xa8,0x6d,0x42, 0x50,0x33,0x20,
- 0x63,0x3e,0x27, 0x74,0x4b,0x29, 0x53,0x36,0x22, 0x78,0x50,0x2d,
- 0x42,0x30,0x14, 0x4d,0x3e,0x15, 0x4d,0x3e,0x15, 0x7c,0x5b,0x29,
- 0x8a,0x71,0x27, 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00,
0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00,
- 0x64,0x65,0x63, 0xe1,0xe4,0xe0, 0xe1,0xe4,0xe0, 0x91,0x93,0x90,
0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00,
0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00,
- 0x6e,0x47,0x2b, 0x65,0x45,0x26, 0x5d,0x42,0x22, 0x65,0x45,0x26,
- 0x78,0x50,0x2d, 0x5d,0x42,0x22, 0x5e,0x3f,0x27, 0x4d,0x3e,0x15,
- 0x4d,0x3e,0x15, 0x67,0x58,0x21, 0x4f,0x44,0x19, 0x5f,0x51,0x19,
- 0x8a,0x76,0x2a, 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00,
0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00,
- 0x68,0x69,0x67, 0xdf,0xe1,0xde, 0xe0,0xe2,0xdf, 0x9a,0x9b,0x98,
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,0x00,0x00, 0x8a,0x71,0x27, 0x53,0x46,0x15,
- 0x53,0x46,0x15, 0x67,0x58,0x21, 0x58,0x4c,0x1b, 0x5b,0x4f,0x1d,
- 0x5b,0x4f,0x1d, 0x67,0x58,0x21, 0x5b,0x4f,0x1d, 0x8a,0x71,0x27,
- 0x8c,0x77,0x24, 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00,
0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00,
- 0x70,0x72,0x6f, 0xe1,0xe4,0xe0, 0xe1,0xe4,0xe0, 0x9a,0x9b,0x98,
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,0x00,0x00, 0xac,0x93,0x39, 0x7e,0x66,0x23,
- 0x69,0x5a,0x1b, 0x6b,0x5b,0x1d, 0x67,0x58,0x21, 0x53,0x46,0x15,
- 0x4d,0x3e,0x15, 0x9f,0x88,0x35, 0xb7,0x9c,0x3b, 0xac,0x93,0x39,
0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00,
0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00,
- 0x77,0x79,0x76, 0xdf,0xe1,0xde, 0xe0,0xe2,0xdf, 0xa3,0xa5,0xa1,
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,0x00,0x00, 0xb1,0x97,0x36, 0x6f,0x5f,0x21,
- 0x7e,0x66,0x23, 0x8c,0x77,0x24, 0x84,0x70,0x24, 0x78,0x67,0x22,
- 0x8e,0x79,0x26, 0x8a,0x71,0x27, 0xb7,0x9c,0x3b, 0x9b,0x84,0x29,
0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00,
0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00,
- 0x82,0x83,0x81, 0xe1,0xe4,0xe0, 0xe1,0xe4,0xe0, 0xa8,0xaa,0xa7,
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,0x00,0x00, 0xac,0x93,0x39, 0x89,0x75,0x29,
- 0x7e,0x66,0x23, 0x75,0x64,0x1f, 0x94,0x7e,0x2b, 0x7e,0x66,0x23,
- 0x9f,0x88,0x35, 0xb6,0x9d,0x4a, 0xb6,0x9d,0x4a, 0xc4,0xa8,0x3f,
0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00,
0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00,
- 0x82,0x83,0x81, 0xe0,0xe2,0xdf, 0xde,0xe0,0xdd, 0xab,0xad,0xaa,
+ 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00, 0xc2,0xbb,0xb4,
+ 0xe0,0xdf,0xda, 0xc0,0x8f,0x6c, 0x55,0x51,0x4c, 0x55,0x51,0x4c,
+ 0x00,0x00,0x00, 0x55,0x51,0x4c, 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,0x00,0x00,
- 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00, 0x80,0x6d,0x28,
- 0xac,0x93,0x39, 0x97,0x82,0x36, 0xac,0x94,0x41, 0xac,0x93,0x39,
- 0x97,0x82,0x36, 0xa2,0x8a,0x30, 0xbd,0xa3,0x48, 0x8a,0x71,0x27,
0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00,
0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00,
- 0x77,0x79,0x76, 0xe0,0xe2,0xdf, 0xd8,0xda,0xd6, 0xab,0xad,0xaa,
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,0x00,0x00, 0x00,0x00,0x00, 0xae,0x95,0x33,
- 0x7e,0x66,0x23, 0x9f,0x88,0x35, 0x9f,0x88,0x35, 0x7e,0x66,0x23,
- 0x8a,0x71,0x27, 0xaf,0x96,0x3c, 0xbd,0xa2,0x41, 0x8a,0x76,0x2a,
0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00,
- 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00, 0x68,0x69,0x67,
- 0xc2,0xc4,0xc1, 0xe0,0xe2,0xdf, 0xdf,0xe1,0xde, 0xbe,0xc1,0xbd,
- 0x5f,0x61,0x5e, 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,0x00,0x00, 0xaf,0x96,0x3c,
- 0x87,0x73,0x27, 0xb2,0x99,0x3f, 0x6f,0x5f,0x21, 0xa8,0x90,0x36,
- 0x97,0x82,0x36, 0x9f,0x88,0x35, 0xb7,0x9c,0x3b, 0x8c,0x77,0x24,
0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00,
- 0x00,0x00,0x00, 0x00,0x00,0x00, 0xa3,0xa5,0xa1, 0xeb,0xd8,0xcd,
- 0xe0,0xe2,0xdf, 0xee,0xdc,0xd1, 0xdf,0xe1,0xde, 0xe1,0xe4,0xe0,
- 0xda,0xdc,0xd9, 0x9a,0x9b,0x98, 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, 0xb2,0x99,0x3f,
- 0xaf,0x96,0x3c, 0x96,0x80,0x2d, 0xbd,0xa3,0x48, 0x97,0x82,0x36,
- 0xb6,0x9d,0x4a, 0xb8,0xa0,0x4c, 0xc1,0xa7,0x4c, 0x00,0x00,0x00,
0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00,
- 0x00,0x00,0x00, 0x78,0x7a,0x77, 0xdf,0xe1,0xde, 0xe0,0xe2,0xdf,
- 0xd2,0xd4,0xd1, 0x8c,0x8d,0x8a, 0x82,0x83,0x81, 0xc7,0xc9,0xc6,
- 0xe1,0xe4,0xe0, 0xe1,0xe4,0xe0, 0x78,0x7a,0x77, 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,
- 0x96,0x80,0x2d, 0xb5,0x9c,0x49, 0xb2,0x99,0x3f, 0xb2,0x9a,0x47,
- 0xb0,0x97,0x3d, 0xc1,0xa7,0x4c, 0x96,0x80,0x2d, 0x00,0x00,0x00,
+ 0x00,0x00,0x00, 0x55,0x51,0x4c, 0xc0,0x8f,0x6c, 0xad,0x72,0x46,
+ 0xc0,0x8f,0x6c, 0xd3,0xaf,0x93, 0xe0,0xdf,0xda, 0xd3,0xaf,0x93,
+ 0xe0,0xdf,0xda, 0xe0,0xdf,0xda, 0xc2,0xbb,0xb4, 0x92,0x8b,0x84,
+ 0x55,0x51,0x4c, 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00,
0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00,
- 0x00,0x00,0x00, 0x78,0x7a,0x77, 0xd9,0xdb,0xd7, 0xda,0xdc,0xd9,
- 0x68,0x69,0x67, 0x00,0x00,0x00, 0x00,0x00,0x00, 0x64,0x65,0x63,
- 0xdd,0xdf,0xdc, 0xd2,0xd4,0xd1, 0x78,0x7a,0x77, 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,
- 0x9c,0x85,0x2b, 0xaa,0x91,0x2f, 0xb1,0x97,0x36, 0xa2,0x8a,0x30,
- 0x7e,0x66,0x23, 0xb1,0x97,0x36, 0xb4,0x99,0x30, 0x00,0x00,0x00,
0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00,
- 0x00,0x00,0x00, 0x79,0x7b,0x78, 0xc4,0xc6,0xc3, 0xd9,0xdb,0xd7,
- 0x64,0x65,0x63, 0x00,0x00,0x00, 0x00,0x00,0x00, 0x55,0x56,0x54,
- 0xdf,0xe1,0xde, 0xbb,0xbd,0xba, 0x78,0x7a,0x77, 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,
- 0x9f,0x88,0x35, 0xb8,0x9e,0x44, 0x8a,0x71,0x27, 0xa6,0x8f,0x3c,
- 0xbd,0xa3,0x48, 0x96,0x80,0x2d, 0x9f,0x88,0x35, 0x00,0x00,0x00,
0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00,
- 0x00,0x00,0x00, 0x82,0x83,0x81, 0xa8,0xaa,0xa7, 0xdf,0xe1,0xde,
- 0x64,0x65,0x63, 0x00,0x00,0x00, 0x00,0x00,0x00, 0x58,0x5a,0x58,
- 0xee,0xdc,0xd1, 0xa0,0xa2,0x9f, 0x78,0x7a,0x77, 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,
- 0xb0,0x97,0x3d, 0xb7,0x9c,0x3b, 0xac,0x94,0x41, 0xb2,0x99,0x3f,
- 0xb6,0x9b,0x32, 0xb7,0x9c,0x3b, 0x00,0x00,0x00, 0x00,0x00,0x00,
0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00,
- 0x00,0x00,0x00, 0x77,0x79,0x76, 0x77,0x79,0x76, 0xca,0xcc,0xc9,
- 0x5b,0x5d,0x5a, 0x00,0x00,0x00, 0x00,0x00,0x00, 0x51,0x52,0x50,
- 0xcb,0xce,0xca, 0x68,0x69,0x67, 0x79,0x7b,0x78, 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,
- 0xbd,0xa2,0x41, 0xa6,0x8f,0x3c, 0xb0,0x97,0x3d, 0xb2,0x9a,0x47,
- 0xac,0x93,0x39, 0x9f,0x88,0x35, 0x00,0x00,0x00, 0x00,0x00,0x00,
+ 0x66,0x44,0x29, 0xd3,0xaf,0x93, 0xa4,0x73,0x4e, 0x86,0x56,0x33,
+ 0x86,0x56,0x33, 0xc0,0x8f,0x6c, 0xd3,0xaf,0x93, 0xd3,0xaf,0x93,
+ 0xd3,0xaf,0x93, 0xd3,0xaf,0x93, 0xd3,0xaf,0x93, 0xd3,0xaf,0x93,
+ 0xe0,0xdf,0xda, 0xd3,0xaf,0x93, 0xd3,0xaf,0x93, 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,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,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, 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,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,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00,
+ 0x92,0x8b,0x84, 0xc0,0x8f,0x6c, 0x86,0x56,0x33, 0x55,0x51,0x4c,
+ 0x66,0x44,0x29, 0x66,0x44,0x29, 0x66,0x44,0x29, 0x66,0x44,0x29,
+ 0x44,0x30,0x18, 0xa4,0x73,0x4e, 0xa4,0x73,0x4e, 0xa4,0x73,0x4e,
+ 0xc0,0x8f,0x6c, 0xc0,0x8f,0x6c, 0xd3,0xaf,0x93, 0x92,0x8b,0x84,
+ 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,0x00,0x00, 0x00,0x00,0x00, 0x2a,0x25,0x1f,
+ 0x2a,0x25,0x1f, 0x2a,0x25,0x1f, 0x2a,0x25,0x1f, 0x00,0x00,0x00,
+ 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00,
+ 0x00,0x00,0x00, 0x2a,0x25,0x1f, 0x2a,0x25,0x1f, 0x2a,0x25,0x1f,
+ 0x2a,0x25,0x1f, 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,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,0x00,
+ 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00, 0x44,0x30,0x18,
+ 0xd3,0xaf,0x93, 0xc0,0x8f,0x6c, 0xa4,0x73,0x4e, 0xe0,0xdf,0xda,
+ 0xe0,0xdf,0xda, 0xe0,0xdf,0xda, 0xe0,0xdf,0xda, 0xd3,0xaf,0x93,
+ 0x92,0x8b,0x84, 0xe0,0xdf,0xda, 0xe0,0xdf,0xda, 0xd3,0xaf,0x93,
+ 0xc0,0x8f,0x6c, 0x86,0x56,0x33, 0x86,0x56,0x33, 0xad,0x72,0x46,
+ 0x44,0x30,0x18, 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, 0x2a,0x25,0x1f, 0x92,0x8b,0x84,
+ 0x92,0x8b,0x84, 0xc2,0xbb,0xb4, 0x55,0x51,0x4c, 0x2a,0x25,0x1f,
+ 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00,
+ 0x2a,0x25,0x1f, 0x92,0x8b,0x84, 0x92,0x8b,0x84, 0xc2,0xbb,0xb4,
+ 0x92,0x8b,0x84, 0x2a,0x25,0x1f, 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,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,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00, 0x92,0x8b,0x84,
+ 0xd3,0xaf,0x93, 0xe0,0xdf,0xda, 0xd3,0xaf,0x93, 0xe0,0xdf,0xda,
+ 0xe0,0xdf,0xda, 0xd3,0xaf,0x93, 0xd3,0xaf,0x93, 0xe0,0xdf,0xda,
+ 0xd3,0xaf,0x93, 0xc0,0x8f,0x6c, 0xc2,0xbb,0xb4, 0xd3,0xaf,0x93,
+ 0xc2,0xbb,0xb4, 0xd3,0xaf,0x93, 0xa4,0x73,0x4e, 0xc0,0x8f,0x6c,
+ 0xc0,0x8f,0x6c, 0x55,0x51,0x4c, 0x00,0x00,0x00, 0x00,0x00,0x00,
+ 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00,
+ 0x00,0x00,0x00, 0x00,0x00,0x00, 0x2a,0x25,0x1f, 0xc2,0xbb,0xb4,
+ 0xe0,0xdf,0xda, 0xe0,0xdf,0xda, 0x92,0x8b,0x84, 0x2a,0x25,0x1f,
+ 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00,
+ 0x2a,0x25,0x1f, 0x92,0x8b,0x84, 0xe0,0xdf,0xda, 0xe0,0xdf,0xda,
+ 0xc2,0xbb,0xb4, 0x2a,0x25,0x1f, 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,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,0x00, 0x00,0x00,0x00, 0x92,0x8b,0x84, 0xd3,0xaf,0x93,
+ 0xd3,0xaf,0x93, 0xd3,0xaf,0x93, 0xd3,0xaf,0x93, 0xd3,0xaf,0x93,
+ 0xad,0x72,0x46, 0xd3,0xaf,0x93, 0xd3,0xaf,0x93, 0xe0,0xdf,0xda,
+ 0xad,0x72,0x46, 0x86,0x56,0x33, 0xad,0x72,0x46, 0xc0,0x8f,0x6c,
+ 0xd3,0xaf,0x93, 0xe0,0xdf,0xda, 0xd3,0xaf,0x93, 0xa4,0x73,0x4e,
+ 0xc0,0x8f,0x6c, 0xd3,0xaf,0x93, 0x66,0x44,0x29, 0x00,0x00,0x00,
+ 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00,
+ 0x00,0x00,0x00, 0x00,0x00,0x00, 0x2a,0x25,0x1f, 0xe0,0xdf,0xda,
+ 0xe0,0xdf,0xda, 0xe0,0xdf,0xda, 0x92,0x8b,0x84, 0x2a,0x25,0x1f,
+ 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00,
+ 0x2a,0x25,0x1f, 0xc2,0xbb,0xb4, 0xe0,0xdf,0xda, 0xe0,0xdf,0xda,
+ 0xe0,0xdf,0xda, 0x55,0x51,0x4c, 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,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,
+ 0x55,0x51,0x4c, 0xd3,0xaf,0x93, 0xd3,0xaf,0x93, 0xe0,0xdf,0xda,
+ 0xe0,0xdf,0xda, 0xd3,0xaf,0x93, 0xd3,0xaf,0x93, 0xd3,0xaf,0x93,
+ 0xe0,0xdf,0xda, 0xe0,0xdf,0xda, 0xe0,0xdf,0xda, 0xe0,0xdf,0xda,
+ 0xd3,0xaf,0x93, 0xc0,0x8f,0x6c, 0xad,0x72,0x46, 0xc0,0x8f,0x6c,
+ 0xd3,0xaf,0x93, 0xd3,0xaf,0x93, 0xd3,0xaf,0x93, 0x66,0x44,0x29,
+ 0x66,0x44,0x29, 0xc0,0x8f,0x6c, 0xd3,0xaf,0x93, 0x00,0x00,0x00,
+ 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00,
+ 0x00,0x00,0x00, 0x00,0x00,0x00, 0x55,0x51,0x4c, 0xe0,0xdf,0xda,
+ 0xe0,0xdf,0xda, 0xe0,0xdf,0xda, 0x92,0x8b,0x84, 0x2a,0x25,0x1f,
+ 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00,
+ 0x2a,0x25,0x1f, 0x92,0x8b,0x84, 0xe0,0xdf,0xda, 0xe0,0xdf,0xda,
+ 0xe0,0xdf,0xda, 0x55,0x51,0x4c, 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,0x00,0x00,
+ 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00,
+ 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00, 0x92,0x8b,0x84,
+ 0xd3,0xaf,0x93, 0xd3,0xaf,0x93, 0xd3,0xaf,0x93, 0xd3,0xaf,0x93,
+ 0xd3,0xaf,0x93, 0xad,0x72,0x46, 0xc0,0x8f,0x6c, 0xd3,0xaf,0x93,
+ 0xd3,0xaf,0x93, 0xe0,0xdf,0xda, 0xd3,0xaf,0x93, 0xe0,0xdf,0xda,
+ 0xe0,0xdf,0xda, 0xd3,0xaf,0x93, 0x86,0x56,0x33, 0x66,0x44,0x29,
+ 0xd3,0xaf,0x93, 0xd3,0xaf,0x93, 0xd3,0xaf,0x93, 0xc0,0x8f,0x6c,
+ 0x2a,0x25,0x1f, 0x66,0x44,0x29, 0xad,0x72,0x46, 0xa4,0x73,0x4e,
+ 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00,
+ 0x00,0x00,0x00, 0x00,0x00,0x00, 0x55,0x51,0x4c, 0xe0,0xdf,0xda,
+ 0xe0,0xdf,0xda, 0xe0,0xdf,0xda, 0x92,0x8b,0x84, 0x2a,0x25,0x1f,
+ 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00,
+ 0x2a,0x25,0x1f, 0x92,0x8b,0x84, 0xe0,0xdf,0xda, 0xe0,0xdf,0xda,
+ 0xe0,0xdf,0xda, 0x92,0x8b,0x84, 0x2a,0x25,0x1f, 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,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00,
+ 0x00,0x00,0x00, 0x00,0x00,0x00, 0xd3,0xaf,0x93, 0xd3,0xaf,0x93,
+ 0xd3,0xaf,0x93, 0xc0,0x8f,0x6c, 0xc0,0x8f,0x6c, 0x86,0x56,0x33,
+ 0xa4,0x73,0x4e, 0xc0,0x8f,0x6c, 0xa4,0x73,0x4e, 0x86,0x56,0x33,
+ 0x86,0x56,0x33, 0xe0,0xdf,0xda, 0xe0,0xdf,0xda, 0xd3,0xaf,0x93,
+ 0xe0,0xdf,0xda, 0xd3,0xaf,0x93, 0xa4,0x73,0x4e, 0x66,0x44,0x29,
+ 0x44,0x30,0x18, 0xc0,0x8f,0x6c, 0xd3,0xaf,0x93, 0xc0,0x8f,0x6c,
+ 0x55,0x51,0x4c, 0x86,0x56,0x33, 0xa4,0x73,0x4e, 0xc0,0x8f,0x6c,
+ 0x44,0x30,0x18, 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00,
+ 0x00,0x00,0x00, 0x2a,0x25,0x1f, 0x92,0x8b,0x84, 0xe0,0xdf,0xda,
+ 0xe0,0xdf,0xda, 0xe0,0xdf,0xda, 0x92,0x8b,0x84, 0x2a,0x25,0x1f,
+ 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00,
+ 0x55,0x51,0x4c, 0x92,0x8b,0x84, 0xe0,0xdf,0xda, 0xe0,0xdf,0xda,
+ 0xe0,0xdf,0xda, 0xc2,0xbb,0xb4, 0x2a,0x25,0x1f, 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,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00,
+ 0x00,0x00,0x00, 0xd3,0xaf,0x93, 0xd3,0xaf,0x93, 0xd3,0xaf,0x93,
+ 0xc0,0x8f,0x6c, 0xc0,0x8f,0x6c, 0xc0,0x8f,0x6c, 0xc0,0x8f,0x6c,
+ 0xa4,0x73,0x4e, 0x66,0x44,0x29, 0x66,0x44,0x29, 0x66,0x44,0x29,
+ 0xd3,0xaf,0x93, 0xe0,0xdf,0xda, 0xe0,0xdf,0xda, 0xe0,0xdf,0xda,
+ 0xd3,0xaf,0x93, 0xc0,0x8f,0x6c, 0xc0,0x8f,0x6c, 0xa4,0x73,0x4e,
+ 0x66,0x44,0x29, 0x86,0x56,0x33, 0xa4,0x73,0x4e, 0xd3,0xaf,0x93,
+ 0xd3,0xaf,0x93, 0xa4,0x73,0x4e, 0x86,0x56,0x33, 0xad,0x72,0x46,
+ 0xa4,0x73,0x4e, 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00,
+ 0x00,0x00,0x00, 0x2a,0x25,0x1f, 0xc2,0xbb,0xb4, 0xe0,0xdf,0xda,
+ 0xe0,0xdf,0xda, 0xe0,0xdf,0xda, 0x92,0x8b,0x84, 0x2a,0x25,0x1f,
+ 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00,
+ 0x2a,0x25,0x1f, 0x92,0x8b,0x84, 0xe0,0xdf,0xda, 0xe0,0xdf,0xda,
+ 0xe0,0xdf,0xda, 0xc2,0xbb,0xb4, 0x2a,0x25,0x1f, 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,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00,
+ 0x55,0x51,0x4c, 0xd3,0xaf,0x93, 0xd3,0xaf,0x93, 0xd3,0xaf,0x93,
+ 0xc0,0x8f,0x6c, 0xad,0x72,0x46, 0xa4,0x73,0x4e, 0x86,0x56,0x33,
+ 0x66,0x44,0x29, 0x86,0x56,0x33, 0xa4,0x73,0x4e, 0xc0,0x8f,0x6c,
+ 0xd3,0xaf,0x93, 0xd3,0xaf,0x93, 0xd3,0xaf,0x93, 0xc0,0x8f,0x6c,
+ 0xad,0x72,0x46, 0x86,0x56,0x33, 0xad,0x72,0x46, 0x86,0x56,0x33,
+ 0x66,0x44,0x29, 0x66,0x44,0x29, 0xad,0x72,0x46, 0xa4,0x73,0x4e,
+ 0xc0,0x8f,0x6c, 0xc0,0x8f,0x6c, 0xd3,0xaf,0x93, 0xad,0x72,0x46,
+ 0x86,0x56,0x33, 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00,
+ 0x00,0x00,0x00, 0x2a,0x25,0x1f, 0xe0,0xdf,0xda, 0xe0,0xdf,0xda,
+ 0xe0,0xdf,0xda, 0xe0,0xdf,0xda, 0x92,0x8b,0x84, 0x55,0x51,0x4c,
+ 0x2a,0x25,0x1f, 0x00,0x00,0x00, 0x2a,0x25,0x1f, 0x2a,0x25,0x1f,
+ 0x55,0x51,0x4c, 0x92,0x8b,0x84, 0xe0,0xdf,0xda, 0xe0,0xdf,0xda,
+ 0xe0,0xdf,0xda, 0xe0,0xdf,0xda, 0x55,0x51,0x4c, 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,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00, 0x55,0x51,0x4c,
+ 0xd3,0xaf,0x93, 0xd3,0xaf,0x93, 0xc0,0x8f,0x6c, 0xc0,0x8f,0x6c,
+ 0xc0,0x8f,0x6c, 0xa4,0x73,0x4e, 0xa4,0x73,0x4e, 0x66,0x44,0x29,
+ 0x66,0x44,0x29, 0x86,0x56,0x33, 0xc0,0x8f,0x6c, 0xc0,0x8f,0x6c,
+ 0xc0,0x8f,0x6c, 0xc0,0x8f,0x6c, 0xc0,0x8f,0x6c, 0x86,0x56,0x33,
+ 0x86,0x56,0x33, 0x86,0x56,0x33, 0x86,0x56,0x33, 0xad,0x72,0x46,
+ 0x86,0x56,0x33, 0x2a,0x25,0x1f, 0x86,0x56,0x33, 0xad,0x72,0x46,
+ 0xd3,0xaf,0x93, 0xa4,0x73,0x4e, 0xd3,0xaf,0x93, 0xc0,0x8f,0x6c,
+ 0xad,0x72,0x46, 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00,
+ 0x00,0x00,0x00, 0x2a,0x25,0x1f, 0xe0,0xdf,0xda, 0xe0,0xdf,0xda,
+ 0xe0,0xdf,0xda, 0xe0,0xdf,0xda, 0xe0,0xdf,0xda, 0x92,0x8b,0x84,
+ 0x55,0x51,0x4c, 0x2a,0x25,0x1f, 0x55,0x51,0x4c, 0x55,0x51,0x4c,
+ 0xc2,0xbb,0xb4, 0xe0,0xdf,0xda, 0xe0,0xdf,0xda, 0xe0,0xdf,0xda,
+ 0xe0,0xdf,0xda, 0xe0,0xdf,0xda, 0x55,0x51,0x4c, 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,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00, 0xd3,0xaf,0x93,
+ 0xd3,0xaf,0x93, 0xd3,0xaf,0x93, 0xa4,0x73,0x4e, 0xc0,0x8f,0x6c,
+ 0xa4,0x73,0x4e, 0x86,0x56,0x33, 0x86,0x56,0x33, 0xa4,0x73,0x4e,
+ 0xc0,0x8f,0x6c, 0xd3,0xaf,0x93, 0xd3,0xaf,0x93, 0xc0,0x8f,0x6c,
+ 0x86,0x56,0x33, 0x66,0x44,0x29, 0x66,0x44,0x29, 0x86,0x56,0x33,
+ 0x86,0x56,0x33, 0x86,0x56,0x33, 0x86,0x56,0x33, 0x86,0x56,0x33,
+ 0x86,0x56,0x33, 0x2a,0x25,0x1f, 0x66,0x44,0x29, 0xad,0x72,0x46,
+ 0xc0,0x8f,0x6c, 0xc0,0x8f,0x6c, 0xc0,0x8f,0x6c, 0xd3,0xaf,0x93,
+ 0xc0,0x8f,0x6c, 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00,
+ 0x00,0x00,0x00, 0x55,0x51,0x4c, 0xe0,0xdf,0xda, 0xe0,0xdf,0xda,
+ 0xe0,0xdf,0xda, 0xe0,0xdf,0xda, 0xe0,0xdf,0xda, 0xe0,0xdf,0xda,
+ 0xe0,0xdf,0xda, 0x92,0x8b,0x84, 0xc2,0xbb,0xb4, 0xe0,0xdf,0xda,
+ 0xe0,0xdf,0xda, 0xe0,0xdf,0xda, 0xe0,0xdf,0xda, 0xe0,0xdf,0xda,
+ 0xe0,0xdf,0xda, 0xe0,0xdf,0xda, 0x92,0x8b,0x84, 0x2a,0x25,0x1f,
+ 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, 0x92,0x8b,0x84, 0xd3,0xaf,0x93, 0xd3,0xaf,0x93,
+ 0xc0,0x8f,0x6c, 0xc0,0x8f,0x6c, 0xc0,0x8f,0x6c, 0x86,0x56,0x33,
+ 0xa4,0x73,0x4e, 0xc0,0x8f,0x6c, 0xd3,0xaf,0x93, 0xd3,0xaf,0x93,
+ 0xc2,0xbb,0xb4, 0xd3,0xaf,0x93, 0xc0,0x8f,0x6c, 0xa4,0x73,0x4e,
+ 0x66,0x44,0x29, 0x66,0x44,0x29, 0x86,0x56,0x33, 0xa4,0x73,0x4e,
+ 0x66,0x44,0x29, 0x66,0x44,0x29, 0x66,0x44,0x29, 0x86,0x56,0x33,
+ 0x66,0x44,0x29, 0x2a,0x25,0x1f, 0x44,0x30,0x18, 0xad,0x72,0x46,
+ 0xa4,0x73,0x4e, 0xc0,0x8f,0x6c, 0xc0,0x8f,0x6c, 0xd3,0xaf,0x93,
+ 0xd3,0xaf,0x93, 0x2a,0x25,0x1f, 0x00,0x00,0x00, 0x00,0x00,0x00,
+ 0x00,0x00,0x00, 0x55,0x51,0x4c, 0xc2,0xbb,0xb4, 0xe0,0xdf,0xda,
+ 0xe0,0xdf,0xda, 0xe0,0xdf,0xda, 0xe0,0xdf,0xda, 0xe0,0xdf,0xda,
+ 0xe0,0xdf,0xda, 0xe0,0xdf,0xda, 0xe0,0xdf,0xda, 0xe0,0xdf,0xda,
+ 0xe0,0xdf,0xda, 0xe0,0xdf,0xda, 0xe0,0xdf,0xda, 0xe0,0xdf,0xda,
+ 0xe0,0xdf,0xda, 0xc2,0xbb,0xb4, 0x55,0x51,0x4c, 0x2a,0x25,0x1f,
+ 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, 0xd3,0xaf,0x93, 0xd3,0xaf,0x93, 0xc0,0x8f,0x6c,
+ 0xd3,0xaf,0x93, 0xc0,0x8f,0x6c, 0xd3,0xaf,0x93, 0xc0,0x8f,0x6c,
+ 0xc0,0x8f,0x6c, 0xa4,0x73,0x4e, 0x66,0x44,0x29, 0x86,0x56,0x33,
+ 0x86,0x56,0x33, 0x86,0x56,0x33, 0x86,0x56,0x33, 0x66,0x44,0x29,
+ 0x66,0x44,0x29, 0x66,0x44,0x29, 0x86,0x56,0x33, 0x66,0x44,0x29,
+ 0x66,0x44,0x29, 0x44,0x30,0x18, 0x66,0x44,0x29, 0x44,0x30,0x18,
+ 0x44,0x30,0x18, 0x2a,0x25,0x1f, 0x66,0x44,0x29, 0xad,0x72,0x46,
+ 0xa4,0x73,0x4e, 0xa4,0x73,0x4e, 0xd3,0xaf,0x93, 0xd3,0xaf,0x93,
+ 0xad,0x72,0x46, 0x66,0x44,0x29, 0x00,0x00,0x00, 0x00,0x00,0x00,
+ 0x00,0x00,0x00, 0x2a,0x25,0x1f, 0x55,0x51,0x4c, 0x92,0x8b,0x84,
+ 0xe0,0xdf,0xda, 0xe0,0xdf,0xda, 0xe0,0xdf,0xda, 0xe0,0xdf,0xda,
+ 0xe0,0xdf,0xda, 0xe0,0xdf,0xda, 0xe0,0xdf,0xda, 0xe0,0xdf,0xda,
+ 0xe0,0xdf,0xda, 0xe0,0xdf,0xda, 0xe0,0xdf,0xda, 0xc2,0xbb,0xb4,
+ 0xc2,0xbb,0xb4, 0x55,0x51,0x4c, 0x2a,0x25,0x1f, 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,
+ 0x92,0x8b,0x84, 0xd3,0xaf,0x93, 0xc0,0x8f,0x6c, 0xc0,0x8f,0x6c,
+ 0x86,0x56,0x33, 0xa4,0x73,0x4e, 0xad,0x72,0x46, 0x66,0x44,0x29,
+ 0x86,0x56,0x33, 0x66,0x44,0x29, 0x86,0x56,0x33, 0x86,0x56,0x33,
+ 0x86,0x56,0x33, 0x86,0x56,0x33, 0x86,0x56,0x33, 0x86,0x56,0x33,
+ 0x86,0x56,0x33, 0x86,0x56,0x33, 0x86,0x56,0x33, 0x66,0x44,0x29,
+ 0x66,0x44,0x29, 0x44,0x30,0x18, 0x44,0x30,0x18, 0x2a,0x25,0x1f,
+ 0x44,0x30,0x18, 0x66,0x44,0x29, 0xa4,0x73,0x4e, 0xa4,0x73,0x4e,
+ 0xc0,0x8f,0x6c, 0xa4,0x73,0x4e, 0xad,0x72,0x46, 0xa4,0x73,0x4e,
+ 0xa4,0x73,0x4e, 0xa4,0x73,0x4e, 0x00,0x00,0x00, 0x00,0x00,0x00,
+ 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00, 0x2a,0x25,0x1f,
+ 0x55,0x51,0x4c, 0xc2,0xbb,0xb4, 0xe0,0xdf,0xda, 0xe0,0xdf,0xda,
+ 0xe0,0xdf,0xda, 0xe0,0xdf,0xda, 0xe0,0xdf,0xda, 0xe0,0xdf,0xda,
+ 0xe0,0xdf,0xda, 0xe0,0xdf,0xda, 0xc2,0xbb,0xb4, 0x92,0x8b,0x84,
+ 0x2a,0x25,0x1f, 0x2a,0x25,0x1f, 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,0x00,0x00,
+ 0xc0,0x8f,0x6c, 0xd3,0xaf,0x93, 0xc0,0x8f,0x6c, 0xa4,0x73,0x4e,
+ 0xa4,0x73,0x4e, 0xa4,0x73,0x4e, 0x66,0x44,0x29, 0x66,0x44,0x29,
+ 0x86,0x56,0x33, 0x86,0x56,0x33, 0x86,0x56,0x33, 0x86,0x56,0x33,
+ 0x86,0x56,0x33, 0x66,0x44,0x29, 0x86,0x56,0x33, 0x86,0x56,0x33,
+ 0x86,0x56,0x33, 0x86,0x56,0x33, 0x86,0x56,0x33, 0x44,0x30,0x18,
+ 0x66,0x44,0x29, 0x44,0x30,0x18, 0x2a,0x25,0x1f, 0x44,0x30,0x18,
+ 0x66,0x44,0x29, 0x86,0x56,0x33, 0xa4,0x73,0x4e, 0xad,0x72,0x46,
+ 0xa4,0x73,0x4e, 0xc0,0x8f,0x6c, 0xc0,0x8f,0x6c, 0xad,0x72,0x46,
+ 0xc0,0x8f,0x6c, 0xc0,0x8f,0x6c, 0x00,0x00,0x00, 0x00,0x00,0x00,
+ 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00,
+ 0x2a,0x25,0x1f, 0x55,0x51,0x4c, 0x92,0x8b,0x84, 0xe0,0xdf,0xda,
+ 0xe0,0xdf,0xda, 0xe0,0xdf,0xda, 0xe0,0xdf,0xda, 0xe0,0xdf,0xda,
+ 0xe0,0xdf,0xda, 0x92,0x8b,0x84, 0x55,0x51,0x4c, 0x2a,0x25,0x1f,
+ 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,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00,
+ 0xa4,0x73,0x4e, 0xd3,0xaf,0x93, 0xc0,0x8f,0x6c, 0x86,0x56,0x33,
+ 0xa4,0x73,0x4e, 0x86,0x56,0x33, 0x2a,0x25,0x1f, 0x2a,0x25,0x1f,
+ 0x2a,0x25,0x1f, 0x86,0x56,0x33, 0x86,0x56,0x33, 0x86,0x56,0x33,
+ 0x86,0x56,0x33, 0x86,0x56,0x33, 0x86,0x56,0x33, 0x86,0x56,0x33,
+ 0xad,0x72,0x46, 0xa4,0x73,0x4e, 0x44,0x30,0x18, 0x66,0x44,0x29,
+ 0x66,0x44,0x29, 0x44,0x30,0x18, 0x66,0x44,0x29, 0x86,0x56,0x33,
+ 0x86,0x56,0x33, 0x66,0x44,0x29, 0x66,0x44,0x29, 0x86,0x56,0x33,
+ 0xad,0x72,0x46, 0x66,0x44,0x29, 0x86,0x56,0x33, 0xad,0x72,0x46,
+ 0xc0,0x8f,0x6c, 0x86,0x56,0x33, 0x00,0x00,0x00, 0x00,0x00,0x00,
+ 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00,
+ 0x00,0x00,0x00, 0x2a,0x25,0x1f, 0x2a,0x25,0x1f, 0x92,0x8b,0x84,
+ 0xe0,0xdf,0xda, 0xe0,0xdf,0xda, 0xe0,0xdf,0xda, 0xe0,0xdf,0xda,
+ 0xc2,0xbb,0xb4, 0x2a,0x25,0x1f, 0x2a,0x25,0x1f, 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,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00,
+ 0x66,0x44,0x29, 0xad,0x72,0x46, 0xc0,0x8f,0x6c, 0x86,0x56,0x33,
+ 0x66,0x44,0x29, 0x66,0x44,0x29, 0x44,0x30,0x18, 0x2a,0x25,0x1f,
+ 0x2a,0x25,0x1f, 0x44,0x30,0x18, 0xad,0x72,0x46, 0x86,0x56,0x33,
+ 0x66,0x44,0x29, 0x86,0x56,0x33, 0x86,0x56,0x33, 0x86,0x56,0x33,
+ 0x86,0x56,0x33, 0x44,0x30,0x18, 0x2a,0x25,0x1f, 0x2a,0x25,0x1f,
+ 0x44,0x30,0x18, 0x86,0x56,0x33, 0x86,0x56,0x33, 0xad,0x72,0x46,
+ 0xad,0x72,0x46, 0x86,0x56,0x33, 0x66,0x44,0x29, 0x86,0x56,0x33,
+ 0x44,0x30,0x18, 0x44,0x30,0x18, 0x66,0x44,0x29, 0x86,0x56,0x33,
+ 0xad,0x72,0x46, 0xa4,0x73,0x4e, 0x00,0x00,0x00, 0x00,0x00,0x00,
+ 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00,
+ 0x00,0x00,0x00, 0x00,0x00,0x00, 0x2a,0x25,0x1f, 0x55,0x51,0x4c,
+ 0xe0,0xdf,0xda, 0xe0,0xdf,0xda, 0xe0,0xdf,0xda, 0xe0,0xdf,0xda,
+ 0x92,0x8b,0x84, 0x2a,0x25,0x1f, 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,0x00,0x00,
+ 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00,
+ 0x00,0x00,0x00, 0x86,0x56,0x33, 0x86,0x56,0x33, 0x44,0x30,0x18,
+ 0x86,0x56,0x33, 0x66,0x44,0x29, 0x2a,0x25,0x1f, 0x2a,0x25,0x1f,
+ 0x66,0x44,0x29, 0x92,0x8b,0x84, 0xc0,0x8f,0x6c, 0xad,0x72,0x46,
+ 0x86,0x56,0x33, 0x66,0x44,0x29, 0x2a,0x25,0x1f, 0xa4,0x73,0x4e,
+ 0xa4,0x73,0x4e, 0xa4,0x73,0x4e, 0x86,0x56,0x33, 0x66,0x44,0x29,
+ 0xa4,0x73,0x4e, 0xa4,0x73,0x4e, 0xc0,0x8f,0x6c, 0xc0,0x8f,0x6c,
+ 0xad,0x72,0x46, 0x66,0x44,0x29, 0x44,0x30,0x18, 0x44,0x30,0x18,
+ 0x44,0x30,0x18, 0x2a,0x25,0x1f, 0x44,0x30,0x18, 0x86,0x56,0x33,
+ 0x86,0x56,0x33, 0x86,0x56,0x33, 0x00,0x00,0x00, 0x00,0x00,0x00,
+ 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00,
+ 0x00,0x00,0x00, 0x00,0x00,0x00, 0x2a,0x25,0x1f, 0x92,0x8b,0x84,
+ 0xe0,0xdf,0xda, 0xe0,0xdf,0xda, 0xe0,0xdf,0xda, 0xe0,0xdf,0xda,
+ 0xc2,0xbb,0xb4, 0x2a,0x25,0x1f, 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,0x00,0x00,
+ 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00,
+ 0x00,0x00,0x00, 0x2a,0x25,0x1f, 0x86,0x56,0x33, 0x66,0x44,0x29,
+ 0x44,0x30,0x18, 0x44,0x30,0x18, 0x66,0x44,0x29, 0xa4,0x73,0x4e,
+ 0xd3,0xaf,0x93, 0xe0,0xdf,0xda, 0xd3,0xaf,0x93, 0xd3,0xaf,0x93,
+ 0xc0,0x8f,0x6c, 0x86,0x56,0x33, 0xd3,0xaf,0x93, 0xd3,0xaf,0x93,
+ 0xc0,0x8f,0x6c, 0xad,0x72,0x46, 0xad,0x72,0x46, 0x86,0x56,0x33,
+ 0x86,0x56,0x33, 0x86,0x56,0x33, 0xad,0x72,0x46, 0xc0,0x8f,0x6c,
+ 0xad,0x72,0x46, 0xad,0x72,0x46, 0xa4,0x73,0x4e, 0x66,0x44,0x29,
+ 0x66,0x44,0x29, 0x86,0x56,0x33, 0x44,0x30,0x18, 0x66,0x44,0x29,
+ 0x66,0x44,0x29, 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, 0x2a,0x25,0x1f, 0x92,0x8b,0x84,
+ 0xe0,0xdf,0xda, 0xe0,0xdf,0xda, 0xe0,0xdf,0xda, 0xe0,0xdf,0xda,
+ 0xc2,0xbb,0xb4, 0x2a,0x25,0x1f, 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,0x00,0x00,
+ 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00,
+ 0x00,0x00,0x00, 0x00,0x00,0x00, 0x66,0x44,0x29, 0xa4,0x73,0x4e,
+ 0x66,0x44,0x29, 0xc0,0x8f,0x6c, 0xc0,0x8f,0x6c, 0x86,0x56,0x33,
+ 0xc0,0x8f,0x6c, 0xc0,0x8f,0x6c, 0xd3,0xaf,0x93, 0xd3,0xaf,0x93,
+ 0xa4,0x73,0x4e, 0x92,0x8b,0x84, 0xa4,0x73,0x4e, 0xad,0x72,0x46,
+ 0xa4,0x73,0x4e, 0xad,0x72,0x46, 0xad,0x72,0x46, 0xa4,0x73,0x4e,
+ 0x86,0x56,0x33, 0xad,0x72,0x46, 0xc0,0x8f,0x6c, 0xc0,0x8f,0x6c,
+ 0xc0,0x8f,0x6c, 0xc0,0x8f,0x6c, 0xad,0x72,0x46, 0xad,0x72,0x46,
+ 0xc0,0x8f,0x6c, 0xc0,0x8f,0x6c, 0xc0,0x8f,0x6c, 0x2a,0x25,0x1f,
+ 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,0x00,0x00, 0x2a,0x25,0x1f, 0x55,0x51,0x4c,
+ 0xe0,0xdf,0xda, 0xe0,0xdf,0xda, 0xe0,0xdf,0xda, 0xe0,0xdf,0xda,
+ 0xc2,0xbb,0xb4, 0x2a,0x25,0x1f, 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,0x00,0x00,
+ 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00,
+ 0x00,0x00,0x00, 0x00,0x00,0x00, 0x92,0x8b,0x84, 0x66,0x44,0x29,
+ 0xd3,0xaf,0x93, 0xd3,0xaf,0x93, 0xc0,0x8f,0x6c, 0x86,0x56,0x33,
+ 0x2a,0x25,0x1f, 0x86,0x56,0x33, 0x86,0x56,0x33, 0x86,0x56,0x33,
+ 0x66,0x44,0x29, 0x86,0x56,0x33, 0x86,0x56,0x33, 0x86,0x56,0x33,
+ 0x86,0x56,0x33, 0x86,0x56,0x33, 0xad,0x72,0x46, 0xad,0x72,0x46,
+ 0xc0,0x8f,0x6c, 0xc0,0x8f,0x6c, 0xc0,0x8f,0x6c, 0xc0,0x8f,0x6c,
+ 0xad,0x72,0x46, 0xad,0x72,0x46, 0xad,0x72,0x46, 0xad,0x72,0x46,
+ 0xad,0x72,0x46, 0xad,0x72,0x46, 0xa4,0x73,0x4e, 0x44,0x30,0x18,
+ 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,0x00,0x00, 0x2a,0x25,0x1f, 0x92,0x8b,0x84,
+ 0xe0,0xdf,0xda, 0xe0,0xdf,0xda, 0xe0,0xdf,0xda, 0xe0,0xdf,0xda,
+ 0xc2,0xbb,0xb4, 0x2a,0x25,0x1f, 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,0x00,0x00,
+ 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00,
+ 0x00,0x00,0x00, 0x00,0x00,0x00, 0xc0,0x8f,0x6c, 0x92,0x8b,0x84,
+ 0xc0,0x8f,0x6c, 0xc0,0x8f,0x6c, 0xa4,0x73,0x4e, 0x44,0x30,0x18,
+ 0x2a,0x25,0x1f, 0x44,0x30,0x18, 0x2a,0x25,0x1f, 0x66,0x44,0x29,
+ 0x66,0x44,0x29, 0x86,0x56,0x33, 0x86,0x56,0x33, 0x86,0x56,0x33,
+ 0x86,0x56,0x33, 0xad,0x72,0x46, 0xad,0x72,0x46, 0xad,0x72,0x46,
+ 0xad,0x72,0x46, 0xc0,0x8f,0x6c, 0xc0,0x8f,0x6c, 0xad,0x72,0x46,
+ 0xad,0x72,0x46, 0xad,0x72,0x46, 0x86,0x56,0x33, 0x86,0x56,0x33,
+ 0x86,0x56,0x33, 0x86,0x56,0x33, 0xc0,0x8f,0x6c, 0x86,0x56,0x33,
+ 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,0x00,0x00, 0x2a,0x25,0x1f, 0x92,0x8b,0x84,
+ 0xe0,0xdf,0xda, 0xe0,0xdf,0xda, 0xe0,0xdf,0xda, 0xe0,0xdf,0xda,
+ 0xe0,0xdf,0xda, 0x2a,0x25,0x1f, 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,0x00,0x00,
+ 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00,
+ 0x00,0x00,0x00, 0x55,0x51,0x4c, 0xa4,0x73,0x4e, 0xd3,0xaf,0x93,
+ 0xd3,0xaf,0x93, 0xa4,0x73,0x4e, 0x66,0x44,0x29, 0x2a,0x25,0x1f,
+ 0x2a,0x25,0x1f, 0x66,0x44,0x29, 0x66,0x44,0x29, 0x44,0x30,0x18,
+ 0x44,0x30,0x18, 0x44,0x30,0x18, 0x66,0x44,0x29, 0x66,0x44,0x29,
+ 0xad,0x72,0x46, 0x86,0x56,0x33, 0xad,0x72,0x46, 0xad,0x72,0x46,
+ 0xad,0x72,0x46, 0xad,0x72,0x46, 0xad,0x72,0x46, 0xad,0x72,0x46,
+ 0xad,0x72,0x46, 0x86,0x56,0x33, 0x66,0x44,0x29, 0x66,0x44,0x29,
+ 0x66,0x44,0x29, 0x86,0x56,0x33, 0x86,0x56,0x33, 0x86,0x56,0x33,
+ 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,0x00,0x00, 0x2a,0x25,0x1f, 0x92,0x8b,0x84,
+ 0xe0,0xdf,0xda, 0xe0,0xdf,0xda, 0xe0,0xdf,0xda, 0xe0,0xdf,0xda,
+ 0xc2,0xbb,0xb4, 0x2a,0x25,0x1f, 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,0x00,0x00,
+ 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00,
+ 0x00,0x00,0x00, 0xd3,0xaf,0x93, 0xc0,0x8f,0x6c, 0xc0,0x8f,0x6c,
+ 0xa4,0x73,0x4e, 0xa4,0x73,0x4e, 0x66,0x44,0x29, 0x44,0x30,0x18,
+ 0x2a,0x25,0x1f, 0x86,0x56,0x33, 0x86,0x56,0x33, 0x86,0x56,0x33,
+ 0x66,0x44,0x29, 0x66,0x44,0x29, 0x66,0x44,0x29, 0x86,0x56,0x33,
+ 0x66,0x44,0x29, 0x86,0x56,0x33, 0xad,0x72,0x46, 0xad,0x72,0x46,
+ 0x86,0x56,0x33, 0xad,0x72,0x46, 0x86,0x56,0x33, 0xad,0x72,0x46,
+ 0x86,0x56,0x33, 0x66,0x44,0x29, 0x44,0x30,0x18, 0x66,0x44,0x29,
+ 0x86,0x56,0x33, 0x66,0x44,0x29, 0x86,0x56,0x33, 0xad,0x72,0x46,
+ 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,0x00,0x00, 0x2a,0x25,0x1f, 0x92,0x8b,0x84,
+ 0xe0,0xdf,0xda, 0xe0,0xdf,0xda, 0xe0,0xdf,0xda, 0xe0,0xdf,0xda,
+ 0xe0,0xdf,0xda, 0x2a,0x25,0x1f, 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,0x00,0x00,
+ 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00,
+ 0x00,0x00,0x00, 0x92,0x8b,0x84, 0xc0,0x8f,0x6c, 0xad,0x72,0x46,
+ 0x86,0x56,0x33, 0x44,0x30,0x18, 0x44,0x30,0x18, 0x2a,0x25,0x1f,
+ 0x66,0x44,0x29, 0x86,0x56,0x33, 0x66,0x44,0x29, 0x86,0x56,0x33,
+ 0x86,0x56,0x33, 0x86,0x56,0x33, 0x66,0x44,0x29, 0x86,0x56,0x33,
+ 0x66,0x44,0x29, 0x86,0x56,0x33, 0x86,0x56,0x33, 0x86,0x56,0x33,
+ 0x86,0x56,0x33, 0x86,0x56,0x33, 0x86,0x56,0x33, 0x86,0x56,0x33,
+ 0x86,0x56,0x33, 0x66,0x44,0x29, 0x86,0x56,0x33, 0x44,0x30,0x18,
+ 0x44,0x30,0x18, 0x66,0x44,0x29, 0x44,0x30,0x18, 0xad,0x72,0x46,
+ 0x66,0x44,0x29, 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, 0x2a,0x25,0x1f, 0x92,0x8b,0x84,
+ 0xe0,0xdf,0xda, 0xe0,0xdf,0xda, 0xe0,0xdf,0xda, 0xe0,0xdf,0xda,
+ 0xe0,0xdf,0xda, 0x2a,0x25,0x1f, 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,0x00,0x00,
+ 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00,
+ 0x00,0x00,0x00, 0xa4,0x73,0x4e, 0xc0,0x8f,0x6c, 0x86,0x56,0x33,
+ 0x86,0x56,0x33, 0x66,0x44,0x29, 0x86,0x56,0x33, 0x66,0x44,0x29,
+ 0xa4,0x73,0x4e, 0x44,0x30,0x18, 0x44,0x30,0x18, 0x66,0x44,0x29,
+ 0x66,0x44,0x29, 0x86,0x56,0x33, 0x86,0x56,0x33, 0x86,0x56,0x33,
+ 0x86,0x56,0x33, 0x86,0x56,0x33, 0x86,0x56,0x33, 0x86,0x56,0x33,
+ 0x86,0x56,0x33, 0xad,0x72,0x46, 0xad,0x72,0x46, 0x66,0x44,0x29,
+ 0x44,0x30,0x18, 0x66,0x44,0x29, 0x86,0x56,0x33, 0x86,0x56,0x33,
+ 0x86,0x56,0x33, 0x44,0x30,0x18, 0x66,0x44,0x29, 0x86,0x56,0x33,
+ 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,0x00,0x00, 0x2a,0x25,0x1f, 0x92,0x8b,0x84,
+ 0xe0,0xdf,0xda, 0xe0,0xdf,0xda, 0xe0,0xdf,0xda, 0xe0,0xdf,0xda,
+ 0xe0,0xdf,0xda, 0x2a,0x25,0x1f, 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,0x00,0x00,
+ 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00,
+ 0x00,0x00,0x00, 0x00,0x00,0x00, 0xc0,0x8f,0x6c, 0xa4,0x73,0x4e,
+ 0x86,0x56,0x33, 0xad,0x72,0x46, 0x86,0x56,0x33, 0xa4,0x73,0x4e,
+ 0xa4,0x73,0x4e, 0xc0,0x8f,0x6c, 0x86,0x56,0x33, 0x66,0x44,0x29,
+ 0x66,0x44,0x29, 0x66,0x44,0x29, 0x86,0x56,0x33, 0x86,0x56,0x33,
+ 0x86,0x56,0x33, 0x86,0x56,0x33, 0xad,0x72,0x46, 0xad,0x72,0x46,
+ 0x86,0x56,0x33, 0x66,0x44,0x29, 0x44,0x30,0x18, 0x44,0x30,0x18,
+ 0x66,0x44,0x29, 0x66,0x44,0x29, 0x86,0x56,0x33, 0x66,0x44,0x29,
+ 0x86,0x56,0x33, 0x2a,0x25,0x1f, 0x44,0x30,0x18, 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,0x00,0x00, 0x00,0x00,0x00, 0x2a,0x25,0x1f, 0xc2,0xbb,0xb4,
+ 0xe0,0xdf,0xda, 0xe0,0xdf,0xda, 0xe0,0xdf,0xda, 0xe0,0xdf,0xda,
+ 0xe0,0xdf,0xda, 0x2a,0x25,0x1f, 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,0x00,0x00,
+ 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00,
+ 0x00,0x00,0x00, 0x00,0x00,0x00, 0x66,0x44,0x29, 0x86,0x56,0x33,
+ 0x66,0x44,0x29, 0x86,0x56,0x33, 0x86,0x56,0x33, 0x86,0x56,0x33,
+ 0xa4,0x73,0x4e, 0xa4,0x73,0x4e, 0x66,0x44,0x29, 0x66,0x44,0x29,
+ 0x66,0x44,0x29, 0x44,0x30,0x18, 0x44,0x30,0x18, 0x44,0x30,0x18,
+ 0x66,0x44,0x29, 0x66,0x44,0x29, 0x44,0x30,0x18, 0x44,0x30,0x18,
+ 0x44,0x30,0x18, 0x44,0x30,0x18, 0x2a,0x25,0x1f, 0x2a,0x25,0x1f,
+ 0x44,0x30,0x18, 0x44,0x30,0x18, 0x66,0x44,0x29, 0x66,0x44,0x29,
+ 0x66,0x44,0x29, 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,0x00,0x00, 0x00,0x00,0x00,
+ 0x00,0x00,0x00, 0x00,0x00,0x00, 0x2a,0x25,0x1f, 0xc2,0xbb,0xb4,
+ 0xe0,0xdf,0xda, 0xe0,0xdf,0xda, 0xe0,0xdf,0xda, 0xe0,0xdf,0xda,
+ 0xe0,0xdf,0xda, 0x55,0x51,0x4c, 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,0x00,0x00,
+ 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00,
+ 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00, 0xa4,0x73,0x4e,
+ 0xa4,0x73,0x4e, 0x86,0x56,0x33, 0x86,0x56,0x33, 0x66,0x44,0x29,
+ 0x86,0x56,0x33, 0x86,0x56,0x33, 0x66,0x44,0x29, 0x66,0x44,0x29,
+ 0x66,0x44,0x29, 0x66,0x44,0x29, 0x66,0x44,0x29, 0x66,0x44,0x29,
+ 0x66,0x44,0x29, 0x2a,0x25,0x1f, 0x44,0x30,0x18, 0x44,0x30,0x18,
+ 0x44,0x30,0x18, 0x44,0x30,0x18, 0x6a,0x5a,0x1f, 0x6a,0x5a,0x1f,
+ 0x66,0x44,0x29, 0x6a,0x5a,0x1f, 0x6a,0x5a,0x1f, 0x96,0x80,0x2e,
+ 0x6a,0x5a,0x1f, 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,0x00,0x00, 0x00,0x00,0x00,
+ 0x00,0x00,0x00, 0x00,0x00,0x00, 0x2a,0x25,0x1f, 0xc2,0xbb,0xb4,
+ 0xe0,0xdf,0xda, 0xe0,0xdf,0xda, 0xe0,0xdf,0xda, 0xe0,0xdf,0xda,
+ 0xe0,0xdf,0xda, 0x2a,0x25,0x1f, 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,0x00,0x00,
+ 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00,
+ 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00, 0x86,0x56,0x33,
+ 0x66,0x44,0x29, 0x66,0x44,0x29, 0x66,0x44,0x29, 0x86,0x56,0x33,
+ 0x86,0x56,0x33, 0x44,0x30,0x18, 0x44,0x30,0x18, 0x86,0x56,0x33,
+ 0x66,0x44,0x29, 0x86,0x56,0x33, 0x86,0x56,0x33, 0x86,0x56,0x33,
+ 0x66,0x44,0x29, 0x44,0x30,0x18, 0x44,0x30,0x18, 0x44,0x30,0x18,
+ 0x44,0x30,0x18, 0x44,0x30,0x18, 0x44,0x30,0x18, 0x6a,0x5a,0x1f,
+ 0x44,0x30,0x18, 0x44,0x30,0x18, 0x6a,0x5a,0x1f, 0x96,0x80,0x2e,
+ 0x6a,0x5a,0x1f, 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,0x00,0x00, 0x00,0x00,0x00,
+ 0x00,0x00,0x00, 0x00,0x00,0x00, 0x2a,0x25,0x1f, 0xc2,0xbb,0xb4,
+ 0xe0,0xdf,0xda, 0xe0,0xdf,0xda, 0xe0,0xdf,0xda, 0xe0,0xdf,0xda,
+ 0xe0,0xdf,0xda, 0x55,0x51,0x4c, 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,0x00,0x00,
+ 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00,
+ 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00, 0x66,0x44,0x29,
+ 0x86,0x56,0x33, 0x44,0x30,0x18, 0x44,0x30,0x18, 0x6a,0x5a,0x1f,
+ 0x86,0x56,0x33, 0x66,0x44,0x29, 0x66,0x44,0x29, 0x44,0x30,0x18,
+ 0x66,0x44,0x29, 0x44,0x30,0x18, 0x44,0x30,0x18, 0x44,0x30,0x18,
+ 0x44,0x30,0x18, 0x44,0x30,0x18, 0x6a,0x5a,0x1f, 0x6a,0x5a,0x1f,
+ 0x6a,0x5a,0x1f, 0x6a,0x5a,0x1f, 0x6a,0x5a,0x1f, 0x6a,0x5a,0x1f,
+ 0x6a,0x5a,0x1f, 0x6a,0x5a,0x1f, 0x6a,0x5a,0x1f, 0x6a,0x5a,0x1f,
+ 0x6a,0x5a,0x1f, 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,0x00,0x00, 0x00,0x00,0x00,
+ 0x00,0x00,0x00, 0x00,0x00,0x00, 0x2a,0x25,0x1f, 0xc2,0xbb,0xb4,
+ 0xe0,0xdf,0xda, 0xe0,0xdf,0xda, 0xe0,0xdf,0xda, 0xe0,0xdf,0xda,
+ 0xe0,0xdf,0xda, 0x55,0x51,0x4c, 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,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,
+ 0x86,0x56,0x33, 0x44,0x30,0x18, 0x6a,0x5a,0x1f, 0x96,0x80,0x2e,
+ 0x6a,0x5a,0x1f, 0x6a,0x5a,0x1f, 0x44,0x30,0x18, 0x2a,0x25,0x1f,
+ 0x44,0x30,0x18, 0x6a,0x5a,0x1f, 0x6a,0x5a,0x1f, 0x6a,0x5a,0x1f,
+ 0x6a,0x5a,0x1f, 0x44,0x30,0x18, 0x6a,0x5a,0x1f, 0x44,0x30,0x18,
+ 0x6a,0x5a,0x1f, 0x6a,0x5a,0x1f, 0x6a,0x5a,0x1f, 0x6a,0x5a,0x1f,
+ 0x6a,0x5a,0x1f, 0x6a,0x5a,0x1f, 0x96,0x80,0x2e, 0x96,0x80,0x2e,
+ 0x44,0x30,0x18, 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,0x00,0x00, 0x00,0x00,0x00,
+ 0x00,0x00,0x00, 0x00,0x00,0x00, 0x2a,0x25,0x1f, 0xc2,0xbb,0xb4,
+ 0xe0,0xdf,0xda, 0xe0,0xdf,0xda, 0xe0,0xdf,0xda, 0xe0,0xdf,0xda,
+ 0xe0,0xdf,0xda, 0x55,0x51,0x4c, 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,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,
+ 0x86,0x56,0x33, 0x66,0x44,0x29, 0x6a,0x5a,0x1f, 0x6a,0x5a,0x1f,
+ 0x96,0x80,0x2e, 0x6a,0x5a,0x1f, 0x6a,0x5a,0x1f, 0x6a,0x5a,0x1f,
+ 0x44,0x30,0x18, 0x44,0x30,0x18, 0x6a,0x5a,0x1f, 0x44,0x30,0x18,
+ 0x6a,0x5a,0x1f, 0x6a,0x5a,0x1f, 0x6a,0x5a,0x1f, 0x6a,0x5a,0x1f,
+ 0x6a,0x5a,0x1f, 0x6a,0x5a,0x1f, 0x6a,0x5a,0x1f, 0x96,0x80,0x2e,
+ 0x6a,0x5a,0x1f, 0x6a,0x5a,0x1f, 0x6a,0x5a,0x1f, 0x96,0x80,0x2e,
+ 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,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00,
+ 0x00,0x00,0x00, 0x00,0x00,0x00, 0x55,0x51,0x4c, 0xc2,0xbb,0xb4,
+ 0xe0,0xdf,0xda, 0xe0,0xdf,0xda, 0xe0,0xdf,0xda, 0xe0,0xdf,0xda,
+ 0xe0,0xdf,0xda, 0x55,0x51,0x4c, 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,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,0x00, 0x00,0x00,0x00, 0x2a,0x25,0x1f, 0xb5,0x9b,0x3f,
+ 0xb5,0x9b,0x3f, 0x6a,0x5a,0x1f, 0x6a,0x5a,0x1f, 0x96,0x80,0x2e,
+ 0x6a,0x5a,0x1f, 0x44,0x30,0x18, 0x6a,0x5a,0x1f, 0x44,0x30,0x18,
+ 0x6a,0x5a,0x1f, 0x6a,0x5a,0x1f, 0x44,0x30,0x18, 0x6a,0x5a,0x1f,
+ 0x6a,0x5a,0x1f, 0x6a,0x5a,0x1f, 0x96,0x80,0x2e, 0x96,0x80,0x2e,
+ 0x96,0x80,0x2e, 0xb5,0x9b,0x3f, 0xb5,0x9b,0x3f, 0xb5,0x9b,0x3f,
+ 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,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00,
+ 0x00,0x00,0x00, 0x00,0x00,0x00, 0x2a,0x25,0x1f, 0xc2,0xbb,0xb4,
+ 0xe0,0xdf,0xda, 0xe0,0xdf,0xda, 0xe0,0xdf,0xda, 0xe0,0xdf,0xda,
+ 0xe0,0xdf,0xda, 0x55,0x51,0x4c, 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,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,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00, 0x96,0x80,0x2e,
+ 0x96,0x80,0x2e, 0xb5,0x9b,0x3f, 0x6a,0x5a,0x1f, 0x6a,0x5a,0x1f,
+ 0x6a,0x5a,0x1f, 0x6a,0x5a,0x1f, 0x6a,0x5a,0x1f, 0x6a,0x5a,0x1f,
+ 0x96,0x80,0x2e, 0x6a,0x5a,0x1f, 0x6a,0x5a,0x1f, 0x6a,0x5a,0x1f,
+ 0x6a,0x5a,0x1f, 0x6a,0x5a,0x1f, 0x6a,0x5a,0x1f, 0x96,0x80,0x2e,
+ 0x96,0x80,0x2e, 0x96,0x80,0x2e, 0x96,0x80,0x2e, 0x96,0x80,0x2e,
+ 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,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00,
+ 0x00,0x00,0x00, 0x00,0x00,0x00, 0x55,0x51,0x4c, 0xc2,0xbb,0xb4,
+ 0xe0,0xdf,0xda, 0xe0,0xdf,0xda, 0xe0,0xdf,0xda, 0xe0,0xdf,0xda,
+ 0xe0,0xdf,0xda, 0x55,0x51,0x4c, 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,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,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00, 0x96,0x80,0x2e,
+ 0x96,0x80,0x2e, 0x96,0x80,0x2e, 0x96,0x80,0x2e, 0x6a,0x5a,0x1f,
+ 0x6a,0x5a,0x1f, 0x6a,0x5a,0x1f, 0x6a,0x5a,0x1f, 0x6a,0x5a,0x1f,
+ 0x6a,0x5a,0x1f, 0x96,0x80,0x2e, 0x6a,0x5a,0x1f, 0x96,0x80,0x2e,
+ 0x96,0x80,0x2e, 0xb5,0x9b,0x3f, 0x96,0x80,0x2e, 0xb5,0x9b,0x3f,
+ 0xb5,0x9b,0x3f, 0xb5,0x9b,0x3f, 0xb5,0x9b,0x3f, 0x96,0x80,0x2e,
+ 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,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00,
+ 0x00,0x00,0x00, 0x00,0x00,0x00, 0x55,0x51,0x4c, 0xc2,0xbb,0xb4,
+ 0xe0,0xdf,0xda, 0xe0,0xdf,0xda, 0xe0,0xdf,0xda, 0xe0,0xdf,0xda,
+ 0xe0,0xdf,0xda, 0x55,0x51,0x4c, 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,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,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00, 0x6a,0x5a,0x1f,
+ 0x96,0x80,0x2e, 0x96,0x80,0x2e, 0x6a,0x5a,0x1f, 0x96,0x80,0x2e,
+ 0x96,0x80,0x2e, 0x6a,0x5a,0x1f, 0x96,0x80,0x2e, 0x96,0x80,0x2e,
+ 0x6a,0x5a,0x1f, 0x6a,0x5a,0x1f, 0x6a,0x5a,0x1f, 0x6a,0x5a,0x1f,
+ 0x6a,0x5a,0x1f, 0x6a,0x5a,0x1f, 0x96,0x80,0x2e, 0x96,0x80,0x2e,
+ 0xb5,0x9b,0x3f, 0x96,0x80,0x2e, 0xb5,0x9b,0x3f, 0x6a,0x5a,0x1f,
+ 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,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00,
+ 0x00,0x00,0x00, 0x00,0x00,0x00, 0x55,0x51,0x4c, 0xc2,0xbb,0xb4,
+ 0xe0,0xdf,0xda, 0xe0,0xdf,0xda, 0xe0,0xdf,0xda, 0xe0,0xdf,0xda,
+ 0xe0,0xdf,0xda, 0x55,0x51,0x4c, 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,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,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00, 0x6a,0x5a,0x1f,
+ 0xb5,0x9b,0x3f, 0x96,0x80,0x2e, 0x6a,0x5a,0x1f, 0x96,0x80,0x2e,
+ 0x6a,0x5a,0x1f, 0x96,0x80,0x2e, 0x6a,0x5a,0x1f, 0x96,0x80,0x2e,
+ 0x96,0x80,0x2e, 0xb5,0x9b,0x3f, 0x96,0x80,0x2e, 0x96,0x80,0x2e,
+ 0x6a,0x5a,0x1f, 0x96,0x80,0x2e, 0x96,0x80,0x2e, 0x96,0x80,0x2e,
+ 0x96,0x80,0x2e, 0x96,0x80,0x2e, 0xb5,0x9b,0x3f, 0x6a,0x5a,0x1f,
+ 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,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00,
+ 0x00,0x00,0x00, 0x00,0x00,0x00, 0x55,0x51,0x4c, 0xc2,0xbb,0xb4,
+ 0xe0,0xdf,0xda, 0xe0,0xdf,0xda, 0xe0,0xdf,0xda, 0xe0,0xdf,0xda,
+ 0xe0,0xdf,0xda, 0x92,0x8b,0x84, 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,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,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00,
+ 0xb5,0x9b,0x3f, 0x6a,0x5a,0x1f, 0x96,0x80,0x2e, 0x6a,0x5a,0x1f,
+ 0x6a,0x5a,0x1f, 0x96,0x80,0x2e, 0x6a,0x5a,0x1f, 0x6a,0x5a,0x1f,
+ 0x96,0x80,0x2e, 0x6a,0x5a,0x1f, 0x6a,0x5a,0x1f, 0xb5,0x9b,0x3f,
+ 0x96,0x80,0x2e, 0xb5,0x9b,0x3f, 0xb5,0x9b,0x3f, 0xb5,0x9b,0x3f,
+ 0xb5,0x9b,0x3f, 0xb5,0x9b,0x3f, 0xb5,0x9b,0x3f, 0x44,0x30,0x18,
+ 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,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00,
+ 0x00,0x00,0x00, 0x00,0x00,0x00, 0x55,0x51,0x4c, 0xe0,0xdf,0xda,
+ 0xe0,0xdf,0xda, 0xe0,0xdf,0xda, 0xe0,0xdf,0xda, 0xe0,0xdf,0xda,
+ 0xe0,0xdf,0xda, 0x55,0x51,0x4c, 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,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,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00,
+ 0x96,0x80,0x2e, 0xb5,0x9b,0x3f, 0x6a,0x5a,0x1f, 0x6a,0x5a,0x1f,
+ 0x96,0x80,0x2e, 0x96,0x80,0x2e, 0xb5,0x9b,0x3f, 0xb5,0x9b,0x3f,
+ 0x96,0x80,0x2e, 0x96,0x80,0x2e, 0x96,0x80,0x2e, 0x96,0x80,0x2e,
+ 0x96,0x80,0x2e, 0x96,0x80,0x2e, 0x96,0x80,0x2e, 0x96,0x80,0x2e,
+ 0xb5,0x9b,0x3f, 0xb5,0x9b,0x3f, 0xb5,0x9b,0x3f, 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,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00,
+ 0x00,0x00,0x00, 0x00,0x00,0x00, 0x55,0x51,0x4c, 0xc2,0xbb,0xb4,
+ 0xe0,0xdf,0xda, 0xe0,0xdf,0xda, 0xe0,0xdf,0xda, 0xe0,0xdf,0xda,
+ 0xe0,0xdf,0xda, 0x92,0x8b,0x84, 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,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,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00,
+ 0x6a,0x5a,0x1f, 0xb5,0x9b,0x3f, 0x96,0x80,0x2e, 0x96,0x80,0x2e,
+ 0xb5,0x9b,0x3f, 0x96,0x80,0x2e, 0x6a,0x5a,0x1f, 0x96,0x80,0x2e,
+ 0x96,0x80,0x2e, 0x96,0x80,0x2e, 0xb5,0x9b,0x3f, 0xb5,0x9b,0x3f,
+ 0xb5,0x9b,0x3f, 0xb5,0x9b,0x3f, 0xb5,0x9b,0x3f, 0xb5,0x9b,0x3f,
+ 0xb5,0x9b,0x3f, 0xb5,0x9b,0x3f, 0x96,0x80,0x2e, 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,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00,
+ 0x00,0x00,0x00, 0x00,0x00,0x00, 0x55,0x51,0x4c, 0xe0,0xdf,0xda,
+ 0xe0,0xdf,0xda, 0xe0,0xdf,0xda, 0xe0,0xdf,0xda, 0xe0,0xdf,0xda,
+ 0xe0,0xdf,0xda, 0x55,0x51,0x4c, 0x2a,0x25,0x1f, 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,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,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00,
+ 0x66,0x44,0x29, 0xb5,0x9b,0x3f, 0xb5,0x9b,0x3f, 0x96,0x80,0x2e,
+ 0x96,0x80,0x2e, 0xb5,0x9b,0x3f, 0x96,0x80,0x2e, 0x96,0x80,0x2e,
+ 0x6a,0x5a,0x1f, 0x6a,0x5a,0x1f, 0x96,0x80,0x2e, 0x6a,0x5a,0x1f,
+ 0x96,0x80,0x2e, 0x96,0x80,0x2e, 0xb5,0x9b,0x3f, 0xb5,0x9b,0x3f,
+ 0xb5,0x9b,0x3f, 0xb5,0x9b,0x3f, 0x96,0x80,0x2e, 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,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00,
+ 0x00,0x00,0x00, 0x00,0x00,0x00, 0x55,0x51,0x4c, 0xc2,0xbb,0xb4,
+ 0xe0,0xdf,0xda, 0xe0,0xdf,0xda, 0xe0,0xdf,0xda, 0xe0,0xdf,0xda,
+ 0xe0,0xdf,0xda, 0x92,0x8b,0x84, 0x2a,0x25,0x1f, 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,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,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00,
+ 0x00,0x00,0x00, 0xb5,0x9b,0x3f, 0x96,0x80,0x2e, 0xb5,0x9b,0x3f,
+ 0x96,0x80,0x2e, 0x6a,0x5a,0x1f, 0xb5,0x9b,0x3f, 0xb5,0x9b,0x3f,
+ 0xb5,0x9b,0x3f, 0x96,0x80,0x2e, 0xb5,0x9b,0x3f, 0x96,0x80,0x2e,
+ 0x96,0x80,0x2e, 0x96,0x80,0x2e, 0x96,0x80,0x2e, 0xb5,0x9b,0x3f,
+ 0xb5,0x9b,0x3f, 0x96,0x80,0x2e, 0x96,0x80,0x2e, 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,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00,
+ 0x00,0x00,0x00, 0x00,0x00,0x00, 0x55,0x51,0x4c, 0xe0,0xdf,0xda,
+ 0xe0,0xdf,0xda, 0xe0,0xdf,0xda, 0xe0,0xdf,0xda, 0xe0,0xdf,0xda,
+ 0xe0,0xdf,0xda, 0x55,0x51,0x4c, 0x2a,0x25,0x1f, 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,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,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00,
+ 0x00,0x00,0x00, 0x6a,0x5a,0x1f, 0x96,0x80,0x2e, 0xb5,0x9b,0x3f,
+ 0xb5,0x9b,0x3f, 0x96,0x80,0x2e, 0x96,0x80,0x2e, 0x96,0x80,0x2e,
+ 0x6a,0x5a,0x1f, 0x96,0x80,0x2e, 0xb5,0x9b,0x3f, 0xb5,0x9b,0x3f,
+ 0xb5,0x9b,0x3f, 0xb5,0x9b,0x3f, 0xb5,0x9b,0x3f, 0xb5,0x9b,0x3f,
+ 0xb5,0x9b,0x3f, 0xb5,0x9b,0x3f, 0x6a,0x5a,0x1f, 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,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00,
+ 0x00,0x00,0x00, 0x00,0x00,0x00, 0x55,0x51,0x4c, 0xe0,0xdf,0xda,
+ 0xe0,0xdf,0xda, 0xe0,0xdf,0xda, 0xe0,0xdf,0xda, 0xe0,0xdf,0xda,
+ 0xe0,0xdf,0xda, 0x92,0x8b,0x84, 0x2a,0x25,0x1f, 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,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,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00,
+ 0x00,0x00,0x00, 0x6a,0x5a,0x1f, 0xb5,0x9b,0x3f, 0x96,0x80,0x2e,
+ 0x96,0x80,0x2e, 0xb5,0x9b,0x3f, 0xb5,0x9b,0x3f, 0x96,0x80,0x2e,
+ 0x96,0x80,0x2e, 0xb5,0x9b,0x3f, 0x6a,0x5a,0x1f, 0x6a,0x5a,0x1f,
+ 0xb5,0x9b,0x3f, 0x96,0x80,0x2e, 0x96,0x80,0x2e, 0xb5,0x9b,0x3f,
+ 0xb5,0x9b,0x3f, 0x96,0x80,0x2e, 0x6a,0x5a,0x1f, 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,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00,
+ 0x00,0x00,0x00, 0x2a,0x25,0x1f, 0x55,0x51,0x4c, 0xe0,0xdf,0xda,
+ 0xe0,0xdf,0xda, 0xe0,0xdf,0xda, 0xe0,0xdf,0xda, 0xe0,0xdf,0xda,
+ 0xe0,0xdf,0xda, 0x92,0x8b,0x84, 0x2a,0x25,0x1f, 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,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,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00,
+ 0x00,0x00,0x00, 0x6a,0x5a,0x1f, 0xb5,0x9b,0x3f, 0xb5,0x9b,0x3f,
+ 0x96,0x80,0x2e, 0x6a,0x5a,0x1f, 0xb5,0x9b,0x3f, 0x96,0x80,0x2e,
+ 0xb5,0x9b,0x3f, 0xb5,0x9b,0x3f, 0xb5,0x9b,0x3f, 0xb5,0x9b,0x3f,
+ 0xb5,0x9b,0x3f, 0x6a,0x5a,0x1f, 0xb5,0x9b,0x3f, 0xb5,0x9b,0x3f,
+ 0xb5,0x9b,0x3f, 0xb5,0x9b,0x3f, 0x2a,0x25,0x1f, 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,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00,
+ 0x00,0x00,0x00, 0x2a,0x25,0x1f, 0x55,0x51,0x4c, 0xe0,0xdf,0xda,
+ 0xe0,0xdf,0xda, 0xe0,0xdf,0xda, 0xe0,0xdf,0xda, 0xe0,0xdf,0xda,
+ 0xe0,0xdf,0xda, 0x92,0x8b,0x84, 0x2a,0x25,0x1f, 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,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,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00,
+ 0x00,0x00,0x00, 0x00,0x00,0x00, 0xb5,0x9b,0x3f, 0xb5,0x9b,0x3f,
+ 0xb5,0x9b,0x3f, 0xb5,0x9b,0x3f, 0x96,0x80,0x2e, 0xa4,0x73,0x4e,
+ 0x96,0x80,0x2e, 0xb5,0x9b,0x3f, 0xa4,0x73,0x4e, 0xb5,0x9b,0x3f,
+ 0xb5,0x9b,0x3f, 0xb5,0x9b,0x3f, 0xb5,0x9b,0x3f, 0xb5,0x9b,0x3f,
+ 0xb5,0x9b,0x3f, 0xb5,0x9b,0x3f, 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,0x00,0x00,
+ 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00,
+ 0x00,0x00,0x00, 0x2a,0x25,0x1f, 0x55,0x51,0x4c, 0xe0,0xdf,0xda,
+ 0xe0,0xdf,0xda, 0xe0,0xdf,0xda, 0xe0,0xdf,0xda, 0xe0,0xdf,0xda,
+ 0xe0,0xdf,0xda, 0x92,0x8b,0x84, 0x2a,0x25,0x1f, 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,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,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00,
+ 0x00,0x00,0x00, 0x00,0x00,0x00, 0xb5,0x9b,0x3f, 0xb5,0x9b,0x3f,
+ 0x96,0x80,0x2e, 0x96,0x80,0x2e, 0xb5,0x9b,0x3f, 0xb5,0x9b,0x3f,
+ 0xb5,0x9b,0x3f, 0x96,0x80,0x2e, 0x96,0x80,0x2e, 0xb5,0x9b,0x3f,
+ 0x96,0x80,0x2e, 0x96,0x80,0x2e, 0xb5,0x9b,0x3f, 0x96,0x80,0x2e,
+ 0x96,0x80,0x2e, 0x96,0x80,0x2e, 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,0x00,0x00,
+ 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00,
+ 0x00,0x00,0x00, 0x2a,0x25,0x1f, 0x92,0x8b,0x84, 0xe0,0xdf,0xda,
+ 0xe0,0xdf,0xda, 0xe0,0xdf,0xda, 0xe0,0xdf,0xda, 0xe0,0xdf,0xda,
+ 0xe0,0xdf,0xda, 0x92,0x8b,0x84, 0x2a,0x25,0x1f, 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,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,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00,
+ 0x00,0x00,0x00, 0x00,0x00,0x00, 0x96,0x80,0x2e, 0xb5,0x9b,0x3f,
+ 0xb5,0x9b,0x3f, 0x96,0x80,0x2e, 0x96,0x80,0x2e, 0x96,0x80,0x2e,
+ 0xb5,0x9b,0x3f, 0xb5,0x9b,0x3f, 0xb5,0x9b,0x3f, 0xb5,0x9b,0x3f,
+ 0xb5,0x9b,0x3f, 0xb5,0x9b,0x3f, 0xb5,0x9b,0x3f, 0xb5,0x9b,0x3f,
+ 0xb5,0x9b,0x3f, 0x96,0x80,0x2e, 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,0x00,0x00,
+ 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00,
+ 0x00,0x00,0x00, 0x2a,0x25,0x1f, 0x55,0x51,0x4c, 0xe0,0xdf,0xda,
+ 0xe0,0xdf,0xda, 0xe0,0xdf,0xda, 0xe0,0xdf,0xda, 0xe0,0xdf,0xda,
+ 0xe0,0xdf,0xda, 0x92,0x8b,0x84, 0x2a,0x25,0x1f, 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,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,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00,
+ 0x00,0x00,0x00, 0x00,0x00,0x00, 0x96,0x80,0x2e, 0xb5,0x9b,0x3f,
+ 0xb5,0x9b,0x3f, 0xb5,0x9b,0x3f, 0xb5,0x9b,0x3f, 0x96,0x80,0x2e,
+ 0xb5,0x9b,0x3f, 0x6a,0x5a,0x1f, 0x6a,0x5a,0x1f, 0xb5,0x9b,0x3f,
+ 0x96,0x80,0x2e, 0xb5,0x9b,0x3f, 0xb5,0x9b,0x3f, 0xb5,0x9b,0x3f,
+ 0xb5,0x9b,0x3f, 0x6a,0x5a,0x1f, 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,0x00,0x00,
+ 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00,
+ 0x00,0x00,0x00, 0x2a,0x25,0x1f, 0x92,0x8b,0x84, 0xe0,0xdf,0xda,
+ 0xe0,0xdf,0xda, 0xe0,0xdf,0xda, 0xc2,0xbb,0xb4, 0xe0,0xdf,0xda,
+ 0xe0,0xdf,0xda, 0xc2,0xbb,0xb4, 0x2a,0x25,0x1f, 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,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,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00,
+ 0x00,0x00,0x00, 0x00,0x00,0x00, 0x96,0x80,0x2e, 0xb5,0x9b,0x3f,
+ 0x96,0x80,0x2e, 0x96,0x80,0x2e, 0xb5,0x9b,0x3f, 0xb5,0x9b,0x3f,
+ 0xb5,0x9b,0x3f, 0xb5,0x9b,0x3f, 0xb5,0x9b,0x3f, 0x96,0x80,0x2e,
+ 0x6a,0x5a,0x1f, 0xb5,0x9b,0x3f, 0xb5,0x9b,0x3f, 0xb5,0x9b,0x3f,
+ 0x96,0x80,0x2e, 0x6a,0x5a,0x1f, 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,0x00,0x00,
+ 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00,
+ 0x00,0x00,0x00, 0x2a,0x25,0x1f, 0x92,0x8b,0x84, 0xe0,0xdf,0xda,
+ 0xc2,0xbb,0xb4, 0x2a,0x25,0x1f, 0x2a,0x25,0x1f, 0x92,0x8b,0x84,
+ 0xe0,0xdf,0xda, 0x92,0x8b,0x84, 0x2a,0x25,0x1f, 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,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,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00,
+ 0x00,0x00,0x00, 0x00,0x00,0x00, 0x96,0x80,0x2e, 0xb5,0x9b,0x3f,
+ 0xb5,0x9b,0x3f, 0x96,0x80,0x2e, 0x96,0x80,0x2e, 0xb5,0x9b,0x3f,
+ 0x96,0x80,0x2e, 0x96,0x80,0x2e, 0xb5,0x9b,0x3f, 0xb5,0x9b,0x3f,
+ 0xb5,0x9b,0x3f, 0xb5,0x9b,0x3f, 0xb5,0x9b,0x3f, 0xb5,0x9b,0x3f,
+ 0xb5,0x9b,0x3f, 0x6a,0x5a,0x1f, 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,0x00,0x00,
+ 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00,
+ 0x00,0x00,0x00, 0x2a,0x25,0x1f, 0x55,0x51,0x4c, 0xc2,0xbb,0xb4,
+ 0x92,0x8b,0x84, 0x2a,0x25,0x1f, 0x2a,0x25,0x1f, 0x55,0x51,0x4c,
+ 0xe0,0xdf,0xda, 0x92,0x8b,0x84, 0x2a,0x25,0x1f, 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,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,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00,
+ 0x00,0x00,0x00, 0x00,0x00,0x00, 0x44,0x30,0x18, 0xb5,0x9b,0x3f,
+ 0xb5,0x9b,0x3f, 0xb5,0x9b,0x3f, 0xb5,0x9b,0x3f, 0xb5,0x9b,0x3f,
+ 0xb5,0x9b,0x3f, 0x96,0x80,0x2e, 0xb5,0x9b,0x3f, 0x96,0x80,0x2e,
+ 0x96,0x80,0x2e, 0xb5,0x9b,0x3f, 0x96,0x80,0x2e, 0xb5,0x9b,0x3f,
+ 0x96,0x80,0x2e, 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,0x00,0x00, 0x00,0x00,0x00,
+ 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00,
+ 0x00,0x00,0x00, 0x00,0x00,0x00, 0x55,0x51,0x4c, 0xc2,0xbb,0xb4,
+ 0x92,0x8b,0x84, 0x55,0x51,0x4c, 0x55,0x51,0x4c, 0x92,0x8b,0x84,
+ 0xe0,0xdf,0xda, 0x55,0x51,0x4c, 0x2a,0x25,0x1f, 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,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,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00,
+ 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00, 0xb5,0x9b,0x3f,
+ 0xb5,0x9b,0x3f, 0x96,0x80,0x2e, 0x96,0x80,0x2e, 0xb5,0x9b,0x3f,
+ 0xb5,0x9b,0x3f, 0xb5,0x9b,0x3f, 0xb5,0x9b,0x3f, 0xb5,0x9b,0x3f,
+ 0xb5,0x9b,0x3f, 0xb5,0x9b,0x3f, 0xb5,0x9b,0x3f, 0xb5,0x9b,0x3f,
+ 0xb5,0x9b,0x3f, 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,0x00,0x00, 0x00,0x00,0x00,
+ 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00,
+ 0x00,0x00,0x00, 0x00,0x00,0x00, 0x2a,0x25,0x1f, 0x92,0x8b,0x84,
+ 0xc2,0xbb,0xb4, 0xc2,0xbb,0xb4, 0x92,0x8b,0x84, 0xe0,0xdf,0xda,
+ 0x92,0x8b,0x84, 0x55,0x51,0x4c, 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,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,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00,
+ 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00, 0xb5,0x9b,0x3f,
+ 0xb5,0x9b,0x3f, 0xb5,0x9b,0x3f, 0xb5,0x9b,0x3f, 0x6a,0x5a,0x1f,
+ 0x96,0x80,0x2e, 0xb5,0x9b,0x3f, 0x96,0x80,0x2e, 0x96,0x80,0x2e,
+ 0xb5,0x9b,0x3f, 0xb5,0x9b,0x3f, 0xb5,0x9b,0x3f, 0xb5,0x9b,0x3f,
+ 0x96,0x80,0x2e, 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,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, 0x2a,0x25,0x1f,
+ 0x55,0x51,0x4c, 0x92,0x8b,0x84, 0x92,0x8b,0x84, 0x55,0x51,0x4c,
+ 0x2a,0x25,0x1f, 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,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,0x00,
+ 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00,
+ 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00, 0x96,0x80,0x2e,
+ 0xb5,0x9b,0x3f, 0xb5,0x9b,0x3f, 0xb5,0x9b,0x3f, 0xb5,0x9b,0x3f,
+ 0xb5,0x9b,0x3f, 0xb5,0x9b,0x3f, 0x6a,0x5a,0x1f, 0x96,0x80,0x2e,
+ 0x96,0x80,0x2e, 0x96,0x80,0x2e, 0x96,0x80,0x2e, 0x96,0x80,0x2e,
+ 0x96,0x80,0x2e, 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,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,0x00,
+ 0x00,0x00,0x00, 0x2a,0x25,0x1f, 0x2a,0x25,0x1f, 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,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,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, 0x6a,0x5a,0x1f,
+ 0xb5,0x9b,0x3f, 0xb5,0x9b,0x3f, 0xb5,0x9b,0x3f, 0x6a,0x5a,0x1f,
+ 0x96,0x80,0x2e, 0xb5,0x9b,0x3f, 0xb5,0x9b,0x3f, 0x96,0x80,0x2e,
+ 0xb5,0x9b,0x3f, 0x96,0x80,0x2e, 0xb5,0x9b,0x3f, 0x96,0x80,0x2e,
+ 0x96,0x80,0x2e, 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,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,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, 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00,
- 0x00,0x00,0x00, 0x00,0x00,0x00, 0x77,0x79,0x76, 0x78,0x7a,0x77,
0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00,
- 0x82,0x83,0x81, 0x79,0x7b,0x78, 0x00,0x00,0x00, 0x00,0x00,0x00,
};
diff --git a/src/icon.c b/src/icon.c
index 14c607c2..10145a50 100644
--- a/src/icon.c
+++ b/src/icon.c
@@ -1,5 +1,5 @@
-static int icon_w = 32;
-static int icon_h = 32;
+static int icon_w = 64;
+static int icon_h = 64;
static unsigned char icon_data[] = {
0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00,
@@ -28,232 +28,1000 @@ static unsigned char icon_data[] = {
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,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00,
- 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00, 0xa2,0x86,0x73,
- 0xa9,0x8d,0x7a, 0xbd,0xa0,0x8c, 0xda,0xba,0xa0, 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,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,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00,
0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00,
- 0xbd,0x8d,0x67, 0xd7,0xb9,0xa5, 0xeb,0xd8,0xcd, 0xd3,0xbf,0xae,
- 0xbd,0xa0,0x8c, 0xeb,0xd8,0xcd, 0xc2,0x9d,0x86, 0x95,0x5d,0x38,
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,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,0x00, 0x00,0x00,0x00,
- 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00, 0x9b,0x7e,0x66,
- 0xc5,0x9e,0x81, 0xd3,0xb3,0x99, 0xd4,0xac,0x8e, 0xee,0xdc,0xd1,
- 0xb9,0x93,0x76, 0xad,0x71,0x45, 0xd4,0xac,0x8e, 0xb9,0x93,0x76,
- 0xa3,0x77,0x58, 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00,
- 0x39,0x1d,0x2d, 0x55,0x20,0x22, 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,0x00,0x00,
0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00,
- 0x00,0x00,0x00, 0x00,0x00,0x00, 0xda,0xb4,0x9c, 0xd3,0xa3,0x83,
- 0xaf,0x91,0x78, 0xa7,0x83,0x6d, 0xc4,0xa7,0x93, 0xee,0xe2,0xd5,
- 0xeb,0xd8,0xcd, 0x8c,0x60,0x3d, 0x9b,0x7e,0x66, 0xce,0x9f,0x7e,
- 0x84,0x54,0x33, 0xba,0x83,0x5b, 0x00,0x00,0x00, 0x00,0x00,0x00,
- 0x24,0x1c,0x35, 0x00,0x0f,0x32, 0x29,0x18,0x2e, 0x55,0x20,0x22,
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,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00,
- 0x00,0x00,0x00, 0xd3,0xb3,0x99, 0xca,0x93,0x6f, 0xc4,0x94,0x6e,
- 0x98,0x66,0x45, 0x78,0x50,0x2d, 0xd7,0xb9,0xa5, 0xee,0xdc,0xd1,
- 0xc4,0x9b,0x79, 0xa1,0x6d,0x45, 0x66,0x40,0x24, 0xb8,0x7a,0x4f,
- 0xcf,0xa6,0x83, 0x98,0x6d,0x4e, 0x00,0x00,0x00, 0x00,0x00,0x00,
- 0x30,0x1c,0x2f, 0x08,0x13,0x30, 0x00,0x0f,0x32, 0x00,0x0f,0x32,
- 0x39,0x1d,0x2d, 0x52,0x1c,0x1a, 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,0x00,0x00,
- 0x9e,0x7b,0x65, 0xb9,0x89,0x64, 0xaa,0x7d,0x5e, 0x9e,0x72,0x53,
- 0x88,0x5e,0x40, 0xc4,0xa7,0x93, 0xb9,0x89,0x64, 0x90,0x6c,0x51,
- 0x7f,0x50,0x2f, 0x90,0x5e,0x37, 0x75,0x4d,0x30, 0x7f,0x50,0x2f,
- 0xd3,0xa3,0x83, 0xd4,0xac,0x8e, 0x00,0x00,0x00, 0x00,0x00,0x00,
- 0x29,0x18,0x2e, 0x08,0x13,0x30, 0x08,0x13,0x30, 0x08,0x13,0x30,
- 0x00,0x0f,0x32, 0x08,0x13,0x30, 0x49,0x1e,0x2b, 0x49,0x1a,0x16,
0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00,
- 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00, 0xda,0xba,0xa0,
- 0xd4,0xac,0x8e, 0xc4,0x9b,0x79, 0xaa,0x7d,0x5e, 0xaa,0x7d,0x5e,
- 0xbd,0xa0,0x8c, 0x8c,0x60,0x3d, 0x70,0x49,0x2c, 0x89,0x60,0x42,
- 0x57,0x38,0x20, 0x6c,0x45,0x29, 0x66,0x40,0x24, 0x51,0x35,0x21,
- 0x7e,0x55,0x38, 0xce,0x9f,0x7e, 0xc2,0x8a,0x61, 0x00,0x00,0x00,
- 0x30,0x1c,0x2f, 0x00,0x0f,0x32, 0x00,0x0f,0x32, 0x08,0x13,0x30,
- 0x00,0x0f,0x32, 0x00,0x0f,0x32, 0x08,0x13,0x30, 0x08,0x13,0x30,
- 0x59,0x25,0x2b, 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00,
- 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00, 0xcb,0x9a,0x74,
- 0xb7,0x81,0x58, 0x8c,0x60,0x3d, 0x79,0x4b,0x2b, 0x89,0x58,0x31,
- 0x89,0x58,0x31, 0x7f,0x50,0x2f, 0x9e,0x64,0x39, 0x75,0x4c,0x2a,
- 0x51,0x35,0x21, 0x84,0x54,0x33, 0x54,0x36,0x1d, 0x98,0x6d,0x4e,
- 0xb4,0x7f,0x5c, 0xba,0x83,0x5b, 0xb8,0x7a,0x4f, 0x00,0x00,0x00,
- 0x3e,0x28,0x36, 0x08,0x13,0x30, 0x00,0x0f,0x32, 0x08,0x13,0x30,
- 0x00,0x0f,0x32, 0x00,0x0f,0x32, 0x00,0x0f,0x32, 0x08,0x13,0x30,
- 0x20,0x1f,0x36, 0x35,0x19,0x12, 0x00,0x00,0x00, 0x00,0x00,0x00,
- 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00, 0xc2,0x8a,0x61,
- 0x89,0x60,0x42, 0x84,0x54,0x33, 0x7f,0x50,0x2f, 0x86,0x56,0x35,
- 0x8d,0x5b,0x35, 0x75,0x4c,0x2a, 0x8d,0x5b,0x35, 0x5c,0x38,0x22,
- 0x5e,0x3f,0x27, 0x75,0x4d,0x30, 0x9d,0x64,0x3f, 0x75,0x4c,0x2a,
- 0x78,0x50,0x2d, 0x7f,0x50,0x2f, 0xb7,0x81,0x58, 0x00,0x00,0x00,
- 0x46,0x35,0x42, 0x04,0x18,0x3a, 0x08,0x13,0x30, 0x5d,0x30,0x28,
- 0x20,0x1f,0x36, 0x08,0x13,0x30, 0x08,0x13,0x30, 0x04,0x18,0x3a,
- 0x19,0x1c,0x37, 0x3a,0x1d,0x16, 0x00,0x00,0x00, 0x00,0x00,0x00,
- 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00, 0x91,0x5f,0x3e,
- 0x84,0x54,0x33, 0x89,0x58,0x31, 0x7e,0x6e,0x64, 0xc4,0x94,0x6e,
- 0x78,0x50,0x2d, 0x92,0x6f,0x59, 0xa1,0x7c,0x60, 0x9c,0x6f,0x4b,
- 0x8d,0x5b,0x35, 0xbc,0x7f,0x53, 0xad,0x71,0x45, 0x75,0x4d,0x30,
- 0x51,0x35,0x21, 0x4b,0x2f,0x1c, 0x70,0x49,0x2c, 0x00,0x00,0x00,
- 0x59,0x44,0x4d, 0x1e,0x28,0x42, 0x1e,0x28,0x42, 0x48,0x19,0x10,
- 0x42,0x19,0x12, 0x53,0x2b,0x30, 0x0c,0x26,0x48, 0x1e,0x28,0x42,
- 0x24,0x2d,0x48, 0x5f,0x2c,0x1d, 0x00,0x00,0x00, 0x00,0x00,0x00,
- 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00, 0x89,0x58,0x31,
- 0xa1,0x84,0x6c, 0xc4,0x94,0x6e, 0x88,0x64,0x44, 0xb5,0x8f,0x73,
- 0x9e,0x72,0x53, 0xa1,0x6d,0x45, 0x93,0x60,0x3a, 0xad,0x71,0x45,
- 0xb4,0x7f,0x5c, 0xbd,0x8d,0x67, 0xc2,0x8a,0x61, 0xb3,0x76,0x4b,
- 0xb8,0x7a,0x4f, 0x88,0x64,0x44, 0x00,0x00,0x00, 0x00,0x00,0x00,
- 0x61,0x50,0x52, 0x1c,0x34,0x52, 0x1c,0x34,0x52, 0x54,0x27,0x16,
- 0x29,0x17,0x09, 0x5d,0x30,0x28, 0x1c,0x34,0x52, 0x1c,0x34,0x52,
- 0x24,0x35,0x4f, 0x69,0x34,0x24, 0x00,0x00,0x00, 0x00,0x00,0x00,
- 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00, 0xa7,0x83,0x6d,
- 0xac,0x86,0x6a, 0x74,0x47,0x2d, 0x84,0x54,0x33, 0x5c,0x38,0x22,
- 0x54,0x36,0x1d, 0x6c,0x45,0x29, 0x96,0x63,0x3c, 0xa3,0x6e,0x41,
- 0xb3,0x76,0x4b, 0xb3,0x76,0x4b, 0xa2,0x68,0x3d, 0x7c,0x4e,0x2d,
- 0x63,0x3e,0x27, 0x96,0x63,0x3c, 0x00,0x00,0x00, 0x00,0x00,0x00,
- 0x6b,0x5d,0x59, 0x22,0x42,0x5f, 0x22,0x42,0x5f, 0x5d,0x34,0x1a,
- 0x38,0x23,0x0f, 0x5c,0x38,0x22, 0x22,0x42,0x5f, 0x22,0x42,0x5f,
- 0x2c,0x45,0x5e, 0x6f,0x3e,0x2b, 0x00,0x00,0x00, 0x00,0x00,0x00,
- 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00, 0xb7,0x81,0x58,
- 0x98,0x74,0x59, 0x6c,0x45,0x29, 0x4b,0x35,0x25, 0x78,0x50,0x2d,
- 0x78,0x50,0x2d, 0x78,0x50,0x2d, 0x7f,0x50,0x2f, 0x84,0x54,0x33,
- 0x8d,0x5b,0x35, 0x96,0x63,0x3c, 0x74,0x47,0x2d, 0x65,0x45,0x26,
- 0x65,0x45,0x26, 0x7c,0x4e,0x2d, 0x00,0x00,0x00, 0x00,0x00,0x00,
- 0x77,0x69,0x64, 0x30,0x4e,0x6d, 0x32,0x52,0x6b, 0x69,0x42,0x26,
- 0x49,0x31,0x11, 0x6c,0x47,0x2f, 0x27,0x4f,0x6d, 0x27,0x4f,0x6d,
- 0x32,0x52,0x6b, 0x70,0x49,0x2c, 0x00,0x00,0x00, 0x00,0x00,0x00,
- 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00, 0xb7,0x81,0x58,
- 0x8a,0x5a,0x39, 0x8a,0x5a,0x39, 0x91,0x5f,0x3e, 0x5e,0x3f,0x27,
- 0x5c,0x38,0x22, 0x89,0x58,0x31, 0x89,0x58,0x31, 0x95,0x5d,0x38,
- 0x9d,0x64,0x3f, 0x65,0x45,0x26, 0x4b,0x2f,0x1c, 0x7f,0x50,0x2f,
- 0x78,0x50,0x2d, 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00,
- 0x77,0x69,0x64, 0x36,0x5c,0x7a, 0x3e,0x5e,0x78, 0x76,0x52,0x2e,
- 0x5d,0x42,0x22, 0x75,0x4d,0x30, 0x36,0x5c,0x7a, 0x36,0x5c,0x7a,
- 0x3e,0x5e,0x78, 0x74,0x47,0x2d, 0x00,0x00,0x00, 0x00,0x00,0x00,
- 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00,
- 0x89,0x58,0x31, 0x63,0x3e,0x27, 0xa8,0x6d,0x42, 0x4b,0x2f,0x1c,
- 0x65,0x45,0x26, 0x70,0x49,0x2c, 0x51,0x35,0x21, 0x78,0x50,0x2d,
- 0x42,0x30,0x14, 0x49,0x31,0x11, 0x59,0x44,0x22, 0x7c,0x5c,0x2a,
- 0x8a,0x71,0x27, 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00,
- 0x71,0x67,0x5c, 0x37,0x52,0x66, 0x3f,0x55,0x64, 0x80,0x55,0x27,
- 0x64,0x4c,0x1f, 0x7e,0x59,0x2e, 0x37,0x52,0x66, 0x37,0x52,0x66,
- 0x3f,0x55,0x64, 0x6c,0x47,0x2f, 0x00,0x00,0x00, 0x00,0x00,0x00,
- 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00,
- 0x70,0x49,0x2c, 0x65,0x45,0x26, 0x65,0x45,0x26, 0x63,0x3e,0x27,
- 0x76,0x4d,0x25, 0x5d,0x42,0x22, 0x5e,0x3f,0x27, 0x4e,0x43,0x18,
- 0x4e,0x43,0x18, 0x6a,0x5b,0x1c, 0x4e,0x43,0x18, 0x5f,0x51,0x19,
- 0x8a,0x76,0x2a, 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00,
- 0x63,0x38,0x19, 0x34,0x11,0x04, 0x32,0x0f,0x00, 0x86,0x58,0x1e,
- 0x74,0x59,0x25, 0x86,0x58,0x1e, 0x34,0x15,0x00, 0x32,0x0f,0x00,
- 0x34,0x15,0x00, 0x4e,0x31,0x18, 0x00,0x00,0x00, 0x00,0x00,0x00,
- 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00,
- 0x00,0x00,0x00, 0x00,0x00,0x00, 0x7e,0x6c,0x27, 0x5a,0x4d,0x1c,
- 0x4d,0x3e,0x15, 0x67,0x58,0x21, 0x5a,0x4d,0x1c, 0x57,0x4b,0x1a,
- 0x5f,0x51,0x19, 0x64,0x55,0x1e, 0x5a,0x4d,0x1c, 0x8a,0x71,0x27,
- 0x8e,0x79,0x26, 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00,
- 0x63,0x38,0x19, 0x34,0x11,0x04, 0x32,0x0f,0x00, 0x8d,0x63,0x1f,
- 0x83,0x66,0x2c, 0x8d,0x63,0x1f, 0x32,0x0f,0x00, 0x35,0x19,0x12,
- 0x34,0x11,0x04, 0x53,0x3a,0x20, 0x00,0x00,0x00, 0x00,0x00,0x00,
- 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00,
- 0x00,0x00,0x00, 0x00,0x00,0x00, 0xac,0x93,0x39, 0x76,0x65,0x20,
- 0x6a,0x5b,0x1c, 0x6a,0x5b,0x1c, 0x67,0x58,0x21, 0x4e,0x43,0x18,
- 0x4e,0x43,0x18, 0x9b,0x85,0x32, 0xb8,0x9e,0x3c, 0xb1,0x8d,0x36,
- 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00,
- 0x63,0x38,0x19, 0x34,0x15,0x00, 0x32,0x0f,0x00, 0x8d,0x63,0x1f,
- 0x83,0x66,0x2c, 0x8d,0x63,0x1f, 0x32,0x0f,0x00, 0x32,0x0f,0x00,
- 0x34,0x15,0x00, 0x53,0x3a,0x20, 0x00,0x00,0x00, 0x00,0x00,0x00,
- 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00,
- 0x00,0x00,0x00, 0x00,0x00,0x00, 0xb0,0x96,0x34, 0x76,0x65,0x20,
- 0x7e,0x66,0x23, 0x8e,0x79,0x26, 0x8a,0x71,0x27, 0x7e,0x6c,0x27,
- 0x8a,0x71,0x27, 0x8a,0x71,0x27, 0xb0,0x96,0x34, 0x98,0x82,0x2f,
- 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00,
- 0x75,0x4c,0x2a, 0x38,0x19,0x05, 0x38,0x19,0x05, 0x99,0x6d,0x22,
- 0x96,0x70,0x2a, 0x99,0x6d,0x22, 0x38,0x19,0x05, 0x38,0x19,0x05,
- 0x38,0x19,0x05, 0x59,0x3f,0x25, 0x00,0x00,0x00, 0x00,0x00,0x00,
- 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00,
- 0x00,0x00,0x00, 0x00,0x00,0x00, 0xac,0x93,0x39, 0x8a,0x76,0x2a,
- 0x7e,0x66,0x23, 0x76,0x65,0x20, 0x93,0x7d,0x2a, 0x82,0x6f,0x23,
- 0x9f,0x88,0x35, 0xb8,0xa0,0x4c, 0xb8,0xa0,0x4c, 0xc4,0xa8,0x3f,
- 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00,
- 0x7c,0x5c,0x2a, 0x52,0x2e,0x0d, 0x52,0x2e,0x0d, 0xa4,0x7b,0x27,
- 0xa1,0x80,0x37, 0x9f,0x77,0x1a, 0x52,0x2e,0x0d, 0x52,0x2e,0x0d,
- 0x52,0x2e,0x0d, 0x5f,0x4e,0x2a, 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, 0x86,0x72,0x26,
- 0xac,0x93,0x39, 0x97,0x82,0x36, 0xb1,0x8d,0x36, 0xac,0x93,0x39,
- 0x97,0x82,0x36, 0xa4,0x8c,0x32, 0xbd,0xa2,0x41, 0x8a,0x71,0x27,
- 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00,
- 0x8b,0x6d,0x32, 0x66,0x44,0x14, 0x6d,0x4a,0x20, 0xab,0x86,0x29,
- 0xb1,0x8d,0x36, 0xa4,0x7b,0x27, 0x66,0x44,0x14, 0x66,0x44,0x14,
- 0x66,0x44,0x14, 0x69,0x56,0x2c, 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, 0xac,0x93,0x31,
- 0x7e,0x6c,0x27, 0x9f,0x88,0x35, 0x97,0x82,0x36, 0x7e,0x66,0x23,
- 0x7e,0x66,0x23, 0xb2,0x99,0x3f, 0xbd,0xa2,0x41, 0x8a,0x76,0x2a,
0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00,
- 0x99,0x7a,0x38, 0x86,0x58,0x1e, 0x7f,0x59,0x22, 0xb2,0x8b,0x1c,
- 0x94,0x6e,0x21, 0x7f,0x59,0x22, 0x7f,0x59,0x22, 0x7f,0x59,0x22,
- 0x7f,0x59,0x22, 0x69,0x56,0x2c, 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, 0xac,0x93,0x39,
- 0x8a,0x71,0x27, 0xb4,0x9c,0x48, 0x7e,0x66,0x23, 0xac,0x93,0x39,
- 0x9c,0x87,0x3a, 0x9c,0x87,0x3a, 0xbd,0xa2,0x41, 0x8e,0x79,0x26,
0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00,
- 0xa8,0x86,0x3d, 0x96,0x70,0x2a, 0x96,0x70,0x2a, 0x96,0x70,0x2a,
- 0x96,0x70,0x2a, 0x96,0x70,0x2a, 0x96,0x70,0x2a, 0x96,0x70,0x2a,
- 0xa1,0x80,0x37, 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,0x00,0x00, 0xb4,0x9c,0x48,
- 0xac,0x93,0x31, 0x93,0x7d,0x2a, 0xbd,0xa3,0x48, 0x93,0x7d,0x2a,
- 0xb8,0xa0,0x4c, 0xb4,0x9c,0x48, 0xcc,0xa5,0x4e, 0x00,0x00,0x00,
0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00,
- 0xa8,0x86,0x3d, 0xaf,0x85,0x31, 0xaf,0x85,0x31, 0xaf,0x85,0x31,
- 0xaf,0x85,0x31, 0xaf,0x85,0x31, 0xaf,0x85,0x31, 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,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00,
- 0x97,0x82,0x36, 0xb4,0x9c,0x48, 0xb2,0x99,0x3f, 0xb4,0x9c,0x48,
- 0xb0,0x96,0x34, 0xc1,0xa7,0x4c, 0x9b,0x84,0x2a, 0x00,0x00,0x00,
0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00,
- 0xbd,0x9e,0x4c, 0xc7,0x9a,0x3f, 0xc7,0x9a,0x3f, 0xc7,0x9a,0x3f,
- 0xc7,0x9a,0x3f, 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,0x00,0x00, 0x00,0x00,0x00,
0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00,
- 0x9b,0x85,0x32, 0xa7,0x8e,0x2c, 0xac,0x93,0x39, 0xb5,0x91,0x41,
- 0x76,0x65,0x20, 0xa7,0x8e,0x2c, 0xb4,0x9a,0x38, 0x00,0x00,0x00,
0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00,
- 0xcc,0xa5,0x4e, 0xe0,0xaf,0x45, 0xe0,0xaf,0x45, 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,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00,
0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00,
- 0xa4,0x8c,0x32, 0xb8,0x9e,0x44, 0x86,0x72,0x26, 0x9f,0x88,0x35,
- 0xbd,0xa3,0x48, 0x9b,0x85,0x32, 0xa3,0x81,0x32, 0x00,0x00,0x00,
0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00,
- 0xd1,0xae,0x4e, 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,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, 0xdb,0xbd,0xa6,
+ 0xdb,0xbd,0xa6, 0xbd,0x8e,0x6c, 0x3a,0x24,0x1f, 0x6a,0x49,0x29,
+ 0x00,0x00,0x00, 0x6a,0x49,0x29, 0x00,0x00,0x00, 0x00,0x00,0x00,
0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00,
- 0xb0,0x97,0x3c, 0xb4,0x9a,0x38, 0xac,0x94,0x41, 0xb2,0x99,0x3f,
- 0xb4,0x9a,0x38, 0xb8,0x9e,0x3c, 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,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,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00,
0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00,
- 0xcc,0xa5,0x4e, 0xa6,0x8f,0x3c, 0xb2,0x99,0x3f, 0xb4,0x9c,0x48,
- 0xa8,0x90,0x36, 0x9f,0x88,0x35, 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,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,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, 0x3a,0x24,0x1f, 0xbd,0x8e,0x6c, 0xa3,0x71,0x4b,
+ 0xdb,0xbd,0xa6, 0xdb,0xbd,0xa6, 0xdb,0xbd,0xa6, 0xdb,0xbd,0xa6,
+ 0xdb,0xbd,0xa6, 0xdb,0xbd,0xa6, 0xdb,0xbd,0xa6, 0xdb,0xbd,0xa6,
+ 0x6a,0x49,0x29, 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,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,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, 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,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,0x00,
+ 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00,
+ 0x6a,0x49,0x29, 0xdb,0xbd,0xa6, 0xa3,0x71,0x4b, 0x88,0x57,0x34,
+ 0x6a,0x49,0x29, 0xdb,0xbd,0xa6, 0xdb,0xbd,0xa6, 0xdb,0xbd,0xa6,
+ 0xdb,0xbd,0xa6, 0xdb,0xbd,0xa6, 0xdb,0xbd,0xa6, 0xdb,0xbd,0xa6,
+ 0xdb,0xbd,0xa6, 0xdb,0xbd,0xa6, 0xbd,0x8e,0x6c, 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,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,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, 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,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,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00,
+ 0xbd,0x8e,0x6c, 0xbd,0x8e,0x6c, 0x6a,0x49,0x29, 0x6a,0x49,0x29,
+ 0x6a,0x49,0x29, 0x6a,0x49,0x29, 0x6a,0x49,0x29, 0x3a,0x24,0x1f,
+ 0x6a,0x49,0x29, 0x33,0x53,0x6f, 0x6a,0x49,0x29, 0xbd,0x8e,0x6c,
+ 0xbd,0x8e,0x6c, 0xbd,0x8e,0x6c, 0xdb,0xbd,0xa6, 0xbd,0x8e,0x6c,
+ 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,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,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,
+ 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,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,0x00, 0x3a,0x24,0x1f,
+ 0xdb,0xbd,0xa6, 0xbd,0x8e,0x6c, 0xbd,0x8e,0x6c, 0xdb,0xbd,0xa6,
+ 0xdb,0xbd,0xa6, 0xdb,0xbd,0xa6, 0xdb,0xbd,0xa6, 0xdb,0xbd,0xa6,
+ 0xdb,0xbd,0xa6, 0xdb,0xbd,0xa6, 0xdb,0xbd,0xa6, 0xdb,0xbd,0xa6,
+ 0xbd,0x8e,0x6c, 0x6a,0x49,0x29, 0x6a,0x49,0x29, 0xa3,0x71,0x4b,
+ 0x3a,0x24,0x1f, 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,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,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, 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,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, 0xdb,0xbd,0xa6,
+ 0xdb,0xbd,0xa6, 0xdb,0xbd,0xa6, 0xdb,0xbd,0xa6, 0xdb,0xbd,0xa6,
+ 0xdb,0xbd,0xa6, 0xdb,0xbd,0xa6, 0xdb,0xbd,0xa6, 0xdb,0xbd,0xa6,
+ 0xdb,0xbd,0xa6, 0xdb,0xbd,0xa6, 0xdb,0xbd,0xa6, 0xdb,0xbd,0xa6,
+ 0xdb,0xbd,0xa6, 0xdb,0xbd,0xa6, 0xa3,0x71,0x4b, 0xbd,0x8e,0x6c,
+ 0xdb,0xbd,0xa6, 0x3a,0x24,0x1f, 0x00,0x00,0x00, 0x00,0x00,0x00,
+ 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00, 0x95,0x37,0x27,
+ 0x95,0x37,0x27, 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,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,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, 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, 0xbd,0x8e,0x6c, 0xdb,0xbd,0xa6,
+ 0xdb,0xbd,0xa6, 0xdb,0xbd,0xa6, 0xdb,0xbd,0xa6, 0xdb,0xbd,0xa6,
+ 0xbd,0x8e,0x6c, 0xdb,0xbd,0xa6, 0xdb,0xbd,0xa6, 0xdb,0xbd,0xa6,
+ 0xa3,0x71,0x4b, 0x6a,0x49,0x29, 0xbd,0x8e,0x6c, 0xbd,0x8e,0x6c,
+ 0xdb,0xbd,0xa6, 0xdb,0xbd,0xa6, 0xdb,0xbd,0xa6, 0xa3,0x71,0x4b,
+ 0xbd,0x8e,0x6c, 0xdb,0xbd,0xa6, 0xa3,0x71,0x4b, 0x00,0x00,0x00,
+ 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00, 0x95,0x37,0x27,
+ 0x66,0x21,0x18, 0x66,0x21,0x18, 0x95,0x37,0x27, 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,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,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, 0x00,0x00,0x00,
+ 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00,
+ 0x3a,0x24,0x1f, 0xdb,0xbd,0xa6, 0xdb,0xbd,0xa6, 0xdb,0xbd,0xa6,
+ 0xdb,0xbd,0xa6, 0xdb,0xbd,0xa6, 0xdb,0xbd,0xa6, 0xdb,0xbd,0xa6,
+ 0xdb,0xbd,0xa6, 0xdb,0xbd,0xa6, 0xdb,0xbd,0xa6, 0xdb,0xbd,0xa6,
+ 0xdb,0xbd,0xa6, 0xbd,0x8e,0x6c, 0x88,0x57,0x34, 0xbd,0x8e,0x6c,
+ 0xdb,0xbd,0xa6, 0xdb,0xbd,0xa6, 0xdb,0xbd,0xa6, 0x6a,0x49,0x29,
+ 0x42,0x26,0x12, 0xbd,0x8e,0x6c, 0xbd,0x8e,0x6c, 0x00,0x00,0x00,
+ 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00, 0x95,0x37,0x27,
+ 0x3a,0x24,0x1f, 0x0b,0x1b,0x3b, 0x0b,0x1b,0x3b, 0x95,0x37,0x27,
+ 0x95,0x37,0x27, 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,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,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, 0x00,0x00,0x00, 0x00,0x00,0x00, 0xdb,0xbd,0xa6,
+ 0xdb,0xbd,0xa6, 0xdb,0xbd,0xa6, 0xbd,0x8e,0x6c, 0xdb,0xbd,0xa6,
+ 0xdb,0xbd,0xa6, 0x88,0x57,0x34, 0xbd,0x8e,0x6c, 0xdb,0xbd,0xa6,
+ 0xdb,0xbd,0xa6, 0xdb,0xbd,0xa6, 0xdb,0xbd,0xa6, 0xdb,0xbd,0xa6,
+ 0xdb,0xbd,0xa6, 0xdb,0xbd,0xa6, 0x88,0x57,0x34, 0x6a,0x49,0x29,
+ 0xbd,0x8e,0x6c, 0xbd,0x8e,0x6c, 0xdb,0xbd,0xa6, 0xbd,0x8e,0x6c,
+ 0x3a,0x24,0x1f, 0x6a,0x49,0x29, 0xbd,0x8e,0x6c, 0xa3,0x71,0x4b,
+ 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00, 0x66,0x21,0x18,
+ 0x3a,0x24,0x1f, 0x0b,0x1b,0x3b, 0x0b,0x1b,0x3b, 0x0b,0x1b,0x3b,
+ 0x3a,0x24,0x1f, 0x95,0x37,0x27, 0x95,0x37,0x27, 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,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,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, 0xbd,0x8e,0x6c, 0xdb,0xbd,0xa6,
+ 0xdb,0xbd,0xa6, 0xbd,0x8e,0x6c, 0xdb,0xbd,0xa6, 0x6a,0x49,0x29,
+ 0xa3,0x71,0x4b, 0xa3,0x71,0x4b, 0xa3,0x71,0x4b, 0x6a,0x49,0x29,
+ 0x6a,0x49,0x29, 0xdb,0xbd,0xa6, 0xdb,0xbd,0xa6, 0xdb,0xbd,0xa6,
+ 0xdb,0xbd,0xa6, 0xdb,0xbd,0xa6, 0xbd,0x8e,0x6c, 0x6a,0x49,0x29,
+ 0x42,0x26,0x12, 0xbd,0x8e,0x6c, 0xbd,0x8e,0x6c, 0xdb,0xbd,0xa6,
+ 0x3a,0x24,0x1f, 0x88,0x57,0x34, 0xa3,0x71,0x4b, 0xbd,0x8e,0x6c,
+ 0x42,0x26,0x12, 0x00,0x00,0x00, 0x00,0x00,0x00, 0x66,0x21,0x18,
+ 0x66,0x21,0x18, 0x0b,0x1b,0x3b, 0x0b,0x1b,0x3b, 0x0b,0x1b,0x3b,
+ 0x0b,0x1b,0x3b, 0x0b,0x1b,0x3b, 0x66,0x21,0x18, 0x95,0x37,0x27,
+ 0x66,0x21,0x18, 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,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,0x00,
+ 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00,
+ 0x00,0x00,0x00, 0xdb,0xbd,0xa6, 0xdb,0xbd,0xa6, 0xdb,0xbd,0xa6,
+ 0xa3,0x71,0x4b, 0xa3,0x71,0x4b, 0xbd,0x8e,0x6c, 0xbd,0x8e,0x6c,
+ 0xa3,0x71,0x4b, 0x6a,0x49,0x29, 0x6a,0x49,0x29, 0x6a,0x49,0x29,
+ 0xdb,0xbd,0xa6, 0xdb,0xbd,0xa6, 0xdb,0xbd,0xa6, 0xdb,0xbd,0xa6,
+ 0xdb,0xbd,0xa6, 0xbd,0x8e,0x6c, 0xbd,0x8e,0x6c, 0xa3,0x71,0x4b,
+ 0x6a,0x49,0x29, 0x88,0x57,0x34, 0xbd,0x8e,0x6c, 0xbd,0x8e,0x6c,
+ 0xdb,0xbd,0xa6, 0xa3,0x71,0x4b, 0x88,0x57,0x34, 0xa3,0x71,0x4b,
+ 0xa3,0x71,0x4b, 0x00,0x00,0x00, 0x00,0x00,0x00, 0x66,0x21,0x18,
+ 0x3a,0x24,0x1f, 0x0b,0x1b,0x3b, 0x0b,0x1b,0x3b, 0x0b,0x1b,0x3b,
+ 0x0b,0x1b,0x3b, 0x0b,0x1b,0x3b, 0x0b,0x1b,0x3b, 0x0b,0x1b,0x3b,
+ 0x66,0x21,0x18, 0x95,0x37,0x27, 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,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,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00,
+ 0x3a,0x24,0x1f, 0xdb,0xbd,0xa6, 0xdb,0xbd,0xa6, 0xdb,0xbd,0xa6,
+ 0xbd,0x8e,0x6c, 0xa3,0x71,0x4b, 0xbd,0x8e,0x6c, 0x88,0x57,0x34,
+ 0x6a,0x49,0x29, 0x6a,0x49,0x29, 0x88,0x57,0x34, 0xbd,0x8e,0x6c,
+ 0xdb,0xbd,0xa6, 0xdb,0xbd,0xa6, 0xdb,0xbd,0xa6, 0xbd,0x8e,0x6c,
+ 0xa3,0x71,0x4b, 0x88,0x57,0x34, 0xa3,0x71,0x4b, 0xa3,0x71,0x4b,
+ 0x6a,0x49,0x29, 0x6a,0x49,0x29, 0xa3,0x71,0x4b, 0xbd,0x8e,0x6c,
+ 0xbd,0x8e,0x6c, 0xbd,0x8e,0x6c, 0xbd,0x8e,0x6c, 0xa3,0x71,0x4b,
+ 0x88,0x57,0x34, 0x00,0x00,0x00, 0x00,0x00,0x00, 0x66,0x21,0x18,
+ 0x3a,0x24,0x1f, 0x0b,0x1b,0x3b, 0x0b,0x1b,0x3b, 0x0b,0x1b,0x3b,
+ 0x0b,0x1b,0x3b, 0x0b,0x1b,0x3b, 0x0b,0x1b,0x3b, 0x0b,0x1b,0x3b,
+ 0x0b,0x1b,0x3b, 0x0b,0x1b,0x3b, 0x95,0x37,0x27, 0x95,0x37,0x27,
+ 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,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,0x00, 0x3a,0x24,0x1f,
+ 0xdb,0xbd,0xa6, 0xdb,0xbd,0xa6, 0xa3,0x71,0x4b, 0xbd,0x8e,0x6c,
+ 0xbd,0x8e,0x6c, 0xa3,0x71,0x4b, 0x88,0x57,0x34, 0x3a,0x24,0x1f,
+ 0x88,0x57,0x34, 0x88,0x57,0x34, 0xbd,0x8e,0x6c, 0xbd,0x8e,0x6c,
+ 0xbd,0x8e,0x6c, 0xbd,0x8e,0x6c, 0xbd,0x8e,0x6c, 0x88,0x57,0x34,
+ 0x88,0x57,0x34, 0x88,0x57,0x34, 0x88,0x57,0x34, 0x88,0x57,0x34,
+ 0x88,0x57,0x34, 0x3a,0x24,0x1f, 0x88,0x57,0x34, 0xa3,0x71,0x4b,
+ 0xdb,0xbd,0xa6, 0xbd,0x8e,0x6c, 0xdb,0xbd,0xa6, 0xbd,0x8e,0x6c,
+ 0xa3,0x71,0x4b, 0x00,0x00,0x00, 0x00,0x00,0x00, 0x66,0x21,0x18,
+ 0x66,0x21,0x18, 0x0b,0x1b,0x3b, 0x0b,0x1b,0x3b, 0x0b,0x1b,0x3b,
+ 0x0b,0x1b,0x3b, 0x0b,0x1b,0x3b, 0x0b,0x1b,0x3b, 0x0b,0x1b,0x3b,
+ 0x0b,0x1b,0x3b, 0x0b,0x1b,0x3b, 0x0b,0x1b,0x3b, 0x3a,0x24,0x1f,
+ 0x95,0x37,0x27, 0x95,0x37,0x27, 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,0x00,0x00,
+ 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00,
+ 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00, 0xdb,0xbd,0xa6,
+ 0xbd,0x8e,0x6c, 0xdb,0xbd,0xa6, 0xa3,0x71,0x4b, 0xbd,0x8e,0x6c,
+ 0xa3,0x71,0x4b, 0x88,0x57,0x34, 0x88,0x57,0x34, 0xbd,0x8e,0x6c,
+ 0xbd,0x8e,0x6c, 0xdb,0xbd,0xa6, 0xdb,0xbd,0xa6, 0xbd,0x8e,0x6c,
+ 0x88,0x57,0x34, 0x6a,0x49,0x29, 0x42,0x26,0x12, 0x88,0x57,0x34,
+ 0x88,0x57,0x34, 0x88,0x57,0x34, 0x88,0x57,0x34, 0x88,0x57,0x34,
+ 0x6a,0x49,0x29, 0x3a,0x24,0x1f, 0x6a,0x49,0x29, 0xad,0x6e,0x35,
+ 0xad,0x6e,0x35, 0xbd,0x8e,0x6c, 0xbd,0x8e,0x6c, 0xdb,0xbd,0xa6,
+ 0xa3,0x71,0x4b, 0x3a,0x24,0x1f, 0x00,0x00,0x00, 0x66,0x21,0x18,
+ 0x3a,0x24,0x1f, 0x0b,0x1b,0x3b, 0x0b,0x1b,0x3b, 0x0b,0x1b,0x3b,
+ 0x0b,0x1b,0x3b, 0x0b,0x1b,0x3b, 0x0b,0x1b,0x3b, 0x0b,0x1b,0x3b,
+ 0x0b,0x1b,0x3b, 0x0b,0x1b,0x3b, 0x0b,0x1b,0x3b, 0x0b,0x1b,0x3b,
+ 0x0b,0x1b,0x3b, 0x3a,0x24,0x1f, 0x95,0x37,0x27, 0x66,0x21,0x18,
+ 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,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00,
+ 0x00,0x00,0x00, 0x6a,0x49,0x29, 0xdb,0xbd,0xa6, 0xdb,0xbd,0xa6,
+ 0xbd,0x8e,0x6c, 0xbd,0x8e,0x6c, 0xbd,0x8e,0x6c, 0x88,0x57,0x34,
+ 0xa3,0x71,0x4b, 0xbd,0x8e,0x6c, 0xdb,0xbd,0xa6, 0xdb,0xbd,0xa6,
+ 0xdb,0xbd,0xa6, 0xdb,0xbd,0xa6, 0xa3,0x71,0x4b, 0xa3,0x71,0x4b,
+ 0x6a,0x49,0x29, 0x42,0x26,0x12, 0xa3,0x71,0x4b, 0x88,0x57,0x34,
+ 0x6a,0x49,0x29, 0x42,0x26,0x12, 0x88,0x57,0x34, 0x88,0x57,0x34,
+ 0x6a,0x49,0x29, 0x3a,0x24,0x1f, 0x3a,0x24,0x1f, 0xa3,0x71,0x4b,
+ 0xa3,0x71,0x4b, 0xbd,0x8e,0x6c, 0xbd,0x8e,0x6c, 0xdb,0xbd,0xa6,
+ 0xdb,0xbd,0xa6, 0x3a,0x24,0x1f, 0x00,0x00,0x00, 0x66,0x21,0x18,
+ 0x66,0x21,0x18, 0x0b,0x1b,0x3b, 0x0b,0x1b,0x3b, 0x0b,0x1b,0x3b,
+ 0x0b,0x1b,0x3b, 0x0b,0x1b,0x3b, 0x0b,0x1b,0x3b, 0x0b,0x1b,0x3b,
+ 0x0b,0x1b,0x3b, 0x0b,0x1b,0x3b, 0x0b,0x1b,0x3b, 0x0b,0x1b,0x3b,
+ 0x0b,0x1b,0x3b, 0x0b,0x1b,0x3b, 0x0b,0x1b,0x3b, 0x66,0x21,0x18,
+ 0x95,0x37,0x27, 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,0x00,0x00, 0x00,0x00,0x00,
+ 0x00,0x00,0x00, 0xdb,0xbd,0xa6, 0xdb,0xbd,0xa6, 0xbd,0x8e,0x6c,
+ 0xbd,0x8e,0x6c, 0xbd,0x8e,0x6c, 0xbd,0x8e,0x6c, 0xbd,0x8e,0x6c,
+ 0xbd,0x8e,0x6c, 0xa3,0x71,0x4b, 0x6a,0x49,0x29, 0x88,0x57,0x34,
+ 0x88,0x57,0x34, 0x88,0x57,0x34, 0x6a,0x49,0x29, 0x6a,0x49,0x29,
+ 0x88,0x57,0x34, 0x6a,0x49,0x29, 0x88,0x57,0x34, 0x6a,0x49,0x29,
+ 0x88,0x57,0x34, 0x42,0x26,0x12, 0x42,0x26,0x12, 0x42,0x26,0x12,
+ 0x42,0x26,0x12, 0x3a,0x24,0x1f, 0x6a,0x49,0x29, 0xad,0x6e,0x35,
+ 0xa3,0x71,0x4b, 0xbd,0x8e,0x6c, 0xbd,0x8e,0x6c, 0xdb,0xbd,0xa6,
+ 0x88,0x57,0x34, 0x6a,0x49,0x29, 0x00,0x00,0x00, 0x3a,0x24,0x1f,
+ 0x66,0x21,0x18, 0x0b,0x1b,0x3b, 0x0b,0x1b,0x3b, 0x0b,0x1b,0x3b,
+ 0x0b,0x1b,0x3b, 0x0b,0x1b,0x3b, 0x0b,0x1b,0x3b, 0x0b,0x1b,0x3b,
+ 0x0b,0x1b,0x3b, 0x0b,0x1b,0x3b, 0x0b,0x1b,0x3b, 0x0b,0x1b,0x3b,
+ 0x0b,0x1b,0x3b, 0x0b,0x1b,0x3b, 0x0b,0x1b,0x3b, 0x0b,0x1b,0x3b,
+ 0x0b,0x1b,0x3b, 0x95,0x37,0x27, 0x95,0x37,0x27, 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,
+ 0xbd,0x8e,0x6c, 0xdb,0xbd,0xa6, 0xbd,0x8e,0x6c, 0xbd,0x8e,0x6c,
+ 0xa3,0x71,0x4b, 0xbd,0x8e,0x6c, 0xa3,0x71,0x4b, 0x88,0x57,0x34,
+ 0x88,0x57,0x34, 0x6a,0x49,0x29, 0x88,0x57,0x34, 0x88,0x57,0x34,
+ 0x88,0x57,0x34, 0x88,0x57,0x34, 0x88,0x57,0x34, 0x88,0x57,0x34,
+ 0x88,0x57,0x34, 0x88,0x57,0x34, 0x88,0x57,0x34, 0x66,0x21,0x18,
+ 0x6a,0x49,0x29, 0x3a,0x24,0x1f, 0x42,0x26,0x12, 0x3a,0x24,0x1f,
+ 0x42,0x26,0x12, 0x42,0x26,0x12, 0xbd,0x8e,0x6c, 0xa3,0x71,0x4b,
+ 0xbd,0x8e,0x6c, 0xa3,0x71,0x4b, 0xa3,0x71,0x4b, 0xa3,0x71,0x4b,
+ 0xa3,0x71,0x4b, 0xa3,0x71,0x4b, 0x00,0x00,0x00, 0x66,0x21,0x18,
+ 0x66,0x21,0x18, 0x0b,0x1b,0x3b, 0x0b,0x1b,0x3b, 0x0b,0x1b,0x3b,
+ 0x0b,0x1b,0x3b, 0x0b,0x1b,0x3b, 0x3a,0x24,0x1f, 0x0b,0x1b,0x3b,
+ 0x0b,0x1b,0x3b, 0x0b,0x1b,0x3b, 0x0b,0x1b,0x3b, 0x0b,0x1b,0x3b,
+ 0x0b,0x1b,0x3b, 0x0b,0x1b,0x3b, 0x0b,0x1b,0x3b, 0x0b,0x1b,0x3b,
+ 0x0b,0x1b,0x3b, 0x0b,0x1b,0x3b, 0x95,0x37,0x27, 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,
+ 0xbd,0x8e,0x6c, 0xbd,0x8e,0x6c, 0xbd,0x8e,0x6c, 0xa3,0x71,0x4b,
+ 0xa3,0x71,0x4b, 0x88,0x57,0x34, 0x6a,0x49,0x29, 0x42,0x26,0x12,
+ 0x6a,0x49,0x29, 0x88,0x57,0x34, 0x88,0x57,0x34, 0x88,0x57,0x34,
+ 0x88,0x57,0x34, 0x88,0x57,0x34, 0x88,0x57,0x34, 0x88,0x57,0x34,
+ 0x88,0x57,0x34, 0x88,0x57,0x34, 0x6a,0x49,0x29, 0x6a,0x49,0x29,
+ 0x6a,0x49,0x29, 0x42,0x26,0x12, 0x3a,0x24,0x1f, 0x42,0x26,0x12,
+ 0x6a,0x49,0x29, 0x6a,0x49,0x29, 0xbd,0x8e,0x6c, 0xad,0x6e,0x35,
+ 0xad,0x6e,0x35, 0xbd,0x8e,0x6c, 0xbd,0x8e,0x6c, 0xad,0x6e,0x35,
+ 0xbd,0x8e,0x6c, 0xbd,0x8e,0x6c, 0x3a,0x24,0x1f, 0x3a,0x24,0x1f,
+ 0x3a,0x24,0x1f, 0x0b,0x1b,0x3b, 0x0b,0x1b,0x3b, 0x0b,0x1b,0x3b,
+ 0x0b,0x1b,0x3b, 0x0b,0x1b,0x3b, 0x95,0x37,0x27, 0x66,0x21,0x18,
+ 0x3a,0x24,0x1f, 0x0b,0x1b,0x3b, 0x0b,0x1b,0x3b, 0x0b,0x1b,0x3b,
+ 0x0b,0x1b,0x3b, 0x0b,0x1b,0x3b, 0x0b,0x1b,0x3b, 0x0b,0x1b,0x3b,
+ 0x0b,0x1b,0x3b, 0x3a,0x24,0x1f, 0x95,0x37,0x27, 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,
+ 0xbd,0x8e,0x6c, 0xdb,0xbd,0xa6, 0xbd,0x8e,0x6c, 0x88,0x57,0x34,
+ 0xa3,0x71,0x4b, 0x88,0x57,0x34, 0x3a,0x24,0x1f, 0x3a,0x24,0x1f,
+ 0x3a,0x24,0x1f, 0x88,0x57,0x34, 0x6a,0x49,0x29, 0x88,0x57,0x34,
+ 0x66,0x21,0x18, 0x88,0x57,0x34, 0x88,0x57,0x34, 0x88,0x57,0x34,
+ 0xa3,0x71,0x4b, 0xa3,0x71,0x4b, 0x3a,0x24,0x1f, 0x6a,0x49,0x29,
+ 0x6a,0x49,0x29, 0x42,0x26,0x12, 0x6a,0x49,0x29, 0x88,0x57,0x34,
+ 0x88,0x57,0x34, 0x88,0x57,0x34, 0x6a,0x49,0x29, 0x88,0x57,0x34,
+ 0xa3,0x71,0x4b, 0x88,0x57,0x34, 0x88,0x57,0x34, 0xad,0x6e,0x35,
+ 0xbd,0x8e,0x6c, 0x6a,0x49,0x29, 0x0b,0x1b,0x3b, 0x42,0x26,0x12,
+ 0x66,0x21,0x18, 0x0b,0x1b,0x3b, 0x0b,0x1b,0x3b, 0x0b,0x1b,0x3b,
+ 0x0b,0x1b,0x3b, 0x0b,0x1b,0x3b, 0x95,0x37,0x27, 0x3a,0x24,0x1f,
+ 0x66,0x21,0x18, 0x95,0x37,0x27, 0x0b,0x1b,0x3b, 0x0b,0x1b,0x3b,
+ 0x0b,0x1b,0x3b, 0x0b,0x1b,0x3b, 0x0b,0x1b,0x3b, 0x0b,0x1b,0x3b,
+ 0x0b,0x1b,0x3b, 0x33,0x53,0x6f, 0x95,0x37,0x27, 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,
+ 0x6a,0x49,0x29, 0xbd,0x8e,0x6c, 0xbd,0x8e,0x6c, 0x88,0x57,0x34,
+ 0x88,0x57,0x34, 0x42,0x26,0x12, 0x3a,0x24,0x1f, 0x0b,0x1b,0x3b,
+ 0x3a,0x24,0x1f, 0x42,0x26,0x12, 0xa3,0x71,0x4b, 0x88,0x57,0x34,
+ 0x6a,0x49,0x29, 0x88,0x57,0x34, 0x88,0x57,0x34, 0x88,0x57,0x34,
+ 0x88,0x57,0x34, 0x42,0x26,0x12, 0x3a,0x24,0x1f, 0x3a,0x24,0x1f,
+ 0x42,0x26,0x12, 0x88,0x57,0x34, 0xa3,0x71,0x4b, 0xa3,0x71,0x4b,
+ 0xad,0x6e,0x35, 0x88,0x57,0x34, 0x6a,0x49,0x29, 0x6a,0x49,0x29,
+ 0x42,0x26,0x12, 0x3a,0x24,0x1f, 0x6a,0x49,0x29, 0x88,0x57,0x34,
+ 0xa3,0x71,0x4b, 0x88,0x57,0x34, 0x00,0x00,0x00, 0x3a,0x24,0x1f,
+ 0x88,0x57,0x34, 0x0b,0x1b,0x3b, 0x0b,0x1b,0x3b, 0x0b,0x1b,0x3b,
+ 0x0b,0x1b,0x3b, 0x0b,0x1b,0x3b, 0x66,0x21,0x18, 0x3a,0x24,0x1f,
+ 0x3a,0x24,0x1f, 0x3a,0x24,0x1f, 0x95,0x37,0x27, 0x3a,0x24,0x1f,
+ 0x0b,0x1b,0x3b, 0x0b,0x1b,0x3b, 0x0b,0x1b,0x3b, 0x0b,0x1b,0x3b,
+ 0x0b,0x1b,0x3b, 0x3a,0x24,0x1f, 0x95,0x37,0x27, 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,0x00,0x00, 0x88,0x57,0x34, 0x88,0x57,0x34, 0x42,0x26,0x12,
+ 0x88,0x57,0x34, 0x6a,0x49,0x29, 0x3a,0x24,0x1f, 0x3a,0x24,0x1f,
+ 0x3a,0x24,0x1f, 0xbd,0x8e,0x6c, 0xbd,0x8e,0x6c, 0xa3,0x71,0x4b,
+ 0x88,0x57,0x34, 0x42,0x26,0x12, 0x3a,0x24,0x1f, 0xa3,0x71,0x4b,
+ 0xbd,0x8e,0x6c, 0xbd,0x8e,0x6c, 0x88,0x57,0x34, 0x6a,0x49,0x29,
+ 0xa3,0x71,0x4b, 0xa3,0x71,0x4b, 0xbd,0x8e,0x6c, 0xbd,0x8e,0x6c,
+ 0xa3,0x71,0x4b, 0x6a,0x49,0x29, 0x3a,0x24,0x1f, 0x42,0x26,0x12,
+ 0x42,0x26,0x12, 0x3a,0x24,0x1f, 0x42,0x26,0x12, 0x88,0x57,0x34,
+ 0xa3,0x71,0x4b, 0x88,0x57,0x34, 0x00,0x00,0x00, 0x42,0x26,0x12,
+ 0x88,0x57,0x34, 0x33,0x53,0x6f, 0x0b,0x1b,0x3b, 0x33,0x53,0x6f,
+ 0x0b,0x1b,0x3b, 0x33,0x53,0x6f, 0x95,0x37,0x27, 0x3a,0x24,0x1f,
+ 0x3a,0x24,0x1f, 0x3a,0x24,0x1f, 0x42,0x26,0x12, 0x66,0x21,0x18,
+ 0x33,0x53,0x6f, 0x33,0x53,0x6f, 0x0b,0x1b,0x3b, 0x33,0x53,0x6f,
+ 0x0b,0x1b,0x3b, 0x33,0x53,0x6f, 0x95,0x37,0x27, 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,0x00,0x00, 0x3a,0x24,0x1f, 0x6a,0x49,0x29, 0x6a,0x49,0x29,
+ 0x42,0x26,0x12, 0x42,0x26,0x12, 0x6a,0x49,0x29, 0xbd,0x8e,0x6c,
+ 0xdb,0xbd,0xa6, 0xdb,0xbd,0xa6, 0xdb,0xbd,0xa6, 0xdb,0xbd,0xa6,
+ 0xbd,0x8e,0x6c, 0xbd,0x8e,0x6c, 0xbd,0x8e,0x6c, 0xdb,0xbd,0xa6,
+ 0xbd,0x8e,0x6c, 0xa3,0x71,0x4b, 0xa3,0x71,0x4b, 0xa3,0x71,0x4b,
+ 0x88,0x57,0x34, 0x88,0x57,0x34, 0xad,0x6e,0x35, 0xbd,0x8e,0x6c,
+ 0xad,0x6e,0x35, 0xa3,0x71,0x4b, 0xa3,0x71,0x4b, 0x6a,0x49,0x29,
+ 0x6a,0x49,0x29, 0x88,0x57,0x34, 0x42,0x26,0x12, 0x6a,0x49,0x29,
+ 0x6a,0x49,0x29, 0x00,0x00,0x00, 0x00,0x00,0x00, 0x3a,0x24,0x1f,
+ 0x88,0x57,0x34, 0x33,0x53,0x6f, 0x0b,0x1b,0x3b, 0x33,0x53,0x6f,
+ 0x0b,0x1b,0x3b, 0x3a,0x24,0x1f, 0x66,0x21,0x18, 0x3a,0x24,0x1f,
+ 0x3a,0x24,0x1f, 0x3a,0x24,0x1f, 0x3a,0x24,0x1f, 0x66,0x21,0x18,
+ 0x0b,0x1b,0x3b, 0x33,0x53,0x6f, 0x0b,0x1b,0x3b, 0x33,0x53,0x6f,
+ 0x0b,0x1b,0x3b, 0x33,0x53,0x6f, 0xad,0x6e,0x35, 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,0x00,0x00, 0x00,0x00,0x00, 0x6a,0x49,0x29, 0xa3,0x71,0x4b,
+ 0x3a,0x24,0x1f, 0xbd,0x8e,0x6c, 0xbd,0x8e,0x6c, 0x88,0x57,0x34,
+ 0xbd,0x8e,0x6c, 0xbd,0x8e,0x6c, 0xdb,0xbd,0xa6, 0xbd,0x8e,0x6c,
+ 0xbd,0x8e,0x6c, 0xa3,0x71,0x4b, 0xbd,0x8e,0x6c, 0xa3,0x71,0x4b,
+ 0xa3,0x71,0x4b, 0x88,0x57,0x34, 0xad,0x6e,0x35, 0x88,0x57,0x34,
+ 0x88,0x57,0x34, 0xa3,0x71,0x4b, 0xbd,0x8e,0x6c, 0xbd,0x8e,0x6c,
+ 0xbd,0x8e,0x6c, 0xbd,0x8e,0x6c, 0xad,0x6e,0x35, 0xbd,0x8e,0x6c,
+ 0xad,0x6e,0x35, 0xdb,0xbd,0xa6, 0xbd,0x8e,0x6c, 0x3a,0x24,0x1f,
+ 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00, 0x3a,0x24,0x1f,
+ 0x88,0x57,0x34, 0x33,0x53,0x6f, 0x0b,0x1b,0x3b, 0x33,0x53,0x6f,
+ 0x33,0x53,0x6f, 0x33,0x53,0x6f, 0x95,0x37,0x27, 0x42,0x26,0x12,
+ 0x42,0x26,0x12, 0x42,0x26,0x12, 0x42,0x26,0x12, 0x88,0x57,0x34,
+ 0x33,0x53,0x6f, 0x0b,0x1b,0x3b, 0x33,0x53,0x6f, 0x33,0x53,0x6f,
+ 0x0b,0x1b,0x3b, 0x33,0x53,0x6f, 0x95,0x37,0x27, 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,0x00,0x00, 0x00,0x00,0x00, 0xbd,0x8e,0x6c, 0xa3,0x71,0x4b,
+ 0xdb,0xbd,0xa6, 0xdb,0xbd,0xa6, 0xbd,0x8e,0x6c, 0x88,0x57,0x34,
+ 0x3a,0x24,0x1f, 0x88,0x57,0x34, 0x88,0x57,0x34, 0x6a,0x49,0x29,
+ 0x6a,0x49,0x29, 0x6a,0x49,0x29, 0x88,0x57,0x34, 0x88,0x57,0x34,
+ 0x88,0x57,0x34, 0xa3,0x71,0x4b, 0xad,0x6e,0x35, 0xbd,0x8e,0x6c,
+ 0xbd,0x8e,0x6c, 0xbd,0x8e,0x6c, 0xbd,0x8e,0x6c, 0xbd,0x8e,0x6c,
+ 0xad,0x6e,0x35, 0xad,0x6e,0x35, 0x88,0x57,0x34, 0xa3,0x71,0x4b,
+ 0xa3,0x71,0x4b, 0xa3,0x71,0x4b, 0xa3,0x71,0x4b, 0x42,0x26,0x12,
+ 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00,
+ 0x88,0x57,0x34, 0x33,0x53,0x6f, 0x33,0x53,0x6f, 0x0b,0x1b,0x3b,
+ 0x33,0x53,0x6f, 0x3a,0x24,0x1f, 0x6a,0x49,0x29, 0x42,0x26,0x12,
+ 0x42,0x26,0x12, 0x42,0x26,0x12, 0x3a,0x24,0x1f, 0x88,0x57,0x34,
+ 0x33,0x53,0x6f, 0x0b,0x1b,0x3b, 0x33,0x53,0x6f, 0x33,0x53,0x6f,
+ 0x33,0x53,0x6f, 0x33,0x53,0x6f, 0xad,0x6e,0x35, 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,0x00,0x00, 0x00,0x00,0x00, 0xbd,0x8e,0x6c, 0x6a,0x49,0x29,
+ 0xdb,0xbd,0xa6, 0xbd,0x8e,0x6c, 0xa3,0x71,0x4b, 0x3a,0x24,0x1f,
+ 0x3a,0x24,0x1f, 0x3a,0x24,0x1f, 0x42,0x26,0x12, 0x3a,0x24,0x1f,
+ 0x88,0x57,0x34, 0x88,0x57,0x34, 0x88,0x57,0x34, 0x88,0x57,0x34,
+ 0x88,0x57,0x34, 0xad,0x6e,0x35, 0xa3,0x71,0x4b, 0xad,0x6e,0x35,
+ 0xbd,0x8e,0x6c, 0xad,0x6e,0x35, 0xbd,0x8e,0x6c, 0xad,0x6e,0x35,
+ 0xbd,0x8e,0x6c, 0xad,0x6e,0x35, 0x88,0x57,0x34, 0x88,0x57,0x34,
+ 0x88,0x57,0x34, 0x88,0x57,0x34, 0xbd,0x8e,0x6c, 0x88,0x57,0x34,
+ 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00,
+ 0xa3,0x71,0x4b, 0x33,0x53,0x6f, 0x33,0x53,0x6f, 0x33,0x53,0x6f,
+ 0x33,0x53,0x6f, 0x33,0x53,0x6f, 0x95,0x37,0x27, 0x42,0x26,0x12,
+ 0x42,0x26,0x12, 0x42,0x26,0x12, 0x42,0x26,0x12, 0x88,0x57,0x34,
+ 0x33,0x53,0x6f, 0x33,0x53,0x6f, 0x33,0x53,0x6f, 0x0b,0x1b,0x3b,
+ 0x33,0x53,0x6f, 0x33,0x53,0x6f, 0xad,0x6e,0x35, 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,0x00,0x00, 0x33,0x53,0x6f, 0xbd,0x8e,0x6c, 0xbd,0x8e,0x6c,
+ 0xdb,0xbd,0xa6, 0xa3,0x71,0x4b, 0x6a,0x49,0x29, 0x3a,0x24,0x1f,
+ 0x3a,0x24,0x1f, 0x6a,0x49,0x29, 0x6a,0x49,0x29, 0x42,0x26,0x12,
+ 0x42,0x26,0x12, 0x3a,0x24,0x1f, 0x6a,0x49,0x29, 0x66,0x21,0x18,
+ 0x88,0x57,0x34, 0x88,0x57,0x34, 0xad,0x6e,0x35, 0xad,0x6e,0x35,
+ 0xad,0x6e,0x35, 0xbd,0x8e,0x6c, 0xad,0x6e,0x35, 0xad,0x6e,0x35,
+ 0xa3,0x71,0x4b, 0x88,0x57,0x34, 0x66,0x21,0x18, 0x6a,0x49,0x29,
+ 0x6a,0x49,0x29, 0x88,0x57,0x34, 0x88,0x57,0x34, 0xa3,0x71,0x4b,
+ 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00,
+ 0x88,0x57,0x34, 0x33,0x53,0x6f, 0x33,0x53,0x6f, 0x33,0x53,0x6f,
+ 0x33,0x53,0x6f, 0x33,0x53,0x6f, 0xad,0x6e,0x35, 0x42,0x26,0x12,
+ 0x6a,0x49,0x29, 0x42,0x26,0x12, 0x42,0x26,0x12, 0x88,0x57,0x34,
+ 0x33,0x53,0x6f, 0x33,0x53,0x6f, 0x33,0x53,0x6f, 0x33,0x53,0x6f,
+ 0x33,0x53,0x6f, 0x33,0x53,0x6f, 0xad,0x6e,0x35, 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,0x00,0x00, 0xdb,0xbd,0xa6, 0xbd,0x8e,0x6c, 0xbd,0x8e,0x6c,
+ 0xa3,0x71,0x4b, 0xa3,0x71,0x4b, 0x6a,0x49,0x29, 0x42,0x26,0x12,
+ 0x3a,0x24,0x1f, 0x6a,0x49,0x29, 0x88,0x57,0x34, 0x88,0x57,0x34,
+ 0x88,0x57,0x34, 0x6a,0x49,0x29, 0x6a,0x49,0x29, 0x88,0x57,0x34,
+ 0x88,0x57,0x34, 0x88,0x57,0x34, 0x88,0x57,0x34, 0xa3,0x71,0x4b,
+ 0x95,0x37,0x27, 0xa3,0x71,0x4b, 0x88,0x57,0x34, 0x95,0x37,0x27,
+ 0xa3,0x71,0x4b, 0x6a,0x49,0x29, 0x42,0x26,0x12, 0x6a,0x49,0x29,
+ 0x88,0x57,0x34, 0x6a,0x49,0x29, 0x6a,0x49,0x29, 0xad,0x6e,0x35,
+ 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00,
+ 0xbd,0x8e,0x6c, 0x33,0x53,0x6f, 0x33,0x53,0x6f, 0x33,0x53,0x6f,
+ 0x33,0x53,0x6f, 0x33,0x53,0x6f, 0xad,0x6e,0x35, 0x42,0x26,0x12,
+ 0x74,0x5c,0x20, 0x42,0x26,0x12, 0x6a,0x49,0x29, 0x88,0x57,0x34,
+ 0x33,0x53,0x6f, 0x33,0x53,0x6f, 0x33,0x53,0x6f, 0x33,0x53,0x6f,
+ 0x33,0x53,0x6f, 0x33,0x53,0x6f, 0xad,0x6e,0x35, 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,0x00,0x00, 0xbd,0x8e,0x6c, 0xbd,0x8e,0x6c, 0xbd,0x8e,0x6c,
+ 0x6a,0x49,0x29, 0x42,0x26,0x12, 0x3a,0x24,0x1f, 0x3a,0x24,0x1f,
+ 0x6a,0x49,0x29, 0x88,0x57,0x34, 0x6a,0x49,0x29, 0x88,0x57,0x34,
+ 0x88,0x57,0x34, 0x6a,0x49,0x29, 0x88,0x57,0x34, 0x6a,0x49,0x29,
+ 0x88,0x57,0x34, 0x88,0x57,0x34, 0x88,0x57,0x34, 0x88,0x57,0x34,
+ 0x88,0x57,0x34, 0x88,0x57,0x34, 0xa3,0x71,0x4b, 0x88,0x57,0x34,
+ 0x88,0x57,0x34, 0x6a,0x49,0x29, 0x88,0x57,0x34, 0x42,0x26,0x12,
+ 0x42,0x26,0x12, 0x6a,0x49,0x29, 0x42,0x26,0x12, 0xa3,0x71,0x4b,
+ 0x6a,0x49,0x29, 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00,
+ 0xa3,0x71,0x4b, 0x33,0x53,0x6f, 0x33,0x53,0x6f, 0x33,0x53,0x6f,
+ 0x33,0x53,0x6f, 0x33,0x53,0x6f, 0xad,0x6e,0x35, 0x42,0x26,0x12,
+ 0x74,0x5c,0x20, 0x6a,0x49,0x29, 0x6a,0x49,0x29, 0xa3,0x71,0x4b,
+ 0x33,0x53,0x6f, 0x33,0x53,0x6f, 0x33,0x53,0x6f, 0x33,0x53,0x6f,
+ 0x33,0x53,0x6f, 0x33,0x53,0x6f, 0xad,0x6e,0x35, 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,0x00,0x00, 0xa3,0x71,0x4b, 0xbd,0x8e,0x6c, 0x88,0x57,0x34,
+ 0xa3,0x71,0x4b, 0x6a,0x49,0x29, 0x6a,0x49,0x29, 0x6a,0x49,0x29,
+ 0xa3,0x71,0x4b, 0x3a,0x24,0x1f, 0x42,0x26,0x12, 0x6a,0x49,0x29,
+ 0x6a,0x49,0x29, 0x88,0x57,0x34, 0x88,0x57,0x34, 0x88,0x57,0x34,
+ 0x88,0x57,0x34, 0x88,0x57,0x34, 0x88,0x57,0x34, 0x88,0x57,0x34,
+ 0xad,0x6e,0x35, 0xa3,0x71,0x4b, 0x88,0x57,0x34, 0x6a,0x49,0x29,
+ 0x42,0x26,0x12, 0x6a,0x49,0x29, 0x88,0x57,0x34, 0x88,0x57,0x34,
+ 0x88,0x57,0x34, 0x42,0x26,0x12, 0x6a,0x49,0x29, 0x88,0x57,0x34,
+ 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00,
+ 0xbd,0x8e,0x6c, 0x33,0x53,0x6f, 0x33,0x53,0x6f, 0x33,0x53,0x6f,
+ 0x33,0x53,0x6f, 0x33,0x53,0x6f, 0xad,0x6e,0x35, 0x6a,0x49,0x29,
+ 0x74,0x5c,0x20, 0x42,0x26,0x12, 0x6a,0x49,0x29, 0x88,0x57,0x34,
+ 0x33,0x53,0x6f, 0x33,0x53,0x6f, 0x33,0x53,0x6f, 0x33,0x53,0x6f,
+ 0x33,0x53,0x6f, 0x33,0x53,0x6f, 0xad,0x6e,0x35, 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,0x00,0x00, 0x00,0x00,0x00, 0xbd,0x8e,0x6c, 0x88,0x57,0x34,
+ 0x88,0x57,0x34, 0xa3,0x71,0x4b, 0xa3,0x71,0x4b, 0xa3,0x71,0x4b,
+ 0xa3,0x71,0x4b, 0xbd,0x8e,0x6c, 0x88,0x57,0x34, 0x88,0x57,0x34,
+ 0x42,0x26,0x12, 0x6a,0x49,0x29, 0x88,0x57,0x34, 0x88,0x57,0x34,
+ 0x88,0x57,0x34, 0x88,0x57,0x34, 0xa3,0x71,0x4b, 0xad,0x6e,0x35,
+ 0x88,0x57,0x34, 0x88,0x57,0x34, 0x3a,0x24,0x1f, 0x3a,0x24,0x1f,
+ 0x88,0x57,0x34, 0x42,0x26,0x12, 0x88,0x57,0x34, 0x6a,0x49,0x29,
+ 0x88,0x57,0x34, 0x3a,0x24,0x1f, 0x3a,0x24,0x1f, 0x00,0x00,0x00,
+ 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00,
+ 0xbd,0x8e,0x6c, 0x33,0x53,0x6f, 0x33,0x53,0x6f, 0x33,0x53,0x6f,
+ 0x33,0x53,0x6f, 0x33,0x53,0x6f, 0xad,0x6e,0x35, 0x74,0x5c,0x20,
+ 0x74,0x5c,0x20, 0x74,0x5c,0x20, 0x74,0x5c,0x20, 0xad,0x6e,0x35,
+ 0x33,0x53,0x6f, 0x33,0x53,0x6f, 0x33,0x53,0x6f, 0x33,0x53,0x6f,
+ 0x33,0x53,0x6f, 0x33,0x53,0x6f, 0xad,0x6e,0x35, 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,0x00,0x00, 0x00,0x00,0x00, 0x6a,0x49,0x29, 0x88,0x57,0x34,
+ 0x88,0x57,0x34, 0x6a,0x49,0x29, 0x88,0x57,0x34, 0x88,0x57,0x34,
+ 0xbd,0x8e,0x6c, 0xa3,0x71,0x4b, 0x6a,0x49,0x29, 0x6a,0x49,0x29,
+ 0x6a,0x49,0x29, 0x3a,0x24,0x1f, 0x3a,0x24,0x1f, 0x3a,0x24,0x1f,
+ 0x88,0x57,0x34, 0x66,0x21,0x18, 0x42,0x26,0x12, 0x42,0x26,0x12,
+ 0x42,0x26,0x12, 0x42,0x26,0x12, 0x42,0x26,0x12, 0x3a,0x24,0x1f,
+ 0x42,0x26,0x12, 0x6a,0x49,0x29, 0x6a,0x49,0x29, 0x6a,0x49,0x29,
+ 0x6a,0x49,0x29, 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00,
+ 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00,
+ 0xad,0x6e,0x35, 0x42,0x26,0x12, 0x42,0x26,0x12, 0x42,0x26,0x12,
+ 0x42,0x26,0x12, 0x42,0x26,0x12, 0xad,0x6e,0x35, 0x42,0x26,0x12,
+ 0x74,0x5c,0x20, 0x6a,0x49,0x29, 0x74,0x5c,0x20, 0xad,0x6e,0x35,
+ 0x42,0x26,0x12, 0x42,0x26,0x12, 0x42,0x26,0x12, 0x42,0x26,0x12,
+ 0x42,0x26,0x12, 0x42,0x26,0x12, 0xad,0x6e,0x35, 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,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00, 0xa3,0x71,0x4b,
+ 0xa3,0x71,0x4b, 0x88,0x57,0x34, 0x88,0x57,0x34, 0x6a,0x49,0x29,
+ 0x88,0x57,0x34, 0x88,0x57,0x34, 0x6a,0x49,0x29, 0x66,0x21,0x18,
+ 0x6a,0x49,0x29, 0x6a,0x49,0x29, 0x6a,0x49,0x29, 0x6a,0x49,0x29,
+ 0x6a,0x49,0x29, 0x3a,0x24,0x1f, 0x3a,0x24,0x1f, 0x42,0x26,0x12,
+ 0x6a,0x49,0x29, 0x42,0x26,0x12, 0x6a,0x49,0x29, 0x74,0x5c,0x20,
+ 0x74,0x5c,0x20, 0x6a,0x49,0x29, 0x74,0x5c,0x20, 0x74,0x5c,0x20,
+ 0x74,0x5c,0x20, 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00,
+ 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00,
+ 0x95,0x37,0x27, 0x3a,0x24,0x1f, 0x3a,0x24,0x1f, 0x3a,0x24,0x1f,
+ 0x42,0x26,0x12, 0x42,0x26,0x12, 0xad,0x6e,0x35, 0x74,0x5c,0x20,
+ 0x74,0x5c,0x20, 0x74,0x5c,0x20, 0x74,0x5c,0x20, 0xad,0x6e,0x35,
+ 0x3a,0x24,0x1f, 0x3a,0x24,0x1f, 0x3a,0x24,0x1f, 0x66,0x21,0x18,
+ 0x3a,0x24,0x1f, 0x42,0x26,0x12, 0xad,0x6e,0x35, 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,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00, 0x88,0x57,0x34,
+ 0x6a,0x49,0x29, 0x6a,0x49,0x29, 0x6a,0x49,0x29, 0x88,0x57,0x34,
+ 0x6a,0x49,0x29, 0x3a,0x24,0x1f, 0x42,0x26,0x12, 0x6a,0x49,0x29,
+ 0x6a,0x49,0x29, 0x66,0x21,0x18, 0x88,0x57,0x34, 0x6a,0x49,0x29,
+ 0x6a,0x49,0x29, 0x6a,0x49,0x29, 0x42,0x26,0x12, 0x74,0x5c,0x20,
+ 0x42,0x26,0x12, 0x42,0x26,0x12, 0x42,0x26,0x12, 0x74,0x5c,0x20,
+ 0x42,0x26,0x12, 0x74,0x5c,0x20, 0x74,0x5c,0x20, 0x74,0x5c,0x20,
+ 0x74,0x5c,0x20, 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00,
+ 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00,
+ 0xad,0x6e,0x35, 0x3a,0x24,0x1f, 0x42,0x26,0x12, 0x3a,0x24,0x1f,
+ 0x42,0x26,0x12, 0x42,0x26,0x12, 0xad,0x6e,0x35, 0x74,0x5c,0x20,
+ 0x74,0x5c,0x20, 0x74,0x5c,0x20, 0x74,0x5c,0x20, 0xad,0x6e,0x35,
+ 0x42,0x26,0x12, 0x3a,0x24,0x1f, 0x3a,0x24,0x1f, 0x3a,0x24,0x1f,
+ 0x3a,0x24,0x1f, 0x66,0x21,0x18, 0xad,0x6e,0x35, 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,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00, 0x6a,0x49,0x29,
+ 0x88,0x57,0x34, 0x3a,0x24,0x1f, 0x42,0x26,0x12, 0x74,0x5c,0x20,
+ 0x74,0x5c,0x20, 0x6a,0x49,0x29, 0x6a,0x49,0x29, 0x42,0x26,0x12,
+ 0x6a,0x49,0x29, 0x6a,0x49,0x29, 0x42,0x26,0x12, 0x6a,0x49,0x29,
+ 0x42,0x26,0x12, 0x42,0x26,0x12, 0x74,0x5c,0x20, 0x74,0x5c,0x20,
+ 0x74,0x5c,0x20, 0x74,0x5c,0x20, 0x74,0x5c,0x20, 0x74,0x5c,0x20,
+ 0x74,0x5c,0x20, 0x74,0x5c,0x20, 0x74,0x5c,0x20, 0xa1,0x85,0x31,
+ 0x74,0x5c,0x20, 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00,
+ 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00,
+ 0xad,0x6e,0x35, 0x42,0x26,0x12, 0x3a,0x24,0x1f, 0x3a,0x24,0x1f,
+ 0x3a,0x24,0x1f, 0x42,0x26,0x12, 0xad,0x6e,0x35, 0x74,0x5c,0x20,
+ 0xad,0x6e,0x35, 0x74,0x5c,0x20, 0x74,0x5c,0x20, 0xad,0x6e,0x35,
+ 0x3a,0x24,0x1f, 0x42,0x26,0x12, 0x3a,0x24,0x1f, 0x42,0x26,0x12,
+ 0x3a,0x24,0x1f, 0x42,0x26,0x12, 0xad,0x6e,0x35, 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,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00,
+ 0x88,0x57,0x34, 0x42,0x26,0x12, 0xa1,0x85,0x31, 0xa1,0x85,0x31,
+ 0x6a,0x49,0x29, 0x74,0x5c,0x20, 0x6a,0x49,0x29, 0x3a,0x24,0x1f,
+ 0x6a,0x49,0x29, 0x74,0x5c,0x20, 0x74,0x5c,0x20, 0x74,0x5c,0x20,
+ 0x74,0x5c,0x20, 0x42,0x26,0x12, 0x42,0x26,0x12, 0x42,0x26,0x12,
+ 0x74,0x5c,0x20, 0x74,0x5c,0x20, 0x74,0x5c,0x20, 0x74,0x5c,0x20,
+ 0x42,0x26,0x12, 0x74,0x5c,0x20, 0x74,0x5c,0x20, 0x74,0x5c,0x20,
+ 0x42,0x26,0x12, 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00,
+ 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00,
+ 0xa3,0x71,0x4b, 0x42,0x26,0x12, 0x42,0x26,0x12, 0x3a,0x24,0x1f,
+ 0x42,0x26,0x12, 0x42,0x26,0x12, 0xad,0x6e,0x35, 0x74,0x5c,0x20,
+ 0x74,0x5c,0x20, 0xad,0x6e,0x35, 0x74,0x5c,0x20, 0xad,0x6e,0x35,
+ 0x42,0x26,0x12, 0x42,0x26,0x12, 0x42,0x26,0x12, 0x42,0x26,0x12,
+ 0x3a,0x24,0x1f, 0x42,0x26,0x12, 0xad,0x6e,0x35, 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,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00,
+ 0xa3,0x71,0x4b, 0x3a,0x24,0x1f, 0x74,0x5c,0x20, 0x74,0x5c,0x20,
+ 0xa1,0x85,0x31, 0x74,0x5c,0x20, 0x74,0x5c,0x20, 0x74,0x5c,0x20,
+ 0x42,0x26,0x12, 0x3a,0x24,0x1f, 0x74,0x5c,0x20, 0x42,0x26,0x12,
+ 0x74,0x5c,0x20, 0x74,0x5c,0x20, 0x74,0x5c,0x20, 0x74,0x5c,0x20,
+ 0x74,0x5c,0x20, 0x74,0x5c,0x20, 0x74,0x5c,0x20, 0xa1,0x85,0x31,
+ 0x74,0x5c,0x20, 0xa1,0x85,0x31, 0x74,0x5c,0x20, 0xa1,0x85,0x31,
+ 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00,
+ 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00,
+ 0xad,0x6e,0x35, 0x42,0x26,0x12, 0x42,0x26,0x12, 0x42,0x26,0x12,
+ 0x42,0x26,0x12, 0x42,0x26,0x12, 0xa1,0x85,0x31, 0xa1,0x85,0x31,
+ 0xa1,0x85,0x31, 0xa1,0x85,0x31, 0xa1,0x85,0x31, 0xad,0x6e,0x35,
+ 0x42,0x26,0x12, 0x42,0x26,0x12, 0x42,0x26,0x12, 0x42,0x26,0x12,
+ 0x42,0x26,0x12, 0x42,0x26,0x12, 0xce,0xac,0x4d, 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,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00,
+ 0x00,0x00,0x00, 0x00,0x00,0x00, 0x3a,0x24,0x1f, 0xa1,0x85,0x31,
+ 0xa1,0x85,0x31, 0x74,0x5c,0x20, 0x74,0x5c,0x20, 0x74,0x5c,0x20,
+ 0x74,0x5c,0x20, 0x42,0x26,0x12, 0x74,0x5c,0x20, 0x42,0x26,0x12,
+ 0x74,0x5c,0x20, 0x74,0x5c,0x20, 0x42,0x26,0x12, 0x42,0x26,0x12,
+ 0x74,0x5c,0x20, 0x74,0x5c,0x20, 0x74,0x5c,0x20, 0xa1,0x85,0x31,
+ 0xa1,0x85,0x31, 0xa1,0x85,0x31, 0xce,0xac,0x4d, 0xa1,0x85,0x31,
+ 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00,
+ 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00,
+ 0xa1,0x85,0x31, 0x42,0x26,0x12, 0x42,0x26,0x12, 0x42,0x26,0x12,
+ 0x66,0x21,0x18, 0x42,0x26,0x12, 0xad,0x6e,0x35, 0xad,0x6e,0x35,
+ 0xa1,0x85,0x31, 0x74,0x5c,0x20, 0xa1,0x85,0x31, 0xa1,0x85,0x31,
+ 0x42,0x26,0x12, 0x42,0x26,0x12, 0x66,0x21,0x18, 0x42,0x26,0x12,
+ 0x42,0x26,0x12, 0x42,0x26,0x12, 0xa1,0x85,0x31, 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,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00,
+ 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00, 0xa1,0x85,0x31,
+ 0x74,0x5c,0x20, 0xa1,0x85,0x31, 0x74,0x5c,0x20, 0x74,0x5c,0x20,
+ 0x74,0x5c,0x20, 0x74,0x5c,0x20, 0x74,0x5c,0x20, 0x74,0x5c,0x20,
+ 0x74,0x5c,0x20, 0xa1,0x85,0x31, 0x74,0x5c,0x20, 0x74,0x5c,0x20,
+ 0x74,0x5c,0x20, 0x74,0x5c,0x20, 0x74,0x5c,0x20, 0xa1,0x85,0x31,
+ 0x74,0x5c,0x20, 0xa1,0x85,0x31, 0xa1,0x85,0x31, 0xa1,0x85,0x31,
+ 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00,
+ 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00,
+ 0xa1,0x85,0x31, 0x66,0x21,0x18, 0x42,0x26,0x12, 0x42,0x26,0x12,
+ 0x42,0x26,0x12, 0x42,0x26,0x12, 0xa1,0x85,0x31, 0xa1,0x85,0x31,
+ 0xa1,0x85,0x31, 0xa1,0x85,0x31, 0xad,0x6e,0x35, 0xa1,0x85,0x31,
+ 0x66,0x21,0x18, 0x42,0x26,0x12, 0x42,0x26,0x12, 0x66,0x21,0x18,
+ 0x42,0x26,0x12, 0x66,0x21,0x18, 0xce,0xac,0x4d, 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,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00,
+ 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00, 0xa1,0x85,0x31,
+ 0xa1,0x85,0x31, 0xa1,0x85,0x31, 0xa1,0x85,0x31, 0x74,0x5c,0x20,
+ 0x74,0x5c,0x20, 0x74,0x5c,0x20, 0x74,0x5c,0x20, 0x74,0x5c,0x20,
+ 0x74,0x5c,0x20, 0x74,0x5c,0x20, 0x74,0x5c,0x20, 0xa1,0x85,0x31,
+ 0xa1,0x85,0x31, 0xa1,0x85,0x31, 0xa1,0x85,0x31, 0xa1,0x85,0x31,
+ 0xce,0xac,0x4d, 0xa1,0x85,0x31, 0xce,0xac,0x4d, 0x74,0x5c,0x20,
+ 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00,
+ 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00,
+ 0xce,0xac,0x4d, 0x6a,0x49,0x29, 0x74,0x5c,0x20, 0x66,0x21,0x18,
+ 0x74,0x5c,0x20, 0x74,0x5c,0x20, 0xa1,0x85,0x31, 0xad,0x6e,0x35,
+ 0xa1,0x85,0x31, 0xa1,0x85,0x31, 0xa1,0x85,0x31, 0xa1,0x85,0x31,
+ 0x74,0x5c,0x20, 0x42,0x26,0x12, 0x74,0x5c,0x20, 0x42,0x26,0x12,
+ 0x74,0x5c,0x20, 0x6a,0x49,0x29, 0xce,0xac,0x4d, 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,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00,
+ 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00, 0x74,0x5c,0x20,
+ 0xa1,0x85,0x31, 0xa1,0x85,0x31, 0x74,0x5c,0x20, 0x74,0x5c,0x20,
+ 0x74,0x5c,0x20, 0x74,0x5c,0x20, 0xa1,0x85,0x31, 0xa1,0x85,0x31,
+ 0x74,0x5c,0x20, 0x74,0x5c,0x20, 0x74,0x5c,0x20, 0x74,0x5c,0x20,
+ 0x74,0x5c,0x20, 0x74,0x5c,0x20, 0xa1,0x85,0x31, 0xa1,0x85,0x31,
+ 0xa1,0x85,0x31, 0xa1,0x85,0x31, 0xce,0xac,0x4d, 0x74,0x5c,0x20,
+ 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00,
+ 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00,
+ 0xa1,0x85,0x31, 0x66,0x21,0x18, 0x74,0x5c,0x20, 0x74,0x5c,0x20,
+ 0x66,0x21,0x18, 0x6a,0x49,0x29, 0xce,0xac,0x4d, 0xa1,0x85,0x31,
+ 0xa1,0x85,0x31, 0xa1,0x85,0x31, 0xa1,0x85,0x31, 0xad,0x6e,0x35,
+ 0x74,0x5c,0x20, 0x74,0x5c,0x20, 0x66,0x21,0x18, 0x74,0x5c,0x20,
+ 0x6a,0x49,0x29, 0x6a,0x49,0x29, 0xce,0xac,0x4d, 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,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00,
+ 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00, 0x74,0x5c,0x20,
+ 0xa1,0x85,0x31, 0xa1,0x85,0x31, 0x74,0x5c,0x20, 0xa1,0x85,0x31,
+ 0x74,0x5c,0x20, 0xa1,0x85,0x31, 0x74,0x5c,0x20, 0x74,0x5c,0x20,
+ 0xa1,0x85,0x31, 0xa1,0x85,0x31, 0xa1,0x85,0x31, 0xa1,0x85,0x31,
+ 0x74,0x5c,0x20, 0xa1,0x85,0x31, 0xa1,0x85,0x31, 0xa1,0x85,0x31,
+ 0xa1,0x85,0x31, 0xa1,0x85,0x31, 0xa1,0x85,0x31, 0x74,0x5c,0x20,
+ 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00,
+ 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00,
+ 0xce,0xac,0x4d, 0x74,0x5c,0x20, 0x74,0x5c,0x20, 0x66,0x21,0x18,
+ 0x74,0x5c,0x20, 0x74,0x5c,0x20, 0xa1,0x85,0x31, 0xad,0x6e,0x35,
+ 0xce,0xac,0x4d, 0xad,0x6e,0x35, 0x74,0x5c,0x20, 0x74,0x5c,0x20,
+ 0x66,0x21,0x18, 0x74,0x5c,0x20, 0x74,0x5c,0x20, 0x74,0x5c,0x20,
+ 0x66,0x21,0x18, 0x74,0x5c,0x20, 0xce,0xac,0x4d, 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,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00,
+ 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00,
+ 0xce,0xac,0x4d, 0x74,0x5c,0x20, 0xa1,0x85,0x31, 0x74,0x5c,0x20,
+ 0x74,0x5c,0x20, 0xa1,0x85,0x31, 0xa1,0x85,0x31, 0x74,0x5c,0x20,
+ 0xa1,0x85,0x31, 0x74,0x5c,0x20, 0x74,0x5c,0x20, 0xa1,0x85,0x31,
+ 0xa1,0x85,0x31, 0xa1,0x85,0x31, 0xce,0xac,0x4d, 0xce,0xac,0x4d,
+ 0xce,0xac,0x4d, 0xce,0xac,0x4d, 0xce,0xac,0x4d, 0x42,0x26,0x12,
+ 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00,
+ 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00,
+ 0xa1,0x85,0x31, 0x74,0x5c,0x20, 0xad,0x6e,0x35, 0x74,0x5c,0x20,
+ 0x74,0x5c,0x20, 0xad,0x6e,0x35, 0xce,0xac,0x4d, 0xce,0xac,0x4d,
+ 0xad,0x6e,0x35, 0x74,0x5c,0x20, 0xad,0x6e,0x35, 0x74,0x5c,0x20,
+ 0x74,0x5c,0x20, 0xad,0x6e,0x35, 0x74,0x5c,0x20, 0xad,0x6e,0x35,
+ 0x74,0x5c,0x20, 0x74,0x5c,0x20, 0xce,0xac,0x4d, 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,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00,
+ 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00,
+ 0xa1,0x85,0x31, 0xa1,0x85,0x31, 0x74,0x5c,0x20, 0x74,0x5c,0x20,
+ 0x74,0x5c,0x20, 0xa1,0x85,0x31, 0xa1,0x85,0x31, 0xce,0xac,0x4d,
+ 0xa1,0x85,0x31, 0x74,0x5c,0x20, 0xa1,0x85,0x31, 0xa1,0x85,0x31,
+ 0xa1,0x85,0x31, 0xa1,0x85,0x31, 0x74,0x5c,0x20, 0xa1,0x85,0x31,
+ 0xa1,0x85,0x31, 0xa1,0x85,0x31, 0xa1,0x85,0x31, 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,
+ 0xce,0xac,0x4d, 0xad,0x6e,0x35, 0x74,0x5c,0x20, 0xad,0x6e,0x35,
+ 0x74,0x5c,0x20, 0xad,0x6e,0x35, 0xa1,0x85,0x31, 0x74,0x5c,0x20,
+ 0xad,0x6e,0x35, 0x74,0x5c,0x20, 0x74,0x5c,0x20, 0xad,0x6e,0x35,
+ 0x74,0x5c,0x20, 0x74,0x5c,0x20, 0x74,0x5c,0x20, 0xad,0x6e,0x35,
+ 0x74,0x5c,0x20, 0xad,0x6e,0x35, 0xce,0xac,0x4d, 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,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00,
+ 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00,
+ 0xa1,0x85,0x31, 0xa1,0x85,0x31, 0xa1,0x85,0x31, 0xa1,0x85,0x31,
+ 0xce,0xac,0x4d, 0x74,0x5c,0x20, 0x74,0x5c,0x20, 0xa1,0x85,0x31,
+ 0xa1,0x85,0x31, 0xa1,0x85,0x31, 0xce,0xac,0x4d, 0xa1,0x85,0x31,
+ 0xce,0xac,0x4d, 0xa1,0x85,0x31, 0xce,0xac,0x4d, 0xce,0xac,0x4d,
+ 0xa1,0x85,0x31, 0xce,0xac,0x4d, 0xa1,0x85,0x31, 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,
+ 0xce,0xac,0x4d, 0xad,0x6e,0x35, 0x74,0x5c,0x20, 0xad,0x6e,0x35,
+ 0x74,0x5c,0x20, 0xad,0x6e,0x35, 0x74,0x5c,0x20, 0xad,0x6e,0x35,
+ 0x74,0x5c,0x20, 0xad,0x6e,0x35, 0xad,0x6e,0x35, 0x74,0x5c,0x20,
+ 0xad,0x6e,0x35, 0xad,0x6e,0x35, 0x74,0x5c,0x20, 0xa1,0x85,0x31,
+ 0xad,0x6e,0x35, 0xce,0xac,0x4d, 0xa1,0x85,0x31, 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,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00,
+ 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00,
+ 0x6a,0x49,0x29, 0xa1,0x85,0x31, 0xa1,0x85,0x31, 0xa1,0x85,0x31,
+ 0xa1,0x85,0x31, 0xce,0xac,0x4d, 0xa1,0x85,0x31, 0xa1,0x85,0x31,
+ 0x74,0x5c,0x20, 0x74,0x5c,0x20, 0xa1,0x85,0x31, 0x74,0x5c,0x20,
+ 0x74,0x5c,0x20, 0xa1,0x85,0x31, 0xa1,0x85,0x31, 0xce,0xac,0x4d,
+ 0xce,0xac,0x4d, 0xa1,0x85,0x31, 0xa1,0x85,0x31, 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,
+ 0xce,0xac,0x4d, 0xa1,0x85,0x31, 0xa1,0x85,0x31, 0xad,0x6e,0x35,
+ 0xa1,0x85,0x31, 0xa1,0x85,0x31, 0xad,0x6e,0x35, 0xa1,0x85,0x31,
+ 0xa1,0x85,0x31, 0xa1,0x85,0x31, 0xad,0x6e,0x35, 0xa1,0x85,0x31,
+ 0xa1,0x85,0x31, 0xad,0x6e,0x35, 0xa1,0x85,0x31, 0xa1,0x85,0x31,
+ 0xce,0xac,0x4d, 0x74,0x5c,0x20, 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,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,0x00, 0xa1,0x85,0x31, 0xce,0xac,0x4d, 0xa1,0x85,0x31,
+ 0xa1,0x85,0x31, 0x74,0x5c,0x20, 0xa1,0x85,0x31, 0xce,0xac,0x4d,
+ 0xa1,0x85,0x31, 0xa1,0x85,0x31, 0xa1,0x85,0x31, 0xa1,0x85,0x31,
+ 0xa1,0x85,0x31, 0xa1,0x85,0x31, 0xa1,0x85,0x31, 0xa1,0x85,0x31,
+ 0xce,0xac,0x4d, 0xa1,0x85,0x31, 0x74,0x5c,0x20, 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,
+ 0xce,0xac,0x4d, 0xa1,0x85,0x31, 0xa1,0x85,0x31, 0xad,0x6e,0x35,
+ 0xa1,0x85,0x31, 0xa1,0x85,0x31, 0xad,0x6e,0x35, 0xa1,0x85,0x31,
+ 0xad,0x6e,0x35, 0xa1,0x85,0x31, 0xad,0x6e,0x35, 0xa1,0x85,0x31,
+ 0xad,0x6e,0x35, 0xa1,0x85,0x31, 0xa1,0x85,0x31, 0xce,0xac,0x4d,
+ 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,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,0x00, 0x00,0x00,0x00,
+ 0x00,0x00,0x00, 0x74,0x5c,0x20, 0xa1,0x85,0x31, 0xa1,0x85,0x31,
+ 0xa1,0x85,0x31, 0xa1,0x85,0x31, 0xa1,0x85,0x31, 0x74,0x5c,0x20,
+ 0x74,0x5c,0x20, 0xa1,0x85,0x31, 0xce,0xac,0x4d, 0xce,0xac,0x4d,
+ 0xce,0xac,0x4d, 0xce,0xac,0x4d, 0xa1,0x85,0x31, 0xce,0xac,0x4d,
+ 0xa1,0x85,0x31, 0xce,0xac,0x4d, 0x74,0x5c,0x20, 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,
+ 0xce,0xac,0x4d, 0xa1,0x85,0x31, 0xa1,0x85,0x31, 0xce,0xac,0x4d,
+ 0xad,0x6e,0x35, 0xce,0xac,0x4d, 0xa1,0x85,0x31, 0xa1,0x85,0x31,
+ 0xa1,0x85,0x31, 0xa1,0x85,0x31, 0xa1,0x85,0x31, 0xce,0xac,0x4d,
+ 0xa1,0x85,0x31, 0xce,0xac,0x4d, 0xce,0xac,0x4d, 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,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,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00,
+ 0x00,0x00,0x00, 0x74,0x5c,0x20, 0xce,0xac,0x4d, 0xa1,0x85,0x31,
+ 0xa1,0x85,0x31, 0xa1,0x85,0x31, 0xce,0xac,0x4d, 0xa1,0x85,0x31,
+ 0xa1,0x85,0x31, 0xa1,0x85,0x31, 0x74,0x5c,0x20, 0x74,0x5c,0x20,
+ 0xa1,0x85,0x31, 0x74,0x5c,0x20, 0xa1,0x85,0x31, 0xce,0xac,0x4d,
+ 0xce,0xac,0x4d, 0xa1,0x85,0x31, 0x6a,0x49,0x29, 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,
+ 0xce,0xac,0x4d, 0xce,0xac,0x4d, 0xad,0x6e,0x35, 0xce,0xac,0x4d,
+ 0xce,0xac,0x4d, 0xce,0xac,0x4d, 0xad,0x6e,0x35, 0xce,0xac,0x4d,
+ 0xce,0xac,0x4d, 0xce,0xac,0x4d, 0xad,0x6e,0x35, 0xce,0xac,0x4d,
+ 0xce,0xac,0x4d, 0xa3,0x71,0x4b, 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,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,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00,
+ 0x00,0x00,0x00, 0x74,0x5c,0x20, 0xce,0xac,0x4d, 0xce,0xac,0x4d,
+ 0x74,0x5c,0x20, 0x74,0x5c,0x20, 0xce,0xac,0x4d, 0xa1,0x85,0x31,
+ 0xce,0xac,0x4d, 0xce,0xac,0x4d, 0xce,0xac,0x4d, 0xa1,0x85,0x31,
+ 0xce,0xac,0x4d, 0x74,0x5c,0x20, 0xa1,0x85,0x31, 0xa1,0x85,0x31,
+ 0xa1,0x85,0x31, 0xa1,0x85,0x31, 0x42,0x26,0x12, 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,
+ 0xce,0xac,0x4d, 0xce,0xac,0x4d, 0xce,0xac,0x4d, 0xce,0xac,0x4d,
+ 0xad,0x6e,0x35, 0xce,0xac,0x4d, 0xce,0xac,0x4d, 0xce,0xac,0x4d,
+ 0xce,0xac,0x4d, 0xce,0xac,0x4d, 0xce,0xac,0x4d, 0xce,0xac,0x4d,
+ 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,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,0x00, 0x00,0x00,0x00,
+ 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00,
+ 0x00,0x00,0x00, 0x00,0x00,0x00, 0xce,0xac,0x4d, 0xa1,0x85,0x31,
+ 0xce,0xac,0x4d, 0xce,0xac,0x4d, 0x74,0x5c,0x20, 0xa1,0x85,0x31,
+ 0x74,0x5c,0x20, 0xa1,0x85,0x31, 0x74,0x5c,0x20, 0xa1,0x85,0x31,
+ 0xce,0xac,0x4d, 0xce,0xac,0x4d, 0xce,0xac,0x4d, 0xce,0xac,0x4d,
+ 0xce,0xac,0x4d, 0xce,0xac,0x4d, 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,0x00,0x00,
+ 0xce,0xac,0x4d, 0xce,0xac,0x4d, 0xce,0xac,0x4d, 0xce,0xac,0x4d,
+ 0xce,0xac,0x4d, 0xce,0xac,0x4d, 0xce,0xac,0x4d, 0xce,0xac,0x4d,
+ 0xce,0xac,0x4d, 0xce,0xac,0x4d, 0xce,0xac,0x4d, 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,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,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, 0xce,0xac,0x4d, 0xa1,0x85,0x31,
+ 0xa1,0x85,0x31, 0xa1,0x85,0x31, 0xce,0xac,0x4d, 0xce,0xac,0x4d,
+ 0xce,0xac,0x4d, 0xa1,0x85,0x31, 0xa1,0x85,0x31, 0xce,0xac,0x4d,
+ 0x74,0x5c,0x20, 0x74,0x5c,0x20, 0xce,0xac,0x4d, 0xa1,0x85,0x31,
+ 0xa1,0x85,0x31, 0x74,0x5c,0x20, 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,0x00,0x00,
+ 0xce,0xac,0x4d, 0xce,0xac,0x4d, 0xce,0xac,0x4d, 0xce,0xac,0x4d,
+ 0xce,0xac,0x4d, 0xce,0xac,0x4d, 0xce,0xac,0x4d, 0xce,0xac,0x4d,
+ 0xce,0xac,0x4d, 0xbd,0x8e,0x6c, 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,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,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, 0xa1,0x85,0x31, 0xce,0xac,0x4d,
+ 0xa1,0x85,0x31, 0xa1,0x85,0x31, 0x74,0x5c,0x20, 0x74,0x5c,0x20,
+ 0xce,0xac,0x4d, 0xce,0xac,0x4d, 0xce,0xac,0x4d, 0xce,0xac,0x4d,
+ 0xce,0xac,0x4d, 0xa1,0x85,0x31, 0xa1,0x85,0x31, 0xce,0xac,0x4d,
+ 0xce,0xac,0x4d, 0xa1,0x85,0x31, 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,0x00,0x00,
+ 0xce,0xac,0x4d, 0xce,0xac,0x4d, 0xce,0xac,0x4d, 0xce,0xac,0x4d,
+ 0xce,0xac,0x4d, 0xce,0xac,0x4d, 0xce,0xac,0x4d, 0xce,0xac,0x4d,
+ 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,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,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,
+ 0x00,0x00,0x00, 0x00,0x00,0x00, 0xa1,0x85,0x31, 0xa1,0x85,0x31,
+ 0xa1,0x85,0x31, 0xce,0xac,0x4d, 0xce,0xac,0x4d, 0xa1,0x85,0x31,
+ 0xa1,0x85,0x31, 0x74,0x5c,0x20, 0x74,0x5c,0x20, 0xa1,0x85,0x31,
+ 0xa1,0x85,0x31, 0xce,0xac,0x4d, 0xa1,0x85,0x31, 0xa1,0x85,0x31,
+ 0xa1,0x85,0x31, 0x74,0x5c,0x20, 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,0x00,0x00,
+ 0xce,0xac,0x4d, 0xce,0xac,0x4d, 0xce,0xac,0x4d, 0xce,0xac,0x4d,
+ 0xce,0xac,0x4d, 0xce,0xac,0x4d, 0xce,0xac,0x4d, 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,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,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, 0x00,0x00,0x00,
+ 0x00,0x00,0x00, 0x00,0x00,0x00, 0xa1,0x85,0x31, 0xce,0xac,0x4d,
+ 0xa1,0x85,0x31, 0xa1,0x85,0x31, 0xa1,0x85,0x31, 0xce,0xac,0x4d,
+ 0xce,0xac,0x4d, 0xce,0xac,0x4d, 0xa1,0x85,0x31, 0xa1,0x85,0x31,
+ 0x74,0x5c,0x20, 0xce,0xac,0x4d, 0xce,0xac,0x4d, 0xce,0xac,0x4d,
+ 0xa1,0x85,0x31, 0x74,0x5c,0x20, 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,0x00,0x00,
+ 0xce,0xac,0x4d, 0xce,0xac,0x4d, 0xce,0xac,0x4d, 0xce,0xac,0x4d,
+ 0xce,0xac,0x4d, 0xa3,0x71,0x4b, 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,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,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, 0x00,0x00,0x00, 0x00,0x00,0x00,
+ 0x00,0x00,0x00, 0x00,0x00,0x00, 0x74,0x5c,0x20, 0xce,0xac,0x4d,
+ 0xa1,0x85,0x31, 0xa1,0x85,0x31, 0xa1,0x85,0x31, 0xa1,0x85,0x31,
+ 0x74,0x5c,0x20, 0xa1,0x85,0x31, 0xce,0xac,0x4d, 0xce,0xac,0x4d,
+ 0xce,0xac,0x4d, 0xa1,0x85,0x31, 0xce,0xac,0x4d, 0xa1,0x85,0x31,
+ 0xce,0xac,0x4d, 0x6a,0x49,0x29, 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,0x00,0x00,
+ 0xce,0xac,0x4d, 0xce,0xac,0x4d, 0xce,0xac,0x4d, 0xce,0xac,0x4d,
+ 0x6a,0x49,0x29, 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,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,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, 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00,
+ 0x00,0x00,0x00, 0x00,0x00,0x00, 0x6a,0x49,0x29, 0xa1,0x85,0x31,
+ 0xce,0xac,0x4d, 0xa1,0x85,0x31, 0xce,0xac,0x4d, 0xce,0xac,0x4d,
+ 0xa1,0x85,0x31, 0xa1,0x85,0x31, 0xa1,0x85,0x31, 0x74,0x5c,0x20,
+ 0xa1,0x85,0x31, 0xa1,0x85,0x31, 0xa1,0x85,0x31, 0xa1,0x85,0x31,
+ 0xa1,0x85,0x31, 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,0x00,0x00, 0x00,0x00,0x00,
+ 0xce,0xac,0x4d, 0xce,0xac,0x4d, 0xce,0xac,0x4d, 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,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,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, 0x00,0x00,0x00,
+ 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00,
+ 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00, 0xce,0xac,0x4d,
+ 0xa1,0x85,0x31, 0xa1,0x85,0x31, 0xa1,0x85,0x31, 0xa1,0x85,0x31,
+ 0xce,0xac,0x4d, 0xce,0xac,0x4d, 0xce,0xac,0x4d, 0xa1,0x85,0x31,
+ 0xce,0xac,0x4d, 0xa1,0x85,0x31, 0xa1,0x85,0x31, 0xce,0xac,0x4d,
+ 0xa1,0x85,0x31, 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,0x00,0x00, 0x00,0x00,0x00,
+ 0xce,0xac,0x4d, 0xce,0xac,0x4d, 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,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,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, 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, 0xa1,0x85,0x31,
+ 0xa1,0x85,0x31, 0xce,0xac,0x4d, 0xce,0xac,0x4d, 0x74,0x5c,0x20,
+ 0x74,0x5c,0x20, 0xa1,0x85,0x31, 0xa1,0x85,0x31, 0xa1,0x85,0x31,
+ 0xa1,0x85,0x31, 0xce,0xac,0x4d, 0xce,0xac,0x4d, 0xa1,0x85,0x31,
+ 0xa1,0x85,0x31, 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,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,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, 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,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,0x00,
+ 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00, 0xa1,0x85,0x31,
+ 0xce,0xac,0x4d, 0xa1,0x85,0x31, 0xce,0xac,0x4d, 0xce,0xac,0x4d,
+ 0xce,0xac,0x4d, 0xa1,0x85,0x31, 0xa1,0x85,0x31, 0x74,0x5c,0x20,
+ 0xa1,0x85,0x31, 0xa1,0x85,0x31, 0xa1,0x85,0x31, 0xa1,0x85,0x31,
+ 0x74,0x5c,0x20, 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,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,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, 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,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,0x00,
+ 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00, 0x74,0x5c,0x20,
+ 0xce,0xac,0x4d, 0xa1,0x85,0x31, 0xa1,0x85,0x31, 0x74,0x5c,0x20,
+ 0xa1,0x85,0x31, 0xce,0xac,0x4d, 0xa1,0x85,0x31, 0xce,0xac,0x4d,
+ 0xa1,0x85,0x31, 0xa1,0x85,0x31, 0xa1,0x85,0x31, 0xa1,0x85,0x31,
+ 0xa1,0x85,0x31, 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,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,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, 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00,
--
cgit v1.2.3
From b5b2cea39c0650ed34f5385ed1fe175d431f604e Mon Sep 17 00:00:00 2001
From: Simon Howard
Date: Fri, 18 Dec 2009 22:11:06 +0000
Subject: Fix poor quality application icons seen when the game is running. Add
back 8-bit icon files alongside files including both 8-bit and high quality
32-bit versions. Use the high quality icon files for resource files includes,
and the low quality ones for in-game SDL.
Subversion-branch: /trunk/chocolate-doom
Subversion-revision: 1750
---
Makefile.am | 2 +
data/README | 7 +
data/doom.ico | Bin 55246 -> 36726 bytes
data/doom8.ico | Bin 0 -> 2238 bytes
data/setup.ico | Bin 55246 -> 36726 bytes
data/setup8.ico | Bin 0 -> 2238 bytes
setup/Makefile.am | 2 +-
setup/setup_icon.c | 1094 ++++++++------------------------------------------
src/Makefile.am | 2 +-
src/icon.c | 1126 +++++++++-------------------------------------------
10 files changed, 353 insertions(+), 1880 deletions(-)
create mode 100644 data/doom8.ico
create mode 100644 data/setup8.ico
diff --git a/Makefile.am b/Makefile.am
index 3f43e3ab..906bc76a 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -26,8 +26,10 @@ CODEBLOCKS_FILES= \
DATA_FILES= \
data/README \
data/doom.ico \
+ data/doom8.ico \
data/doom.png \
data/setup.ico \
+ data/setup8.ico \
data/setup.png \
data/convert-icon
diff --git a/data/README b/data/README
index 8b927335..82fac17e 100644
--- a/data/README
+++ b/data/README
@@ -3,3 +3,10 @@ The Chocolate Doom icon is based on an image by Chris Metcalf
http://www.flickr.com/photos/laffy4k/448920776/
+The "foo8.ico" files are 8-bit depth only, while the "foo.ico" files
+contain full 32-bit versions, scaled to different sizes and with proper
+alpha masks (as well as the 8-bit versions). The 8-bit versions are
+used when setting the icon within SDL, as SDL under Windows displays
+full color icons in a very poor quality. The full-color versions are
+used in the resource files.
+
diff --git a/data/doom.ico b/data/doom.ico
index 1aeb227d..025cb698 100644
Binary files a/data/doom.ico and b/data/doom.ico differ
diff --git a/data/doom8.ico b/data/doom8.ico
new file mode 100644
index 00000000..f55ff28f
Binary files /dev/null and b/data/doom8.ico differ
diff --git a/data/setup.ico b/data/setup.ico
index 86a3c558..dae4e5ec 100644
Binary files a/data/setup.ico and b/data/setup.ico differ
diff --git a/data/setup8.ico b/data/setup8.ico
new file mode 100644
index 00000000..6d734a11
Binary files /dev/null and b/data/setup8.ico differ
diff --git a/setup/Makefile.am b/setup/Makefile.am
index 92b4e394..91c7449a 100644
--- a/setup/Makefile.am
+++ b/setup/Makefile.am
@@ -44,7 +44,7 @@ chocolate_setup_LDADD = \
if HAVE_PYTHON
-setup_icon.c : ../data/setup.ico
+setup_icon.c : ../data/setup8.ico
../data/convert-icon $^ $@
endif
diff --git a/setup/setup_icon.c b/setup/setup_icon.c
index b20d2e2f..1c18c56f 100644
--- a/setup/setup_icon.c
+++ b/setup/setup_icon.c
@@ -1,5 +1,5 @@
-static int setup_icon_w = 64;
-static int setup_icon_h = 64;
+static int setup_icon_w = 32;
+static int setup_icon_h = 32;
static unsigned char setup_icon_data[] = {
0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00,
@@ -28,1003 +28,235 @@ static unsigned char setup_icon_data[] = {
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,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00,
+ 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00, 0xa2,0x86,0x73,
+ 0xa9,0x8d,0x7a, 0xbc,0x9f,0x8c, 0xda,0xba,0xa0, 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,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,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00,
0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00,
+ 0xbe,0x8e,0x68, 0xd7,0xb9,0xa5, 0xeb,0xd8,0xcd, 0xd3,0xbf,0xae,
+ 0xbe,0xa1,0x8d, 0xeb,0xd8,0xcd, 0xc2,0x9d,0x86, 0x95,0x5d,0x38,
0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00,
+ 0x00,0x00,0x00, 0x00,0x00,0x00, 0x78,0x7a,0x77, 0x78,0x7a,0x77,
0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00,
+ 0x78,0x7a,0x77, 0x78,0x7a,0x77, 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, 0x9f,0x82,0x6a,
+ 0xc5,0x9e,0x81, 0xd1,0xb2,0x98, 0xd4,0xac,0x8e, 0xeb,0xd8,0xcd,
+ 0xc4,0x9b,0x79, 0xad,0x71,0x45, 0xd4,0xac,0x8e, 0xb9,0x93,0x76,
+ 0xa1,0x75,0x56, 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00,
+ 0x00,0x00,0x00, 0x78,0x7a,0x77, 0x6d,0x6f,0x6c, 0xcb,0xce,0xca,
+ 0x51,0x52,0x50, 0x00,0x00,0x00, 0x00,0x00,0x00, 0x5b,0x5d,0x5a,
+ 0xca,0xcc,0xc9, 0x77,0x79,0x76, 0x78,0x7a,0x77, 0x00,0x00,0x00,
0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00,
+ 0x00,0x00,0x00, 0x00,0x00,0x00, 0xda,0xb4,0x9c, 0xd3,0xa3,0x83,
+ 0xaf,0x91,0x78, 0xa7,0x83,0x6d, 0xc4,0xa7,0x93, 0xee,0xe2,0xd5,
+ 0xeb,0xd8,0xcd, 0x8c,0x60,0x3d, 0x92,0x6f,0x59, 0xd0,0xa7,0x84,
+ 0x84,0x54,0x33, 0xba,0x83,0x5b, 0x00,0x00,0x00, 0x00,0x00,0x00,
+ 0x00,0x00,0x00, 0x78,0x7a,0x77, 0xa0,0xa2,0x9f, 0xdf,0xe1,0xde,
+ 0x58,0x5a,0x58, 0x00,0x00,0x00, 0x00,0x00,0x00, 0x64,0x65,0x63,
+ 0xdd,0xdf,0xdc, 0xa8,0xaa,0xa7, 0x78,0x7a,0x77, 0x00,0x00,0x00,
0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00,
+ 0x00,0x00,0x00, 0xd4,0xb5,0x9b, 0xc3,0x8c,0x63, 0xc4,0x94,0x6e,
+ 0x98,0x66,0x45, 0x78,0x50,0x2d, 0xd7,0xb9,0xa5, 0xee,0xdc,0xd1,
+ 0xc4,0x9b,0x79, 0xb6,0x80,0x58, 0x65,0x45,0x26, 0xb6,0x79,0x4d,
+ 0xcf,0xa5,0x83, 0x9a,0x6e,0x50, 0x00,0x00,0x00, 0x00,0x00,0x00,
+ 0x00,0x00,0x00, 0x82,0x83,0x81, 0xbb,0xbd,0xba, 0xde,0xe0,0xdd,
+ 0x58,0x5a,0x58, 0x00,0x00,0x00, 0x00,0x00,0x00, 0x64,0x65,0x63,
+ 0xdc,0xde,0xdb, 0xc4,0xc6,0xc3, 0x78,0x7a,0x77, 0x00,0x00,0x00,
0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00,
+ 0x9e,0x7b,0x65, 0xbc,0x8c,0x67, 0xaa,0x7d,0x5e, 0xa1,0x75,0x56,
+ 0x89,0x5f,0x41, 0xc4,0xa7,0x93, 0xb7,0x88,0x63, 0x90,0x6c,0x51,
+ 0x79,0x4b,0x2b, 0x8c,0x5b,0x34, 0x76,0x4e,0x31, 0x7f,0x50,0x30,
+ 0xcf,0xa5,0x83, 0xd4,0xac,0x8e, 0x00,0x00,0x00, 0x00,0x00,0x00,
+ 0x00,0x00,0x00, 0x77,0x79,0x76, 0xd2,0xd4,0xd1, 0xde,0xe0,0xdd,
+ 0x64,0x65,0x63, 0x00,0x00,0x00, 0x00,0x00,0x00, 0x68,0x69,0x67,
+ 0xdb,0xdd,0xda, 0xda,0xdc,0xd9, 0x78,0x7a,0x77, 0x00,0x00,0x00,
+ 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00, 0xd8,0xb8,0x9e,
+ 0xd4,0xac,0x8e, 0xc5,0x9e,0x81, 0xab,0x7e,0x5f, 0x9c,0x6f,0x4b,
+ 0xbe,0xa1,0x8d, 0x8c,0x60,0x3d, 0x6e,0x47,0x2b, 0x87,0x5e,0x40,
+ 0x5a,0x3b,0x23, 0x68,0x42,0x26, 0x65,0x40,0x23, 0x53,0x36,0x22,
+ 0x7e,0x55,0x38, 0xce,0x9f,0x7e, 0xc3,0x8c,0x63, 0x00,0x00,0x00,
+ 0x00,0x00,0x00, 0x77,0x79,0x76, 0xe1,0xe4,0xe0, 0xe1,0xe4,0xe0,
+ 0xc4,0xc6,0xc3, 0x83,0x85,0x82, 0x8c,0x8d,0x8a, 0xd2,0xd4,0xd1,
+ 0xee,0xdc,0xd1, 0xe1,0xe4,0xe0, 0x78,0x7a,0x77, 0x00,0x00,0x00,
+ 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00, 0xcb,0x9a,0x74,
+ 0xb6,0x80,0x58, 0x8c,0x60,0x3d, 0x76,0x4e,0x31, 0x88,0x57,0x31,
+ 0x83,0x53,0x33, 0x84,0x54,0x33, 0x95,0x5d,0x38, 0x79,0x4b,0x2b,
+ 0x5c,0x38,0x22, 0x84,0x54,0x33, 0x55,0x37,0x1e, 0x96,0x6b,0x4d,
+ 0xb4,0x7f,0x5c, 0xba,0x83,0x5b, 0xb8,0x7b,0x4f, 0x00,0x00,0x00,
+ 0x00,0x00,0x00, 0x00,0x00,0x00, 0x9a,0x9b,0x98, 0xd9,0xdb,0xd7,
+ 0xe1,0xe4,0xe0, 0xde,0xe0,0xdd, 0xdd,0xdf,0xdc, 0xe0,0xe2,0xdf,
+ 0xda,0xdc,0xd9, 0xa3,0xa5,0xa1, 0x00,0x00,0x00, 0x00,0x00,0x00,
+ 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00, 0xc0,0x89,0x60,
+ 0x89,0x5f,0x41, 0x84,0x54,0x33, 0x84,0x54,0x33, 0x8a,0x5a,0x39,
+ 0x8f,0x5d,0x37, 0x78,0x50,0x2d, 0x8c,0x5b,0x34, 0x5a,0x3b,0x23,
+ 0x5e,0x3f,0x27, 0x76,0x4e,0x31, 0x97,0x64,0x3d, 0x74,0x4b,0x29,
+ 0x78,0x50,0x2d, 0x7b,0x4d,0x2c, 0xb6,0x80,0x58, 0x00,0x00,0x00,
+ 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00, 0x64,0x65,0x63,
+ 0xbe,0xc1,0xbd, 0xee,0xdc,0xd1, 0xe1,0xe4,0xe0, 0xc2,0xc4,0xc1,
+ 0x68,0x69,0x67, 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00,
+ 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00, 0x95,0x62,0x3b,
+ 0x84,0x54,0x33, 0x88,0x57,0x31, 0x7e,0x6e,0x64, 0xc4,0x94,0x6e,
+ 0x76,0x4e,0x31, 0x90,0x6c,0x51, 0xa1,0x7c,0x60, 0x9a,0x6e,0x50,
+ 0x95,0x5d,0x38, 0xbc,0x7f,0x53, 0xad,0x71,0x45, 0x76,0x4e,0x31,
+ 0x53,0x36,0x22, 0x4b,0x2f,0x1c, 0x70,0x49,0x2c, 0x00,0x00,0x00,
0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00,
+ 0x51,0x52,0x50, 0xd2,0xd4,0xd1, 0xe0,0xe2,0xdf, 0x77,0x79,0x76,
0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00,
+ 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00, 0x84,0x54,0x33,
+ 0xa3,0x86,0x6e, 0xc4,0x94,0x6e, 0x88,0x64,0x44, 0xbc,0x8c,0x67,
+ 0x9c,0x6f,0x4b, 0xa1,0x6d,0x45, 0x93,0x60,0x3a, 0xad,0x71,0x3f,
+ 0xb4,0x7f,0x5c, 0xbc,0x8c,0x67, 0xc0,0x89,0x60, 0xb3,0x76,0x4b,
+ 0xb8,0x7b,0x4f, 0x88,0x64,0x44, 0x00,0x00,0x00, 0x00,0x00,0x00,
0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00,
+ 0x4a,0x4b,0x49, 0xdc,0xde,0xdb, 0xe1,0xe4,0xe0, 0x79,0x7b,0x78,
0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00,
+ 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00, 0xa7,0x83,0x6d,
+ 0xac,0x86,0x6a, 0x76,0x4e,0x31, 0x84,0x54,0x33, 0x5c,0x38,0x22,
+ 0x57,0x38,0x20, 0x6c,0x46,0x29, 0x95,0x62,0x3b, 0xa3,0x6e,0x41,
+ 0xb3,0x76,0x4b, 0xb8,0x7b,0x4f, 0x9d,0x64,0x3f, 0x7e,0x4f,0x2f,
+ 0x63,0x3e,0x27, 0x95,0x62,0x3b, 0x00,0x00,0x00, 0x00,0x00,0x00,
0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00,
+ 0x51,0x52,0x50, 0xdd,0xdf,0xdc, 0xe0,0xe2,0xdf, 0x82,0x83,0x81,
0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00,
+ 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00, 0xb6,0x80,0x58,
+ 0x98,0x74,0x59, 0x67,0x41,0x25, 0x4b,0x35,0x25, 0x81,0x52,0x31,
+ 0x76,0x4e,0x31, 0x7b,0x4d,0x2c, 0x7e,0x4f,0x2f, 0x84,0x54,0x33,
+ 0x8f,0x5d,0x37, 0x95,0x5d,0x38, 0x78,0x50,0x2d, 0x65,0x45,0x26,
+ 0x65,0x40,0x23, 0x7e,0x4f,0x2f, 0x00,0x00,0x00, 0x00,0x00,0x00,
0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00,
+ 0x55,0x56,0x54, 0xee,0xdc,0xd1, 0xde,0xe0,0xdd, 0x8c,0x8d,0x8a,
0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00,
+ 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00, 0xb4,0x7f,0x5c,
+ 0x86,0x56,0x35, 0x8c,0x60,0x3d, 0x89,0x5f,0x41, 0x63,0x44,0x2b,
+ 0x57,0x38,0x20, 0x86,0x56,0x35, 0x88,0x57,0x31, 0x95,0x5d,0x38,
+ 0x97,0x64,0x3d, 0x63,0x3e,0x27, 0x50,0x33,0x20, 0x78,0x50,0x2d,
+ 0x78,0x50,0x2d, 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00,
0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00,
+ 0x58,0x5a,0x58, 0xe0,0xe2,0xdf, 0xde,0xe0,0xdd, 0x8c,0x8d,0x8a,
0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00,
0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00,
+ 0x86,0x56,0x35, 0x63,0x3e,0x27, 0xa8,0x6d,0x42, 0x50,0x33,0x20,
+ 0x63,0x3e,0x27, 0x74,0x4b,0x29, 0x53,0x36,0x22, 0x78,0x50,0x2d,
+ 0x42,0x30,0x14, 0x4d,0x3e,0x15, 0x4d,0x3e,0x15, 0x7c,0x5b,0x29,
+ 0x8a,0x71,0x27, 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00,
0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00,
+ 0x64,0x65,0x63, 0xe1,0xe4,0xe0, 0xe1,0xe4,0xe0, 0x91,0x93,0x90,
0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00,
0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00,
+ 0x6e,0x47,0x2b, 0x65,0x45,0x26, 0x5d,0x42,0x22, 0x65,0x45,0x26,
+ 0x78,0x50,0x2d, 0x5d,0x42,0x22, 0x5e,0x3f,0x27, 0x4d,0x3e,0x15,
+ 0x4d,0x3e,0x15, 0x67,0x58,0x21, 0x4f,0x44,0x19, 0x5f,0x51,0x19,
+ 0x8a,0x76,0x2a, 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00,
0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00,
+ 0x68,0x69,0x67, 0xdf,0xe1,0xde, 0xe0,0xe2,0xdf, 0x9a,0x9b,0x98,
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,0x00,0x00, 0x8a,0x71,0x27, 0x53,0x46,0x15,
+ 0x53,0x46,0x15, 0x67,0x58,0x21, 0x58,0x4c,0x1b, 0x5b,0x4f,0x1d,
+ 0x5b,0x4f,0x1d, 0x67,0x58,0x21, 0x5b,0x4f,0x1d, 0x8a,0x71,0x27,
+ 0x8c,0x77,0x24, 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00,
0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00,
+ 0x70,0x72,0x6f, 0xe1,0xe4,0xe0, 0xe1,0xe4,0xe0, 0x9a,0x9b,0x98,
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,0x00,0x00, 0xac,0x93,0x39, 0x7e,0x66,0x23,
+ 0x69,0x5a,0x1b, 0x6b,0x5b,0x1d, 0x67,0x58,0x21, 0x53,0x46,0x15,
+ 0x4d,0x3e,0x15, 0x9f,0x88,0x35, 0xb7,0x9c,0x3b, 0xac,0x93,0x39,
0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00,
0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00,
+ 0x77,0x79,0x76, 0xdf,0xe1,0xde, 0xe0,0xe2,0xdf, 0xa3,0xa5,0xa1,
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,0x00,0x00, 0xb1,0x97,0x36, 0x6f,0x5f,0x21,
+ 0x7e,0x66,0x23, 0x8c,0x77,0x24, 0x84,0x70,0x24, 0x78,0x67,0x22,
+ 0x8e,0x79,0x26, 0x8a,0x71,0x27, 0xb7,0x9c,0x3b, 0x9b,0x84,0x29,
0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00,
0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00,
+ 0x82,0x83,0x81, 0xe1,0xe4,0xe0, 0xe1,0xe4,0xe0, 0xa8,0xaa,0xa7,
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,0x00,0x00, 0xac,0x93,0x39, 0x89,0x75,0x29,
+ 0x7e,0x66,0x23, 0x75,0x64,0x1f, 0x94,0x7e,0x2b, 0x7e,0x66,0x23,
+ 0x9f,0x88,0x35, 0xb6,0x9d,0x4a, 0xb6,0x9d,0x4a, 0xc4,0xa8,0x3f,
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,0x00,0x00, 0x00,0x00,0x00, 0xc2,0xbb,0xb4,
- 0xe0,0xdf,0xda, 0xc0,0x8f,0x6c, 0x55,0x51,0x4c, 0x55,0x51,0x4c,
- 0x00,0x00,0x00, 0x55,0x51,0x4c, 0x00,0x00,0x00, 0x00,0x00,0x00,
+ 0x82,0x83,0x81, 0xe0,0xe2,0xdf, 0xde,0xe0,0xdd, 0xab,0xad,0xaa,
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,0x00,0x00, 0x00,0x00,0x00, 0x80,0x6d,0x28,
+ 0xac,0x93,0x39, 0x97,0x82,0x36, 0xac,0x94,0x41, 0xac,0x93,0x39,
+ 0x97,0x82,0x36, 0xa2,0x8a,0x30, 0xbd,0xa3,0x48, 0x8a,0x71,0x27,
0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00,
0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00,
+ 0x77,0x79,0x76, 0xe0,0xe2,0xdf, 0xd8,0xda,0xd6, 0xab,0xad,0xaa,
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,0x00,0x00, 0x00,0x00,0x00, 0xae,0x95,0x33,
+ 0x7e,0x66,0x23, 0x9f,0x88,0x35, 0x9f,0x88,0x35, 0x7e,0x66,0x23,
+ 0x8a,0x71,0x27, 0xaf,0x96,0x3c, 0xbd,0xa2,0x41, 0x8a,0x76,0x2a,
0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00,
+ 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00, 0x68,0x69,0x67,
+ 0xc2,0xc4,0xc1, 0xe0,0xe2,0xdf, 0xdf,0xe1,0xde, 0xbe,0xc1,0xbd,
+ 0x5f,0x61,0x5e, 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,0x00,0x00, 0xaf,0x96,0x3c,
+ 0x87,0x73,0x27, 0xb2,0x99,0x3f, 0x6f,0x5f,0x21, 0xa8,0x90,0x36,
+ 0x97,0x82,0x36, 0x9f,0x88,0x35, 0xb7,0x9c,0x3b, 0x8c,0x77,0x24,
0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00,
+ 0x00,0x00,0x00, 0x00,0x00,0x00, 0xa3,0xa5,0xa1, 0xeb,0xd8,0xcd,
+ 0xe0,0xe2,0xdf, 0xee,0xdc,0xd1, 0xdf,0xe1,0xde, 0xe1,0xe4,0xe0,
+ 0xda,0xdc,0xd9, 0x9a,0x9b,0x98, 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, 0xb2,0x99,0x3f,
+ 0xaf,0x96,0x3c, 0x96,0x80,0x2d, 0xbd,0xa3,0x48, 0x97,0x82,0x36,
+ 0xb6,0x9d,0x4a, 0xb8,0xa0,0x4c, 0xc1,0xa7,0x4c, 0x00,0x00,0x00,
0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00,
+ 0x00,0x00,0x00, 0x78,0x7a,0x77, 0xdf,0xe1,0xde, 0xe0,0xe2,0xdf,
+ 0xd2,0xd4,0xd1, 0x8c,0x8d,0x8a, 0x82,0x83,0x81, 0xc7,0xc9,0xc6,
+ 0xe1,0xe4,0xe0, 0xe1,0xe4,0xe0, 0x78,0x7a,0x77, 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,0x00,0x00, 0x55,0x51,0x4c, 0xc0,0x8f,0x6c, 0xad,0x72,0x46,
- 0xc0,0x8f,0x6c, 0xd3,0xaf,0x93, 0xe0,0xdf,0xda, 0xd3,0xaf,0x93,
- 0xe0,0xdf,0xda, 0xe0,0xdf,0xda, 0xc2,0xbb,0xb4, 0x92,0x8b,0x84,
- 0x55,0x51,0x4c, 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00,
+ 0x96,0x80,0x2d, 0xb5,0x9c,0x49, 0xb2,0x99,0x3f, 0xb2,0x9a,0x47,
+ 0xb0,0x97,0x3d, 0xc1,0xa7,0x4c, 0x96,0x80,0x2d, 0x00,0x00,0x00,
0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00,
+ 0x00,0x00,0x00, 0x78,0x7a,0x77, 0xd9,0xdb,0xd7, 0xda,0xdc,0xd9,
+ 0x68,0x69,0x67, 0x00,0x00,0x00, 0x00,0x00,0x00, 0x64,0x65,0x63,
+ 0xdd,0xdf,0xdc, 0xd2,0xd4,0xd1, 0x78,0x7a,0x77, 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,
+ 0x9c,0x85,0x2b, 0xaa,0x91,0x2f, 0xb1,0x97,0x36, 0xa2,0x8a,0x30,
+ 0x7e,0x66,0x23, 0xb1,0x97,0x36, 0xb4,0x99,0x30, 0x00,0x00,0x00,
0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00,
+ 0x00,0x00,0x00, 0x79,0x7b,0x78, 0xc4,0xc6,0xc3, 0xd9,0xdb,0xd7,
+ 0x64,0x65,0x63, 0x00,0x00,0x00, 0x00,0x00,0x00, 0x55,0x56,0x54,
+ 0xdf,0xe1,0xde, 0xbb,0xbd,0xba, 0x78,0x7a,0x77, 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,
+ 0x9f,0x88,0x35, 0xb8,0x9e,0x44, 0x8a,0x71,0x27, 0xa6,0x8f,0x3c,
+ 0xbd,0xa3,0x48, 0x96,0x80,0x2d, 0x9f,0x88,0x35, 0x00,0x00,0x00,
0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00,
+ 0x00,0x00,0x00, 0x82,0x83,0x81, 0xa8,0xaa,0xa7, 0xdf,0xe1,0xde,
+ 0x64,0x65,0x63, 0x00,0x00,0x00, 0x00,0x00,0x00, 0x58,0x5a,0x58,
+ 0xee,0xdc,0xd1, 0xa0,0xa2,0x9f, 0x78,0x7a,0x77, 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,
+ 0xb0,0x97,0x3d, 0xb7,0x9c,0x3b, 0xac,0x94,0x41, 0xb2,0x99,0x3f,
+ 0xb6,0x9b,0x32, 0xb7,0x9c,0x3b, 0x00,0x00,0x00, 0x00,0x00,0x00,
0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00,
+ 0x00,0x00,0x00, 0x77,0x79,0x76, 0x77,0x79,0x76, 0xca,0xcc,0xc9,
+ 0x5b,0x5d,0x5a, 0x00,0x00,0x00, 0x00,0x00,0x00, 0x51,0x52,0x50,
+ 0xcb,0xce,0xca, 0x68,0x69,0x67, 0x79,0x7b,0x78, 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,
- 0x66,0x44,0x29, 0xd3,0xaf,0x93, 0xa4,0x73,0x4e, 0x86,0x56,0x33,
- 0x86,0x56,0x33, 0xc0,0x8f,0x6c, 0xd3,0xaf,0x93, 0xd3,0xaf,0x93,
- 0xd3,0xaf,0x93, 0xd3,0xaf,0x93, 0xd3,0xaf,0x93, 0xd3,0xaf,0x93,
- 0xe0,0xdf,0xda, 0xd3,0xaf,0x93, 0xd3,0xaf,0x93, 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,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,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, 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,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,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00,
- 0x92,0x8b,0x84, 0xc0,0x8f,0x6c, 0x86,0x56,0x33, 0x55,0x51,0x4c,
- 0x66,0x44,0x29, 0x66,0x44,0x29, 0x66,0x44,0x29, 0x66,0x44,0x29,
- 0x44,0x30,0x18, 0xa4,0x73,0x4e, 0xa4,0x73,0x4e, 0xa4,0x73,0x4e,
- 0xc0,0x8f,0x6c, 0xc0,0x8f,0x6c, 0xd3,0xaf,0x93, 0x92,0x8b,0x84,
- 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,0x00,0x00, 0x00,0x00,0x00, 0x2a,0x25,0x1f,
- 0x2a,0x25,0x1f, 0x2a,0x25,0x1f, 0x2a,0x25,0x1f, 0x00,0x00,0x00,
- 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00,
- 0x00,0x00,0x00, 0x2a,0x25,0x1f, 0x2a,0x25,0x1f, 0x2a,0x25,0x1f,
- 0x2a,0x25,0x1f, 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,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,0x00,
- 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00, 0x44,0x30,0x18,
- 0xd3,0xaf,0x93, 0xc0,0x8f,0x6c, 0xa4,0x73,0x4e, 0xe0,0xdf,0xda,
- 0xe0,0xdf,0xda, 0xe0,0xdf,0xda, 0xe0,0xdf,0xda, 0xd3,0xaf,0x93,
- 0x92,0x8b,0x84, 0xe0,0xdf,0xda, 0xe0,0xdf,0xda, 0xd3,0xaf,0x93,
- 0xc0,0x8f,0x6c, 0x86,0x56,0x33, 0x86,0x56,0x33, 0xad,0x72,0x46,
- 0x44,0x30,0x18, 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, 0x2a,0x25,0x1f, 0x92,0x8b,0x84,
- 0x92,0x8b,0x84, 0xc2,0xbb,0xb4, 0x55,0x51,0x4c, 0x2a,0x25,0x1f,
- 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00,
- 0x2a,0x25,0x1f, 0x92,0x8b,0x84, 0x92,0x8b,0x84, 0xc2,0xbb,0xb4,
- 0x92,0x8b,0x84, 0x2a,0x25,0x1f, 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,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,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00, 0x92,0x8b,0x84,
- 0xd3,0xaf,0x93, 0xe0,0xdf,0xda, 0xd3,0xaf,0x93, 0xe0,0xdf,0xda,
- 0xe0,0xdf,0xda, 0xd3,0xaf,0x93, 0xd3,0xaf,0x93, 0xe0,0xdf,0xda,
- 0xd3,0xaf,0x93, 0xc0,0x8f,0x6c, 0xc2,0xbb,0xb4, 0xd3,0xaf,0x93,
- 0xc2,0xbb,0xb4, 0xd3,0xaf,0x93, 0xa4,0x73,0x4e, 0xc0,0x8f,0x6c,
- 0xc0,0x8f,0x6c, 0x55,0x51,0x4c, 0x00,0x00,0x00, 0x00,0x00,0x00,
- 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00,
- 0x00,0x00,0x00, 0x00,0x00,0x00, 0x2a,0x25,0x1f, 0xc2,0xbb,0xb4,
- 0xe0,0xdf,0xda, 0xe0,0xdf,0xda, 0x92,0x8b,0x84, 0x2a,0x25,0x1f,
- 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00,
- 0x2a,0x25,0x1f, 0x92,0x8b,0x84, 0xe0,0xdf,0xda, 0xe0,0xdf,0xda,
- 0xc2,0xbb,0xb4, 0x2a,0x25,0x1f, 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,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,0x00, 0x00,0x00,0x00, 0x92,0x8b,0x84, 0xd3,0xaf,0x93,
- 0xd3,0xaf,0x93, 0xd3,0xaf,0x93, 0xd3,0xaf,0x93, 0xd3,0xaf,0x93,
- 0xad,0x72,0x46, 0xd3,0xaf,0x93, 0xd3,0xaf,0x93, 0xe0,0xdf,0xda,
- 0xad,0x72,0x46, 0x86,0x56,0x33, 0xad,0x72,0x46, 0xc0,0x8f,0x6c,
- 0xd3,0xaf,0x93, 0xe0,0xdf,0xda, 0xd3,0xaf,0x93, 0xa4,0x73,0x4e,
- 0xc0,0x8f,0x6c, 0xd3,0xaf,0x93, 0x66,0x44,0x29, 0x00,0x00,0x00,
- 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00,
- 0x00,0x00,0x00, 0x00,0x00,0x00, 0x2a,0x25,0x1f, 0xe0,0xdf,0xda,
- 0xe0,0xdf,0xda, 0xe0,0xdf,0xda, 0x92,0x8b,0x84, 0x2a,0x25,0x1f,
- 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00,
- 0x2a,0x25,0x1f, 0xc2,0xbb,0xb4, 0xe0,0xdf,0xda, 0xe0,0xdf,0xda,
- 0xe0,0xdf,0xda, 0x55,0x51,0x4c, 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,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,
- 0x55,0x51,0x4c, 0xd3,0xaf,0x93, 0xd3,0xaf,0x93, 0xe0,0xdf,0xda,
- 0xe0,0xdf,0xda, 0xd3,0xaf,0x93, 0xd3,0xaf,0x93, 0xd3,0xaf,0x93,
- 0xe0,0xdf,0xda, 0xe0,0xdf,0xda, 0xe0,0xdf,0xda, 0xe0,0xdf,0xda,
- 0xd3,0xaf,0x93, 0xc0,0x8f,0x6c, 0xad,0x72,0x46, 0xc0,0x8f,0x6c,
- 0xd3,0xaf,0x93, 0xd3,0xaf,0x93, 0xd3,0xaf,0x93, 0x66,0x44,0x29,
- 0x66,0x44,0x29, 0xc0,0x8f,0x6c, 0xd3,0xaf,0x93, 0x00,0x00,0x00,
- 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00,
- 0x00,0x00,0x00, 0x00,0x00,0x00, 0x55,0x51,0x4c, 0xe0,0xdf,0xda,
- 0xe0,0xdf,0xda, 0xe0,0xdf,0xda, 0x92,0x8b,0x84, 0x2a,0x25,0x1f,
- 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00,
- 0x2a,0x25,0x1f, 0x92,0x8b,0x84, 0xe0,0xdf,0xda, 0xe0,0xdf,0xda,
- 0xe0,0xdf,0xda, 0x55,0x51,0x4c, 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,0x00,0x00,
- 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00,
- 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00, 0x92,0x8b,0x84,
- 0xd3,0xaf,0x93, 0xd3,0xaf,0x93, 0xd3,0xaf,0x93, 0xd3,0xaf,0x93,
- 0xd3,0xaf,0x93, 0xad,0x72,0x46, 0xc0,0x8f,0x6c, 0xd3,0xaf,0x93,
- 0xd3,0xaf,0x93, 0xe0,0xdf,0xda, 0xd3,0xaf,0x93, 0xe0,0xdf,0xda,
- 0xe0,0xdf,0xda, 0xd3,0xaf,0x93, 0x86,0x56,0x33, 0x66,0x44,0x29,
- 0xd3,0xaf,0x93, 0xd3,0xaf,0x93, 0xd3,0xaf,0x93, 0xc0,0x8f,0x6c,
- 0x2a,0x25,0x1f, 0x66,0x44,0x29, 0xad,0x72,0x46, 0xa4,0x73,0x4e,
- 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00,
- 0x00,0x00,0x00, 0x00,0x00,0x00, 0x55,0x51,0x4c, 0xe0,0xdf,0xda,
- 0xe0,0xdf,0xda, 0xe0,0xdf,0xda, 0x92,0x8b,0x84, 0x2a,0x25,0x1f,
- 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00,
- 0x2a,0x25,0x1f, 0x92,0x8b,0x84, 0xe0,0xdf,0xda, 0xe0,0xdf,0xda,
- 0xe0,0xdf,0xda, 0x92,0x8b,0x84, 0x2a,0x25,0x1f, 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,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00,
- 0x00,0x00,0x00, 0x00,0x00,0x00, 0xd3,0xaf,0x93, 0xd3,0xaf,0x93,
- 0xd3,0xaf,0x93, 0xc0,0x8f,0x6c, 0xc0,0x8f,0x6c, 0x86,0x56,0x33,
- 0xa4,0x73,0x4e, 0xc0,0x8f,0x6c, 0xa4,0x73,0x4e, 0x86,0x56,0x33,
- 0x86,0x56,0x33, 0xe0,0xdf,0xda, 0xe0,0xdf,0xda, 0xd3,0xaf,0x93,
- 0xe0,0xdf,0xda, 0xd3,0xaf,0x93, 0xa4,0x73,0x4e, 0x66,0x44,0x29,
- 0x44,0x30,0x18, 0xc0,0x8f,0x6c, 0xd3,0xaf,0x93, 0xc0,0x8f,0x6c,
- 0x55,0x51,0x4c, 0x86,0x56,0x33, 0xa4,0x73,0x4e, 0xc0,0x8f,0x6c,
- 0x44,0x30,0x18, 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00,
- 0x00,0x00,0x00, 0x2a,0x25,0x1f, 0x92,0x8b,0x84, 0xe0,0xdf,0xda,
- 0xe0,0xdf,0xda, 0xe0,0xdf,0xda, 0x92,0x8b,0x84, 0x2a,0x25,0x1f,
- 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00,
- 0x55,0x51,0x4c, 0x92,0x8b,0x84, 0xe0,0xdf,0xda, 0xe0,0xdf,0xda,
- 0xe0,0xdf,0xda, 0xc2,0xbb,0xb4, 0x2a,0x25,0x1f, 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,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00,
- 0x00,0x00,0x00, 0xd3,0xaf,0x93, 0xd3,0xaf,0x93, 0xd3,0xaf,0x93,
- 0xc0,0x8f,0x6c, 0xc0,0x8f,0x6c, 0xc0,0x8f,0x6c, 0xc0,0x8f,0x6c,
- 0xa4,0x73,0x4e, 0x66,0x44,0x29, 0x66,0x44,0x29, 0x66,0x44,0x29,
- 0xd3,0xaf,0x93, 0xe0,0xdf,0xda, 0xe0,0xdf,0xda, 0xe0,0xdf,0xda,
- 0xd3,0xaf,0x93, 0xc0,0x8f,0x6c, 0xc0,0x8f,0x6c, 0xa4,0x73,0x4e,
- 0x66,0x44,0x29, 0x86,0x56,0x33, 0xa4,0x73,0x4e, 0xd3,0xaf,0x93,
- 0xd3,0xaf,0x93, 0xa4,0x73,0x4e, 0x86,0x56,0x33, 0xad,0x72,0x46,
- 0xa4,0x73,0x4e, 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00,
- 0x00,0x00,0x00, 0x2a,0x25,0x1f, 0xc2,0xbb,0xb4, 0xe0,0xdf,0xda,
- 0xe0,0xdf,0xda, 0xe0,0xdf,0xda, 0x92,0x8b,0x84, 0x2a,0x25,0x1f,
- 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00,
- 0x2a,0x25,0x1f, 0x92,0x8b,0x84, 0xe0,0xdf,0xda, 0xe0,0xdf,0xda,
- 0xe0,0xdf,0xda, 0xc2,0xbb,0xb4, 0x2a,0x25,0x1f, 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,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00,
- 0x55,0x51,0x4c, 0xd3,0xaf,0x93, 0xd3,0xaf,0x93, 0xd3,0xaf,0x93,
- 0xc0,0x8f,0x6c, 0xad,0x72,0x46, 0xa4,0x73,0x4e, 0x86,0x56,0x33,
- 0x66,0x44,0x29, 0x86,0x56,0x33, 0xa4,0x73,0x4e, 0xc0,0x8f,0x6c,
- 0xd3,0xaf,0x93, 0xd3,0xaf,0x93, 0xd3,0xaf,0x93, 0xc0,0x8f,0x6c,
- 0xad,0x72,0x46, 0x86,0x56,0x33, 0xad,0x72,0x46, 0x86,0x56,0x33,
- 0x66,0x44,0x29, 0x66,0x44,0x29, 0xad,0x72,0x46, 0xa4,0x73,0x4e,
- 0xc0,0x8f,0x6c, 0xc0,0x8f,0x6c, 0xd3,0xaf,0x93, 0xad,0x72,0x46,
- 0x86,0x56,0x33, 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00,
- 0x00,0x00,0x00, 0x2a,0x25,0x1f, 0xe0,0xdf,0xda, 0xe0,0xdf,0xda,
- 0xe0,0xdf,0xda, 0xe0,0xdf,0xda, 0x92,0x8b,0x84, 0x55,0x51,0x4c,
- 0x2a,0x25,0x1f, 0x00,0x00,0x00, 0x2a,0x25,0x1f, 0x2a,0x25,0x1f,
- 0x55,0x51,0x4c, 0x92,0x8b,0x84, 0xe0,0xdf,0xda, 0xe0,0xdf,0xda,
- 0xe0,0xdf,0xda, 0xe0,0xdf,0xda, 0x55,0x51,0x4c, 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,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00, 0x55,0x51,0x4c,
- 0xd3,0xaf,0x93, 0xd3,0xaf,0x93, 0xc0,0x8f,0x6c, 0xc0,0x8f,0x6c,
- 0xc0,0x8f,0x6c, 0xa4,0x73,0x4e, 0xa4,0x73,0x4e, 0x66,0x44,0x29,
- 0x66,0x44,0x29, 0x86,0x56,0x33, 0xc0,0x8f,0x6c, 0xc0,0x8f,0x6c,
- 0xc0,0x8f,0x6c, 0xc0,0x8f,0x6c, 0xc0,0x8f,0x6c, 0x86,0x56,0x33,
- 0x86,0x56,0x33, 0x86,0x56,0x33, 0x86,0x56,0x33, 0xad,0x72,0x46,
- 0x86,0x56,0x33, 0x2a,0x25,0x1f, 0x86,0x56,0x33, 0xad,0x72,0x46,
- 0xd3,0xaf,0x93, 0xa4,0x73,0x4e, 0xd3,0xaf,0x93, 0xc0,0x8f,0x6c,
- 0xad,0x72,0x46, 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00,
- 0x00,0x00,0x00, 0x2a,0x25,0x1f, 0xe0,0xdf,0xda, 0xe0,0xdf,0xda,
- 0xe0,0xdf,0xda, 0xe0,0xdf,0xda, 0xe0,0xdf,0xda, 0x92,0x8b,0x84,
- 0x55,0x51,0x4c, 0x2a,0x25,0x1f, 0x55,0x51,0x4c, 0x55,0x51,0x4c,
- 0xc2,0xbb,0xb4, 0xe0,0xdf,0xda, 0xe0,0xdf,0xda, 0xe0,0xdf,0xda,
- 0xe0,0xdf,0xda, 0xe0,0xdf,0xda, 0x55,0x51,0x4c, 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,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00, 0xd3,0xaf,0x93,
- 0xd3,0xaf,0x93, 0xd3,0xaf,0x93, 0xa4,0x73,0x4e, 0xc0,0x8f,0x6c,
- 0xa4,0x73,0x4e, 0x86,0x56,0x33, 0x86,0x56,0x33, 0xa4,0x73,0x4e,
- 0xc0,0x8f,0x6c, 0xd3,0xaf,0x93, 0xd3,0xaf,0x93, 0xc0,0x8f,0x6c,
- 0x86,0x56,0x33, 0x66,0x44,0x29, 0x66,0x44,0x29, 0x86,0x56,0x33,
- 0x86,0x56,0x33, 0x86,0x56,0x33, 0x86,0x56,0x33, 0x86,0x56,0x33,
- 0x86,0x56,0x33, 0x2a,0x25,0x1f, 0x66,0x44,0x29, 0xad,0x72,0x46,
- 0xc0,0x8f,0x6c, 0xc0,0x8f,0x6c, 0xc0,0x8f,0x6c, 0xd3,0xaf,0x93,
- 0xc0,0x8f,0x6c, 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00,
- 0x00,0x00,0x00, 0x55,0x51,0x4c, 0xe0,0xdf,0xda, 0xe0,0xdf,0xda,
- 0xe0,0xdf,0xda, 0xe0,0xdf,0xda, 0xe0,0xdf,0xda, 0xe0,0xdf,0xda,
- 0xe0,0xdf,0xda, 0x92,0x8b,0x84, 0xc2,0xbb,0xb4, 0xe0,0xdf,0xda,
- 0xe0,0xdf,0xda, 0xe0,0xdf,0xda, 0xe0,0xdf,0xda, 0xe0,0xdf,0xda,
- 0xe0,0xdf,0xda, 0xe0,0xdf,0xda, 0x92,0x8b,0x84, 0x2a,0x25,0x1f,
- 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, 0x92,0x8b,0x84, 0xd3,0xaf,0x93, 0xd3,0xaf,0x93,
- 0xc0,0x8f,0x6c, 0xc0,0x8f,0x6c, 0xc0,0x8f,0x6c, 0x86,0x56,0x33,
- 0xa4,0x73,0x4e, 0xc0,0x8f,0x6c, 0xd3,0xaf,0x93, 0xd3,0xaf,0x93,
- 0xc2,0xbb,0xb4, 0xd3,0xaf,0x93, 0xc0,0x8f,0x6c, 0xa4,0x73,0x4e,
- 0x66,0x44,0x29, 0x66,0x44,0x29, 0x86,0x56,0x33, 0xa4,0x73,0x4e,
- 0x66,0x44,0x29, 0x66,0x44,0x29, 0x66,0x44,0x29, 0x86,0x56,0x33,
- 0x66,0x44,0x29, 0x2a,0x25,0x1f, 0x44,0x30,0x18, 0xad,0x72,0x46,
- 0xa4,0x73,0x4e, 0xc0,0x8f,0x6c, 0xc0,0x8f,0x6c, 0xd3,0xaf,0x93,
- 0xd3,0xaf,0x93, 0x2a,0x25,0x1f, 0x00,0x00,0x00, 0x00,0x00,0x00,
- 0x00,0x00,0x00, 0x55,0x51,0x4c, 0xc2,0xbb,0xb4, 0xe0,0xdf,0xda,
- 0xe0,0xdf,0xda, 0xe0,0xdf,0xda, 0xe0,0xdf,0xda, 0xe0,0xdf,0xda,
- 0xe0,0xdf,0xda, 0xe0,0xdf,0xda, 0xe0,0xdf,0xda, 0xe0,0xdf,0xda,
- 0xe0,0xdf,0xda, 0xe0,0xdf,0xda, 0xe0,0xdf,0xda, 0xe0,0xdf,0xda,
- 0xe0,0xdf,0xda, 0xc2,0xbb,0xb4, 0x55,0x51,0x4c, 0x2a,0x25,0x1f,
- 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, 0xd3,0xaf,0x93, 0xd3,0xaf,0x93, 0xc0,0x8f,0x6c,
- 0xd3,0xaf,0x93, 0xc0,0x8f,0x6c, 0xd3,0xaf,0x93, 0xc0,0x8f,0x6c,
- 0xc0,0x8f,0x6c, 0xa4,0x73,0x4e, 0x66,0x44,0x29, 0x86,0x56,0x33,
- 0x86,0x56,0x33, 0x86,0x56,0x33, 0x86,0x56,0x33, 0x66,0x44,0x29,
- 0x66,0x44,0x29, 0x66,0x44,0x29, 0x86,0x56,0x33, 0x66,0x44,0x29,
- 0x66,0x44,0x29, 0x44,0x30,0x18, 0x66,0x44,0x29, 0x44,0x30,0x18,
- 0x44,0x30,0x18, 0x2a,0x25,0x1f, 0x66,0x44,0x29, 0xad,0x72,0x46,
- 0xa4,0x73,0x4e, 0xa4,0x73,0x4e, 0xd3,0xaf,0x93, 0xd3,0xaf,0x93,
- 0xad,0x72,0x46, 0x66,0x44,0x29, 0x00,0x00,0x00, 0x00,0x00,0x00,
- 0x00,0x00,0x00, 0x2a,0x25,0x1f, 0x55,0x51,0x4c, 0x92,0x8b,0x84,
- 0xe0,0xdf,0xda, 0xe0,0xdf,0xda, 0xe0,0xdf,0xda, 0xe0,0xdf,0xda,
- 0xe0,0xdf,0xda, 0xe0,0xdf,0xda, 0xe0,0xdf,0xda, 0xe0,0xdf,0xda,
- 0xe0,0xdf,0xda, 0xe0,0xdf,0xda, 0xe0,0xdf,0xda, 0xc2,0xbb,0xb4,
- 0xc2,0xbb,0xb4, 0x55,0x51,0x4c, 0x2a,0x25,0x1f, 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,
- 0x92,0x8b,0x84, 0xd3,0xaf,0x93, 0xc0,0x8f,0x6c, 0xc0,0x8f,0x6c,
- 0x86,0x56,0x33, 0xa4,0x73,0x4e, 0xad,0x72,0x46, 0x66,0x44,0x29,
- 0x86,0x56,0x33, 0x66,0x44,0x29, 0x86,0x56,0x33, 0x86,0x56,0x33,
- 0x86,0x56,0x33, 0x86,0x56,0x33, 0x86,0x56,0x33, 0x86,0x56,0x33,
- 0x86,0x56,0x33, 0x86,0x56,0x33, 0x86,0x56,0x33, 0x66,0x44,0x29,
- 0x66,0x44,0x29, 0x44,0x30,0x18, 0x44,0x30,0x18, 0x2a,0x25,0x1f,
- 0x44,0x30,0x18, 0x66,0x44,0x29, 0xa4,0x73,0x4e, 0xa4,0x73,0x4e,
- 0xc0,0x8f,0x6c, 0xa4,0x73,0x4e, 0xad,0x72,0x46, 0xa4,0x73,0x4e,
- 0xa4,0x73,0x4e, 0xa4,0x73,0x4e, 0x00,0x00,0x00, 0x00,0x00,0x00,
- 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00, 0x2a,0x25,0x1f,
- 0x55,0x51,0x4c, 0xc2,0xbb,0xb4, 0xe0,0xdf,0xda, 0xe0,0xdf,0xda,
- 0xe0,0xdf,0xda, 0xe0,0xdf,0xda, 0xe0,0xdf,0xda, 0xe0,0xdf,0xda,
- 0xe0,0xdf,0xda, 0xe0,0xdf,0xda, 0xc2,0xbb,0xb4, 0x92,0x8b,0x84,
- 0x2a,0x25,0x1f, 0x2a,0x25,0x1f, 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,0x00,0x00,
- 0xc0,0x8f,0x6c, 0xd3,0xaf,0x93, 0xc0,0x8f,0x6c, 0xa4,0x73,0x4e,
- 0xa4,0x73,0x4e, 0xa4,0x73,0x4e, 0x66,0x44,0x29, 0x66,0x44,0x29,
- 0x86,0x56,0x33, 0x86,0x56,0x33, 0x86,0x56,0x33, 0x86,0x56,0x33,
- 0x86,0x56,0x33, 0x66,0x44,0x29, 0x86,0x56,0x33, 0x86,0x56,0x33,
- 0x86,0x56,0x33, 0x86,0x56,0x33, 0x86,0x56,0x33, 0x44,0x30,0x18,
- 0x66,0x44,0x29, 0x44,0x30,0x18, 0x2a,0x25,0x1f, 0x44,0x30,0x18,
- 0x66,0x44,0x29, 0x86,0x56,0x33, 0xa4,0x73,0x4e, 0xad,0x72,0x46,
- 0xa4,0x73,0x4e, 0xc0,0x8f,0x6c, 0xc0,0x8f,0x6c, 0xad,0x72,0x46,
- 0xc0,0x8f,0x6c, 0xc0,0x8f,0x6c, 0x00,0x00,0x00, 0x00,0x00,0x00,
- 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00,
- 0x2a,0x25,0x1f, 0x55,0x51,0x4c, 0x92,0x8b,0x84, 0xe0,0xdf,0xda,
- 0xe0,0xdf,0xda, 0xe0,0xdf,0xda, 0xe0,0xdf,0xda, 0xe0,0xdf,0xda,
- 0xe0,0xdf,0xda, 0x92,0x8b,0x84, 0x55,0x51,0x4c, 0x2a,0x25,0x1f,
- 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,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00,
- 0xa4,0x73,0x4e, 0xd3,0xaf,0x93, 0xc0,0x8f,0x6c, 0x86,0x56,0x33,
- 0xa4,0x73,0x4e, 0x86,0x56,0x33, 0x2a,0x25,0x1f, 0x2a,0x25,0x1f,
- 0x2a,0x25,0x1f, 0x86,0x56,0x33, 0x86,0x56,0x33, 0x86,0x56,0x33,
- 0x86,0x56,0x33, 0x86,0x56,0x33, 0x86,0x56,0x33, 0x86,0x56,0x33,
- 0xad,0x72,0x46, 0xa4,0x73,0x4e, 0x44,0x30,0x18, 0x66,0x44,0x29,
- 0x66,0x44,0x29, 0x44,0x30,0x18, 0x66,0x44,0x29, 0x86,0x56,0x33,
- 0x86,0x56,0x33, 0x66,0x44,0x29, 0x66,0x44,0x29, 0x86,0x56,0x33,
- 0xad,0x72,0x46, 0x66,0x44,0x29, 0x86,0x56,0x33, 0xad,0x72,0x46,
- 0xc0,0x8f,0x6c, 0x86,0x56,0x33, 0x00,0x00,0x00, 0x00,0x00,0x00,
- 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00,
- 0x00,0x00,0x00, 0x2a,0x25,0x1f, 0x2a,0x25,0x1f, 0x92,0x8b,0x84,
- 0xe0,0xdf,0xda, 0xe0,0xdf,0xda, 0xe0,0xdf,0xda, 0xe0,0xdf,0xda,
- 0xc2,0xbb,0xb4, 0x2a,0x25,0x1f, 0x2a,0x25,0x1f, 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,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00,
- 0x66,0x44,0x29, 0xad,0x72,0x46, 0xc0,0x8f,0x6c, 0x86,0x56,0x33,
- 0x66,0x44,0x29, 0x66,0x44,0x29, 0x44,0x30,0x18, 0x2a,0x25,0x1f,
- 0x2a,0x25,0x1f, 0x44,0x30,0x18, 0xad,0x72,0x46, 0x86,0x56,0x33,
- 0x66,0x44,0x29, 0x86,0x56,0x33, 0x86,0x56,0x33, 0x86,0x56,0x33,
- 0x86,0x56,0x33, 0x44,0x30,0x18, 0x2a,0x25,0x1f, 0x2a,0x25,0x1f,
- 0x44,0x30,0x18, 0x86,0x56,0x33, 0x86,0x56,0x33, 0xad,0x72,0x46,
- 0xad,0x72,0x46, 0x86,0x56,0x33, 0x66,0x44,0x29, 0x86,0x56,0x33,
- 0x44,0x30,0x18, 0x44,0x30,0x18, 0x66,0x44,0x29, 0x86,0x56,0x33,
- 0xad,0x72,0x46, 0xa4,0x73,0x4e, 0x00,0x00,0x00, 0x00,0x00,0x00,
- 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00,
- 0x00,0x00,0x00, 0x00,0x00,0x00, 0x2a,0x25,0x1f, 0x55,0x51,0x4c,
- 0xe0,0xdf,0xda, 0xe0,0xdf,0xda, 0xe0,0xdf,0xda, 0xe0,0xdf,0xda,
- 0x92,0x8b,0x84, 0x2a,0x25,0x1f, 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,0x00,0x00,
- 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00,
- 0x00,0x00,0x00, 0x86,0x56,0x33, 0x86,0x56,0x33, 0x44,0x30,0x18,
- 0x86,0x56,0x33, 0x66,0x44,0x29, 0x2a,0x25,0x1f, 0x2a,0x25,0x1f,
- 0x66,0x44,0x29, 0x92,0x8b,0x84, 0xc0,0x8f,0x6c, 0xad,0x72,0x46,
- 0x86,0x56,0x33, 0x66,0x44,0x29, 0x2a,0x25,0x1f, 0xa4,0x73,0x4e,
- 0xa4,0x73,0x4e, 0xa4,0x73,0x4e, 0x86,0x56,0x33, 0x66,0x44,0x29,
- 0xa4,0x73,0x4e, 0xa4,0x73,0x4e, 0xc0,0x8f,0x6c, 0xc0,0x8f,0x6c,
- 0xad,0x72,0x46, 0x66,0x44,0x29, 0x44,0x30,0x18, 0x44,0x30,0x18,
- 0x44,0x30,0x18, 0x2a,0x25,0x1f, 0x44,0x30,0x18, 0x86,0x56,0x33,
- 0x86,0x56,0x33, 0x86,0x56,0x33, 0x00,0x00,0x00, 0x00,0x00,0x00,
- 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00,
- 0x00,0x00,0x00, 0x00,0x00,0x00, 0x2a,0x25,0x1f, 0x92,0x8b,0x84,
- 0xe0,0xdf,0xda, 0xe0,0xdf,0xda, 0xe0,0xdf,0xda, 0xe0,0xdf,0xda,
- 0xc2,0xbb,0xb4, 0x2a,0x25,0x1f, 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,0x00,0x00,
- 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00,
- 0x00,0x00,0x00, 0x2a,0x25,0x1f, 0x86,0x56,0x33, 0x66,0x44,0x29,
- 0x44,0x30,0x18, 0x44,0x30,0x18, 0x66,0x44,0x29, 0xa4,0x73,0x4e,
- 0xd3,0xaf,0x93, 0xe0,0xdf,0xda, 0xd3,0xaf,0x93, 0xd3,0xaf,0x93,
- 0xc0,0x8f,0x6c, 0x86,0x56,0x33, 0xd3,0xaf,0x93, 0xd3,0xaf,0x93,
- 0xc0,0x8f,0x6c, 0xad,0x72,0x46, 0xad,0x72,0x46, 0x86,0x56,0x33,
- 0x86,0x56,0x33, 0x86,0x56,0x33, 0xad,0x72,0x46, 0xc0,0x8f,0x6c,
- 0xad,0x72,0x46, 0xad,0x72,0x46, 0xa4,0x73,0x4e, 0x66,0x44,0x29,
- 0x66,0x44,0x29, 0x86,0x56,0x33, 0x44,0x30,0x18, 0x66,0x44,0x29,
- 0x66,0x44,0x29, 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, 0x2a,0x25,0x1f, 0x92,0x8b,0x84,
- 0xe0,0xdf,0xda, 0xe0,0xdf,0xda, 0xe0,0xdf,0xda, 0xe0,0xdf,0xda,
- 0xc2,0xbb,0xb4, 0x2a,0x25,0x1f, 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,0x00,0x00,
- 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00,
- 0x00,0x00,0x00, 0x00,0x00,0x00, 0x66,0x44,0x29, 0xa4,0x73,0x4e,
- 0x66,0x44,0x29, 0xc0,0x8f,0x6c, 0xc0,0x8f,0x6c, 0x86,0x56,0x33,
- 0xc0,0x8f,0x6c, 0xc0,0x8f,0x6c, 0xd3,0xaf,0x93, 0xd3,0xaf,0x93,
- 0xa4,0x73,0x4e, 0x92,0x8b,0x84, 0xa4,0x73,0x4e, 0xad,0x72,0x46,
- 0xa4,0x73,0x4e, 0xad,0x72,0x46, 0xad,0x72,0x46, 0xa4,0x73,0x4e,
- 0x86,0x56,0x33, 0xad,0x72,0x46, 0xc0,0x8f,0x6c, 0xc0,0x8f,0x6c,
- 0xc0,0x8f,0x6c, 0xc0,0x8f,0x6c, 0xad,0x72,0x46, 0xad,0x72,0x46,
- 0xc0,0x8f,0x6c, 0xc0,0x8f,0x6c, 0xc0,0x8f,0x6c, 0x2a,0x25,0x1f,
- 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,0x00,0x00, 0x2a,0x25,0x1f, 0x55,0x51,0x4c,
- 0xe0,0xdf,0xda, 0xe0,0xdf,0xda, 0xe0,0xdf,0xda, 0xe0,0xdf,0xda,
- 0xc2,0xbb,0xb4, 0x2a,0x25,0x1f, 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,0x00,0x00,
- 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00,
- 0x00,0x00,0x00, 0x00,0x00,0x00, 0x92,0x8b,0x84, 0x66,0x44,0x29,
- 0xd3,0xaf,0x93, 0xd3,0xaf,0x93, 0xc0,0x8f,0x6c, 0x86,0x56,0x33,
- 0x2a,0x25,0x1f, 0x86,0x56,0x33, 0x86,0x56,0x33, 0x86,0x56,0x33,
- 0x66,0x44,0x29, 0x86,0x56,0x33, 0x86,0x56,0x33, 0x86,0x56,0x33,
- 0x86,0x56,0x33, 0x86,0x56,0x33, 0xad,0x72,0x46, 0xad,0x72,0x46,
- 0xc0,0x8f,0x6c, 0xc0,0x8f,0x6c, 0xc0,0x8f,0x6c, 0xc0,0x8f,0x6c,
- 0xad,0x72,0x46, 0xad,0x72,0x46, 0xad,0x72,0x46, 0xad,0x72,0x46,
- 0xad,0x72,0x46, 0xad,0x72,0x46, 0xa4,0x73,0x4e, 0x44,0x30,0x18,
- 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,0x00,0x00, 0x2a,0x25,0x1f, 0x92,0x8b,0x84,
- 0xe0,0xdf,0xda, 0xe0,0xdf,0xda, 0xe0,0xdf,0xda, 0xe0,0xdf,0xda,
- 0xc2,0xbb,0xb4, 0x2a,0x25,0x1f, 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,0x00,0x00,
- 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00,
- 0x00,0x00,0x00, 0x00,0x00,0x00, 0xc0,0x8f,0x6c, 0x92,0x8b,0x84,
- 0xc0,0x8f,0x6c, 0xc0,0x8f,0x6c, 0xa4,0x73,0x4e, 0x44,0x30,0x18,
- 0x2a,0x25,0x1f, 0x44,0x30,0x18, 0x2a,0x25,0x1f, 0x66,0x44,0x29,
- 0x66,0x44,0x29, 0x86,0x56,0x33, 0x86,0x56,0x33, 0x86,0x56,0x33,
- 0x86,0x56,0x33, 0xad,0x72,0x46, 0xad,0x72,0x46, 0xad,0x72,0x46,
- 0xad,0x72,0x46, 0xc0,0x8f,0x6c, 0xc0,0x8f,0x6c, 0xad,0x72,0x46,
- 0xad,0x72,0x46, 0xad,0x72,0x46, 0x86,0x56,0x33, 0x86,0x56,0x33,
- 0x86,0x56,0x33, 0x86,0x56,0x33, 0xc0,0x8f,0x6c, 0x86,0x56,0x33,
- 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,0x00,0x00, 0x2a,0x25,0x1f, 0x92,0x8b,0x84,
- 0xe0,0xdf,0xda, 0xe0,0xdf,0xda, 0xe0,0xdf,0xda, 0xe0,0xdf,0xda,
- 0xe0,0xdf,0xda, 0x2a,0x25,0x1f, 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,0x00,0x00,
- 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00,
- 0x00,0x00,0x00, 0x55,0x51,0x4c, 0xa4,0x73,0x4e, 0xd3,0xaf,0x93,
- 0xd3,0xaf,0x93, 0xa4,0x73,0x4e, 0x66,0x44,0x29, 0x2a,0x25,0x1f,
- 0x2a,0x25,0x1f, 0x66,0x44,0x29, 0x66,0x44,0x29, 0x44,0x30,0x18,
- 0x44,0x30,0x18, 0x44,0x30,0x18, 0x66,0x44,0x29, 0x66,0x44,0x29,
- 0xad,0x72,0x46, 0x86,0x56,0x33, 0xad,0x72,0x46, 0xad,0x72,0x46,
- 0xad,0x72,0x46, 0xad,0x72,0x46, 0xad,0x72,0x46, 0xad,0x72,0x46,
- 0xad,0x72,0x46, 0x86,0x56,0x33, 0x66,0x44,0x29, 0x66,0x44,0x29,
- 0x66,0x44,0x29, 0x86,0x56,0x33, 0x86,0x56,0x33, 0x86,0x56,0x33,
- 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,0x00,0x00, 0x2a,0x25,0x1f, 0x92,0x8b,0x84,
- 0xe0,0xdf,0xda, 0xe0,0xdf,0xda, 0xe0,0xdf,0xda, 0xe0,0xdf,0xda,
- 0xc2,0xbb,0xb4, 0x2a,0x25,0x1f, 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,0x00,0x00,
- 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00,
- 0x00,0x00,0x00, 0xd3,0xaf,0x93, 0xc0,0x8f,0x6c, 0xc0,0x8f,0x6c,
- 0xa4,0x73,0x4e, 0xa4,0x73,0x4e, 0x66,0x44,0x29, 0x44,0x30,0x18,
- 0x2a,0x25,0x1f, 0x86,0x56,0x33, 0x86,0x56,0x33, 0x86,0x56,0x33,
- 0x66,0x44,0x29, 0x66,0x44,0x29, 0x66,0x44,0x29, 0x86,0x56,0x33,
- 0x66,0x44,0x29, 0x86,0x56,0x33, 0xad,0x72,0x46, 0xad,0x72,0x46,
- 0x86,0x56,0x33, 0xad,0x72,0x46, 0x86,0x56,0x33, 0xad,0x72,0x46,
- 0x86,0x56,0x33, 0x66,0x44,0x29, 0x44,0x30,0x18, 0x66,0x44,0x29,
- 0x86,0x56,0x33, 0x66,0x44,0x29, 0x86,0x56,0x33, 0xad,0x72,0x46,
- 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,0x00,0x00, 0x2a,0x25,0x1f, 0x92,0x8b,0x84,
- 0xe0,0xdf,0xda, 0xe0,0xdf,0xda, 0xe0,0xdf,0xda, 0xe0,0xdf,0xda,
- 0xe0,0xdf,0xda, 0x2a,0x25,0x1f, 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,0x00,0x00,
- 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00,
- 0x00,0x00,0x00, 0x92,0x8b,0x84, 0xc0,0x8f,0x6c, 0xad,0x72,0x46,
- 0x86,0x56,0x33, 0x44,0x30,0x18, 0x44,0x30,0x18, 0x2a,0x25,0x1f,
- 0x66,0x44,0x29, 0x86,0x56,0x33, 0x66,0x44,0x29, 0x86,0x56,0x33,
- 0x86,0x56,0x33, 0x86,0x56,0x33, 0x66,0x44,0x29, 0x86,0x56,0x33,
- 0x66,0x44,0x29, 0x86,0x56,0x33, 0x86,0x56,0x33, 0x86,0x56,0x33,
- 0x86,0x56,0x33, 0x86,0x56,0x33, 0x86,0x56,0x33, 0x86,0x56,0x33,
- 0x86,0x56,0x33, 0x66,0x44,0x29, 0x86,0x56,0x33, 0x44,0x30,0x18,
- 0x44,0x30,0x18, 0x66,0x44,0x29, 0x44,0x30,0x18, 0xad,0x72,0x46,
- 0x66,0x44,0x29, 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, 0x2a,0x25,0x1f, 0x92,0x8b,0x84,
- 0xe0,0xdf,0xda, 0xe0,0xdf,0xda, 0xe0,0xdf,0xda, 0xe0,0xdf,0xda,
- 0xe0,0xdf,0xda, 0x2a,0x25,0x1f, 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,0x00,0x00,
- 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00,
- 0x00,0x00,0x00, 0xa4,0x73,0x4e, 0xc0,0x8f,0x6c, 0x86,0x56,0x33,
- 0x86,0x56,0x33, 0x66,0x44,0x29, 0x86,0x56,0x33, 0x66,0x44,0x29,
- 0xa4,0x73,0x4e, 0x44,0x30,0x18, 0x44,0x30,0x18, 0x66,0x44,0x29,
- 0x66,0x44,0x29, 0x86,0x56,0x33, 0x86,0x56,0x33, 0x86,0x56,0x33,
- 0x86,0x56,0x33, 0x86,0x56,0x33, 0x86,0x56,0x33, 0x86,0x56,0x33,
- 0x86,0x56,0x33, 0xad,0x72,0x46, 0xad,0x72,0x46, 0x66,0x44,0x29,
- 0x44,0x30,0x18, 0x66,0x44,0x29, 0x86,0x56,0x33, 0x86,0x56,0x33,
- 0x86,0x56,0x33, 0x44,0x30,0x18, 0x66,0x44,0x29, 0x86,0x56,0x33,
- 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,0x00,0x00, 0x2a,0x25,0x1f, 0x92,0x8b,0x84,
- 0xe0,0xdf,0xda, 0xe0,0xdf,0xda, 0xe0,0xdf,0xda, 0xe0,0xdf,0xda,
- 0xe0,0xdf,0xda, 0x2a,0x25,0x1f, 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,0x00,0x00,
- 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00,
- 0x00,0x00,0x00, 0x00,0x00,0x00, 0xc0,0x8f,0x6c, 0xa4,0x73,0x4e,
- 0x86,0x56,0x33, 0xad,0x72,0x46, 0x86,0x56,0x33, 0xa4,0x73,0x4e,
- 0xa4,0x73,0x4e, 0xc0,0x8f,0x6c, 0x86,0x56,0x33, 0x66,0x44,0x29,
- 0x66,0x44,0x29, 0x66,0x44,0x29, 0x86,0x56,0x33, 0x86,0x56,0x33,
- 0x86,0x56,0x33, 0x86,0x56,0x33, 0xad,0x72,0x46, 0xad,0x72,0x46,
- 0x86,0x56,0x33, 0x66,0x44,0x29, 0x44,0x30,0x18, 0x44,0x30,0x18,
- 0x66,0x44,0x29, 0x66,0x44,0x29, 0x86,0x56,0x33, 0x66,0x44,0x29,
- 0x86,0x56,0x33, 0x2a,0x25,0x1f, 0x44,0x30,0x18, 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,0x00,0x00, 0x00,0x00,0x00, 0x2a,0x25,0x1f, 0xc2,0xbb,0xb4,
- 0xe0,0xdf,0xda, 0xe0,0xdf,0xda, 0xe0,0xdf,0xda, 0xe0,0xdf,0xda,
- 0xe0,0xdf,0xda, 0x2a,0x25,0x1f, 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,0x00,0x00,
- 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00,
- 0x00,0x00,0x00, 0x00,0x00,0x00, 0x66,0x44,0x29, 0x86,0x56,0x33,
- 0x66,0x44,0x29, 0x86,0x56,0x33, 0x86,0x56,0x33, 0x86,0x56,0x33,
- 0xa4,0x73,0x4e, 0xa4,0x73,0x4e, 0x66,0x44,0x29, 0x66,0x44,0x29,
- 0x66,0x44,0x29, 0x44,0x30,0x18, 0x44,0x30,0x18, 0x44,0x30,0x18,
- 0x66,0x44,0x29, 0x66,0x44,0x29, 0x44,0x30,0x18, 0x44,0x30,0x18,
- 0x44,0x30,0x18, 0x44,0x30,0x18, 0x2a,0x25,0x1f, 0x2a,0x25,0x1f,
- 0x44,0x30,0x18, 0x44,0x30,0x18, 0x66,0x44,0x29, 0x66,0x44,0x29,
- 0x66,0x44,0x29, 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,0x00,0x00, 0x00,0x00,0x00,
- 0x00,0x00,0x00, 0x00,0x00,0x00, 0x2a,0x25,0x1f, 0xc2,0xbb,0xb4,
- 0xe0,0xdf,0xda, 0xe0,0xdf,0xda, 0xe0,0xdf,0xda, 0xe0,0xdf,0xda,
- 0xe0,0xdf,0xda, 0x55,0x51,0x4c, 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,0x00,0x00,
- 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00,
- 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00, 0xa4,0x73,0x4e,
- 0xa4,0x73,0x4e, 0x86,0x56,0x33, 0x86,0x56,0x33, 0x66,0x44,0x29,
- 0x86,0x56,0x33, 0x86,0x56,0x33, 0x66,0x44,0x29, 0x66,0x44,0x29,
- 0x66,0x44,0x29, 0x66,0x44,0x29, 0x66,0x44,0x29, 0x66,0x44,0x29,
- 0x66,0x44,0x29, 0x2a,0x25,0x1f, 0x44,0x30,0x18, 0x44,0x30,0x18,
- 0x44,0x30,0x18, 0x44,0x30,0x18, 0x6a,0x5a,0x1f, 0x6a,0x5a,0x1f,
- 0x66,0x44,0x29, 0x6a,0x5a,0x1f, 0x6a,0x5a,0x1f, 0x96,0x80,0x2e,
- 0x6a,0x5a,0x1f, 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,0x00,0x00, 0x00,0x00,0x00,
- 0x00,0x00,0x00, 0x00,0x00,0x00, 0x2a,0x25,0x1f, 0xc2,0xbb,0xb4,
- 0xe0,0xdf,0xda, 0xe0,0xdf,0xda, 0xe0,0xdf,0xda, 0xe0,0xdf,0xda,
- 0xe0,0xdf,0xda, 0x2a,0x25,0x1f, 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,0x00,0x00,
- 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00,
- 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00, 0x86,0x56,0x33,
- 0x66,0x44,0x29, 0x66,0x44,0x29, 0x66,0x44,0x29, 0x86,0x56,0x33,
- 0x86,0x56,0x33, 0x44,0x30,0x18, 0x44,0x30,0x18, 0x86,0x56,0x33,
- 0x66,0x44,0x29, 0x86,0x56,0x33, 0x86,0x56,0x33, 0x86,0x56,0x33,
- 0x66,0x44,0x29, 0x44,0x30,0x18, 0x44,0x30,0x18, 0x44,0x30,0x18,
- 0x44,0x30,0x18, 0x44,0x30,0x18, 0x44,0x30,0x18, 0x6a,0x5a,0x1f,
- 0x44,0x30,0x18, 0x44,0x30,0x18, 0x6a,0x5a,0x1f, 0x96,0x80,0x2e,
- 0x6a,0x5a,0x1f, 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,0x00,0x00, 0x00,0x00,0x00,
- 0x00,0x00,0x00, 0x00,0x00,0x00, 0x2a,0x25,0x1f, 0xc2,0xbb,0xb4,
- 0xe0,0xdf,0xda, 0xe0,0xdf,0xda, 0xe0,0xdf,0xda, 0xe0,0xdf,0xda,
- 0xe0,0xdf,0xda, 0x55,0x51,0x4c, 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,0x00,0x00,
- 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00,
- 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00, 0x66,0x44,0x29,
- 0x86,0x56,0x33, 0x44,0x30,0x18, 0x44,0x30,0x18, 0x6a,0x5a,0x1f,
- 0x86,0x56,0x33, 0x66,0x44,0x29, 0x66,0x44,0x29, 0x44,0x30,0x18,
- 0x66,0x44,0x29, 0x44,0x30,0x18, 0x44,0x30,0x18, 0x44,0x30,0x18,
- 0x44,0x30,0x18, 0x44,0x30,0x18, 0x6a,0x5a,0x1f, 0x6a,0x5a,0x1f,
- 0x6a,0x5a,0x1f, 0x6a,0x5a,0x1f, 0x6a,0x5a,0x1f, 0x6a,0x5a,0x1f,
- 0x6a,0x5a,0x1f, 0x6a,0x5a,0x1f, 0x6a,0x5a,0x1f, 0x6a,0x5a,0x1f,
- 0x6a,0x5a,0x1f, 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,0x00,0x00, 0x00,0x00,0x00,
- 0x00,0x00,0x00, 0x00,0x00,0x00, 0x2a,0x25,0x1f, 0xc2,0xbb,0xb4,
- 0xe0,0xdf,0xda, 0xe0,0xdf,0xda, 0xe0,0xdf,0xda, 0xe0,0xdf,0xda,
- 0xe0,0xdf,0xda, 0x55,0x51,0x4c, 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,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,
- 0x86,0x56,0x33, 0x44,0x30,0x18, 0x6a,0x5a,0x1f, 0x96,0x80,0x2e,
- 0x6a,0x5a,0x1f, 0x6a,0x5a,0x1f, 0x44,0x30,0x18, 0x2a,0x25,0x1f,
- 0x44,0x30,0x18, 0x6a,0x5a,0x1f, 0x6a,0x5a,0x1f, 0x6a,0x5a,0x1f,
- 0x6a,0x5a,0x1f, 0x44,0x30,0x18, 0x6a,0x5a,0x1f, 0x44,0x30,0x18,
- 0x6a,0x5a,0x1f, 0x6a,0x5a,0x1f, 0x6a,0x5a,0x1f, 0x6a,0x5a,0x1f,
- 0x6a,0x5a,0x1f, 0x6a,0x5a,0x1f, 0x96,0x80,0x2e, 0x96,0x80,0x2e,
- 0x44,0x30,0x18, 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,0x00,0x00, 0x00,0x00,0x00,
- 0x00,0x00,0x00, 0x00,0x00,0x00, 0x2a,0x25,0x1f, 0xc2,0xbb,0xb4,
- 0xe0,0xdf,0xda, 0xe0,0xdf,0xda, 0xe0,0xdf,0xda, 0xe0,0xdf,0xda,
- 0xe0,0xdf,0xda, 0x55,0x51,0x4c, 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,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,
- 0x86,0x56,0x33, 0x66,0x44,0x29, 0x6a,0x5a,0x1f, 0x6a,0x5a,0x1f,
- 0x96,0x80,0x2e, 0x6a,0x5a,0x1f, 0x6a,0x5a,0x1f, 0x6a,0x5a,0x1f,
- 0x44,0x30,0x18, 0x44,0x30,0x18, 0x6a,0x5a,0x1f, 0x44,0x30,0x18,
- 0x6a,0x5a,0x1f, 0x6a,0x5a,0x1f, 0x6a,0x5a,0x1f, 0x6a,0x5a,0x1f,
- 0x6a,0x5a,0x1f, 0x6a,0x5a,0x1f, 0x6a,0x5a,0x1f, 0x96,0x80,0x2e,
- 0x6a,0x5a,0x1f, 0x6a,0x5a,0x1f, 0x6a,0x5a,0x1f, 0x96,0x80,0x2e,
- 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,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00,
- 0x00,0x00,0x00, 0x00,0x00,0x00, 0x55,0x51,0x4c, 0xc2,0xbb,0xb4,
- 0xe0,0xdf,0xda, 0xe0,0xdf,0xda, 0xe0,0xdf,0xda, 0xe0,0xdf,0xda,
- 0xe0,0xdf,0xda, 0x55,0x51,0x4c, 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,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,0x00, 0x00,0x00,0x00, 0x2a,0x25,0x1f, 0xb5,0x9b,0x3f,
- 0xb5,0x9b,0x3f, 0x6a,0x5a,0x1f, 0x6a,0x5a,0x1f, 0x96,0x80,0x2e,
- 0x6a,0x5a,0x1f, 0x44,0x30,0x18, 0x6a,0x5a,0x1f, 0x44,0x30,0x18,
- 0x6a,0x5a,0x1f, 0x6a,0x5a,0x1f, 0x44,0x30,0x18, 0x6a,0x5a,0x1f,
- 0x6a,0x5a,0x1f, 0x6a,0x5a,0x1f, 0x96,0x80,0x2e, 0x96,0x80,0x2e,
- 0x96,0x80,0x2e, 0xb5,0x9b,0x3f, 0xb5,0x9b,0x3f, 0xb5,0x9b,0x3f,
- 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,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00,
- 0x00,0x00,0x00, 0x00,0x00,0x00, 0x2a,0x25,0x1f, 0xc2,0xbb,0xb4,
- 0xe0,0xdf,0xda, 0xe0,0xdf,0xda, 0xe0,0xdf,0xda, 0xe0,0xdf,0xda,
- 0xe0,0xdf,0xda, 0x55,0x51,0x4c, 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,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,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00, 0x96,0x80,0x2e,
- 0x96,0x80,0x2e, 0xb5,0x9b,0x3f, 0x6a,0x5a,0x1f, 0x6a,0x5a,0x1f,
- 0x6a,0x5a,0x1f, 0x6a,0x5a,0x1f, 0x6a,0x5a,0x1f, 0x6a,0x5a,0x1f,
- 0x96,0x80,0x2e, 0x6a,0x5a,0x1f, 0x6a,0x5a,0x1f, 0x6a,0x5a,0x1f,
- 0x6a,0x5a,0x1f, 0x6a,0x5a,0x1f, 0x6a,0x5a,0x1f, 0x96,0x80,0x2e,
- 0x96,0x80,0x2e, 0x96,0x80,0x2e, 0x96,0x80,0x2e, 0x96,0x80,0x2e,
- 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,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00,
- 0x00,0x00,0x00, 0x00,0x00,0x00, 0x55,0x51,0x4c, 0xc2,0xbb,0xb4,
- 0xe0,0xdf,0xda, 0xe0,0xdf,0xda, 0xe0,0xdf,0xda, 0xe0,0xdf,0xda,
- 0xe0,0xdf,0xda, 0x55,0x51,0x4c, 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,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,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00, 0x96,0x80,0x2e,
- 0x96,0x80,0x2e, 0x96,0x80,0x2e, 0x96,0x80,0x2e, 0x6a,0x5a,0x1f,
- 0x6a,0x5a,0x1f, 0x6a,0x5a,0x1f, 0x6a,0x5a,0x1f, 0x6a,0x5a,0x1f,
- 0x6a,0x5a,0x1f, 0x96,0x80,0x2e, 0x6a,0x5a,0x1f, 0x96,0x80,0x2e,
- 0x96,0x80,0x2e, 0xb5,0x9b,0x3f, 0x96,0x80,0x2e, 0xb5,0x9b,0x3f,
- 0xb5,0x9b,0x3f, 0xb5,0x9b,0x3f, 0xb5,0x9b,0x3f, 0x96,0x80,0x2e,
- 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,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00,
- 0x00,0x00,0x00, 0x00,0x00,0x00, 0x55,0x51,0x4c, 0xc2,0xbb,0xb4,
- 0xe0,0xdf,0xda, 0xe0,0xdf,0xda, 0xe0,0xdf,0xda, 0xe0,0xdf,0xda,
- 0xe0,0xdf,0xda, 0x55,0x51,0x4c, 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,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,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00, 0x6a,0x5a,0x1f,
- 0x96,0x80,0x2e, 0x96,0x80,0x2e, 0x6a,0x5a,0x1f, 0x96,0x80,0x2e,
- 0x96,0x80,0x2e, 0x6a,0x5a,0x1f, 0x96,0x80,0x2e, 0x96,0x80,0x2e,
- 0x6a,0x5a,0x1f, 0x6a,0x5a,0x1f, 0x6a,0x5a,0x1f, 0x6a,0x5a,0x1f,
- 0x6a,0x5a,0x1f, 0x6a,0x5a,0x1f, 0x96,0x80,0x2e, 0x96,0x80,0x2e,
- 0xb5,0x9b,0x3f, 0x96,0x80,0x2e, 0xb5,0x9b,0x3f, 0x6a,0x5a,0x1f,
- 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,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00,
- 0x00,0x00,0x00, 0x00,0x00,0x00, 0x55,0x51,0x4c, 0xc2,0xbb,0xb4,
- 0xe0,0xdf,0xda, 0xe0,0xdf,0xda, 0xe0,0xdf,0xda, 0xe0,0xdf,0xda,
- 0xe0,0xdf,0xda, 0x55,0x51,0x4c, 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,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,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00, 0x6a,0x5a,0x1f,
- 0xb5,0x9b,0x3f, 0x96,0x80,0x2e, 0x6a,0x5a,0x1f, 0x96,0x80,0x2e,
- 0x6a,0x5a,0x1f, 0x96,0x80,0x2e, 0x6a,0x5a,0x1f, 0x96,0x80,0x2e,
- 0x96,0x80,0x2e, 0xb5,0x9b,0x3f, 0x96,0x80,0x2e, 0x96,0x80,0x2e,
- 0x6a,0x5a,0x1f, 0x96,0x80,0x2e, 0x96,0x80,0x2e, 0x96,0x80,0x2e,
- 0x96,0x80,0x2e, 0x96,0x80,0x2e, 0xb5,0x9b,0x3f, 0x6a,0x5a,0x1f,
- 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,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00,
- 0x00,0x00,0x00, 0x00,0x00,0x00, 0x55,0x51,0x4c, 0xc2,0xbb,0xb4,
- 0xe0,0xdf,0xda, 0xe0,0xdf,0xda, 0xe0,0xdf,0xda, 0xe0,0xdf,0xda,
- 0xe0,0xdf,0xda, 0x92,0x8b,0x84, 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,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,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00,
- 0xb5,0x9b,0x3f, 0x6a,0x5a,0x1f, 0x96,0x80,0x2e, 0x6a,0x5a,0x1f,
- 0x6a,0x5a,0x1f, 0x96,0x80,0x2e, 0x6a,0x5a,0x1f, 0x6a,0x5a,0x1f,
- 0x96,0x80,0x2e, 0x6a,0x5a,0x1f, 0x6a,0x5a,0x1f, 0xb5,0x9b,0x3f,
- 0x96,0x80,0x2e, 0xb5,0x9b,0x3f, 0xb5,0x9b,0x3f, 0xb5,0x9b,0x3f,
- 0xb5,0x9b,0x3f, 0xb5,0x9b,0x3f, 0xb5,0x9b,0x3f, 0x44,0x30,0x18,
- 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,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00,
- 0x00,0x00,0x00, 0x00,0x00,0x00, 0x55,0x51,0x4c, 0xe0,0xdf,0xda,
- 0xe0,0xdf,0xda, 0xe0,0xdf,0xda, 0xe0,0xdf,0xda, 0xe0,0xdf,0xda,
- 0xe0,0xdf,0xda, 0x55,0x51,0x4c, 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,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,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00,
- 0x96,0x80,0x2e, 0xb5,0x9b,0x3f, 0x6a,0x5a,0x1f, 0x6a,0x5a,0x1f,
- 0x96,0x80,0x2e, 0x96,0x80,0x2e, 0xb5,0x9b,0x3f, 0xb5,0x9b,0x3f,
- 0x96,0x80,0x2e, 0x96,0x80,0x2e, 0x96,0x80,0x2e, 0x96,0x80,0x2e,
- 0x96,0x80,0x2e, 0x96,0x80,0x2e, 0x96,0x80,0x2e, 0x96,0x80,0x2e,
- 0xb5,0x9b,0x3f, 0xb5,0x9b,0x3f, 0xb5,0x9b,0x3f, 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,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00,
- 0x00,0x00,0x00, 0x00,0x00,0x00, 0x55,0x51,0x4c, 0xc2,0xbb,0xb4,
- 0xe0,0xdf,0xda, 0xe0,0xdf,0xda, 0xe0,0xdf,0xda, 0xe0,0xdf,0xda,
- 0xe0,0xdf,0xda, 0x92,0x8b,0x84, 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,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,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00,
- 0x6a,0x5a,0x1f, 0xb5,0x9b,0x3f, 0x96,0x80,0x2e, 0x96,0x80,0x2e,
- 0xb5,0x9b,0x3f, 0x96,0x80,0x2e, 0x6a,0x5a,0x1f, 0x96,0x80,0x2e,
- 0x96,0x80,0x2e, 0x96,0x80,0x2e, 0xb5,0x9b,0x3f, 0xb5,0x9b,0x3f,
- 0xb5,0x9b,0x3f, 0xb5,0x9b,0x3f, 0xb5,0x9b,0x3f, 0xb5,0x9b,0x3f,
- 0xb5,0x9b,0x3f, 0xb5,0x9b,0x3f, 0x96,0x80,0x2e, 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,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00,
- 0x00,0x00,0x00, 0x00,0x00,0x00, 0x55,0x51,0x4c, 0xe0,0xdf,0xda,
- 0xe0,0xdf,0xda, 0xe0,0xdf,0xda, 0xe0,0xdf,0xda, 0xe0,0xdf,0xda,
- 0xe0,0xdf,0xda, 0x55,0x51,0x4c, 0x2a,0x25,0x1f, 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,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,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00,
- 0x66,0x44,0x29, 0xb5,0x9b,0x3f, 0xb5,0x9b,0x3f, 0x96,0x80,0x2e,
- 0x96,0x80,0x2e, 0xb5,0x9b,0x3f, 0x96,0x80,0x2e, 0x96,0x80,0x2e,
- 0x6a,0x5a,0x1f, 0x6a,0x5a,0x1f, 0x96,0x80,0x2e, 0x6a,0x5a,0x1f,
- 0x96,0x80,0x2e, 0x96,0x80,0x2e, 0xb5,0x9b,0x3f, 0xb5,0x9b,0x3f,
- 0xb5,0x9b,0x3f, 0xb5,0x9b,0x3f, 0x96,0x80,0x2e, 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,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00,
- 0x00,0x00,0x00, 0x00,0x00,0x00, 0x55,0x51,0x4c, 0xc2,0xbb,0xb4,
- 0xe0,0xdf,0xda, 0xe0,0xdf,0xda, 0xe0,0xdf,0xda, 0xe0,0xdf,0xda,
- 0xe0,0xdf,0xda, 0x92,0x8b,0x84, 0x2a,0x25,0x1f, 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,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,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00,
- 0x00,0x00,0x00, 0xb5,0x9b,0x3f, 0x96,0x80,0x2e, 0xb5,0x9b,0x3f,
- 0x96,0x80,0x2e, 0x6a,0x5a,0x1f, 0xb5,0x9b,0x3f, 0xb5,0x9b,0x3f,
- 0xb5,0x9b,0x3f, 0x96,0x80,0x2e, 0xb5,0x9b,0x3f, 0x96,0x80,0x2e,
- 0x96,0x80,0x2e, 0x96,0x80,0x2e, 0x96,0x80,0x2e, 0xb5,0x9b,0x3f,
- 0xb5,0x9b,0x3f, 0x96,0x80,0x2e, 0x96,0x80,0x2e, 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,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00,
- 0x00,0x00,0x00, 0x00,0x00,0x00, 0x55,0x51,0x4c, 0xe0,0xdf,0xda,
- 0xe0,0xdf,0xda, 0xe0,0xdf,0xda, 0xe0,0xdf,0xda, 0xe0,0xdf,0xda,
- 0xe0,0xdf,0xda, 0x55,0x51,0x4c, 0x2a,0x25,0x1f, 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,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,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00,
- 0x00,0x00,0x00, 0x6a,0x5a,0x1f, 0x96,0x80,0x2e, 0xb5,0x9b,0x3f,
- 0xb5,0x9b,0x3f, 0x96,0x80,0x2e, 0x96,0x80,0x2e, 0x96,0x80,0x2e,
- 0x6a,0x5a,0x1f, 0x96,0x80,0x2e, 0xb5,0x9b,0x3f, 0xb5,0x9b,0x3f,
- 0xb5,0x9b,0x3f, 0xb5,0x9b,0x3f, 0xb5,0x9b,0x3f, 0xb5,0x9b,0x3f,
- 0xb5,0x9b,0x3f, 0xb5,0x9b,0x3f, 0x6a,0x5a,0x1f, 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,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00,
- 0x00,0x00,0x00, 0x00,0x00,0x00, 0x55,0x51,0x4c, 0xe0,0xdf,0xda,
- 0xe0,0xdf,0xda, 0xe0,0xdf,0xda, 0xe0,0xdf,0xda, 0xe0,0xdf,0xda,
- 0xe0,0xdf,0xda, 0x92,0x8b,0x84, 0x2a,0x25,0x1f, 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,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,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00,
- 0x00,0x00,0x00, 0x6a,0x5a,0x1f, 0xb5,0x9b,0x3f, 0x96,0x80,0x2e,
- 0x96,0x80,0x2e, 0xb5,0x9b,0x3f, 0xb5,0x9b,0x3f, 0x96,0x80,0x2e,
- 0x96,0x80,0x2e, 0xb5,0x9b,0x3f, 0x6a,0x5a,0x1f, 0x6a,0x5a,0x1f,
- 0xb5,0x9b,0x3f, 0x96,0x80,0x2e, 0x96,0x80,0x2e, 0xb5,0x9b,0x3f,
- 0xb5,0x9b,0x3f, 0x96,0x80,0x2e, 0x6a,0x5a,0x1f, 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,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00,
- 0x00,0x00,0x00, 0x2a,0x25,0x1f, 0x55,0x51,0x4c, 0xe0,0xdf,0xda,
- 0xe0,0xdf,0xda, 0xe0,0xdf,0xda, 0xe0,0xdf,0xda, 0xe0,0xdf,0xda,
- 0xe0,0xdf,0xda, 0x92,0x8b,0x84, 0x2a,0x25,0x1f, 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,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,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00,
- 0x00,0x00,0x00, 0x6a,0x5a,0x1f, 0xb5,0x9b,0x3f, 0xb5,0x9b,0x3f,
- 0x96,0x80,0x2e, 0x6a,0x5a,0x1f, 0xb5,0x9b,0x3f, 0x96,0x80,0x2e,
- 0xb5,0x9b,0x3f, 0xb5,0x9b,0x3f, 0xb5,0x9b,0x3f, 0xb5,0x9b,0x3f,
- 0xb5,0x9b,0x3f, 0x6a,0x5a,0x1f, 0xb5,0x9b,0x3f, 0xb5,0x9b,0x3f,
- 0xb5,0x9b,0x3f, 0xb5,0x9b,0x3f, 0x2a,0x25,0x1f, 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,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00,
- 0x00,0x00,0x00, 0x2a,0x25,0x1f, 0x55,0x51,0x4c, 0xe0,0xdf,0xda,
- 0xe0,0xdf,0xda, 0xe0,0xdf,0xda, 0xe0,0xdf,0xda, 0xe0,0xdf,0xda,
- 0xe0,0xdf,0xda, 0x92,0x8b,0x84, 0x2a,0x25,0x1f, 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,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,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00,
- 0x00,0x00,0x00, 0x00,0x00,0x00, 0xb5,0x9b,0x3f, 0xb5,0x9b,0x3f,
- 0xb5,0x9b,0x3f, 0xb5,0x9b,0x3f, 0x96,0x80,0x2e, 0xa4,0x73,0x4e,
- 0x96,0x80,0x2e, 0xb5,0x9b,0x3f, 0xa4,0x73,0x4e, 0xb5,0x9b,0x3f,
- 0xb5,0x9b,0x3f, 0xb5,0x9b,0x3f, 0xb5,0x9b,0x3f, 0xb5,0x9b,0x3f,
- 0xb5,0x9b,0x3f, 0xb5,0x9b,0x3f, 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,0x00,0x00,
- 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00,
- 0x00,0x00,0x00, 0x2a,0x25,0x1f, 0x55,0x51,0x4c, 0xe0,0xdf,0xda,
- 0xe0,0xdf,0xda, 0xe0,0xdf,0xda, 0xe0,0xdf,0xda, 0xe0,0xdf,0xda,
- 0xe0,0xdf,0xda, 0x92,0x8b,0x84, 0x2a,0x25,0x1f, 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,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,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00,
- 0x00,0x00,0x00, 0x00,0x00,0x00, 0xb5,0x9b,0x3f, 0xb5,0x9b,0x3f,
- 0x96,0x80,0x2e, 0x96,0x80,0x2e, 0xb5,0x9b,0x3f, 0xb5,0x9b,0x3f,
- 0xb5,0x9b,0x3f, 0x96,0x80,0x2e, 0x96,0x80,0x2e, 0xb5,0x9b,0x3f,
- 0x96,0x80,0x2e, 0x96,0x80,0x2e, 0xb5,0x9b,0x3f, 0x96,0x80,0x2e,
- 0x96,0x80,0x2e, 0x96,0x80,0x2e, 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,0x00,0x00,
- 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00,
- 0x00,0x00,0x00, 0x2a,0x25,0x1f, 0x92,0x8b,0x84, 0xe0,0xdf,0xda,
- 0xe0,0xdf,0xda, 0xe0,0xdf,0xda, 0xe0,0xdf,0xda, 0xe0,0xdf,0xda,
- 0xe0,0xdf,0xda, 0x92,0x8b,0x84, 0x2a,0x25,0x1f, 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,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,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00,
- 0x00,0x00,0x00, 0x00,0x00,0x00, 0x96,0x80,0x2e, 0xb5,0x9b,0x3f,
- 0xb5,0x9b,0x3f, 0x96,0x80,0x2e, 0x96,0x80,0x2e, 0x96,0x80,0x2e,
- 0xb5,0x9b,0x3f, 0xb5,0x9b,0x3f, 0xb5,0x9b,0x3f, 0xb5,0x9b,0x3f,
- 0xb5,0x9b,0x3f, 0xb5,0x9b,0x3f, 0xb5,0x9b,0x3f, 0xb5,0x9b,0x3f,
- 0xb5,0x9b,0x3f, 0x96,0x80,0x2e, 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,0x00,0x00,
- 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00,
- 0x00,0x00,0x00, 0x2a,0x25,0x1f, 0x55,0x51,0x4c, 0xe0,0xdf,0xda,
- 0xe0,0xdf,0xda, 0xe0,0xdf,0xda, 0xe0,0xdf,0xda, 0xe0,0xdf,0xda,
- 0xe0,0xdf,0xda, 0x92,0x8b,0x84, 0x2a,0x25,0x1f, 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,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,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00,
- 0x00,0x00,0x00, 0x00,0x00,0x00, 0x96,0x80,0x2e, 0xb5,0x9b,0x3f,
- 0xb5,0x9b,0x3f, 0xb5,0x9b,0x3f, 0xb5,0x9b,0x3f, 0x96,0x80,0x2e,
- 0xb5,0x9b,0x3f, 0x6a,0x5a,0x1f, 0x6a,0x5a,0x1f, 0xb5,0x9b,0x3f,
- 0x96,0x80,0x2e, 0xb5,0x9b,0x3f, 0xb5,0x9b,0x3f, 0xb5,0x9b,0x3f,
- 0xb5,0x9b,0x3f, 0x6a,0x5a,0x1f, 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,0x00,0x00,
- 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00,
- 0x00,0x00,0x00, 0x2a,0x25,0x1f, 0x92,0x8b,0x84, 0xe0,0xdf,0xda,
- 0xe0,0xdf,0xda, 0xe0,0xdf,0xda, 0xc2,0xbb,0xb4, 0xe0,0xdf,0xda,
- 0xe0,0xdf,0xda, 0xc2,0xbb,0xb4, 0x2a,0x25,0x1f, 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,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,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00,
- 0x00,0x00,0x00, 0x00,0x00,0x00, 0x96,0x80,0x2e, 0xb5,0x9b,0x3f,
- 0x96,0x80,0x2e, 0x96,0x80,0x2e, 0xb5,0x9b,0x3f, 0xb5,0x9b,0x3f,
- 0xb5,0x9b,0x3f, 0xb5,0x9b,0x3f, 0xb5,0x9b,0x3f, 0x96,0x80,0x2e,
- 0x6a,0x5a,0x1f, 0xb5,0x9b,0x3f, 0xb5,0x9b,0x3f, 0xb5,0x9b,0x3f,
- 0x96,0x80,0x2e, 0x6a,0x5a,0x1f, 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,0x00,0x00,
- 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00,
- 0x00,0x00,0x00, 0x2a,0x25,0x1f, 0x92,0x8b,0x84, 0xe0,0xdf,0xda,
- 0xc2,0xbb,0xb4, 0x2a,0x25,0x1f, 0x2a,0x25,0x1f, 0x92,0x8b,0x84,
- 0xe0,0xdf,0xda, 0x92,0x8b,0x84, 0x2a,0x25,0x1f, 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,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,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00,
- 0x00,0x00,0x00, 0x00,0x00,0x00, 0x96,0x80,0x2e, 0xb5,0x9b,0x3f,
- 0xb5,0x9b,0x3f, 0x96,0x80,0x2e, 0x96,0x80,0x2e, 0xb5,0x9b,0x3f,
- 0x96,0x80,0x2e, 0x96,0x80,0x2e, 0xb5,0x9b,0x3f, 0xb5,0x9b,0x3f,
- 0xb5,0x9b,0x3f, 0xb5,0x9b,0x3f, 0xb5,0x9b,0x3f, 0xb5,0x9b,0x3f,
- 0xb5,0x9b,0x3f, 0x6a,0x5a,0x1f, 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,0x00,0x00,
- 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00,
- 0x00,0x00,0x00, 0x2a,0x25,0x1f, 0x55,0x51,0x4c, 0xc2,0xbb,0xb4,
- 0x92,0x8b,0x84, 0x2a,0x25,0x1f, 0x2a,0x25,0x1f, 0x55,0x51,0x4c,
- 0xe0,0xdf,0xda, 0x92,0x8b,0x84, 0x2a,0x25,0x1f, 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,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,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00,
- 0x00,0x00,0x00, 0x00,0x00,0x00, 0x44,0x30,0x18, 0xb5,0x9b,0x3f,
- 0xb5,0x9b,0x3f, 0xb5,0x9b,0x3f, 0xb5,0x9b,0x3f, 0xb5,0x9b,0x3f,
- 0xb5,0x9b,0x3f, 0x96,0x80,0x2e, 0xb5,0x9b,0x3f, 0x96,0x80,0x2e,
- 0x96,0x80,0x2e, 0xb5,0x9b,0x3f, 0x96,0x80,0x2e, 0xb5,0x9b,0x3f,
- 0x96,0x80,0x2e, 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,0x00,0x00, 0x00,0x00,0x00,
- 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00,
- 0x00,0x00,0x00, 0x00,0x00,0x00, 0x55,0x51,0x4c, 0xc2,0xbb,0xb4,
- 0x92,0x8b,0x84, 0x55,0x51,0x4c, 0x55,0x51,0x4c, 0x92,0x8b,0x84,
- 0xe0,0xdf,0xda, 0x55,0x51,0x4c, 0x2a,0x25,0x1f, 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,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,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00,
- 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00, 0xb5,0x9b,0x3f,
- 0xb5,0x9b,0x3f, 0x96,0x80,0x2e, 0x96,0x80,0x2e, 0xb5,0x9b,0x3f,
- 0xb5,0x9b,0x3f, 0xb5,0x9b,0x3f, 0xb5,0x9b,0x3f, 0xb5,0x9b,0x3f,
- 0xb5,0x9b,0x3f, 0xb5,0x9b,0x3f, 0xb5,0x9b,0x3f, 0xb5,0x9b,0x3f,
- 0xb5,0x9b,0x3f, 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,0x00,0x00, 0x00,0x00,0x00,
- 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00,
- 0x00,0x00,0x00, 0x00,0x00,0x00, 0x2a,0x25,0x1f, 0x92,0x8b,0x84,
- 0xc2,0xbb,0xb4, 0xc2,0xbb,0xb4, 0x92,0x8b,0x84, 0xe0,0xdf,0xda,
- 0x92,0x8b,0x84, 0x55,0x51,0x4c, 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,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,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00,
- 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00, 0xb5,0x9b,0x3f,
- 0xb5,0x9b,0x3f, 0xb5,0x9b,0x3f, 0xb5,0x9b,0x3f, 0x6a,0x5a,0x1f,
- 0x96,0x80,0x2e, 0xb5,0x9b,0x3f, 0x96,0x80,0x2e, 0x96,0x80,0x2e,
- 0xb5,0x9b,0x3f, 0xb5,0x9b,0x3f, 0xb5,0x9b,0x3f, 0xb5,0x9b,0x3f,
- 0x96,0x80,0x2e, 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,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, 0x2a,0x25,0x1f,
- 0x55,0x51,0x4c, 0x92,0x8b,0x84, 0x92,0x8b,0x84, 0x55,0x51,0x4c,
- 0x2a,0x25,0x1f, 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,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,0x00,
- 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00,
- 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00, 0x96,0x80,0x2e,
- 0xb5,0x9b,0x3f, 0xb5,0x9b,0x3f, 0xb5,0x9b,0x3f, 0xb5,0x9b,0x3f,
- 0xb5,0x9b,0x3f, 0xb5,0x9b,0x3f, 0x6a,0x5a,0x1f, 0x96,0x80,0x2e,
- 0x96,0x80,0x2e, 0x96,0x80,0x2e, 0x96,0x80,0x2e, 0x96,0x80,0x2e,
- 0x96,0x80,0x2e, 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,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,0x00,
- 0x00,0x00,0x00, 0x2a,0x25,0x1f, 0x2a,0x25,0x1f, 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,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,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, 0x6a,0x5a,0x1f,
- 0xb5,0x9b,0x3f, 0xb5,0x9b,0x3f, 0xb5,0x9b,0x3f, 0x6a,0x5a,0x1f,
- 0x96,0x80,0x2e, 0xb5,0x9b,0x3f, 0xb5,0x9b,0x3f, 0x96,0x80,0x2e,
- 0xb5,0x9b,0x3f, 0x96,0x80,0x2e, 0xb5,0x9b,0x3f, 0x96,0x80,0x2e,
- 0x96,0x80,0x2e, 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,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,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,
+ 0xbd,0xa2,0x41, 0xa6,0x8f,0x3c, 0xb0,0x97,0x3d, 0xb2,0x9a,0x47,
+ 0xac,0x93,0x39, 0x9f,0x88,0x35, 0x00,0x00,0x00, 0x00,0x00,0x00,
0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00,
+ 0x00,0x00,0x00, 0x00,0x00,0x00, 0x77,0x79,0x76, 0x78,0x7a,0x77,
0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00,
+ 0x82,0x83,0x81, 0x79,0x7b,0x78, 0x00,0x00,0x00, 0x00,0x00,0x00,
};
diff --git a/src/Makefile.am b/src/Makefile.am
index 208039a5..378ad053 100644
--- a/src/Makefile.am
+++ b/src/Makefile.am
@@ -188,7 +188,7 @@ EXTRA_DIST = \
if HAVE_PYTHON
-icon.c : ../data/doom.ico
+icon.c : ../data/doom8.ico
../data/convert-icon $^ $@
endif
diff --git a/src/icon.c b/src/icon.c
index 10145a50..14c607c2 100644
--- a/src/icon.c
+++ b/src/icon.c
@@ -1,5 +1,5 @@
-static int icon_w = 64;
-static int icon_h = 64;
+static int icon_w = 32;
+static int icon_h = 32;
static unsigned char icon_data[] = {
0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00,
@@ -28,1000 +28,232 @@ static unsigned char icon_data[] = {
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,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00,
+ 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00, 0xa2,0x86,0x73,
+ 0xa9,0x8d,0x7a, 0xbd,0xa0,0x8c, 0xda,0xba,0xa0, 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,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,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00,
0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00,
+ 0xbd,0x8d,0x67, 0xd7,0xb9,0xa5, 0xeb,0xd8,0xcd, 0xd3,0xbf,0xae,
+ 0xbd,0xa0,0x8c, 0xeb,0xd8,0xcd, 0xc2,0x9d,0x86, 0x95,0x5d,0x38,
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,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,0x00, 0x00,0x00,0x00,
+ 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00, 0x9b,0x7e,0x66,
+ 0xc5,0x9e,0x81, 0xd3,0xb3,0x99, 0xd4,0xac,0x8e, 0xee,0xdc,0xd1,
+ 0xb9,0x93,0x76, 0xad,0x71,0x45, 0xd4,0xac,0x8e, 0xb9,0x93,0x76,
+ 0xa3,0x77,0x58, 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00,
+ 0x39,0x1d,0x2d, 0x55,0x20,0x22, 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,0x00,0x00,
0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00,
+ 0x00,0x00,0x00, 0x00,0x00,0x00, 0xda,0xb4,0x9c, 0xd3,0xa3,0x83,
+ 0xaf,0x91,0x78, 0xa7,0x83,0x6d, 0xc4,0xa7,0x93, 0xee,0xe2,0xd5,
+ 0xeb,0xd8,0xcd, 0x8c,0x60,0x3d, 0x9b,0x7e,0x66, 0xce,0x9f,0x7e,
+ 0x84,0x54,0x33, 0xba,0x83,0x5b, 0x00,0x00,0x00, 0x00,0x00,0x00,
+ 0x24,0x1c,0x35, 0x00,0x0f,0x32, 0x29,0x18,0x2e, 0x55,0x20,0x22,
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,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00,
+ 0x00,0x00,0x00, 0xd3,0xb3,0x99, 0xca,0x93,0x6f, 0xc4,0x94,0x6e,
+ 0x98,0x66,0x45, 0x78,0x50,0x2d, 0xd7,0xb9,0xa5, 0xee,0xdc,0xd1,
+ 0xc4,0x9b,0x79, 0xa1,0x6d,0x45, 0x66,0x40,0x24, 0xb8,0x7a,0x4f,
+ 0xcf,0xa6,0x83, 0x98,0x6d,0x4e, 0x00,0x00,0x00, 0x00,0x00,0x00,
+ 0x30,0x1c,0x2f, 0x08,0x13,0x30, 0x00,0x0f,0x32, 0x00,0x0f,0x32,
+ 0x39,0x1d,0x2d, 0x52,0x1c,0x1a, 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,0x00,0x00,
+ 0x9e,0x7b,0x65, 0xb9,0x89,0x64, 0xaa,0x7d,0x5e, 0x9e,0x72,0x53,
+ 0x88,0x5e,0x40, 0xc4,0xa7,0x93, 0xb9,0x89,0x64, 0x90,0x6c,0x51,
+ 0x7f,0x50,0x2f, 0x90,0x5e,0x37, 0x75,0x4d,0x30, 0x7f,0x50,0x2f,
+ 0xd3,0xa3,0x83, 0xd4,0xac,0x8e, 0x00,0x00,0x00, 0x00,0x00,0x00,
+ 0x29,0x18,0x2e, 0x08,0x13,0x30, 0x08,0x13,0x30, 0x08,0x13,0x30,
+ 0x00,0x0f,0x32, 0x08,0x13,0x30, 0x49,0x1e,0x2b, 0x49,0x1a,0x16,
0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00,
+ 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00, 0xda,0xba,0xa0,
+ 0xd4,0xac,0x8e, 0xc4,0x9b,0x79, 0xaa,0x7d,0x5e, 0xaa,0x7d,0x5e,
+ 0xbd,0xa0,0x8c, 0x8c,0x60,0x3d, 0x70,0x49,0x2c, 0x89,0x60,0x42,
+ 0x57,0x38,0x20, 0x6c,0x45,0x29, 0x66,0x40,0x24, 0x51,0x35,0x21,
+ 0x7e,0x55,0x38, 0xce,0x9f,0x7e, 0xc2,0x8a,0x61, 0x00,0x00,0x00,
+ 0x30,0x1c,0x2f, 0x00,0x0f,0x32, 0x00,0x0f,0x32, 0x08,0x13,0x30,
+ 0x00,0x0f,0x32, 0x00,0x0f,0x32, 0x08,0x13,0x30, 0x08,0x13,0x30,
+ 0x59,0x25,0x2b, 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00,
+ 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00, 0xcb,0x9a,0x74,
+ 0xb7,0x81,0x58, 0x8c,0x60,0x3d, 0x79,0x4b,0x2b, 0x89,0x58,0x31,
+ 0x89,0x58,0x31, 0x7f,0x50,0x2f, 0x9e,0x64,0x39, 0x75,0x4c,0x2a,
+ 0x51,0x35,0x21, 0x84,0x54,0x33, 0x54,0x36,0x1d, 0x98,0x6d,0x4e,
+ 0xb4,0x7f,0x5c, 0xba,0x83,0x5b, 0xb8,0x7a,0x4f, 0x00,0x00,0x00,
+ 0x3e,0x28,0x36, 0x08,0x13,0x30, 0x00,0x0f,0x32, 0x08,0x13,0x30,
+ 0x00,0x0f,0x32, 0x00,0x0f,0x32, 0x00,0x0f,0x32, 0x08,0x13,0x30,
+ 0x20,0x1f,0x36, 0x35,0x19,0x12, 0x00,0x00,0x00, 0x00,0x00,0x00,
+ 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00, 0xc2,0x8a,0x61,
+ 0x89,0x60,0x42, 0x84,0x54,0x33, 0x7f,0x50,0x2f, 0x86,0x56,0x35,
+ 0x8d,0x5b,0x35, 0x75,0x4c,0x2a, 0x8d,0x5b,0x35, 0x5c,0x38,0x22,
+ 0x5e,0x3f,0x27, 0x75,0x4d,0x30, 0x9d,0x64,0x3f, 0x75,0x4c,0x2a,
+ 0x78,0x50,0x2d, 0x7f,0x50,0x2f, 0xb7,0x81,0x58, 0x00,0x00,0x00,
+ 0x46,0x35,0x42, 0x04,0x18,0x3a, 0x08,0x13,0x30, 0x5d,0x30,0x28,
+ 0x20,0x1f,0x36, 0x08,0x13,0x30, 0x08,0x13,0x30, 0x04,0x18,0x3a,
+ 0x19,0x1c,0x37, 0x3a,0x1d,0x16, 0x00,0x00,0x00, 0x00,0x00,0x00,
+ 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00, 0x91,0x5f,0x3e,
+ 0x84,0x54,0x33, 0x89,0x58,0x31, 0x7e,0x6e,0x64, 0xc4,0x94,0x6e,
+ 0x78,0x50,0x2d, 0x92,0x6f,0x59, 0xa1,0x7c,0x60, 0x9c,0x6f,0x4b,
+ 0x8d,0x5b,0x35, 0xbc,0x7f,0x53, 0xad,0x71,0x45, 0x75,0x4d,0x30,
+ 0x51,0x35,0x21, 0x4b,0x2f,0x1c, 0x70,0x49,0x2c, 0x00,0x00,0x00,
+ 0x59,0x44,0x4d, 0x1e,0x28,0x42, 0x1e,0x28,0x42, 0x48,0x19,0x10,
+ 0x42,0x19,0x12, 0x53,0x2b,0x30, 0x0c,0x26,0x48, 0x1e,0x28,0x42,
+ 0x24,0x2d,0x48, 0x5f,0x2c,0x1d, 0x00,0x00,0x00, 0x00,0x00,0x00,
+ 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00, 0x89,0x58,0x31,
+ 0xa1,0x84,0x6c, 0xc4,0x94,0x6e, 0x88,0x64,0x44, 0xb5,0x8f,0x73,
+ 0x9e,0x72,0x53, 0xa1,0x6d,0x45, 0x93,0x60,0x3a, 0xad,0x71,0x45,
+ 0xb4,0x7f,0x5c, 0xbd,0x8d,0x67, 0xc2,0x8a,0x61, 0xb3,0x76,0x4b,
+ 0xb8,0x7a,0x4f, 0x88,0x64,0x44, 0x00,0x00,0x00, 0x00,0x00,0x00,
+ 0x61,0x50,0x52, 0x1c,0x34,0x52, 0x1c,0x34,0x52, 0x54,0x27,0x16,
+ 0x29,0x17,0x09, 0x5d,0x30,0x28, 0x1c,0x34,0x52, 0x1c,0x34,0x52,
+ 0x24,0x35,0x4f, 0x69,0x34,0x24, 0x00,0x00,0x00, 0x00,0x00,0x00,
+ 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00, 0xa7,0x83,0x6d,
+ 0xac,0x86,0x6a, 0x74,0x47,0x2d, 0x84,0x54,0x33, 0x5c,0x38,0x22,
+ 0x54,0x36,0x1d, 0x6c,0x45,0x29, 0x96,0x63,0x3c, 0xa3,0x6e,0x41,
+ 0xb3,0x76,0x4b, 0xb3,0x76,0x4b, 0xa2,0x68,0x3d, 0x7c,0x4e,0x2d,
+ 0x63,0x3e,0x27, 0x96,0x63,0x3c, 0x00,0x00,0x00, 0x00,0x00,0x00,
+ 0x6b,0x5d,0x59, 0x22,0x42,0x5f, 0x22,0x42,0x5f, 0x5d,0x34,0x1a,
+ 0x38,0x23,0x0f, 0x5c,0x38,0x22, 0x22,0x42,0x5f, 0x22,0x42,0x5f,
+ 0x2c,0x45,0x5e, 0x6f,0x3e,0x2b, 0x00,0x00,0x00, 0x00,0x00,0x00,
+ 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00, 0xb7,0x81,0x58,
+ 0x98,0x74,0x59, 0x6c,0x45,0x29, 0x4b,0x35,0x25, 0x78,0x50,0x2d,
+ 0x78,0x50,0x2d, 0x78,0x50,0x2d, 0x7f,0x50,0x2f, 0x84,0x54,0x33,
+ 0x8d,0x5b,0x35, 0x96,0x63,0x3c, 0x74,0x47,0x2d, 0x65,0x45,0x26,
+ 0x65,0x45,0x26, 0x7c,0x4e,0x2d, 0x00,0x00,0x00, 0x00,0x00,0x00,
+ 0x77,0x69,0x64, 0x30,0x4e,0x6d, 0x32,0x52,0x6b, 0x69,0x42,0x26,
+ 0x49,0x31,0x11, 0x6c,0x47,0x2f, 0x27,0x4f,0x6d, 0x27,0x4f,0x6d,
+ 0x32,0x52,0x6b, 0x70,0x49,0x2c, 0x00,0x00,0x00, 0x00,0x00,0x00,
+ 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00, 0xb7,0x81,0x58,
+ 0x8a,0x5a,0x39, 0x8a,0x5a,0x39, 0x91,0x5f,0x3e, 0x5e,0x3f,0x27,
+ 0x5c,0x38,0x22, 0x89,0x58,0x31, 0x89,0x58,0x31, 0x95,0x5d,0x38,
+ 0x9d,0x64,0x3f, 0x65,0x45,0x26, 0x4b,0x2f,0x1c, 0x7f,0x50,0x2f,
+ 0x78,0x50,0x2d, 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00,
+ 0x77,0x69,0x64, 0x36,0x5c,0x7a, 0x3e,0x5e,0x78, 0x76,0x52,0x2e,
+ 0x5d,0x42,0x22, 0x75,0x4d,0x30, 0x36,0x5c,0x7a, 0x36,0x5c,0x7a,
+ 0x3e,0x5e,0x78, 0x74,0x47,0x2d, 0x00,0x00,0x00, 0x00,0x00,0x00,
+ 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00,
+ 0x89,0x58,0x31, 0x63,0x3e,0x27, 0xa8,0x6d,0x42, 0x4b,0x2f,0x1c,
+ 0x65,0x45,0x26, 0x70,0x49,0x2c, 0x51,0x35,0x21, 0x78,0x50,0x2d,
+ 0x42,0x30,0x14, 0x49,0x31,0x11, 0x59,0x44,0x22, 0x7c,0x5c,0x2a,
+ 0x8a,0x71,0x27, 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00,
+ 0x71,0x67,0x5c, 0x37,0x52,0x66, 0x3f,0x55,0x64, 0x80,0x55,0x27,
+ 0x64,0x4c,0x1f, 0x7e,0x59,0x2e, 0x37,0x52,0x66, 0x37,0x52,0x66,
+ 0x3f,0x55,0x64, 0x6c,0x47,0x2f, 0x00,0x00,0x00, 0x00,0x00,0x00,
+ 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00,
+ 0x70,0x49,0x2c, 0x65,0x45,0x26, 0x65,0x45,0x26, 0x63,0x3e,0x27,
+ 0x76,0x4d,0x25, 0x5d,0x42,0x22, 0x5e,0x3f,0x27, 0x4e,0x43,0x18,
+ 0x4e,0x43,0x18, 0x6a,0x5b,0x1c, 0x4e,0x43,0x18, 0x5f,0x51,0x19,
+ 0x8a,0x76,0x2a, 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00,
+ 0x63,0x38,0x19, 0x34,0x11,0x04, 0x32,0x0f,0x00, 0x86,0x58,0x1e,
+ 0x74,0x59,0x25, 0x86,0x58,0x1e, 0x34,0x15,0x00, 0x32,0x0f,0x00,
+ 0x34,0x15,0x00, 0x4e,0x31,0x18, 0x00,0x00,0x00, 0x00,0x00,0x00,
+ 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00,
+ 0x00,0x00,0x00, 0x00,0x00,0x00, 0x7e,0x6c,0x27, 0x5a,0x4d,0x1c,
+ 0x4d,0x3e,0x15, 0x67,0x58,0x21, 0x5a,0x4d,0x1c, 0x57,0x4b,0x1a,
+ 0x5f,0x51,0x19, 0x64,0x55,0x1e, 0x5a,0x4d,0x1c, 0x8a,0x71,0x27,
+ 0x8e,0x79,0x26, 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00,
+ 0x63,0x38,0x19, 0x34,0x11,0x04, 0x32,0x0f,0x00, 0x8d,0x63,0x1f,
+ 0x83,0x66,0x2c, 0x8d,0x63,0x1f, 0x32,0x0f,0x00, 0x35,0x19,0x12,
+ 0x34,0x11,0x04, 0x53,0x3a,0x20, 0x00,0x00,0x00, 0x00,0x00,0x00,
+ 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00,
+ 0x00,0x00,0x00, 0x00,0x00,0x00, 0xac,0x93,0x39, 0x76,0x65,0x20,
+ 0x6a,0x5b,0x1c, 0x6a,0x5b,0x1c, 0x67,0x58,0x21, 0x4e,0x43,0x18,
+ 0x4e,0x43,0x18, 0x9b,0x85,0x32, 0xb8,0x9e,0x3c, 0xb1,0x8d,0x36,
+ 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00,
+ 0x63,0x38,0x19, 0x34,0x15,0x00, 0x32,0x0f,0x00, 0x8d,0x63,0x1f,
+ 0x83,0x66,0x2c, 0x8d,0x63,0x1f, 0x32,0x0f,0x00, 0x32,0x0f,0x00,
+ 0x34,0x15,0x00, 0x53,0x3a,0x20, 0x00,0x00,0x00, 0x00,0x00,0x00,
+ 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00,
+ 0x00,0x00,0x00, 0x00,0x00,0x00, 0xb0,0x96,0x34, 0x76,0x65,0x20,
+ 0x7e,0x66,0x23, 0x8e,0x79,0x26, 0x8a,0x71,0x27, 0x7e,0x6c,0x27,
+ 0x8a,0x71,0x27, 0x8a,0x71,0x27, 0xb0,0x96,0x34, 0x98,0x82,0x2f,
+ 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00,
+ 0x75,0x4c,0x2a, 0x38,0x19,0x05, 0x38,0x19,0x05, 0x99,0x6d,0x22,
+ 0x96,0x70,0x2a, 0x99,0x6d,0x22, 0x38,0x19,0x05, 0x38,0x19,0x05,
+ 0x38,0x19,0x05, 0x59,0x3f,0x25, 0x00,0x00,0x00, 0x00,0x00,0x00,
+ 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00,
+ 0x00,0x00,0x00, 0x00,0x00,0x00, 0xac,0x93,0x39, 0x8a,0x76,0x2a,
+ 0x7e,0x66,0x23, 0x76,0x65,0x20, 0x93,0x7d,0x2a, 0x82,0x6f,0x23,
+ 0x9f,0x88,0x35, 0xb8,0xa0,0x4c, 0xb8,0xa0,0x4c, 0xc4,0xa8,0x3f,
+ 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00,
+ 0x7c,0x5c,0x2a, 0x52,0x2e,0x0d, 0x52,0x2e,0x0d, 0xa4,0x7b,0x27,
+ 0xa1,0x80,0x37, 0x9f,0x77,0x1a, 0x52,0x2e,0x0d, 0x52,0x2e,0x0d,
+ 0x52,0x2e,0x0d, 0x5f,0x4e,0x2a, 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, 0x86,0x72,0x26,
+ 0xac,0x93,0x39, 0x97,0x82,0x36, 0xb1,0x8d,0x36, 0xac,0x93,0x39,
+ 0x97,0x82,0x36, 0xa4,0x8c,0x32, 0xbd,0xa2,0x41, 0x8a,0x71,0x27,
+ 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00,
+ 0x8b,0x6d,0x32, 0x66,0x44,0x14, 0x6d,0x4a,0x20, 0xab,0x86,0x29,
+ 0xb1,0x8d,0x36, 0xa4,0x7b,0x27, 0x66,0x44,0x14, 0x66,0x44,0x14,
+ 0x66,0x44,0x14, 0x69,0x56,0x2c, 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, 0xac,0x93,0x31,
+ 0x7e,0x6c,0x27, 0x9f,0x88,0x35, 0x97,0x82,0x36, 0x7e,0x66,0x23,
+ 0x7e,0x66,0x23, 0xb2,0x99,0x3f, 0xbd,0xa2,0x41, 0x8a,0x76,0x2a,
0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00,
+ 0x99,0x7a,0x38, 0x86,0x58,0x1e, 0x7f,0x59,0x22, 0xb2,0x8b,0x1c,
+ 0x94,0x6e,0x21, 0x7f,0x59,0x22, 0x7f,0x59,0x22, 0x7f,0x59,0x22,
+ 0x7f,0x59,0x22, 0x69,0x56,0x2c, 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, 0xac,0x93,0x39,
+ 0x8a,0x71,0x27, 0xb4,0x9c,0x48, 0x7e,0x66,0x23, 0xac,0x93,0x39,
+ 0x9c,0x87,0x3a, 0x9c,0x87,0x3a, 0xbd,0xa2,0x41, 0x8e,0x79,0x26,
0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00,
+ 0xa8,0x86,0x3d, 0x96,0x70,0x2a, 0x96,0x70,0x2a, 0x96,0x70,0x2a,
+ 0x96,0x70,0x2a, 0x96,0x70,0x2a, 0x96,0x70,0x2a, 0x96,0x70,0x2a,
+ 0xa1,0x80,0x37, 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,0x00,0x00, 0xb4,0x9c,0x48,
+ 0xac,0x93,0x31, 0x93,0x7d,0x2a, 0xbd,0xa3,0x48, 0x93,0x7d,0x2a,
+ 0xb8,0xa0,0x4c, 0xb4,0x9c,0x48, 0xcc,0xa5,0x4e, 0x00,0x00,0x00,
0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00,
+ 0xa8,0x86,0x3d, 0xaf,0x85,0x31, 0xaf,0x85,0x31, 0xaf,0x85,0x31,
+ 0xaf,0x85,0x31, 0xaf,0x85,0x31, 0xaf,0x85,0x31, 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,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00,
+ 0x97,0x82,0x36, 0xb4,0x9c,0x48, 0xb2,0x99,0x3f, 0xb4,0x9c,0x48,
+ 0xb0,0x96,0x34, 0xc1,0xa7,0x4c, 0x9b,0x84,0x2a, 0x00,0x00,0x00,
0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00,
+ 0xbd,0x9e,0x4c, 0xc7,0x9a,0x3f, 0xc7,0x9a,0x3f, 0xc7,0x9a,0x3f,
+ 0xc7,0x9a,0x3f, 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,0x00,0x00, 0x00,0x00,0x00,
0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00,
+ 0x9b,0x85,0x32, 0xa7,0x8e,0x2c, 0xac,0x93,0x39, 0xb5,0x91,0x41,
+ 0x76,0x65,0x20, 0xa7,0x8e,0x2c, 0xb4,0x9a,0x38, 0x00,0x00,0x00,
0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00,
+ 0xcc,0xa5,0x4e, 0xe0,0xaf,0x45, 0xe0,0xaf,0x45, 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,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00,
0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00,
+ 0xa4,0x8c,0x32, 0xb8,0x9e,0x44, 0x86,0x72,0x26, 0x9f,0x88,0x35,
+ 0xbd,0xa3,0x48, 0x9b,0x85,0x32, 0xa3,0x81,0x32, 0x00,0x00,0x00,
0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00,
+ 0xd1,0xae,0x4e, 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,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, 0xdb,0xbd,0xa6,
- 0xdb,0xbd,0xa6, 0xbd,0x8e,0x6c, 0x3a,0x24,0x1f, 0x6a,0x49,0x29,
- 0x00,0x00,0x00, 0x6a,0x49,0x29, 0x00,0x00,0x00, 0x00,0x00,0x00,
0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00,
+ 0xb0,0x97,0x3c, 0xb4,0x9a,0x38, 0xac,0x94,0x41, 0xb2,0x99,0x3f,
+ 0xb4,0x9a,0x38, 0xb8,0x9e,0x3c, 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,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,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, 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,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,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00,
- 0x00,0x00,0x00, 0x3a,0x24,0x1f, 0xbd,0x8e,0x6c, 0xa3,0x71,0x4b,
- 0xdb,0xbd,0xa6, 0xdb,0xbd,0xa6, 0xdb,0xbd,0xa6, 0xdb,0xbd,0xa6,
- 0xdb,0xbd,0xa6, 0xdb,0xbd,0xa6, 0xdb,0xbd,0xa6, 0xdb,0xbd,0xa6,
- 0x6a,0x49,0x29, 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,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,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, 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,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,0x00,
- 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00,
- 0x6a,0x49,0x29, 0xdb,0xbd,0xa6, 0xa3,0x71,0x4b, 0x88,0x57,0x34,
- 0x6a,0x49,0x29, 0xdb,0xbd,0xa6, 0xdb,0xbd,0xa6, 0xdb,0xbd,0xa6,
- 0xdb,0xbd,0xa6, 0xdb,0xbd,0xa6, 0xdb,0xbd,0xa6, 0xdb,0xbd,0xa6,
- 0xdb,0xbd,0xa6, 0xdb,0xbd,0xa6, 0xbd,0x8e,0x6c, 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,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,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, 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,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,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00,
- 0xbd,0x8e,0x6c, 0xbd,0x8e,0x6c, 0x6a,0x49,0x29, 0x6a,0x49,0x29,
- 0x6a,0x49,0x29, 0x6a,0x49,0x29, 0x6a,0x49,0x29, 0x3a,0x24,0x1f,
- 0x6a,0x49,0x29, 0x33,0x53,0x6f, 0x6a,0x49,0x29, 0xbd,0x8e,0x6c,
- 0xbd,0x8e,0x6c, 0xbd,0x8e,0x6c, 0xdb,0xbd,0xa6, 0xbd,0x8e,0x6c,
- 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,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,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,
- 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,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,0x00, 0x3a,0x24,0x1f,
- 0xdb,0xbd,0xa6, 0xbd,0x8e,0x6c, 0xbd,0x8e,0x6c, 0xdb,0xbd,0xa6,
- 0xdb,0xbd,0xa6, 0xdb,0xbd,0xa6, 0xdb,0xbd,0xa6, 0xdb,0xbd,0xa6,
- 0xdb,0xbd,0xa6, 0xdb,0xbd,0xa6, 0xdb,0xbd,0xa6, 0xdb,0xbd,0xa6,
- 0xbd,0x8e,0x6c, 0x6a,0x49,0x29, 0x6a,0x49,0x29, 0xa3,0x71,0x4b,
- 0x3a,0x24,0x1f, 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,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,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, 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,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, 0xdb,0xbd,0xa6,
- 0xdb,0xbd,0xa6, 0xdb,0xbd,0xa6, 0xdb,0xbd,0xa6, 0xdb,0xbd,0xa6,
- 0xdb,0xbd,0xa6, 0xdb,0xbd,0xa6, 0xdb,0xbd,0xa6, 0xdb,0xbd,0xa6,
- 0xdb,0xbd,0xa6, 0xdb,0xbd,0xa6, 0xdb,0xbd,0xa6, 0xdb,0xbd,0xa6,
- 0xdb,0xbd,0xa6, 0xdb,0xbd,0xa6, 0xa3,0x71,0x4b, 0xbd,0x8e,0x6c,
- 0xdb,0xbd,0xa6, 0x3a,0x24,0x1f, 0x00,0x00,0x00, 0x00,0x00,0x00,
- 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00, 0x95,0x37,0x27,
- 0x95,0x37,0x27, 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,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,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, 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, 0xbd,0x8e,0x6c, 0xdb,0xbd,0xa6,
- 0xdb,0xbd,0xa6, 0xdb,0xbd,0xa6, 0xdb,0xbd,0xa6, 0xdb,0xbd,0xa6,
- 0xbd,0x8e,0x6c, 0xdb,0xbd,0xa6, 0xdb,0xbd,0xa6, 0xdb,0xbd,0xa6,
- 0xa3,0x71,0x4b, 0x6a,0x49,0x29, 0xbd,0x8e,0x6c, 0xbd,0x8e,0x6c,
- 0xdb,0xbd,0xa6, 0xdb,0xbd,0xa6, 0xdb,0xbd,0xa6, 0xa3,0x71,0x4b,
- 0xbd,0x8e,0x6c, 0xdb,0xbd,0xa6, 0xa3,0x71,0x4b, 0x00,0x00,0x00,
- 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00, 0x95,0x37,0x27,
- 0x66,0x21,0x18, 0x66,0x21,0x18, 0x95,0x37,0x27, 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,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,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, 0x00,0x00,0x00,
- 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00,
- 0x3a,0x24,0x1f, 0xdb,0xbd,0xa6, 0xdb,0xbd,0xa6, 0xdb,0xbd,0xa6,
- 0xdb,0xbd,0xa6, 0xdb,0xbd,0xa6, 0xdb,0xbd,0xa6, 0xdb,0xbd,0xa6,
- 0xdb,0xbd,0xa6, 0xdb,0xbd,0xa6, 0xdb,0xbd,0xa6, 0xdb,0xbd,0xa6,
- 0xdb,0xbd,0xa6, 0xbd,0x8e,0x6c, 0x88,0x57,0x34, 0xbd,0x8e,0x6c,
- 0xdb,0xbd,0xa6, 0xdb,0xbd,0xa6, 0xdb,0xbd,0xa6, 0x6a,0x49,0x29,
- 0x42,0x26,0x12, 0xbd,0x8e,0x6c, 0xbd,0x8e,0x6c, 0x00,0x00,0x00,
- 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00, 0x95,0x37,0x27,
- 0x3a,0x24,0x1f, 0x0b,0x1b,0x3b, 0x0b,0x1b,0x3b, 0x95,0x37,0x27,
- 0x95,0x37,0x27, 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,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,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, 0x00,0x00,0x00, 0x00,0x00,0x00, 0xdb,0xbd,0xa6,
- 0xdb,0xbd,0xa6, 0xdb,0xbd,0xa6, 0xbd,0x8e,0x6c, 0xdb,0xbd,0xa6,
- 0xdb,0xbd,0xa6, 0x88,0x57,0x34, 0xbd,0x8e,0x6c, 0xdb,0xbd,0xa6,
- 0xdb,0xbd,0xa6, 0xdb,0xbd,0xa6, 0xdb,0xbd,0xa6, 0xdb,0xbd,0xa6,
- 0xdb,0xbd,0xa6, 0xdb,0xbd,0xa6, 0x88,0x57,0x34, 0x6a,0x49,0x29,
- 0xbd,0x8e,0x6c, 0xbd,0x8e,0x6c, 0xdb,0xbd,0xa6, 0xbd,0x8e,0x6c,
- 0x3a,0x24,0x1f, 0x6a,0x49,0x29, 0xbd,0x8e,0x6c, 0xa3,0x71,0x4b,
- 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00, 0x66,0x21,0x18,
- 0x3a,0x24,0x1f, 0x0b,0x1b,0x3b, 0x0b,0x1b,0x3b, 0x0b,0x1b,0x3b,
- 0x3a,0x24,0x1f, 0x95,0x37,0x27, 0x95,0x37,0x27, 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,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,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, 0xbd,0x8e,0x6c, 0xdb,0xbd,0xa6,
- 0xdb,0xbd,0xa6, 0xbd,0x8e,0x6c, 0xdb,0xbd,0xa6, 0x6a,0x49,0x29,
- 0xa3,0x71,0x4b, 0xa3,0x71,0x4b, 0xa3,0x71,0x4b, 0x6a,0x49,0x29,
- 0x6a,0x49,0x29, 0xdb,0xbd,0xa6, 0xdb,0xbd,0xa6, 0xdb,0xbd,0xa6,
- 0xdb,0xbd,0xa6, 0xdb,0xbd,0xa6, 0xbd,0x8e,0x6c, 0x6a,0x49,0x29,
- 0x42,0x26,0x12, 0xbd,0x8e,0x6c, 0xbd,0x8e,0x6c, 0xdb,0xbd,0xa6,
- 0x3a,0x24,0x1f, 0x88,0x57,0x34, 0xa3,0x71,0x4b, 0xbd,0x8e,0x6c,
- 0x42,0x26,0x12, 0x00,0x00,0x00, 0x00,0x00,0x00, 0x66,0x21,0x18,
- 0x66,0x21,0x18, 0x0b,0x1b,0x3b, 0x0b,0x1b,0x3b, 0x0b,0x1b,0x3b,
- 0x0b,0x1b,0x3b, 0x0b,0x1b,0x3b, 0x66,0x21,0x18, 0x95,0x37,0x27,
- 0x66,0x21,0x18, 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,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,0x00,
- 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00,
- 0x00,0x00,0x00, 0xdb,0xbd,0xa6, 0xdb,0xbd,0xa6, 0xdb,0xbd,0xa6,
- 0xa3,0x71,0x4b, 0xa3,0x71,0x4b, 0xbd,0x8e,0x6c, 0xbd,0x8e,0x6c,
- 0xa3,0x71,0x4b, 0x6a,0x49,0x29, 0x6a,0x49,0x29, 0x6a,0x49,0x29,
- 0xdb,0xbd,0xa6, 0xdb,0xbd,0xa6, 0xdb,0xbd,0xa6, 0xdb,0xbd,0xa6,
- 0xdb,0xbd,0xa6, 0xbd,0x8e,0x6c, 0xbd,0x8e,0x6c, 0xa3,0x71,0x4b,
- 0x6a,0x49,0x29, 0x88,0x57,0x34, 0xbd,0x8e,0x6c, 0xbd,0x8e,0x6c,
- 0xdb,0xbd,0xa6, 0xa3,0x71,0x4b, 0x88,0x57,0x34, 0xa3,0x71,0x4b,
- 0xa3,0x71,0x4b, 0x00,0x00,0x00, 0x00,0x00,0x00, 0x66,0x21,0x18,
- 0x3a,0x24,0x1f, 0x0b,0x1b,0x3b, 0x0b,0x1b,0x3b, 0x0b,0x1b,0x3b,
- 0x0b,0x1b,0x3b, 0x0b,0x1b,0x3b, 0x0b,0x1b,0x3b, 0x0b,0x1b,0x3b,
- 0x66,0x21,0x18, 0x95,0x37,0x27, 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,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,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00,
- 0x3a,0x24,0x1f, 0xdb,0xbd,0xa6, 0xdb,0xbd,0xa6, 0xdb,0xbd,0xa6,
- 0xbd,0x8e,0x6c, 0xa3,0x71,0x4b, 0xbd,0x8e,0x6c, 0x88,0x57,0x34,
- 0x6a,0x49,0x29, 0x6a,0x49,0x29, 0x88,0x57,0x34, 0xbd,0x8e,0x6c,
- 0xdb,0xbd,0xa6, 0xdb,0xbd,0xa6, 0xdb,0xbd,0xa6, 0xbd,0x8e,0x6c,
- 0xa3,0x71,0x4b, 0x88,0x57,0x34, 0xa3,0x71,0x4b, 0xa3,0x71,0x4b,
- 0x6a,0x49,0x29, 0x6a,0x49,0x29, 0xa3,0x71,0x4b, 0xbd,0x8e,0x6c,
- 0xbd,0x8e,0x6c, 0xbd,0x8e,0x6c, 0xbd,0x8e,0x6c, 0xa3,0x71,0x4b,
- 0x88,0x57,0x34, 0x00,0x00,0x00, 0x00,0x00,0x00, 0x66,0x21,0x18,
- 0x3a,0x24,0x1f, 0x0b,0x1b,0x3b, 0x0b,0x1b,0x3b, 0x0b,0x1b,0x3b,
- 0x0b,0x1b,0x3b, 0x0b,0x1b,0x3b, 0x0b,0x1b,0x3b, 0x0b,0x1b,0x3b,
- 0x0b,0x1b,0x3b, 0x0b,0x1b,0x3b, 0x95,0x37,0x27, 0x95,0x37,0x27,
- 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,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,0x00, 0x3a,0x24,0x1f,
- 0xdb,0xbd,0xa6, 0xdb,0xbd,0xa6, 0xa3,0x71,0x4b, 0xbd,0x8e,0x6c,
- 0xbd,0x8e,0x6c, 0xa3,0x71,0x4b, 0x88,0x57,0x34, 0x3a,0x24,0x1f,
- 0x88,0x57,0x34, 0x88,0x57,0x34, 0xbd,0x8e,0x6c, 0xbd,0x8e,0x6c,
- 0xbd,0x8e,0x6c, 0xbd,0x8e,0x6c, 0xbd,0x8e,0x6c, 0x88,0x57,0x34,
- 0x88,0x57,0x34, 0x88,0x57,0x34, 0x88,0x57,0x34, 0x88,0x57,0x34,
- 0x88,0x57,0x34, 0x3a,0x24,0x1f, 0x88,0x57,0x34, 0xa3,0x71,0x4b,
- 0xdb,0xbd,0xa6, 0xbd,0x8e,0x6c, 0xdb,0xbd,0xa6, 0xbd,0x8e,0x6c,
- 0xa3,0x71,0x4b, 0x00,0x00,0x00, 0x00,0x00,0x00, 0x66,0x21,0x18,
- 0x66,0x21,0x18, 0x0b,0x1b,0x3b, 0x0b,0x1b,0x3b, 0x0b,0x1b,0x3b,
- 0x0b,0x1b,0x3b, 0x0b,0x1b,0x3b, 0x0b,0x1b,0x3b, 0x0b,0x1b,0x3b,
- 0x0b,0x1b,0x3b, 0x0b,0x1b,0x3b, 0x0b,0x1b,0x3b, 0x3a,0x24,0x1f,
- 0x95,0x37,0x27, 0x95,0x37,0x27, 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,0x00,0x00,
- 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00,
- 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00, 0xdb,0xbd,0xa6,
- 0xbd,0x8e,0x6c, 0xdb,0xbd,0xa6, 0xa3,0x71,0x4b, 0xbd,0x8e,0x6c,
- 0xa3,0x71,0x4b, 0x88,0x57,0x34, 0x88,0x57,0x34, 0xbd,0x8e,0x6c,
- 0xbd,0x8e,0x6c, 0xdb,0xbd,0xa6, 0xdb,0xbd,0xa6, 0xbd,0x8e,0x6c,
- 0x88,0x57,0x34, 0x6a,0x49,0x29, 0x42,0x26,0x12, 0x88,0x57,0x34,
- 0x88,0x57,0x34, 0x88,0x57,0x34, 0x88,0x57,0x34, 0x88,0x57,0x34,
- 0x6a,0x49,0x29, 0x3a,0x24,0x1f, 0x6a,0x49,0x29, 0xad,0x6e,0x35,
- 0xad,0x6e,0x35, 0xbd,0x8e,0x6c, 0xbd,0x8e,0x6c, 0xdb,0xbd,0xa6,
- 0xa3,0x71,0x4b, 0x3a,0x24,0x1f, 0x00,0x00,0x00, 0x66,0x21,0x18,
- 0x3a,0x24,0x1f, 0x0b,0x1b,0x3b, 0x0b,0x1b,0x3b, 0x0b,0x1b,0x3b,
- 0x0b,0x1b,0x3b, 0x0b,0x1b,0x3b, 0x0b,0x1b,0x3b, 0x0b,0x1b,0x3b,
- 0x0b,0x1b,0x3b, 0x0b,0x1b,0x3b, 0x0b,0x1b,0x3b, 0x0b,0x1b,0x3b,
- 0x0b,0x1b,0x3b, 0x3a,0x24,0x1f, 0x95,0x37,0x27, 0x66,0x21,0x18,
- 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,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00,
- 0x00,0x00,0x00, 0x6a,0x49,0x29, 0xdb,0xbd,0xa6, 0xdb,0xbd,0xa6,
- 0xbd,0x8e,0x6c, 0xbd,0x8e,0x6c, 0xbd,0x8e,0x6c, 0x88,0x57,0x34,
- 0xa3,0x71,0x4b, 0xbd,0x8e,0x6c, 0xdb,0xbd,0xa6, 0xdb,0xbd,0xa6,
- 0xdb,0xbd,0xa6, 0xdb,0xbd,0xa6, 0xa3,0x71,0x4b, 0xa3,0x71,0x4b,
- 0x6a,0x49,0x29, 0x42,0x26,0x12, 0xa3,0x71,0x4b, 0x88,0x57,0x34,
- 0x6a,0x49,0x29, 0x42,0x26,0x12, 0x88,0x57,0x34, 0x88,0x57,0x34,
- 0x6a,0x49,0x29, 0x3a,0x24,0x1f, 0x3a,0x24,0x1f, 0xa3,0x71,0x4b,
- 0xa3,0x71,0x4b, 0xbd,0x8e,0x6c, 0xbd,0x8e,0x6c, 0xdb,0xbd,0xa6,
- 0xdb,0xbd,0xa6, 0x3a,0x24,0x1f, 0x00,0x00,0x00, 0x66,0x21,0x18,
- 0x66,0x21,0x18, 0x0b,0x1b,0x3b, 0x0b,0x1b,0x3b, 0x0b,0x1b,0x3b,
- 0x0b,0x1b,0x3b, 0x0b,0x1b,0x3b, 0x0b,0x1b,0x3b, 0x0b,0x1b,0x3b,
- 0x0b,0x1b,0x3b, 0x0b,0x1b,0x3b, 0x0b,0x1b,0x3b, 0x0b,0x1b,0x3b,
- 0x0b,0x1b,0x3b, 0x0b,0x1b,0x3b, 0x0b,0x1b,0x3b, 0x66,0x21,0x18,
- 0x95,0x37,0x27, 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,0x00,0x00, 0x00,0x00,0x00,
- 0x00,0x00,0x00, 0xdb,0xbd,0xa6, 0xdb,0xbd,0xa6, 0xbd,0x8e,0x6c,
- 0xbd,0x8e,0x6c, 0xbd,0x8e,0x6c, 0xbd,0x8e,0x6c, 0xbd,0x8e,0x6c,
- 0xbd,0x8e,0x6c, 0xa3,0x71,0x4b, 0x6a,0x49,0x29, 0x88,0x57,0x34,
- 0x88,0x57,0x34, 0x88,0x57,0x34, 0x6a,0x49,0x29, 0x6a,0x49,0x29,
- 0x88,0x57,0x34, 0x6a,0x49,0x29, 0x88,0x57,0x34, 0x6a,0x49,0x29,
- 0x88,0x57,0x34, 0x42,0x26,0x12, 0x42,0x26,0x12, 0x42,0x26,0x12,
- 0x42,0x26,0x12, 0x3a,0x24,0x1f, 0x6a,0x49,0x29, 0xad,0x6e,0x35,
- 0xa3,0x71,0x4b, 0xbd,0x8e,0x6c, 0xbd,0x8e,0x6c, 0xdb,0xbd,0xa6,
- 0x88,0x57,0x34, 0x6a,0x49,0x29, 0x00,0x00,0x00, 0x3a,0x24,0x1f,
- 0x66,0x21,0x18, 0x0b,0x1b,0x3b, 0x0b,0x1b,0x3b, 0x0b,0x1b,0x3b,
- 0x0b,0x1b,0x3b, 0x0b,0x1b,0x3b, 0x0b,0x1b,0x3b, 0x0b,0x1b,0x3b,
- 0x0b,0x1b,0x3b, 0x0b,0x1b,0x3b, 0x0b,0x1b,0x3b, 0x0b,0x1b,0x3b,
- 0x0b,0x1b,0x3b, 0x0b,0x1b,0x3b, 0x0b,0x1b,0x3b, 0x0b,0x1b,0x3b,
- 0x0b,0x1b,0x3b, 0x95,0x37,0x27, 0x95,0x37,0x27, 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,
- 0xbd,0x8e,0x6c, 0xdb,0xbd,0xa6, 0xbd,0x8e,0x6c, 0xbd,0x8e,0x6c,
- 0xa3,0x71,0x4b, 0xbd,0x8e,0x6c, 0xa3,0x71,0x4b, 0x88,0x57,0x34,
- 0x88,0x57,0x34, 0x6a,0x49,0x29, 0x88,0x57,0x34, 0x88,0x57,0x34,
- 0x88,0x57,0x34, 0x88,0x57,0x34, 0x88,0x57,0x34, 0x88,0x57,0x34,
- 0x88,0x57,0x34, 0x88,0x57,0x34, 0x88,0x57,0x34, 0x66,0x21,0x18,
- 0x6a,0x49,0x29, 0x3a,0x24,0x1f, 0x42,0x26,0x12, 0x3a,0x24,0x1f,
- 0x42,0x26,0x12, 0x42,0x26,0x12, 0xbd,0x8e,0x6c, 0xa3,0x71,0x4b,
- 0xbd,0x8e,0x6c, 0xa3,0x71,0x4b, 0xa3,0x71,0x4b, 0xa3,0x71,0x4b,
- 0xa3,0x71,0x4b, 0xa3,0x71,0x4b, 0x00,0x00,0x00, 0x66,0x21,0x18,
- 0x66,0x21,0x18, 0x0b,0x1b,0x3b, 0x0b,0x1b,0x3b, 0x0b,0x1b,0x3b,
- 0x0b,0x1b,0x3b, 0x0b,0x1b,0x3b, 0x3a,0x24,0x1f, 0x0b,0x1b,0x3b,
- 0x0b,0x1b,0x3b, 0x0b,0x1b,0x3b, 0x0b,0x1b,0x3b, 0x0b,0x1b,0x3b,
- 0x0b,0x1b,0x3b, 0x0b,0x1b,0x3b, 0x0b,0x1b,0x3b, 0x0b,0x1b,0x3b,
- 0x0b,0x1b,0x3b, 0x0b,0x1b,0x3b, 0x95,0x37,0x27, 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,
- 0xbd,0x8e,0x6c, 0xbd,0x8e,0x6c, 0xbd,0x8e,0x6c, 0xa3,0x71,0x4b,
- 0xa3,0x71,0x4b, 0x88,0x57,0x34, 0x6a,0x49,0x29, 0x42,0x26,0x12,
- 0x6a,0x49,0x29, 0x88,0x57,0x34, 0x88,0x57,0x34, 0x88,0x57,0x34,
- 0x88,0x57,0x34, 0x88,0x57,0x34, 0x88,0x57,0x34, 0x88,0x57,0x34,
- 0x88,0x57,0x34, 0x88,0x57,0x34, 0x6a,0x49,0x29, 0x6a,0x49,0x29,
- 0x6a,0x49,0x29, 0x42,0x26,0x12, 0x3a,0x24,0x1f, 0x42,0x26,0x12,
- 0x6a,0x49,0x29, 0x6a,0x49,0x29, 0xbd,0x8e,0x6c, 0xad,0x6e,0x35,
- 0xad,0x6e,0x35, 0xbd,0x8e,0x6c, 0xbd,0x8e,0x6c, 0xad,0x6e,0x35,
- 0xbd,0x8e,0x6c, 0xbd,0x8e,0x6c, 0x3a,0x24,0x1f, 0x3a,0x24,0x1f,
- 0x3a,0x24,0x1f, 0x0b,0x1b,0x3b, 0x0b,0x1b,0x3b, 0x0b,0x1b,0x3b,
- 0x0b,0x1b,0x3b, 0x0b,0x1b,0x3b, 0x95,0x37,0x27, 0x66,0x21,0x18,
- 0x3a,0x24,0x1f, 0x0b,0x1b,0x3b, 0x0b,0x1b,0x3b, 0x0b,0x1b,0x3b,
- 0x0b,0x1b,0x3b, 0x0b,0x1b,0x3b, 0x0b,0x1b,0x3b, 0x0b,0x1b,0x3b,
- 0x0b,0x1b,0x3b, 0x3a,0x24,0x1f, 0x95,0x37,0x27, 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,
- 0xbd,0x8e,0x6c, 0xdb,0xbd,0xa6, 0xbd,0x8e,0x6c, 0x88,0x57,0x34,
- 0xa3,0x71,0x4b, 0x88,0x57,0x34, 0x3a,0x24,0x1f, 0x3a,0x24,0x1f,
- 0x3a,0x24,0x1f, 0x88,0x57,0x34, 0x6a,0x49,0x29, 0x88,0x57,0x34,
- 0x66,0x21,0x18, 0x88,0x57,0x34, 0x88,0x57,0x34, 0x88,0x57,0x34,
- 0xa3,0x71,0x4b, 0xa3,0x71,0x4b, 0x3a,0x24,0x1f, 0x6a,0x49,0x29,
- 0x6a,0x49,0x29, 0x42,0x26,0x12, 0x6a,0x49,0x29, 0x88,0x57,0x34,
- 0x88,0x57,0x34, 0x88,0x57,0x34, 0x6a,0x49,0x29, 0x88,0x57,0x34,
- 0xa3,0x71,0x4b, 0x88,0x57,0x34, 0x88,0x57,0x34, 0xad,0x6e,0x35,
- 0xbd,0x8e,0x6c, 0x6a,0x49,0x29, 0x0b,0x1b,0x3b, 0x42,0x26,0x12,
- 0x66,0x21,0x18, 0x0b,0x1b,0x3b, 0x0b,0x1b,0x3b, 0x0b,0x1b,0x3b,
- 0x0b,0x1b,0x3b, 0x0b,0x1b,0x3b, 0x95,0x37,0x27, 0x3a,0x24,0x1f,
- 0x66,0x21,0x18, 0x95,0x37,0x27, 0x0b,0x1b,0x3b, 0x0b,0x1b,0x3b,
- 0x0b,0x1b,0x3b, 0x0b,0x1b,0x3b, 0x0b,0x1b,0x3b, 0x0b,0x1b,0x3b,
- 0x0b,0x1b,0x3b, 0x33,0x53,0x6f, 0x95,0x37,0x27, 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,
- 0x6a,0x49,0x29, 0xbd,0x8e,0x6c, 0xbd,0x8e,0x6c, 0x88,0x57,0x34,
- 0x88,0x57,0x34, 0x42,0x26,0x12, 0x3a,0x24,0x1f, 0x0b,0x1b,0x3b,
- 0x3a,0x24,0x1f, 0x42,0x26,0x12, 0xa3,0x71,0x4b, 0x88,0x57,0x34,
- 0x6a,0x49,0x29, 0x88,0x57,0x34, 0x88,0x57,0x34, 0x88,0x57,0x34,
- 0x88,0x57,0x34, 0x42,0x26,0x12, 0x3a,0x24,0x1f, 0x3a,0x24,0x1f,
- 0x42,0x26,0x12, 0x88,0x57,0x34, 0xa3,0x71,0x4b, 0xa3,0x71,0x4b,
- 0xad,0x6e,0x35, 0x88,0x57,0x34, 0x6a,0x49,0x29, 0x6a,0x49,0x29,
- 0x42,0x26,0x12, 0x3a,0x24,0x1f, 0x6a,0x49,0x29, 0x88,0x57,0x34,
- 0xa3,0x71,0x4b, 0x88,0x57,0x34, 0x00,0x00,0x00, 0x3a,0x24,0x1f,
- 0x88,0x57,0x34, 0x0b,0x1b,0x3b, 0x0b,0x1b,0x3b, 0x0b,0x1b,0x3b,
- 0x0b,0x1b,0x3b, 0x0b,0x1b,0x3b, 0x66,0x21,0x18, 0x3a,0x24,0x1f,
- 0x3a,0x24,0x1f, 0x3a,0x24,0x1f, 0x95,0x37,0x27, 0x3a,0x24,0x1f,
- 0x0b,0x1b,0x3b, 0x0b,0x1b,0x3b, 0x0b,0x1b,0x3b, 0x0b,0x1b,0x3b,
- 0x0b,0x1b,0x3b, 0x3a,0x24,0x1f, 0x95,0x37,0x27, 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,0x00,0x00, 0x88,0x57,0x34, 0x88,0x57,0x34, 0x42,0x26,0x12,
- 0x88,0x57,0x34, 0x6a,0x49,0x29, 0x3a,0x24,0x1f, 0x3a,0x24,0x1f,
- 0x3a,0x24,0x1f, 0xbd,0x8e,0x6c, 0xbd,0x8e,0x6c, 0xa3,0x71,0x4b,
- 0x88,0x57,0x34, 0x42,0x26,0x12, 0x3a,0x24,0x1f, 0xa3,0x71,0x4b,
- 0xbd,0x8e,0x6c, 0xbd,0x8e,0x6c, 0x88,0x57,0x34, 0x6a,0x49,0x29,
- 0xa3,0x71,0x4b, 0xa3,0x71,0x4b, 0xbd,0x8e,0x6c, 0xbd,0x8e,0x6c,
- 0xa3,0x71,0x4b, 0x6a,0x49,0x29, 0x3a,0x24,0x1f, 0x42,0x26,0x12,
- 0x42,0x26,0x12, 0x3a,0x24,0x1f, 0x42,0x26,0x12, 0x88,0x57,0x34,
- 0xa3,0x71,0x4b, 0x88,0x57,0x34, 0x00,0x00,0x00, 0x42,0x26,0x12,
- 0x88,0x57,0x34, 0x33,0x53,0x6f, 0x0b,0x1b,0x3b, 0x33,0x53,0x6f,
- 0x0b,0x1b,0x3b, 0x33,0x53,0x6f, 0x95,0x37,0x27, 0x3a,0x24,0x1f,
- 0x3a,0x24,0x1f, 0x3a,0x24,0x1f, 0x42,0x26,0x12, 0x66,0x21,0x18,
- 0x33,0x53,0x6f, 0x33,0x53,0x6f, 0x0b,0x1b,0x3b, 0x33,0x53,0x6f,
- 0x0b,0x1b,0x3b, 0x33,0x53,0x6f, 0x95,0x37,0x27, 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,0x00,0x00, 0x3a,0x24,0x1f, 0x6a,0x49,0x29, 0x6a,0x49,0x29,
- 0x42,0x26,0x12, 0x42,0x26,0x12, 0x6a,0x49,0x29, 0xbd,0x8e,0x6c,
- 0xdb,0xbd,0xa6, 0xdb,0xbd,0xa6, 0xdb,0xbd,0xa6, 0xdb,0xbd,0xa6,
- 0xbd,0x8e,0x6c, 0xbd,0x8e,0x6c, 0xbd,0x8e,0x6c, 0xdb,0xbd,0xa6,
- 0xbd,0x8e,0x6c, 0xa3,0x71,0x4b, 0xa3,0x71,0x4b, 0xa3,0x71,0x4b,
- 0x88,0x57,0x34, 0x88,0x57,0x34, 0xad,0x6e,0x35, 0xbd,0x8e,0x6c,
- 0xad,0x6e,0x35, 0xa3,0x71,0x4b, 0xa3,0x71,0x4b, 0x6a,0x49,0x29,
- 0x6a,0x49,0x29, 0x88,0x57,0x34, 0x42,0x26,0x12, 0x6a,0x49,0x29,
- 0x6a,0x49,0x29, 0x00,0x00,0x00, 0x00,0x00,0x00, 0x3a,0x24,0x1f,
- 0x88,0x57,0x34, 0x33,0x53,0x6f, 0x0b,0x1b,0x3b, 0x33,0x53,0x6f,
- 0x0b,0x1b,0x3b, 0x3a,0x24,0x1f, 0x66,0x21,0x18, 0x3a,0x24,0x1f,
- 0x3a,0x24,0x1f, 0x3a,0x24,0x1f, 0x3a,0x24,0x1f, 0x66,0x21,0x18,
- 0x0b,0x1b,0x3b, 0x33,0x53,0x6f, 0x0b,0x1b,0x3b, 0x33,0x53,0x6f,
- 0x0b,0x1b,0x3b, 0x33,0x53,0x6f, 0xad,0x6e,0x35, 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,0x00,0x00, 0x00,0x00,0x00, 0x6a,0x49,0x29, 0xa3,0x71,0x4b,
- 0x3a,0x24,0x1f, 0xbd,0x8e,0x6c, 0xbd,0x8e,0x6c, 0x88,0x57,0x34,
- 0xbd,0x8e,0x6c, 0xbd,0x8e,0x6c, 0xdb,0xbd,0xa6, 0xbd,0x8e,0x6c,
- 0xbd,0x8e,0x6c, 0xa3,0x71,0x4b, 0xbd,0x8e,0x6c, 0xa3,0x71,0x4b,
- 0xa3,0x71,0x4b, 0x88,0x57,0x34, 0xad,0x6e,0x35, 0x88,0x57,0x34,
- 0x88,0x57,0x34, 0xa3,0x71,0x4b, 0xbd,0x8e,0x6c, 0xbd,0x8e,0x6c,
- 0xbd,0x8e,0x6c, 0xbd,0x8e,0x6c, 0xad,0x6e,0x35, 0xbd,0x8e,0x6c,
- 0xad,0x6e,0x35, 0xdb,0xbd,0xa6, 0xbd,0x8e,0x6c, 0x3a,0x24,0x1f,
- 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00, 0x3a,0x24,0x1f,
- 0x88,0x57,0x34, 0x33,0x53,0x6f, 0x0b,0x1b,0x3b, 0x33,0x53,0x6f,
- 0x33,0x53,0x6f, 0x33,0x53,0x6f, 0x95,0x37,0x27, 0x42,0x26,0x12,
- 0x42,0x26,0x12, 0x42,0x26,0x12, 0x42,0x26,0x12, 0x88,0x57,0x34,
- 0x33,0x53,0x6f, 0x0b,0x1b,0x3b, 0x33,0x53,0x6f, 0x33,0x53,0x6f,
- 0x0b,0x1b,0x3b, 0x33,0x53,0x6f, 0x95,0x37,0x27, 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,0x00,0x00, 0x00,0x00,0x00, 0xbd,0x8e,0x6c, 0xa3,0x71,0x4b,
- 0xdb,0xbd,0xa6, 0xdb,0xbd,0xa6, 0xbd,0x8e,0x6c, 0x88,0x57,0x34,
- 0x3a,0x24,0x1f, 0x88,0x57,0x34, 0x88,0x57,0x34, 0x6a,0x49,0x29,
- 0x6a,0x49,0x29, 0x6a,0x49,0x29, 0x88,0x57,0x34, 0x88,0x57,0x34,
- 0x88,0x57,0x34, 0xa3,0x71,0x4b, 0xad,0x6e,0x35, 0xbd,0x8e,0x6c,
- 0xbd,0x8e,0x6c, 0xbd,0x8e,0x6c, 0xbd,0x8e,0x6c, 0xbd,0x8e,0x6c,
- 0xad,0x6e,0x35, 0xad,0x6e,0x35, 0x88,0x57,0x34, 0xa3,0x71,0x4b,
- 0xa3,0x71,0x4b, 0xa3,0x71,0x4b, 0xa3,0x71,0x4b, 0x42,0x26,0x12,
- 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00,
- 0x88,0x57,0x34, 0x33,0x53,0x6f, 0x33,0x53,0x6f, 0x0b,0x1b,0x3b,
- 0x33,0x53,0x6f, 0x3a,0x24,0x1f, 0x6a,0x49,0x29, 0x42,0x26,0x12,
- 0x42,0x26,0x12, 0x42,0x26,0x12, 0x3a,0x24,0x1f, 0x88,0x57,0x34,
- 0x33,0x53,0x6f, 0x0b,0x1b,0x3b, 0x33,0x53,0x6f, 0x33,0x53,0x6f,
- 0x33,0x53,0x6f, 0x33,0x53,0x6f, 0xad,0x6e,0x35, 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,0x00,0x00, 0x00,0x00,0x00, 0xbd,0x8e,0x6c, 0x6a,0x49,0x29,
- 0xdb,0xbd,0xa6, 0xbd,0x8e,0x6c, 0xa3,0x71,0x4b, 0x3a,0x24,0x1f,
- 0x3a,0x24,0x1f, 0x3a,0x24,0x1f, 0x42,0x26,0x12, 0x3a,0x24,0x1f,
- 0x88,0x57,0x34, 0x88,0x57,0x34, 0x88,0x57,0x34, 0x88,0x57,0x34,
- 0x88,0x57,0x34, 0xad,0x6e,0x35, 0xa3,0x71,0x4b, 0xad,0x6e,0x35,
- 0xbd,0x8e,0x6c, 0xad,0x6e,0x35, 0xbd,0x8e,0x6c, 0xad,0x6e,0x35,
- 0xbd,0x8e,0x6c, 0xad,0x6e,0x35, 0x88,0x57,0x34, 0x88,0x57,0x34,
- 0x88,0x57,0x34, 0x88,0x57,0x34, 0xbd,0x8e,0x6c, 0x88,0x57,0x34,
- 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00,
- 0xa3,0x71,0x4b, 0x33,0x53,0x6f, 0x33,0x53,0x6f, 0x33,0x53,0x6f,
- 0x33,0x53,0x6f, 0x33,0x53,0x6f, 0x95,0x37,0x27, 0x42,0x26,0x12,
- 0x42,0x26,0x12, 0x42,0x26,0x12, 0x42,0x26,0x12, 0x88,0x57,0x34,
- 0x33,0x53,0x6f, 0x33,0x53,0x6f, 0x33,0x53,0x6f, 0x0b,0x1b,0x3b,
- 0x33,0x53,0x6f, 0x33,0x53,0x6f, 0xad,0x6e,0x35, 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,0x00,0x00, 0x33,0x53,0x6f, 0xbd,0x8e,0x6c, 0xbd,0x8e,0x6c,
- 0xdb,0xbd,0xa6, 0xa3,0x71,0x4b, 0x6a,0x49,0x29, 0x3a,0x24,0x1f,
- 0x3a,0x24,0x1f, 0x6a,0x49,0x29, 0x6a,0x49,0x29, 0x42,0x26,0x12,
- 0x42,0x26,0x12, 0x3a,0x24,0x1f, 0x6a,0x49,0x29, 0x66,0x21,0x18,
- 0x88,0x57,0x34, 0x88,0x57,0x34, 0xad,0x6e,0x35, 0xad,0x6e,0x35,
- 0xad,0x6e,0x35, 0xbd,0x8e,0x6c, 0xad,0x6e,0x35, 0xad,0x6e,0x35,
- 0xa3,0x71,0x4b, 0x88,0x57,0x34, 0x66,0x21,0x18, 0x6a,0x49,0x29,
- 0x6a,0x49,0x29, 0x88,0x57,0x34, 0x88,0x57,0x34, 0xa3,0x71,0x4b,
- 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00,
- 0x88,0x57,0x34, 0x33,0x53,0x6f, 0x33,0x53,0x6f, 0x33,0x53,0x6f,
- 0x33,0x53,0x6f, 0x33,0x53,0x6f, 0xad,0x6e,0x35, 0x42,0x26,0x12,
- 0x6a,0x49,0x29, 0x42,0x26,0x12, 0x42,0x26,0x12, 0x88,0x57,0x34,
- 0x33,0x53,0x6f, 0x33,0x53,0x6f, 0x33,0x53,0x6f, 0x33,0x53,0x6f,
- 0x33,0x53,0x6f, 0x33,0x53,0x6f, 0xad,0x6e,0x35, 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,0x00,0x00, 0xdb,0xbd,0xa6, 0xbd,0x8e,0x6c, 0xbd,0x8e,0x6c,
- 0xa3,0x71,0x4b, 0xa3,0x71,0x4b, 0x6a,0x49,0x29, 0x42,0x26,0x12,
- 0x3a,0x24,0x1f, 0x6a,0x49,0x29, 0x88,0x57,0x34, 0x88,0x57,0x34,
- 0x88,0x57,0x34, 0x6a,0x49,0x29, 0x6a,0x49,0x29, 0x88,0x57,0x34,
- 0x88,0x57,0x34, 0x88,0x57,0x34, 0x88,0x57,0x34, 0xa3,0x71,0x4b,
- 0x95,0x37,0x27, 0xa3,0x71,0x4b, 0x88,0x57,0x34, 0x95,0x37,0x27,
- 0xa3,0x71,0x4b, 0x6a,0x49,0x29, 0x42,0x26,0x12, 0x6a,0x49,0x29,
- 0x88,0x57,0x34, 0x6a,0x49,0x29, 0x6a,0x49,0x29, 0xad,0x6e,0x35,
- 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00,
- 0xbd,0x8e,0x6c, 0x33,0x53,0x6f, 0x33,0x53,0x6f, 0x33,0x53,0x6f,
- 0x33,0x53,0x6f, 0x33,0x53,0x6f, 0xad,0x6e,0x35, 0x42,0x26,0x12,
- 0x74,0x5c,0x20, 0x42,0x26,0x12, 0x6a,0x49,0x29, 0x88,0x57,0x34,
- 0x33,0x53,0x6f, 0x33,0x53,0x6f, 0x33,0x53,0x6f, 0x33,0x53,0x6f,
- 0x33,0x53,0x6f, 0x33,0x53,0x6f, 0xad,0x6e,0x35, 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,0x00,0x00, 0xbd,0x8e,0x6c, 0xbd,0x8e,0x6c, 0xbd,0x8e,0x6c,
- 0x6a,0x49,0x29, 0x42,0x26,0x12, 0x3a,0x24,0x1f, 0x3a,0x24,0x1f,
- 0x6a,0x49,0x29, 0x88,0x57,0x34, 0x6a,0x49,0x29, 0x88,0x57,0x34,
- 0x88,0x57,0x34, 0x6a,0x49,0x29, 0x88,0x57,0x34, 0x6a,0x49,0x29,
- 0x88,0x57,0x34, 0x88,0x57,0x34, 0x88,0x57,0x34, 0x88,0x57,0x34,
- 0x88,0x57,0x34, 0x88,0x57,0x34, 0xa3,0x71,0x4b, 0x88,0x57,0x34,
- 0x88,0x57,0x34, 0x6a,0x49,0x29, 0x88,0x57,0x34, 0x42,0x26,0x12,
- 0x42,0x26,0x12, 0x6a,0x49,0x29, 0x42,0x26,0x12, 0xa3,0x71,0x4b,
- 0x6a,0x49,0x29, 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00,
- 0xa3,0x71,0x4b, 0x33,0x53,0x6f, 0x33,0x53,0x6f, 0x33,0x53,0x6f,
- 0x33,0x53,0x6f, 0x33,0x53,0x6f, 0xad,0x6e,0x35, 0x42,0x26,0x12,
- 0x74,0x5c,0x20, 0x6a,0x49,0x29, 0x6a,0x49,0x29, 0xa3,0x71,0x4b,
- 0x33,0x53,0x6f, 0x33,0x53,0x6f, 0x33,0x53,0x6f, 0x33,0x53,0x6f,
- 0x33,0x53,0x6f, 0x33,0x53,0x6f, 0xad,0x6e,0x35, 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,0x00,0x00, 0xa3,0x71,0x4b, 0xbd,0x8e,0x6c, 0x88,0x57,0x34,
- 0xa3,0x71,0x4b, 0x6a,0x49,0x29, 0x6a,0x49,0x29, 0x6a,0x49,0x29,
- 0xa3,0x71,0x4b, 0x3a,0x24,0x1f, 0x42,0x26,0x12, 0x6a,0x49,0x29,
- 0x6a,0x49,0x29, 0x88,0x57,0x34, 0x88,0x57,0x34, 0x88,0x57,0x34,
- 0x88,0x57,0x34, 0x88,0x57,0x34, 0x88,0x57,0x34, 0x88,0x57,0x34,
- 0xad,0x6e,0x35, 0xa3,0x71,0x4b, 0x88,0x57,0x34, 0x6a,0x49,0x29,
- 0x42,0x26,0x12, 0x6a,0x49,0x29, 0x88,0x57,0x34, 0x88,0x57,0x34,
- 0x88,0x57,0x34, 0x42,0x26,0x12, 0x6a,0x49,0x29, 0x88,0x57,0x34,
- 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00,
- 0xbd,0x8e,0x6c, 0x33,0x53,0x6f, 0x33,0x53,0x6f, 0x33,0x53,0x6f,
- 0x33,0x53,0x6f, 0x33,0x53,0x6f, 0xad,0x6e,0x35, 0x6a,0x49,0x29,
- 0x74,0x5c,0x20, 0x42,0x26,0x12, 0x6a,0x49,0x29, 0x88,0x57,0x34,
- 0x33,0x53,0x6f, 0x33,0x53,0x6f, 0x33,0x53,0x6f, 0x33,0x53,0x6f,
- 0x33,0x53,0x6f, 0x33,0x53,0x6f, 0xad,0x6e,0x35, 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,0x00,0x00, 0x00,0x00,0x00, 0xbd,0x8e,0x6c, 0x88,0x57,0x34,
- 0x88,0x57,0x34, 0xa3,0x71,0x4b, 0xa3,0x71,0x4b, 0xa3,0x71,0x4b,
- 0xa3,0x71,0x4b, 0xbd,0x8e,0x6c, 0x88,0x57,0x34, 0x88,0x57,0x34,
- 0x42,0x26,0x12, 0x6a,0x49,0x29, 0x88,0x57,0x34, 0x88,0x57,0x34,
- 0x88,0x57,0x34, 0x88,0x57,0x34, 0xa3,0x71,0x4b, 0xad,0x6e,0x35,
- 0x88,0x57,0x34, 0x88,0x57,0x34, 0x3a,0x24,0x1f, 0x3a,0x24,0x1f,
- 0x88,0x57,0x34, 0x42,0x26,0x12, 0x88,0x57,0x34, 0x6a,0x49,0x29,
- 0x88,0x57,0x34, 0x3a,0x24,0x1f, 0x3a,0x24,0x1f, 0x00,0x00,0x00,
- 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00,
- 0xbd,0x8e,0x6c, 0x33,0x53,0x6f, 0x33,0x53,0x6f, 0x33,0x53,0x6f,
- 0x33,0x53,0x6f, 0x33,0x53,0x6f, 0xad,0x6e,0x35, 0x74,0x5c,0x20,
- 0x74,0x5c,0x20, 0x74,0x5c,0x20, 0x74,0x5c,0x20, 0xad,0x6e,0x35,
- 0x33,0x53,0x6f, 0x33,0x53,0x6f, 0x33,0x53,0x6f, 0x33,0x53,0x6f,
- 0x33,0x53,0x6f, 0x33,0x53,0x6f, 0xad,0x6e,0x35, 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,0x00,0x00, 0x00,0x00,0x00, 0x6a,0x49,0x29, 0x88,0x57,0x34,
- 0x88,0x57,0x34, 0x6a,0x49,0x29, 0x88,0x57,0x34, 0x88,0x57,0x34,
- 0xbd,0x8e,0x6c, 0xa3,0x71,0x4b, 0x6a,0x49,0x29, 0x6a,0x49,0x29,
- 0x6a,0x49,0x29, 0x3a,0x24,0x1f, 0x3a,0x24,0x1f, 0x3a,0x24,0x1f,
- 0x88,0x57,0x34, 0x66,0x21,0x18, 0x42,0x26,0x12, 0x42,0x26,0x12,
- 0x42,0x26,0x12, 0x42,0x26,0x12, 0x42,0x26,0x12, 0x3a,0x24,0x1f,
- 0x42,0x26,0x12, 0x6a,0x49,0x29, 0x6a,0x49,0x29, 0x6a,0x49,0x29,
- 0x6a,0x49,0x29, 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00,
- 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00,
- 0xad,0x6e,0x35, 0x42,0x26,0x12, 0x42,0x26,0x12, 0x42,0x26,0x12,
- 0x42,0x26,0x12, 0x42,0x26,0x12, 0xad,0x6e,0x35, 0x42,0x26,0x12,
- 0x74,0x5c,0x20, 0x6a,0x49,0x29, 0x74,0x5c,0x20, 0xad,0x6e,0x35,
- 0x42,0x26,0x12, 0x42,0x26,0x12, 0x42,0x26,0x12, 0x42,0x26,0x12,
- 0x42,0x26,0x12, 0x42,0x26,0x12, 0xad,0x6e,0x35, 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,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00, 0xa3,0x71,0x4b,
- 0xa3,0x71,0x4b, 0x88,0x57,0x34, 0x88,0x57,0x34, 0x6a,0x49,0x29,
- 0x88,0x57,0x34, 0x88,0x57,0x34, 0x6a,0x49,0x29, 0x66,0x21,0x18,
- 0x6a,0x49,0x29, 0x6a,0x49,0x29, 0x6a,0x49,0x29, 0x6a,0x49,0x29,
- 0x6a,0x49,0x29, 0x3a,0x24,0x1f, 0x3a,0x24,0x1f, 0x42,0x26,0x12,
- 0x6a,0x49,0x29, 0x42,0x26,0x12, 0x6a,0x49,0x29, 0x74,0x5c,0x20,
- 0x74,0x5c,0x20, 0x6a,0x49,0x29, 0x74,0x5c,0x20, 0x74,0x5c,0x20,
- 0x74,0x5c,0x20, 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00,
- 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00,
- 0x95,0x37,0x27, 0x3a,0x24,0x1f, 0x3a,0x24,0x1f, 0x3a,0x24,0x1f,
- 0x42,0x26,0x12, 0x42,0x26,0x12, 0xad,0x6e,0x35, 0x74,0x5c,0x20,
- 0x74,0x5c,0x20, 0x74,0x5c,0x20, 0x74,0x5c,0x20, 0xad,0x6e,0x35,
- 0x3a,0x24,0x1f, 0x3a,0x24,0x1f, 0x3a,0x24,0x1f, 0x66,0x21,0x18,
- 0x3a,0x24,0x1f, 0x42,0x26,0x12, 0xad,0x6e,0x35, 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,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00, 0x88,0x57,0x34,
- 0x6a,0x49,0x29, 0x6a,0x49,0x29, 0x6a,0x49,0x29, 0x88,0x57,0x34,
- 0x6a,0x49,0x29, 0x3a,0x24,0x1f, 0x42,0x26,0x12, 0x6a,0x49,0x29,
- 0x6a,0x49,0x29, 0x66,0x21,0x18, 0x88,0x57,0x34, 0x6a,0x49,0x29,
- 0x6a,0x49,0x29, 0x6a,0x49,0x29, 0x42,0x26,0x12, 0x74,0x5c,0x20,
- 0x42,0x26,0x12, 0x42,0x26,0x12, 0x42,0x26,0x12, 0x74,0x5c,0x20,
- 0x42,0x26,0x12, 0x74,0x5c,0x20, 0x74,0x5c,0x20, 0x74,0x5c,0x20,
- 0x74,0x5c,0x20, 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00,
- 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00,
- 0xad,0x6e,0x35, 0x3a,0x24,0x1f, 0x42,0x26,0x12, 0x3a,0x24,0x1f,
- 0x42,0x26,0x12, 0x42,0x26,0x12, 0xad,0x6e,0x35, 0x74,0x5c,0x20,
- 0x74,0x5c,0x20, 0x74,0x5c,0x20, 0x74,0x5c,0x20, 0xad,0x6e,0x35,
- 0x42,0x26,0x12, 0x3a,0x24,0x1f, 0x3a,0x24,0x1f, 0x3a,0x24,0x1f,
- 0x3a,0x24,0x1f, 0x66,0x21,0x18, 0xad,0x6e,0x35, 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,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00, 0x6a,0x49,0x29,
- 0x88,0x57,0x34, 0x3a,0x24,0x1f, 0x42,0x26,0x12, 0x74,0x5c,0x20,
- 0x74,0x5c,0x20, 0x6a,0x49,0x29, 0x6a,0x49,0x29, 0x42,0x26,0x12,
- 0x6a,0x49,0x29, 0x6a,0x49,0x29, 0x42,0x26,0x12, 0x6a,0x49,0x29,
- 0x42,0x26,0x12, 0x42,0x26,0x12, 0x74,0x5c,0x20, 0x74,0x5c,0x20,
- 0x74,0x5c,0x20, 0x74,0x5c,0x20, 0x74,0x5c,0x20, 0x74,0x5c,0x20,
- 0x74,0x5c,0x20, 0x74,0x5c,0x20, 0x74,0x5c,0x20, 0xa1,0x85,0x31,
- 0x74,0x5c,0x20, 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00,
- 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00,
- 0xad,0x6e,0x35, 0x42,0x26,0x12, 0x3a,0x24,0x1f, 0x3a,0x24,0x1f,
- 0x3a,0x24,0x1f, 0x42,0x26,0x12, 0xad,0x6e,0x35, 0x74,0x5c,0x20,
- 0xad,0x6e,0x35, 0x74,0x5c,0x20, 0x74,0x5c,0x20, 0xad,0x6e,0x35,
- 0x3a,0x24,0x1f, 0x42,0x26,0x12, 0x3a,0x24,0x1f, 0x42,0x26,0x12,
- 0x3a,0x24,0x1f, 0x42,0x26,0x12, 0xad,0x6e,0x35, 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,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00,
- 0x88,0x57,0x34, 0x42,0x26,0x12, 0xa1,0x85,0x31, 0xa1,0x85,0x31,
- 0x6a,0x49,0x29, 0x74,0x5c,0x20, 0x6a,0x49,0x29, 0x3a,0x24,0x1f,
- 0x6a,0x49,0x29, 0x74,0x5c,0x20, 0x74,0x5c,0x20, 0x74,0x5c,0x20,
- 0x74,0x5c,0x20, 0x42,0x26,0x12, 0x42,0x26,0x12, 0x42,0x26,0x12,
- 0x74,0x5c,0x20, 0x74,0x5c,0x20, 0x74,0x5c,0x20, 0x74,0x5c,0x20,
- 0x42,0x26,0x12, 0x74,0x5c,0x20, 0x74,0x5c,0x20, 0x74,0x5c,0x20,
- 0x42,0x26,0x12, 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00,
- 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00,
- 0xa3,0x71,0x4b, 0x42,0x26,0x12, 0x42,0x26,0x12, 0x3a,0x24,0x1f,
- 0x42,0x26,0x12, 0x42,0x26,0x12, 0xad,0x6e,0x35, 0x74,0x5c,0x20,
- 0x74,0x5c,0x20, 0xad,0x6e,0x35, 0x74,0x5c,0x20, 0xad,0x6e,0x35,
- 0x42,0x26,0x12, 0x42,0x26,0x12, 0x42,0x26,0x12, 0x42,0x26,0x12,
- 0x3a,0x24,0x1f, 0x42,0x26,0x12, 0xad,0x6e,0x35, 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,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00,
- 0xa3,0x71,0x4b, 0x3a,0x24,0x1f, 0x74,0x5c,0x20, 0x74,0x5c,0x20,
- 0xa1,0x85,0x31, 0x74,0x5c,0x20, 0x74,0x5c,0x20, 0x74,0x5c,0x20,
- 0x42,0x26,0x12, 0x3a,0x24,0x1f, 0x74,0x5c,0x20, 0x42,0x26,0x12,
- 0x74,0x5c,0x20, 0x74,0x5c,0x20, 0x74,0x5c,0x20, 0x74,0x5c,0x20,
- 0x74,0x5c,0x20, 0x74,0x5c,0x20, 0x74,0x5c,0x20, 0xa1,0x85,0x31,
- 0x74,0x5c,0x20, 0xa1,0x85,0x31, 0x74,0x5c,0x20, 0xa1,0x85,0x31,
- 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00,
- 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00,
- 0xad,0x6e,0x35, 0x42,0x26,0x12, 0x42,0x26,0x12, 0x42,0x26,0x12,
- 0x42,0x26,0x12, 0x42,0x26,0x12, 0xa1,0x85,0x31, 0xa1,0x85,0x31,
- 0xa1,0x85,0x31, 0xa1,0x85,0x31, 0xa1,0x85,0x31, 0xad,0x6e,0x35,
- 0x42,0x26,0x12, 0x42,0x26,0x12, 0x42,0x26,0x12, 0x42,0x26,0x12,
- 0x42,0x26,0x12, 0x42,0x26,0x12, 0xce,0xac,0x4d, 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,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00,
- 0x00,0x00,0x00, 0x00,0x00,0x00, 0x3a,0x24,0x1f, 0xa1,0x85,0x31,
- 0xa1,0x85,0x31, 0x74,0x5c,0x20, 0x74,0x5c,0x20, 0x74,0x5c,0x20,
- 0x74,0x5c,0x20, 0x42,0x26,0x12, 0x74,0x5c,0x20, 0x42,0x26,0x12,
- 0x74,0x5c,0x20, 0x74,0x5c,0x20, 0x42,0x26,0x12, 0x42,0x26,0x12,
- 0x74,0x5c,0x20, 0x74,0x5c,0x20, 0x74,0x5c,0x20, 0xa1,0x85,0x31,
- 0xa1,0x85,0x31, 0xa1,0x85,0x31, 0xce,0xac,0x4d, 0xa1,0x85,0x31,
- 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00,
- 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00,
- 0xa1,0x85,0x31, 0x42,0x26,0x12, 0x42,0x26,0x12, 0x42,0x26,0x12,
- 0x66,0x21,0x18, 0x42,0x26,0x12, 0xad,0x6e,0x35, 0xad,0x6e,0x35,
- 0xa1,0x85,0x31, 0x74,0x5c,0x20, 0xa1,0x85,0x31, 0xa1,0x85,0x31,
- 0x42,0x26,0x12, 0x42,0x26,0x12, 0x66,0x21,0x18, 0x42,0x26,0x12,
- 0x42,0x26,0x12, 0x42,0x26,0x12, 0xa1,0x85,0x31, 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,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00,
- 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00, 0xa1,0x85,0x31,
- 0x74,0x5c,0x20, 0xa1,0x85,0x31, 0x74,0x5c,0x20, 0x74,0x5c,0x20,
- 0x74,0x5c,0x20, 0x74,0x5c,0x20, 0x74,0x5c,0x20, 0x74,0x5c,0x20,
- 0x74,0x5c,0x20, 0xa1,0x85,0x31, 0x74,0x5c,0x20, 0x74,0x5c,0x20,
- 0x74,0x5c,0x20, 0x74,0x5c,0x20, 0x74,0x5c,0x20, 0xa1,0x85,0x31,
- 0x74,0x5c,0x20, 0xa1,0x85,0x31, 0xa1,0x85,0x31, 0xa1,0x85,0x31,
- 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00,
- 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00,
- 0xa1,0x85,0x31, 0x66,0x21,0x18, 0x42,0x26,0x12, 0x42,0x26,0x12,
- 0x42,0x26,0x12, 0x42,0x26,0x12, 0xa1,0x85,0x31, 0xa1,0x85,0x31,
- 0xa1,0x85,0x31, 0xa1,0x85,0x31, 0xad,0x6e,0x35, 0xa1,0x85,0x31,
- 0x66,0x21,0x18, 0x42,0x26,0x12, 0x42,0x26,0x12, 0x66,0x21,0x18,
- 0x42,0x26,0x12, 0x66,0x21,0x18, 0xce,0xac,0x4d, 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,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00,
- 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00, 0xa1,0x85,0x31,
- 0xa1,0x85,0x31, 0xa1,0x85,0x31, 0xa1,0x85,0x31, 0x74,0x5c,0x20,
- 0x74,0x5c,0x20, 0x74,0x5c,0x20, 0x74,0x5c,0x20, 0x74,0x5c,0x20,
- 0x74,0x5c,0x20, 0x74,0x5c,0x20, 0x74,0x5c,0x20, 0xa1,0x85,0x31,
- 0xa1,0x85,0x31, 0xa1,0x85,0x31, 0xa1,0x85,0x31, 0xa1,0x85,0x31,
- 0xce,0xac,0x4d, 0xa1,0x85,0x31, 0xce,0xac,0x4d, 0x74,0x5c,0x20,
- 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00,
- 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00,
- 0xce,0xac,0x4d, 0x6a,0x49,0x29, 0x74,0x5c,0x20, 0x66,0x21,0x18,
- 0x74,0x5c,0x20, 0x74,0x5c,0x20, 0xa1,0x85,0x31, 0xad,0x6e,0x35,
- 0xa1,0x85,0x31, 0xa1,0x85,0x31, 0xa1,0x85,0x31, 0xa1,0x85,0x31,
- 0x74,0x5c,0x20, 0x42,0x26,0x12, 0x74,0x5c,0x20, 0x42,0x26,0x12,
- 0x74,0x5c,0x20, 0x6a,0x49,0x29, 0xce,0xac,0x4d, 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,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00,
- 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00, 0x74,0x5c,0x20,
- 0xa1,0x85,0x31, 0xa1,0x85,0x31, 0x74,0x5c,0x20, 0x74,0x5c,0x20,
- 0x74,0x5c,0x20, 0x74,0x5c,0x20, 0xa1,0x85,0x31, 0xa1,0x85,0x31,
- 0x74,0x5c,0x20, 0x74,0x5c,0x20, 0x74,0x5c,0x20, 0x74,0x5c,0x20,
- 0x74,0x5c,0x20, 0x74,0x5c,0x20, 0xa1,0x85,0x31, 0xa1,0x85,0x31,
- 0xa1,0x85,0x31, 0xa1,0x85,0x31, 0xce,0xac,0x4d, 0x74,0x5c,0x20,
- 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00,
- 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00,
- 0xa1,0x85,0x31, 0x66,0x21,0x18, 0x74,0x5c,0x20, 0x74,0x5c,0x20,
- 0x66,0x21,0x18, 0x6a,0x49,0x29, 0xce,0xac,0x4d, 0xa1,0x85,0x31,
- 0xa1,0x85,0x31, 0xa1,0x85,0x31, 0xa1,0x85,0x31, 0xad,0x6e,0x35,
- 0x74,0x5c,0x20, 0x74,0x5c,0x20, 0x66,0x21,0x18, 0x74,0x5c,0x20,
- 0x6a,0x49,0x29, 0x6a,0x49,0x29, 0xce,0xac,0x4d, 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,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00,
- 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00, 0x74,0x5c,0x20,
- 0xa1,0x85,0x31, 0xa1,0x85,0x31, 0x74,0x5c,0x20, 0xa1,0x85,0x31,
- 0x74,0x5c,0x20, 0xa1,0x85,0x31, 0x74,0x5c,0x20, 0x74,0x5c,0x20,
- 0xa1,0x85,0x31, 0xa1,0x85,0x31, 0xa1,0x85,0x31, 0xa1,0x85,0x31,
- 0x74,0x5c,0x20, 0xa1,0x85,0x31, 0xa1,0x85,0x31, 0xa1,0x85,0x31,
- 0xa1,0x85,0x31, 0xa1,0x85,0x31, 0xa1,0x85,0x31, 0x74,0x5c,0x20,
- 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00,
- 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00,
- 0xce,0xac,0x4d, 0x74,0x5c,0x20, 0x74,0x5c,0x20, 0x66,0x21,0x18,
- 0x74,0x5c,0x20, 0x74,0x5c,0x20, 0xa1,0x85,0x31, 0xad,0x6e,0x35,
- 0xce,0xac,0x4d, 0xad,0x6e,0x35, 0x74,0x5c,0x20, 0x74,0x5c,0x20,
- 0x66,0x21,0x18, 0x74,0x5c,0x20, 0x74,0x5c,0x20, 0x74,0x5c,0x20,
- 0x66,0x21,0x18, 0x74,0x5c,0x20, 0xce,0xac,0x4d, 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,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00,
- 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00,
- 0xce,0xac,0x4d, 0x74,0x5c,0x20, 0xa1,0x85,0x31, 0x74,0x5c,0x20,
- 0x74,0x5c,0x20, 0xa1,0x85,0x31, 0xa1,0x85,0x31, 0x74,0x5c,0x20,
- 0xa1,0x85,0x31, 0x74,0x5c,0x20, 0x74,0x5c,0x20, 0xa1,0x85,0x31,
- 0xa1,0x85,0x31, 0xa1,0x85,0x31, 0xce,0xac,0x4d, 0xce,0xac,0x4d,
- 0xce,0xac,0x4d, 0xce,0xac,0x4d, 0xce,0xac,0x4d, 0x42,0x26,0x12,
- 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00,
- 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00,
- 0xa1,0x85,0x31, 0x74,0x5c,0x20, 0xad,0x6e,0x35, 0x74,0x5c,0x20,
- 0x74,0x5c,0x20, 0xad,0x6e,0x35, 0xce,0xac,0x4d, 0xce,0xac,0x4d,
- 0xad,0x6e,0x35, 0x74,0x5c,0x20, 0xad,0x6e,0x35, 0x74,0x5c,0x20,
- 0x74,0x5c,0x20, 0xad,0x6e,0x35, 0x74,0x5c,0x20, 0xad,0x6e,0x35,
- 0x74,0x5c,0x20, 0x74,0x5c,0x20, 0xce,0xac,0x4d, 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,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00,
- 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00,
- 0xa1,0x85,0x31, 0xa1,0x85,0x31, 0x74,0x5c,0x20, 0x74,0x5c,0x20,
- 0x74,0x5c,0x20, 0xa1,0x85,0x31, 0xa1,0x85,0x31, 0xce,0xac,0x4d,
- 0xa1,0x85,0x31, 0x74,0x5c,0x20, 0xa1,0x85,0x31, 0xa1,0x85,0x31,
- 0xa1,0x85,0x31, 0xa1,0x85,0x31, 0x74,0x5c,0x20, 0xa1,0x85,0x31,
- 0xa1,0x85,0x31, 0xa1,0x85,0x31, 0xa1,0x85,0x31, 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,
- 0xce,0xac,0x4d, 0xad,0x6e,0x35, 0x74,0x5c,0x20, 0xad,0x6e,0x35,
- 0x74,0x5c,0x20, 0xad,0x6e,0x35, 0xa1,0x85,0x31, 0x74,0x5c,0x20,
- 0xad,0x6e,0x35, 0x74,0x5c,0x20, 0x74,0x5c,0x20, 0xad,0x6e,0x35,
- 0x74,0x5c,0x20, 0x74,0x5c,0x20, 0x74,0x5c,0x20, 0xad,0x6e,0x35,
- 0x74,0x5c,0x20, 0xad,0x6e,0x35, 0xce,0xac,0x4d, 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,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00,
- 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00,
- 0xa1,0x85,0x31, 0xa1,0x85,0x31, 0xa1,0x85,0x31, 0xa1,0x85,0x31,
- 0xce,0xac,0x4d, 0x74,0x5c,0x20, 0x74,0x5c,0x20, 0xa1,0x85,0x31,
- 0xa1,0x85,0x31, 0xa1,0x85,0x31, 0xce,0xac,0x4d, 0xa1,0x85,0x31,
- 0xce,0xac,0x4d, 0xa1,0x85,0x31, 0xce,0xac,0x4d, 0xce,0xac,0x4d,
- 0xa1,0x85,0x31, 0xce,0xac,0x4d, 0xa1,0x85,0x31, 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,
- 0xce,0xac,0x4d, 0xad,0x6e,0x35, 0x74,0x5c,0x20, 0xad,0x6e,0x35,
- 0x74,0x5c,0x20, 0xad,0x6e,0x35, 0x74,0x5c,0x20, 0xad,0x6e,0x35,
- 0x74,0x5c,0x20, 0xad,0x6e,0x35, 0xad,0x6e,0x35, 0x74,0x5c,0x20,
- 0xad,0x6e,0x35, 0xad,0x6e,0x35, 0x74,0x5c,0x20, 0xa1,0x85,0x31,
- 0xad,0x6e,0x35, 0xce,0xac,0x4d, 0xa1,0x85,0x31, 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,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00,
- 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00,
- 0x6a,0x49,0x29, 0xa1,0x85,0x31, 0xa1,0x85,0x31, 0xa1,0x85,0x31,
- 0xa1,0x85,0x31, 0xce,0xac,0x4d, 0xa1,0x85,0x31, 0xa1,0x85,0x31,
- 0x74,0x5c,0x20, 0x74,0x5c,0x20, 0xa1,0x85,0x31, 0x74,0x5c,0x20,
- 0x74,0x5c,0x20, 0xa1,0x85,0x31, 0xa1,0x85,0x31, 0xce,0xac,0x4d,
- 0xce,0xac,0x4d, 0xa1,0x85,0x31, 0xa1,0x85,0x31, 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,
- 0xce,0xac,0x4d, 0xa1,0x85,0x31, 0xa1,0x85,0x31, 0xad,0x6e,0x35,
- 0xa1,0x85,0x31, 0xa1,0x85,0x31, 0xad,0x6e,0x35, 0xa1,0x85,0x31,
- 0xa1,0x85,0x31, 0xa1,0x85,0x31, 0xad,0x6e,0x35, 0xa1,0x85,0x31,
- 0xa1,0x85,0x31, 0xad,0x6e,0x35, 0xa1,0x85,0x31, 0xa1,0x85,0x31,
- 0xce,0xac,0x4d, 0x74,0x5c,0x20, 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,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,0x00, 0xa1,0x85,0x31, 0xce,0xac,0x4d, 0xa1,0x85,0x31,
- 0xa1,0x85,0x31, 0x74,0x5c,0x20, 0xa1,0x85,0x31, 0xce,0xac,0x4d,
- 0xa1,0x85,0x31, 0xa1,0x85,0x31, 0xa1,0x85,0x31, 0xa1,0x85,0x31,
- 0xa1,0x85,0x31, 0xa1,0x85,0x31, 0xa1,0x85,0x31, 0xa1,0x85,0x31,
- 0xce,0xac,0x4d, 0xa1,0x85,0x31, 0x74,0x5c,0x20, 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,
- 0xce,0xac,0x4d, 0xa1,0x85,0x31, 0xa1,0x85,0x31, 0xad,0x6e,0x35,
- 0xa1,0x85,0x31, 0xa1,0x85,0x31, 0xad,0x6e,0x35, 0xa1,0x85,0x31,
- 0xad,0x6e,0x35, 0xa1,0x85,0x31, 0xad,0x6e,0x35, 0xa1,0x85,0x31,
- 0xad,0x6e,0x35, 0xa1,0x85,0x31, 0xa1,0x85,0x31, 0xce,0xac,0x4d,
- 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,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,0x00, 0x00,0x00,0x00,
- 0x00,0x00,0x00, 0x74,0x5c,0x20, 0xa1,0x85,0x31, 0xa1,0x85,0x31,
- 0xa1,0x85,0x31, 0xa1,0x85,0x31, 0xa1,0x85,0x31, 0x74,0x5c,0x20,
- 0x74,0x5c,0x20, 0xa1,0x85,0x31, 0xce,0xac,0x4d, 0xce,0xac,0x4d,
- 0xce,0xac,0x4d, 0xce,0xac,0x4d, 0xa1,0x85,0x31, 0xce,0xac,0x4d,
- 0xa1,0x85,0x31, 0xce,0xac,0x4d, 0x74,0x5c,0x20, 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,
- 0xce,0xac,0x4d, 0xa1,0x85,0x31, 0xa1,0x85,0x31, 0xce,0xac,0x4d,
- 0xad,0x6e,0x35, 0xce,0xac,0x4d, 0xa1,0x85,0x31, 0xa1,0x85,0x31,
- 0xa1,0x85,0x31, 0xa1,0x85,0x31, 0xa1,0x85,0x31, 0xce,0xac,0x4d,
- 0xa1,0x85,0x31, 0xce,0xac,0x4d, 0xce,0xac,0x4d, 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,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,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00,
- 0x00,0x00,0x00, 0x74,0x5c,0x20, 0xce,0xac,0x4d, 0xa1,0x85,0x31,
- 0xa1,0x85,0x31, 0xa1,0x85,0x31, 0xce,0xac,0x4d, 0xa1,0x85,0x31,
- 0xa1,0x85,0x31, 0xa1,0x85,0x31, 0x74,0x5c,0x20, 0x74,0x5c,0x20,
- 0xa1,0x85,0x31, 0x74,0x5c,0x20, 0xa1,0x85,0x31, 0xce,0xac,0x4d,
- 0xce,0xac,0x4d, 0xa1,0x85,0x31, 0x6a,0x49,0x29, 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,
- 0xce,0xac,0x4d, 0xce,0xac,0x4d, 0xad,0x6e,0x35, 0xce,0xac,0x4d,
- 0xce,0xac,0x4d, 0xce,0xac,0x4d, 0xad,0x6e,0x35, 0xce,0xac,0x4d,
- 0xce,0xac,0x4d, 0xce,0xac,0x4d, 0xad,0x6e,0x35, 0xce,0xac,0x4d,
- 0xce,0xac,0x4d, 0xa3,0x71,0x4b, 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,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,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00,
- 0x00,0x00,0x00, 0x74,0x5c,0x20, 0xce,0xac,0x4d, 0xce,0xac,0x4d,
- 0x74,0x5c,0x20, 0x74,0x5c,0x20, 0xce,0xac,0x4d, 0xa1,0x85,0x31,
- 0xce,0xac,0x4d, 0xce,0xac,0x4d, 0xce,0xac,0x4d, 0xa1,0x85,0x31,
- 0xce,0xac,0x4d, 0x74,0x5c,0x20, 0xa1,0x85,0x31, 0xa1,0x85,0x31,
- 0xa1,0x85,0x31, 0xa1,0x85,0x31, 0x42,0x26,0x12, 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,
- 0xce,0xac,0x4d, 0xce,0xac,0x4d, 0xce,0xac,0x4d, 0xce,0xac,0x4d,
- 0xad,0x6e,0x35, 0xce,0xac,0x4d, 0xce,0xac,0x4d, 0xce,0xac,0x4d,
- 0xce,0xac,0x4d, 0xce,0xac,0x4d, 0xce,0xac,0x4d, 0xce,0xac,0x4d,
- 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,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,0x00, 0x00,0x00,0x00,
- 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00,
- 0x00,0x00,0x00, 0x00,0x00,0x00, 0xce,0xac,0x4d, 0xa1,0x85,0x31,
- 0xce,0xac,0x4d, 0xce,0xac,0x4d, 0x74,0x5c,0x20, 0xa1,0x85,0x31,
- 0x74,0x5c,0x20, 0xa1,0x85,0x31, 0x74,0x5c,0x20, 0xa1,0x85,0x31,
- 0xce,0xac,0x4d, 0xce,0xac,0x4d, 0xce,0xac,0x4d, 0xce,0xac,0x4d,
- 0xce,0xac,0x4d, 0xce,0xac,0x4d, 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,0x00,0x00,
- 0xce,0xac,0x4d, 0xce,0xac,0x4d, 0xce,0xac,0x4d, 0xce,0xac,0x4d,
- 0xce,0xac,0x4d, 0xce,0xac,0x4d, 0xce,0xac,0x4d, 0xce,0xac,0x4d,
- 0xce,0xac,0x4d, 0xce,0xac,0x4d, 0xce,0xac,0x4d, 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,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,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, 0xce,0xac,0x4d, 0xa1,0x85,0x31,
- 0xa1,0x85,0x31, 0xa1,0x85,0x31, 0xce,0xac,0x4d, 0xce,0xac,0x4d,
- 0xce,0xac,0x4d, 0xa1,0x85,0x31, 0xa1,0x85,0x31, 0xce,0xac,0x4d,
- 0x74,0x5c,0x20, 0x74,0x5c,0x20, 0xce,0xac,0x4d, 0xa1,0x85,0x31,
- 0xa1,0x85,0x31, 0x74,0x5c,0x20, 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,0x00,0x00,
- 0xce,0xac,0x4d, 0xce,0xac,0x4d, 0xce,0xac,0x4d, 0xce,0xac,0x4d,
- 0xce,0xac,0x4d, 0xce,0xac,0x4d, 0xce,0xac,0x4d, 0xce,0xac,0x4d,
- 0xce,0xac,0x4d, 0xbd,0x8e,0x6c, 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,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,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, 0xa1,0x85,0x31, 0xce,0xac,0x4d,
- 0xa1,0x85,0x31, 0xa1,0x85,0x31, 0x74,0x5c,0x20, 0x74,0x5c,0x20,
- 0xce,0xac,0x4d, 0xce,0xac,0x4d, 0xce,0xac,0x4d, 0xce,0xac,0x4d,
- 0xce,0xac,0x4d, 0xa1,0x85,0x31, 0xa1,0x85,0x31, 0xce,0xac,0x4d,
- 0xce,0xac,0x4d, 0xa1,0x85,0x31, 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,0x00,0x00,
- 0xce,0xac,0x4d, 0xce,0xac,0x4d, 0xce,0xac,0x4d, 0xce,0xac,0x4d,
- 0xce,0xac,0x4d, 0xce,0xac,0x4d, 0xce,0xac,0x4d, 0xce,0xac,0x4d,
- 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,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,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,
- 0x00,0x00,0x00, 0x00,0x00,0x00, 0xa1,0x85,0x31, 0xa1,0x85,0x31,
- 0xa1,0x85,0x31, 0xce,0xac,0x4d, 0xce,0xac,0x4d, 0xa1,0x85,0x31,
- 0xa1,0x85,0x31, 0x74,0x5c,0x20, 0x74,0x5c,0x20, 0xa1,0x85,0x31,
- 0xa1,0x85,0x31, 0xce,0xac,0x4d, 0xa1,0x85,0x31, 0xa1,0x85,0x31,
- 0xa1,0x85,0x31, 0x74,0x5c,0x20, 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,0x00,0x00,
- 0xce,0xac,0x4d, 0xce,0xac,0x4d, 0xce,0xac,0x4d, 0xce,0xac,0x4d,
- 0xce,0xac,0x4d, 0xce,0xac,0x4d, 0xce,0xac,0x4d, 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,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,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, 0x00,0x00,0x00,
- 0x00,0x00,0x00, 0x00,0x00,0x00, 0xa1,0x85,0x31, 0xce,0xac,0x4d,
- 0xa1,0x85,0x31, 0xa1,0x85,0x31, 0xa1,0x85,0x31, 0xce,0xac,0x4d,
- 0xce,0xac,0x4d, 0xce,0xac,0x4d, 0xa1,0x85,0x31, 0xa1,0x85,0x31,
- 0x74,0x5c,0x20, 0xce,0xac,0x4d, 0xce,0xac,0x4d, 0xce,0xac,0x4d,
- 0xa1,0x85,0x31, 0x74,0x5c,0x20, 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,0x00,0x00,
- 0xce,0xac,0x4d, 0xce,0xac,0x4d, 0xce,0xac,0x4d, 0xce,0xac,0x4d,
- 0xce,0xac,0x4d, 0xa3,0x71,0x4b, 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,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,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, 0x00,0x00,0x00, 0x00,0x00,0x00,
- 0x00,0x00,0x00, 0x00,0x00,0x00, 0x74,0x5c,0x20, 0xce,0xac,0x4d,
- 0xa1,0x85,0x31, 0xa1,0x85,0x31, 0xa1,0x85,0x31, 0xa1,0x85,0x31,
- 0x74,0x5c,0x20, 0xa1,0x85,0x31, 0xce,0xac,0x4d, 0xce,0xac,0x4d,
- 0xce,0xac,0x4d, 0xa1,0x85,0x31, 0xce,0xac,0x4d, 0xa1,0x85,0x31,
- 0xce,0xac,0x4d, 0x6a,0x49,0x29, 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,0x00,0x00,
- 0xce,0xac,0x4d, 0xce,0xac,0x4d, 0xce,0xac,0x4d, 0xce,0xac,0x4d,
- 0x6a,0x49,0x29, 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,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,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, 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00,
- 0x00,0x00,0x00, 0x00,0x00,0x00, 0x6a,0x49,0x29, 0xa1,0x85,0x31,
- 0xce,0xac,0x4d, 0xa1,0x85,0x31, 0xce,0xac,0x4d, 0xce,0xac,0x4d,
- 0xa1,0x85,0x31, 0xa1,0x85,0x31, 0xa1,0x85,0x31, 0x74,0x5c,0x20,
- 0xa1,0x85,0x31, 0xa1,0x85,0x31, 0xa1,0x85,0x31, 0xa1,0x85,0x31,
- 0xa1,0x85,0x31, 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,0x00,0x00, 0x00,0x00,0x00,
- 0xce,0xac,0x4d, 0xce,0xac,0x4d, 0xce,0xac,0x4d, 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,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,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, 0x00,0x00,0x00,
- 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00,
- 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00, 0xce,0xac,0x4d,
- 0xa1,0x85,0x31, 0xa1,0x85,0x31, 0xa1,0x85,0x31, 0xa1,0x85,0x31,
- 0xce,0xac,0x4d, 0xce,0xac,0x4d, 0xce,0xac,0x4d, 0xa1,0x85,0x31,
- 0xce,0xac,0x4d, 0xa1,0x85,0x31, 0xa1,0x85,0x31, 0xce,0xac,0x4d,
- 0xa1,0x85,0x31, 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,0x00,0x00, 0x00,0x00,0x00,
- 0xce,0xac,0x4d, 0xce,0xac,0x4d, 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,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,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, 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, 0xa1,0x85,0x31,
- 0xa1,0x85,0x31, 0xce,0xac,0x4d, 0xce,0xac,0x4d, 0x74,0x5c,0x20,
- 0x74,0x5c,0x20, 0xa1,0x85,0x31, 0xa1,0x85,0x31, 0xa1,0x85,0x31,
- 0xa1,0x85,0x31, 0xce,0xac,0x4d, 0xce,0xac,0x4d, 0xa1,0x85,0x31,
- 0xa1,0x85,0x31, 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,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,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, 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,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,0x00,
- 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00, 0xa1,0x85,0x31,
- 0xce,0xac,0x4d, 0xa1,0x85,0x31, 0xce,0xac,0x4d, 0xce,0xac,0x4d,
- 0xce,0xac,0x4d, 0xa1,0x85,0x31, 0xa1,0x85,0x31, 0x74,0x5c,0x20,
- 0xa1,0x85,0x31, 0xa1,0x85,0x31, 0xa1,0x85,0x31, 0xa1,0x85,0x31,
- 0x74,0x5c,0x20, 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,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,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, 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,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,0x00,
- 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00, 0x74,0x5c,0x20,
- 0xce,0xac,0x4d, 0xa1,0x85,0x31, 0xa1,0x85,0x31, 0x74,0x5c,0x20,
- 0xa1,0x85,0x31, 0xce,0xac,0x4d, 0xa1,0x85,0x31, 0xce,0xac,0x4d,
- 0xa1,0x85,0x31, 0xa1,0x85,0x31, 0xa1,0x85,0x31, 0xa1,0x85,0x31,
- 0xa1,0x85,0x31, 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,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,0x00,
+ 0xcc,0xa5,0x4e, 0xa6,0x8f,0x3c, 0xb2,0x99,0x3f, 0xb4,0x9c,0x48,
+ 0xa8,0x90,0x36, 0x9f,0x88,0x35, 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,0x00,0x00,
0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00, 0x00,0x00,0x00,
--
cgit v1.2.3
From 67e05587dd06ec18a1d1a9c6e877a3e9f78f5b23 Mon Sep 17 00:00:00 2001
From: Simon Howard
Date: Sun, 27 Dec 2009 00:11:18 +0000
Subject: Allow DOOMWADDIR/DOOMWADPATH to contain the complete path to IWAD
files, as well as directories in which to search for IWAD files.
Subversion-branch: /trunk/chocolate-doom
Subversion-revision: 1766
---
src/d_iwad.c | 93 ++++++++++++++++++++++++++++++++++++++++++++++--------------
1 file changed, 71 insertions(+), 22 deletions(-)
diff --git a/src/d_iwad.c b/src/d_iwad.c
index 0e48420d..729aeee9 100644
--- a/src/d_iwad.c
+++ b/src/d_iwad.c
@@ -338,40 +338,83 @@ static void CheckChex(char *iwad_name)
}
}
+// Returns true if the specified path is a path to a file
+// of the specified name.
+
+static boolean DirIsFile(char *path, char *filename)
+{
+ size_t path_len;
+ size_t filename_len;
+
+ printf("%s, %s\n", path, filename);
+
+ path_len = strlen(path);
+ filename_len = strlen(filename);
+
+ return path_len >= filename_len + 1
+ && path[path_len - filename_len - 1] == DIR_SEPARATOR
+ && !strcasecmp(&path[path_len - filename_len], filename);
+}
+
+// Check if the specified directory contains the specified IWAD
+// file, returning the full path to the IWAD if found, or NULL
+// if not found.
+
+static char *CheckDirectoryHasIWAD(char *dir, char *iwadname)
+{
+ char *filename;
+
+ // As a special case, the "directory" may refer directly to an
+ // IWAD file if the path comes from DOOMWADDIR or DOOMWADPATH.
+
+ if (DirIsFile(dir, iwadname) && M_FileExists(dir))
+ {
+ return strdup(dir);
+ }
+
+ // Construct the full path to the IWAD if it is located in
+ // this directory, and check if it exists.
+
+ filename = malloc(strlen(dir) + strlen(iwadname) + 3);
+
+ if (!strcmp(dir, "."))
+ {
+ strcpy(filename, iwadname);
+ }
+ else
+ {
+ sprintf(filename, "%s%c%s", dir, DIR_SEPARATOR, iwadname);
+ }
+
+ if (M_FileExists(filename))
+ {
+ return filename;
+ }
+
+ free(filename);
+
+ return NULL;
+}
+
// Search a directory to try to find an IWAD
// Returns the location of the IWAD if found, otherwise NULL.
static char *SearchDirectoryForIWAD(char *dir)
{
+ char *filename;
size_t i;
for (i=0; iangleturn + carry;
+
+ // round angleturn to the nearest 256 unit boundary
// for recording demos with single byte values for turn
- cmd->angleturn = (cmd->angleturn + 128) & 0xff00;
+ cmd->angleturn = (desired_angleturn + 128) & 0xff00;
+
+ // Carry forward the error from the reduced resolution to the
+ // next tic, so that successive small movements can accumulate.
+
+ carry = desired_angleturn - cmd->angleturn;
}
}
--
cgit v1.2.3
From 9b0b0629e02deba1788d4a4e190b31977f7c0b1f Mon Sep 17 00:00:00 2001
From: Simon Howard
Date: Sun, 3 Jan 2010 03:49:11 +0000
Subject: Add quotes around $@ in autogen script (thanks exp[x])
Subversion-branch: /trunk/chocolate-doom
Subversion-revision: 1771
---
autogen.sh | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/autogen.sh b/autogen.sh
index ee0e377d..851603c6 100755
--- a/autogen.sh
+++ b/autogen.sh
@@ -8,5 +8,5 @@ automake -a -c
autoconf
automake
-./configure $@
+./configure "$@"
--
cgit v1.2.3
From 6921f30a44e0bdf1c3a2f8982e4a8cd290c22462 Mon Sep 17 00:00:00 2001
From: Simon Howard
Date: Mon, 4 Jan 2010 22:01:32 +0000
Subject: Import OS X launcher code to trunk.
Subversion-branch: /trunk/chocolate-doom
Subversion-revision: 1784
---
pkg/osx/AppController.h | 51 ++++
pkg/osx/AppController.m | 87 ++++++
pkg/osx/Execute.h | 30 ++
pkg/osx/Execute.m | 111 +++++++
pkg/osx/GNUmakefile | 52 ++++
pkg/osx/IWADController.h | 53 ++++
pkg/osx/IWADController.m | 329 +++++++++++++++++++++
pkg/osx/IWADLocation.h | 44 +++
pkg/osx/IWADLocation.m | 74 +++++
pkg/osx/Info.plist | 32 ++
pkg/osx/Info.plist.in | 30 ++
pkg/osx/LauncherManager.h | 47 +++
pkg/osx/LauncherManager.m | 98 ++++++
pkg/osx/app-skeleton/Contents/PkgInfo | 1 +
.../app-skeleton/Contents/Resources/128x128.png | Bin 0 -> 23029 bytes
pkg/osx/app-skeleton/Contents/Resources/app.icns | Bin 0 -> 51625 bytes
.../Contents/Resources/launcher.nib/classes.nib | 40 +++
.../Contents/Resources/launcher.nib/info.nib | 23 ++
.../Resources/launcher.nib/keyedobjects.nib | Bin 0 -> 17192 bytes
pkg/osx/config.h | 27 ++
pkg/osx/config.make | 10 +
pkg/osx/config.make.in | 9 +
pkg/osx/main.m | 32 ++
23 files changed, 1180 insertions(+)
create mode 100644 pkg/osx/AppController.h
create mode 100644 pkg/osx/AppController.m
create mode 100644 pkg/osx/Execute.h
create mode 100644 pkg/osx/Execute.m
create mode 100644 pkg/osx/GNUmakefile
create mode 100644 pkg/osx/IWADController.h
create mode 100644 pkg/osx/IWADController.m
create mode 100644 pkg/osx/IWADLocation.h
create mode 100644 pkg/osx/IWADLocation.m
create mode 100755 pkg/osx/Info.plist
create mode 100755 pkg/osx/Info.plist.in
create mode 100644 pkg/osx/LauncherManager.h
create mode 100644 pkg/osx/LauncherManager.m
create mode 100644 pkg/osx/app-skeleton/Contents/PkgInfo
create mode 100644 pkg/osx/app-skeleton/Contents/Resources/128x128.png
create mode 100644 pkg/osx/app-skeleton/Contents/Resources/app.icns
create mode 100644 pkg/osx/app-skeleton/Contents/Resources/launcher.nib/classes.nib
create mode 100644 pkg/osx/app-skeleton/Contents/Resources/launcher.nib/info.nib
create mode 100644 pkg/osx/app-skeleton/Contents/Resources/launcher.nib/keyedobjects.nib
create mode 100644 pkg/osx/config.h
create mode 100644 pkg/osx/config.make
create mode 100644 pkg/osx/config.make.in
create mode 100644 pkg/osx/main.m
diff --git a/pkg/osx/AppController.h b/pkg/osx/AppController.h
new file mode 100644
index 00000000..80f9a461
--- /dev/null
+++ b/pkg/osx/AppController.h
@@ -0,0 +1,51 @@
+/* ... */
+//-----------------------------------------------------------------------------
+//
+// Copyright(C) 2009 Simon Howard
+//
+// This program is free software; you can redistribute it and/or
+// modify it under the terms of the GNU General Public License
+// as published by the Free Software Foundation; either version 2
+// of the License, or (at your option) any later version.
+//
+// This program is distributed in the hope that it will be useful,
+// but WITHOUT ANY WARRANTY; without even the implied warranty of
+// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+// GNU General Public License for more details.
+//
+// You should have received a copy of the GNU General Public License
+// along with this program; if not, write to the Free Software
+// Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
+// 02111-1307, USA.
+//
+//-----------------------------------------------------------------------------
+
+#ifndef LAUNCHER_APPCONTROLLER_H
+#define LAUNCHER_APPCONTROLLER_H
+
+#include
+// Uncomment if your application is Renaissance-based
+//#include
+
+@interface AppController : NSObject
+{
+}
+
++ (void)initialize;
+
+- (id)init;
+- (void)dealloc;
+
+- (void)awakeFromNib;
+
+- (void)applicationDidFinishLaunching:(NSNotification *)aNotif;
+- (BOOL)applicationShouldTerminate:(id)sender;
+- (void)applicationWillTerminate:(NSNotification *)aNotif;
+- (BOOL)application:(NSApplication *)application openFile:(NSString *)fileName;
+
+- (void)showPrefPanel:(id)sender;
+
+@end
+
+#endif
+
diff --git a/pkg/osx/AppController.m b/pkg/osx/AppController.m
new file mode 100644
index 00000000..81dc56a9
--- /dev/null
+++ b/pkg/osx/AppController.m
@@ -0,0 +1,87 @@
+/* ... */
+//-----------------------------------------------------------------------------
+//
+// Copyright(C) 2009 Simon Howard
+//
+// This program is free software; you can redistribute it and/or
+// modify it under the terms of the GNU General Public License
+// as published by the Free Software Foundation; either version 2
+// of the License, or (at your option) any later version.
+//
+// This program is distributed in the hope that it will be useful,
+// but WITHOUT ANY WARRANTY; without even the implied warranty of
+// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+// GNU General Public License for more details.
+//
+// You should have received a copy of the GNU General Public License
+// along with this program; if not, write to the Free Software
+// Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
+// 02111-1307, USA.
+//
+//-----------------------------------------------------------------------------
+
+#include "AppController.h"
+
+@implementation AppController
+
++ (void)initialize
+{
+ NSMutableDictionary *defaults = [NSMutableDictionary dictionary];
+
+ /*
+ * Register your app's defaults here by adding objects to the
+ * dictionary, eg
+ *
+ * [defaults setObject:anObject forKey:keyForThatObject];
+ *
+ */
+
+ [[NSUserDefaults standardUserDefaults] registerDefaults:defaults];
+ [[NSUserDefaults standardUserDefaults] synchronize];
+}
+
+- (id)init
+{
+ if ((self = [super init]))
+ {
+ }
+
+ return self;
+}
+
+- (void)dealloc
+{
+ [super dealloc];
+}
+
+- (void)awakeFromNib
+{
+ [[NSApp mainMenu] setTitle:@"ChocolateDoom"];
+}
+
+- (void)applicationDidFinishLaunching:(NSNotification *)aNotif
+{
+// Uncomment if your application is Renaissance-based
+// [NSBundle loadGSMarkupNamed:@"Main" owner:self];
+}
+
+- (BOOL)applicationShouldTerminate:(id)sender
+{
+ return YES;
+}
+
+- (void)applicationWillTerminate:(NSNotification *)aNotif
+{
+}
+
+- (BOOL)application:(NSApplication *)application openFile:(NSString *)fileName
+{
+ return NO;
+}
+
+- (void)showPrefPanel:(id)sender
+{
+}
+
+@end
+
diff --git a/pkg/osx/Execute.h b/pkg/osx/Execute.h
new file mode 100644
index 00000000..e92d3a11
--- /dev/null
+++ b/pkg/osx/Execute.h
@@ -0,0 +1,30 @@
+/* ... */
+//-----------------------------------------------------------------------------
+//
+// Copyright(C) 2009 Simon Howard
+//
+// This program is free software; you can redistribute it and/or
+// modify it under the terms of the GNU General Public License
+// as published by the Free Software Foundation; either version 2
+// of the License, or (at your option) any later version.
+//
+// This program is distributed in the hope that it will be useful,
+// but WITHOUT ANY WARRANTY; without even the implied warranty of
+// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+// GNU General Public License for more details.
+//
+// You should have received a copy of the GNU General Public License
+// along with this program; if not, write to the Free Software
+// Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
+// 02111-1307, USA.
+//
+//-----------------------------------------------------------------------------
+
+#ifndef LAUNCHER_EXECUTE_H
+#define LAUNCHER_EXECUTE_H
+
+void SetProgramLocation(const char *path);
+void ExecuteProgram(const char *executable, const char *iwad, const char *args);
+
+#endif /* #ifndef LAUNCHER_EXECUTE_H */
+
diff --git a/pkg/osx/Execute.m b/pkg/osx/Execute.m
new file mode 100644
index 00000000..1afcab1f
--- /dev/null
+++ b/pkg/osx/Execute.m
@@ -0,0 +1,111 @@
+/* ... */
+//-----------------------------------------------------------------------------
+//
+// Copyright(C) 2009 Simon Howard
+//
+// This program is free software; you can redistribute it and/or
+// modify it under the terms of the GNU General Public License
+// as published by the Free Software Foundation; either version 2
+// of the License, or (at your option) any later version.
+//
+// This program is distributed in the hope that it will be useful,
+// but WITHOUT ANY WARRANTY; without even the implied warranty of
+// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+// GNU General Public License for more details.
+//
+// You should have received a copy of the GNU General Public License
+// along with this program; if not, write to the Free Software
+// Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
+// 02111-1307, USA.
+//
+//-----------------------------------------------------------------------------
+
+#include
+#include
+#include
+#include
+#include
+#include
+
+#define RESPONSE_FILE "/tmp/launcher.rsp"
+
+static char *executable_path;
+
+// Called on startup to save the location of the launcher program
+// (within a package, other executables should be in the same directory)
+
+void SetProgramLocation(const char *path)
+{
+ char *p;
+
+ executable_path = strdup(path);
+
+ p = strrchr(executable_path, '/');
+ *p = '\0';
+}
+
+// Write out the response file containing command line arguments.
+
+static void WriteResponseFile(const char *iwad, const char *args)
+{
+ FILE *fstream;
+
+ fstream = fopen(RESPONSE_FILE, "w");
+
+ if (iwad != NULL)
+ {
+ fprintf(fstream, "-iwad \"%s\"", iwad);
+ }
+
+ if (args != NULL)
+ {
+ fprintf(fstream, "%s", args);
+ }
+
+ fclose(fstream);
+}
+
+static void DoExec(const char *executable, const char *iwad, const char *args)
+{
+ char *argv[3];
+
+ argv[0] = malloc(strlen(executable_path) + strlen(executable) + 3);
+ sprintf(argv[0], "%s/%s", executable_path, executable);
+
+ if (iwad != NULL || args != NULL)
+ {
+ WriteResponseFile(iwad, args);
+
+ argv[1] = "@" RESPONSE_FILE;
+ argv[2] = NULL;
+ }
+ else
+ {
+ argv[1] = NULL;
+ }
+
+ execv(argv[0], argv);
+ exit(-1);
+}
+
+// Execute the specified executable contained in the same directory
+// as the launcher, with the specified arguments.
+
+void ExecuteProgram(const char *executable, const char *iwad, const char *args)
+{
+ pid_t childpid;
+
+ childpid = fork();
+
+ if (childpid == 0)
+ {
+ signal(SIGCHLD, SIG_DFL);
+
+ DoExec(executable, iwad, args);
+ }
+ else
+ {
+ signal(SIGCHLD, SIG_IGN);
+ }
+}
+
diff --git a/pkg/osx/GNUmakefile b/pkg/osx/GNUmakefile
new file mode 100644
index 00000000..8d89ef50
--- /dev/null
+++ b/pkg/osx/GNUmakefile
@@ -0,0 +1,52 @@
+
+include config.make
+
+STAGING_DIR=staging
+DMG=$(PACKAGE_TARNAME)-$(PACKAGE_VERSION).dmg
+
+# DMG file containing package:
+
+$(DMG) : $(STAGING_DIR)
+ rm -f $@
+ hdiutil create -volname "$(PACKAGE_STRING)" -srcdir $(STAGING_DIR) $@
+
+clean : launcher_clean
+ rm -f $(DMG)
+ rm -rf $(STAGING_DIR)
+
+# Staging dir build for package:
+
+APP_DIR=$(STAGING_DIR)/$(PACKAGE_NAME).app
+
+$(STAGING_DIR): launcher
+ rm -rf $(STAGING_DIR)
+ mkdir $(STAGING_DIR)
+ cp -R app-skeleton "$(APP_DIR)"
+ cp Info.plist "$(APP_DIR)/Contents/"
+ cp launcher "$(APP_DIR)/Contents/MacOS/"
+ # TODO: copy Doom and setup binaries into app dir
+ # TODO: copy other documentation into staging dir
+ find $(STAGING_DIR) -name .svn -delete -exec rm -rf {} \;
+
+# Launcher build:
+
+CFLAGS=-Wall
+LDFLAGS=-framework Cocoa
+
+LAUNCHER_OBJS= \
+ AppController.o \
+ Execute.o \
+ IWADController.o \
+ IWADLocation.o \
+ LauncherManager.o \
+ main.o
+
+launcher : $(LAUNCHER_OBJS)
+ $(CC) $(LDFLAGS) $(LAUNCHER_OBJS) -o $@
+
+%.o : %.m
+ $(CC) -c $(CFLAGS) $^ -o $@
+
+launcher_clean :
+ rm -f $(LAUNCHER_OBJS) launcher
+
diff --git a/pkg/osx/IWADController.h b/pkg/osx/IWADController.h
new file mode 100644
index 00000000..8bdd0d55
--- /dev/null
+++ b/pkg/osx/IWADController.h
@@ -0,0 +1,53 @@
+/* ... */
+//-----------------------------------------------------------------------------
+//
+// Copyright(C) 2009 Simon Howard
+//
+// This program is free software; you can redistribute it and/or
+// modify it under the terms of the GNU General Public License
+// as published by the Free Software Foundation; either version 2
+// of the License, or (at your option) any later version.
+//
+// This program is distributed in the hope that it will be useful,
+// but WITHOUT ANY WARRANTY; without even the implied warranty of
+// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+// GNU General Public License for more details.
+//
+// You should have received a copy of the GNU General Public License
+// along with this program; if not, write to the Free Software
+// Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
+// 02111-1307, USA.
+//
+//-----------------------------------------------------------------------------
+
+#ifndef LAUNCHER_IWADCONTROLLER_H
+#define LAUNCHER_IWADCONTROLLER_H
+
+#include
+#include
+
+@interface IWADController : NSObject
+{
+ id iwadSelector;
+ id configWindow;
+
+ id chex;
+ id doom1;
+ id doom2;
+ id plutonia;
+ id tnt;
+}
+
+- (void) closeConfigWindow: (id)sender;
+- (void) openConfigWindow: (id)sender;
+- (NSString *) getIWADLocation;
+- (void) awakeFromNib;
+- (BOOL) setDropdownList;
+- (void) setDropdownSelection;
+- (void) saveConfig;
+- (void) setEnvironment;
+
+@end
+
+#endif /* #ifndef LAUNCHER_IWADCONTROLLER_H */
+
diff --git a/pkg/osx/IWADController.m b/pkg/osx/IWADController.m
new file mode 100644
index 00000000..f1860301
--- /dev/null
+++ b/pkg/osx/IWADController.m
@@ -0,0 +1,329 @@
+/* ... */
+//-----------------------------------------------------------------------------
+//
+// Copyright(C) 2009 Simon Howard
+//
+// This program is free software; you can redistribute it and/or
+// modify it under the terms of the GNU General Public License
+// as published by the Free Software Foundation; either version 2
+// of the License, or (at your option) any later version.
+//
+// This program is distributed in the hope that it will be useful,
+// but WITHOUT ANY WARRANTY; without even the implied warranty of
+// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+// GNU General Public License for more details.
+//
+// You should have received a copy of the GNU General Public License
+// along with this program; if not, write to the Free Software
+// Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
+// 02111-1307, USA.
+//
+//-----------------------------------------------------------------------------
+
+#include
+#include
+#include
+#include "IWADController.h"
+#include "IWADLocation.h"
+
+typedef enum
+{
+ IWAD_DOOM1,
+ IWAD_DOOM2,
+ IWAD_TNT,
+ IWAD_PLUTONIA,
+ IWAD_CHEX,
+ NUM_IWAD_TYPES
+} IWAD;
+
+static NSString *IWADLabels[NUM_IWAD_TYPES] =
+{
+ @"Doom",
+ @"Doom II: Hell on Earth",
+ @"Final Doom: TNT: Evilution",
+ @"Final Doom: Plutonia Experiment",
+ @"Chex Quest"
+};
+
+static NSString *IWADFilenames[NUM_IWAD_TYPES + 1] =
+{
+ @"doom.wad",
+ @"doom2.wad",
+ @"tnt.wad",
+ @"plutonia.wad",
+ @"chex.wad",
+ @"undefined"
+};
+
+@implementation IWADController
+
+- (void) getIWADList: (IWADLocation **) iwadList
+{
+ iwadList[IWAD_DOOM1] = self->doom1;
+ iwadList[IWAD_DOOM2] = self->doom2;
+ iwadList[IWAD_TNT] = self->tnt;
+ iwadList[IWAD_PLUTONIA] = self->plutonia;
+ iwadList[IWAD_CHEX] = self->chex;
+}
+
+- (IWAD) getSelectedIWAD
+{
+ unsigned int i;
+
+ for (i=0; iiwadSelector titleOfSelectedItem] == IWADLabels[i])
+ {
+ return i;
+ }
+ }
+
+ return NUM_IWAD_TYPES;
+}
+
+// Get the location of the selected IWAD.
+
+- (NSString *) getIWADLocation
+{
+ IWAD selectedIWAD;
+ IWADLocation *iwadList[NUM_IWAD_TYPES];
+
+ selectedIWAD = [self getSelectedIWAD];
+
+ if (selectedIWAD == NUM_IWAD_TYPES)
+ {
+ return nil;
+ }
+ else
+ {
+ [self getIWADList: iwadList];
+
+ return [iwadList[selectedIWAD] getLocation];
+ }
+}
+
+- (void) setIWADConfig
+{
+ IWADLocation *iwadList[NUM_IWAD_TYPES];
+ NSUserDefaults *defaults;
+ NSString *key;
+ NSString *value;
+ unsigned int i;
+
+ [self getIWADList: iwadList];
+
+ // Load IWAD filename paths
+
+ defaults = [NSUserDefaults standardUserDefaults];
+
+ for (i=0; iiwadSelector selectItemWithTitle:IWADLabels[i]];
+ break;
+ }
+ }
+}
+
+// Set the dropdown list to include an entry for each IWAD that has
+// been configured. Returns true if at least one IWAD is configured.
+
+- (BOOL) setDropdownList
+{
+ IWADLocation *iwadList[NUM_IWAD_TYPES];
+ BOOL have_wads;
+ id location;
+ unsigned int i;
+ unsigned int enabled_wads;
+
+ // Build the new list.
+
+ [self getIWADList: iwadList];
+ [self->iwadSelector removeAllItems];
+
+ enabled_wads = 0;
+
+ for (i=0; i 0)
+ {
+ [self->iwadSelector addItemWithTitle: IWADLabels[i]];
+ ++enabled_wads;
+ }
+ }
+
+ // Enable/disable the dropdown depending on whether there
+ // were any configured IWADs.
+
+ have_wads = enabled_wads > 0;
+ [self->iwadSelector setEnabled: have_wads];
+
+ // Restore the old selection.
+
+ [self setDropdownSelection];
+
+ return have_wads;
+}
+
+- (void) saveConfig
+{
+ IWADLocation *iwadList[NUM_IWAD_TYPES];
+ IWAD selectedIWAD;
+ NSUserDefaults *defaults;
+ NSString *key;
+ NSString *value;
+ unsigned int i;
+
+ [self getIWADList: iwadList];
+
+ // Store all IWAD locations to user defaults.
+
+ defaults = [NSUserDefaults standardUserDefaults];
+
+ for (i=0; iconfigWindow isVisible])
+ {
+ [self->configWindow makeKeyAndOrderFront: sender];
+ }
+}
+
+// Callback method invoked when the close button is clicked.
+
+- (void) closeConfigWindow: (id)sender
+{
+ [self->configWindow orderOut: sender];
+ [self saveConfig];
+ [self setDropdownList];
+}
+
+- (void) awakeFromNib
+{
+ // Set configuration for all IWADs from configuration file.
+
+ [self setIWADConfig];
+
+ // Populate the dropdown IWAD list, and open the configuration
+ // dialog if not yet configured.
+
+ if ([self setDropdownList])
+ {
+ [self setDropdownSelection];
+ }
+ else
+ {
+ [self openConfigWindow: nil];
+ }
+}
+
+// Set the DOOMWADPATH environment variable to contain the path to each
+// of the configured IWAD files.
+
+- (void) setEnvironment
+{
+ IWADLocation *iwadList[NUM_IWAD_TYPES];
+ NSString *location;
+ unsigned int i;
+ unsigned int len;
+ BOOL first;
+ char *env;
+
+ [self getIWADList: iwadList];
+
+ // Calculate length of environment string.
+
+ len = 30;
+
+ for (i=0; i 0)
+ {
+ len += [location length] + 1;
+ }
+ }
+
+ // Build string.
+
+ env = malloc(len);
+ strcpy(env, "DOOMWADPATH=");
+
+ first = YES;
+
+ for (i=0; i 0)
+ {
+ if (!first)
+ {
+ strcat(env, ":");
+ }
+
+ strcat(env, [location UTF8String]);
+ first = NO;
+ }
+ }
+
+ // Load into environment:
+
+ putenv(env);
+
+ //free(env);
+}
+
+@end
+
diff --git a/pkg/osx/IWADLocation.h b/pkg/osx/IWADLocation.h
new file mode 100644
index 00000000..4ddfebc2
--- /dev/null
+++ b/pkg/osx/IWADLocation.h
@@ -0,0 +1,44 @@
+/* ... */
+//-----------------------------------------------------------------------------
+//
+// Copyright(C) 2009 Simon Howard
+//
+// This program is free software; you can redistribute it and/or
+// modify it under the terms of the GNU General Public License
+// as published by the Free Software Foundation; either version 2
+// of the License, or (at your option) any later version.
+//
+// This program is distributed in the hope that it will be useful,
+// but WITHOUT ANY WARRANTY; without even the implied warranty of
+// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+// GNU General Public License for more details.
+//
+// You should have received a copy of the GNU General Public License
+// along with this program; if not, write to the Free Software
+// Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
+// 02111-1307, USA.
+//
+//-----------------------------------------------------------------------------
+
+#ifndef LAUNCHER_IWADLOCATION_H
+#define LAUNCHER_IWADLOCATION_H
+
+#include
+
+#include "IWADController.h"
+
+@interface IWADLocation : NSObject
+{
+ IWADController *iwadController;
+
+ id locationConfigBox;
+}
+
+- (void) setButtonClicked: (id)sender;
+- (NSString *) getLocation;
+- (void) setLocation: (NSString *) value;
+
+@end
+
+#endif /* #ifndef LAUNCHER_IWADLOCATION_H */
+
diff --git a/pkg/osx/IWADLocation.m b/pkg/osx/IWADLocation.m
new file mode 100644
index 00000000..3f2ac188
--- /dev/null
+++ b/pkg/osx/IWADLocation.m
@@ -0,0 +1,74 @@
+/* ... */
+//-----------------------------------------------------------------------------
+//
+// Copyright(C) 2009 Simon Howard
+//
+// This program is free software; you can redistribute it and/or
+// modify it under the terms of the GNU General Public License
+// as published by the Free Software Foundation; either version 2
+// of the License, or (at your option) any later version.
+//
+// This program is distributed in the hope that it will be useful,
+// but WITHOUT ANY WARRANTY; without even the implied warranty of
+// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+// GNU General Public License for more details.
+//
+// You should have received a copy of the GNU General Public License
+// along with this program; if not, write to the Free Software
+// Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
+// 02111-1307, USA.
+//
+//-----------------------------------------------------------------------------
+
+#include
+#include "IWADLocation.h"
+
+static id WAD_TYPES[] =
+{
+ @"wad", @"WAD"
+};
+
+@implementation IWADLocation
+
+- (void) setButtonClicked: (id)sender
+{
+ NSArray *wadTypes = [NSArray arrayWithObjects: WAD_TYPES count: 2];
+ NSOpenPanel *openPanel;
+ NSArray *filenames;
+ int result;
+
+ [wadTypes retain];
+
+ // Open a file selector for the new file.
+
+ openPanel = [NSOpenPanel openPanel];
+ [openPanel setTitle: @"Add IWAD file"];
+ [openPanel setCanChooseFiles: YES];
+ [openPanel setCanChooseDirectories: NO];
+
+ result = [openPanel runModalForTypes: wadTypes];
+
+ // If the "OK" button was clicked, add the new IWAD file to the list.
+
+ if (result == NSOKButton)
+ {
+ filenames = [openPanel filenames];
+ [self setLocation: [filenames lastObject]];
+
+ [self->iwadController saveConfig];
+ [self->iwadController setDropdownList];
+ }
+}
+
+- (NSString *) getLocation
+{
+ return [self->locationConfigBox stringValue];
+}
+
+- (void) setLocation: (NSString *) filename
+{
+ [self->locationConfigBox setStringValue: filename];
+}
+
+@end
+
diff --git a/pkg/osx/Info.plist b/pkg/osx/Info.plist
new file mode 100755
index 00000000..fb2afc15
--- /dev/null
+++ b/pkg/osx/Info.plist
@@ -0,0 +1,32 @@
+
+
+
+
+
+ CFBundleDevelopmentRegion
+ English
+ CFBundleDisplayName
+ Cocoa Doom
+ CFBundleExecutable
+ launcher
+ CFBundleGetInfoString
+ Cocoa Doom 1.2.1
+ CFBundleIconFile
+ app.icns
+ CFBundleInfoDictionaryVersion
+ 6.0
+ CFBundleName
+ Cocoa Doom
+ CFBundlePackageType
+ APPL
+ CFBundleShortVersionString
+ 1.2.1
+ CFBundleVersion
+ 1.2.1
+ NSPrincipalClass
+ NSApplication
+ NSMainNibFile
+ launcher
+
+
diff --git a/pkg/osx/Info.plist.in b/pkg/osx/Info.plist.in
new file mode 100755
index 00000000..a7a33b84
--- /dev/null
+++ b/pkg/osx/Info.plist.in
@@ -0,0 +1,30 @@
+
+
+
+
+ CFBundleDevelopmentRegion
+ English
+ CFBundleDisplayName
+ @PACKAGE_NAME@
+ CFBundleExecutable
+ launcher
+ CFBundleGetInfoString
+ @PACKAGE_STRING@
+ CFBundleIconFile
+ app.icns
+ CFBundleInfoDictionaryVersion
+ 6.0
+ CFBundleName
+ @PACKAGE_NAME@
+ CFBundlePackageType
+ APPL
+ CFBundleShortVersionString
+ @PACKAGE_VERSION@
+ CFBundleVersion
+ @PACKAGE_VERSION@
+ NSPrincipalClass
+ NSApplication
+ NSMainNibFile
+ launcher
+
+
diff --git a/pkg/osx/LauncherManager.h b/pkg/osx/LauncherManager.h
new file mode 100644
index 00000000..11852dcf
--- /dev/null
+++ b/pkg/osx/LauncherManager.h
@@ -0,0 +1,47 @@
+/* ... */
+//-----------------------------------------------------------------------------
+//
+// Copyright(C) 2009 Simon Howard
+//
+// This program is free software; you can redistribute it and/or
+// modify it under the terms of the GNU General Public License
+// as published by the Free Software Foundation; either version 2
+// of the License, or (at your option) any later version.
+//
+// This program is distributed in the hope that it will be useful,
+// but WITHOUT ANY WARRANTY; without even the implied warranty of
+// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+// GNU General Public License for more details.
+//
+// You should have received a copy of the GNU General Public License
+// along with this program; if not, write to the Free Software
+// Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
+// 02111-1307, USA.
+//
+//-----------------------------------------------------------------------------
+
+#ifndef LAUNCHER_LAUNCHERMANAGER_H
+#define LAUNCHER_LAUNCHERMANAGER_H
+
+#include
+#include
+#include "IWADController.h"
+
+@interface LauncherManager : NSObject
+{
+ IWADController *iwadController;
+
+ id launcherWindow;
+
+ id commandLineArguments;
+ id packageLabel;
+}
+
+- (void) launch: (id)sender;
+- (void) runSetup: (id)sender;
+- (void) awakeFromNib;
+
+@end
+
+#endif /* #ifndef LAUNCHER_LAUNCHERMANAGER_H */
+
diff --git a/pkg/osx/LauncherManager.m b/pkg/osx/LauncherManager.m
new file mode 100644
index 00000000..cda7b3e7
--- /dev/null
+++ b/pkg/osx/LauncherManager.m
@@ -0,0 +1,98 @@
+/* ... */
+//-----------------------------------------------------------------------------
+//
+// Copyright(C) 2009 Simon Howard
+//
+// This program is free software; you can redistribute it and/or
+// modify it under the terms of the GNU General Public License
+// as published by the Free Software Foundation; either version 2
+// of the License, or (at your option) any later version.
+//
+// This program is distributed in the hope that it will be useful,
+// but WITHOUT ANY WARRANTY; without even the implied warranty of
+// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+// GNU General Public License for more details.
+//
+// You should have received a copy of the GNU General Public License
+// along with this program; if not, write to the Free Software
+// Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
+// 02111-1307, USA.
+//
+//-----------------------------------------------------------------------------
+
+#include
+#include "Execute.h"
+#include "LauncherManager.h"
+#include "config.h"
+
+@implementation LauncherManager
+
+// Save configuration. Invoked when we launch the game or quit.
+
+- (void) saveConfig
+{
+ NSUserDefaults *defaults;
+
+ // Save IWAD configuration and selected IWAD.
+
+ [self->iwadController saveConfig];
+
+ // Save command line arguments.
+
+ defaults = [NSUserDefaults standardUserDefaults];
+ [defaults setObject:[self->commandLineArguments stringValue]
+ forKey:@"command_line_args"];
+}
+
+// Load configuration, invoked on startup.
+
+- (void) setConfig
+{
+ NSUserDefaults *defaults;
+ NSString *args;
+
+ defaults = [NSUserDefaults standardUserDefaults];
+
+ args = [defaults stringForKey:@"command_line_args"];
+
+ if (args != nil)
+ {
+ [self->commandLineArguments setStringValue:args];
+ }
+}
+
+- (void) launch: (id)sender
+{
+ NSString *iwad;
+ NSString *args;
+
+ [self saveConfig];
+
+ iwad = [self->iwadController getIWADLocation];
+ args = [self->commandLineArguments stringValue];
+
+ if (iwad != nil)
+ {
+ ExecuteProgram(PACKAGE_TARNAME, [iwad UTF8String],
+ [args UTF8String]);
+ [NSApp terminate:sender];
+ }
+}
+
+- (void) runSetup: (id)sender
+{
+ [self saveConfig];
+
+ [self->iwadController setEnvironment];
+ ExecuteProgram("chocolate-setup", NULL, NULL);
+}
+
+- (void) awakeFromNib
+{
+ [self->packageLabel setStringValue: @PACKAGE_STRING];
+ [self->launcherWindow setTitle: @PACKAGE_NAME " Launcher"];
+ [self setConfig];
+}
+
+@end
+
diff --git a/pkg/osx/app-skeleton/Contents/PkgInfo b/pkg/osx/app-skeleton/Contents/PkgInfo
new file mode 100644
index 00000000..6f749b0f
--- /dev/null
+++ b/pkg/osx/app-skeleton/Contents/PkgInfo
@@ -0,0 +1 @@
+APPL????
diff --git a/pkg/osx/app-skeleton/Contents/Resources/128x128.png b/pkg/osx/app-skeleton/Contents/Resources/128x128.png
new file mode 100644
index 00000000..0ef1fe9c
Binary files /dev/null and b/pkg/osx/app-skeleton/Contents/Resources/128x128.png differ
diff --git a/pkg/osx/app-skeleton/Contents/Resources/app.icns b/pkg/osx/app-skeleton/Contents/Resources/app.icns
new file mode 100644
index 00000000..9b535a25
Binary files /dev/null and b/pkg/osx/app-skeleton/Contents/Resources/app.icns differ
diff --git a/pkg/osx/app-skeleton/Contents/Resources/launcher.nib/classes.nib b/pkg/osx/app-skeleton/Contents/Resources/launcher.nib/classes.nib
new file mode 100644
index 00000000..9092e44b
--- /dev/null
+++ b/pkg/osx/app-skeleton/Contents/Resources/launcher.nib/classes.nib
@@ -0,0 +1,40 @@
+{
+ IBClasses = (
+ {CLASS = FirstResponder; LANGUAGE = ObjC; SUPERCLASS = NSObject; },
+ {
+ ACTIONS = {closeConfigWindow = id; openConfigWindow = id; };
+ CLASS = IWADController;
+ LANGUAGE = ObjC;
+ OUTLETS = {
+ chex = id;
+ configWindow = id;
+ doom1 = id;
+ doom2 = id;
+ iwadSelector = id;
+ plutonia = id;
+ tnt = id;
+ };
+ SUPERCLASS = NSObject;
+ },
+ {
+ ACTIONS = {setButtonClicked = id; };
+ CLASS = IWADLocation;
+ LANGUAGE = ObjC;
+ OUTLETS = {locationConfigBox = id; };
+ SUPERCLASS = NSObject;
+ },
+ {
+ ACTIONS = {launch = id; runSetup = id; };
+ CLASS = LauncherManager;
+ LANGUAGE = ObjC;
+ OUTLETS = {
+ commandLineArguments = id;
+ iwadController = id;
+ launcherWindow = id;
+ packageLabel = id;
+ };
+ SUPERCLASS = NSObject;
+ }
+ );
+ IBVersion = 1;
+}
\ No newline at end of file
diff --git a/pkg/osx/app-skeleton/Contents/Resources/launcher.nib/info.nib b/pkg/osx/app-skeleton/Contents/Resources/launcher.nib/info.nib
new file mode 100644
index 00000000..63067b23
--- /dev/null
+++ b/pkg/osx/app-skeleton/Contents/Resources/launcher.nib/info.nib
@@ -0,0 +1,23 @@
+
+
+
+
+ IBDocumentLocation
+ 172 70 612 260 0 0 1440 878
+ IBEditorPositions
+
+ 29
+ 108 337 163 44 0 0 1440 878
+
+ IBFramework Version
+ 446.1
+ IBOpenObjects
+
+ 29
+ 227
+ 21
+
+ IBSystem Version
+ 8S2167
+
+
diff --git a/pkg/osx/app-skeleton/Contents/Resources/launcher.nib/keyedobjects.nib b/pkg/osx/app-skeleton/Contents/Resources/launcher.nib/keyedobjects.nib
new file mode 100644
index 00000000..85980d2d
Binary files /dev/null and b/pkg/osx/app-skeleton/Contents/Resources/launcher.nib/keyedobjects.nib differ
diff --git a/pkg/osx/config.h b/pkg/osx/config.h
new file mode 100644
index 00000000..77fbac58
--- /dev/null
+++ b/pkg/osx/config.h
@@ -0,0 +1,27 @@
+// Dummy config.h for developing launcher. Eventually, the launcher
+// will include the top-level config.h for the program.
+
+/* Name of package */
+#define PACKAGE "cocoa-doom"
+
+/* Define to the address where bug reports for this package should be sent. */
+#define PACKAGE_BUGREPORT "fraggle@gmail.com"
+
+/* Define to the full name of this package. */
+#define PACKAGE_NAME "Cocoa Doom"
+
+/* Define to the full name and version of this package. */
+#define PACKAGE_STRING "Cocoa Doom 1.2.1"
+
+/* Define to the one symbol short name of this package. */
+#define PACKAGE_TARNAME "cocoa-doom"
+
+/* Define to the version of this package. */
+#define PACKAGE_VERSION "1.2.1"
+
+/* Define to 1 if you have the ANSI C header files. */
+#define STDC_HEADERS 1
+
+/* Version number of package */
+#define VERSION "1.2.1"
+
diff --git a/pkg/osx/config.make b/pkg/osx/config.make
new file mode 100644
index 00000000..49905c84
--- /dev/null
+++ b/pkg/osx/config.make
@@ -0,0 +1,10 @@
+# File included by the main makefile that contains details
+# about the package name. This will eventuall be generated
+# by configure.
+
+PACKAGE = cocoa-doom
+PACKAGE_NAME = Cocoa Doom
+PACKAGE_STRING = Cocoa Doom 1.2.1
+PACKAGE_TARNAME = cocoa-doom
+PACKAGE_VERSION = 1.2.1
+
diff --git a/pkg/osx/config.make.in b/pkg/osx/config.make.in
new file mode 100644
index 00000000..67f1c968
--- /dev/null
+++ b/pkg/osx/config.make.in
@@ -0,0 +1,9 @@
+# File included by the main makefile that contains details
+# about the package name, generated by configure.
+
+PACKAGE = @PACKAGE@
+PACKAGE_NAME = @PACKAGE_NAME@
+PACKAGE_STRING = @PACKAGE_STRING@
+PACKAGE_TARNAME = @PACKAGE_TARNAME@
+PACKAGE_VERSION = @PACKAGE_VERSION@
+
diff --git a/pkg/osx/main.m b/pkg/osx/main.m
new file mode 100644
index 00000000..e3c70dc1
--- /dev/null
+++ b/pkg/osx/main.m
@@ -0,0 +1,32 @@
+/* ... */
+//-----------------------------------------------------------------------------
+//
+// Copyright(C) 2009 Simon Howard
+//
+// This program is free software; you can redistribute it and/or
+// modify it under the terms of the GNU General Public License
+// as published by the Free Software Foundation; either version 2
+// of the License, or (at your option) any later version.
+//
+// This program is distributed in the hope that it will be useful,
+// but WITHOUT ANY WARRANTY; without even the implied warranty of
+// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+// GNU General Public License for more details.
+//
+// You should have received a copy of the GNU General Public License
+// along with this program; if not, write to the Free Software
+// Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
+// 02111-1307, USA.
+//
+//-----------------------------------------------------------------------------
+
+#include
+#include "Execute.h"
+
+int main(int argc, const char *argv[])
+{
+ SetProgramLocation(argv[0]);
+
+ return NSApplicationMain (argc, argv);
+}
+
--
cgit v1.2.3
From afb95216afb043a56122a3f57292bf0ded5d7775 Mon Sep 17 00:00:00 2001
From: Simon Howard
Date: Mon, 4 Jan 2010 22:11:11 +0000
Subject: Generate Info.plist and config.make in configure and remove temporary
versions. Include config.h from top level.
Subversion-branch: /trunk/chocolate-doom
Subversion-revision: 1785
---
configure.in | 2 ++
pkg/osx/GNUmakefile | 2 +-
pkg/osx/Info.plist | 32 --------------------------------
pkg/osx/Info.plist.in | 0
pkg/osx/config.h | 27 ---------------------------
pkg/osx/config.make | 10 ----------
6 files changed, 3 insertions(+), 70 deletions(-)
delete mode 100755 pkg/osx/Info.plist
mode change 100755 => 100644 pkg/osx/Info.plist.in
delete mode 100644 pkg/osx/config.h
delete mode 100644 pkg/osx/config.make
diff --git a/configure.in b/configure.in
index 60610ea1..9e95c0f1 100644
--- a/configure.in
+++ b/configure.in
@@ -125,6 +125,8 @@ pcsound/Makefile
pkg/Makefile
pkg/wince/GNUmakefile
pkg/win32/GNUmakefile
+pkg/osx/config.make
+pkg/osx/Info.plist
src/resource.rc
src/doom-screensaver.desktop
setup/setup-res.rc
diff --git a/pkg/osx/GNUmakefile b/pkg/osx/GNUmakefile
index 8d89ef50..cf9d1ffb 100644
--- a/pkg/osx/GNUmakefile
+++ b/pkg/osx/GNUmakefile
@@ -30,7 +30,7 @@ $(STAGING_DIR): launcher
# Launcher build:
-CFLAGS=-Wall
+CFLAGS=-Wall -I../..
LDFLAGS=-framework Cocoa
LAUNCHER_OBJS= \
diff --git a/pkg/osx/Info.plist b/pkg/osx/Info.plist
deleted file mode 100755
index fb2afc15..00000000
--- a/pkg/osx/Info.plist
+++ /dev/null
@@ -1,32 +0,0 @@
-
-
-
-
-
- CFBundleDevelopmentRegion
- English
- CFBundleDisplayName
- Cocoa Doom
- CFBundleExecutable
- launcher
- CFBundleGetInfoString
- Cocoa Doom 1.2.1
- CFBundleIconFile
- app.icns
- CFBundleInfoDictionaryVersion
- 6.0
- CFBundleName
- Cocoa Doom
- CFBundlePackageType
- APPL
- CFBundleShortVersionString
- 1.2.1
- CFBundleVersion
- 1.2.1
- NSPrincipalClass
- NSApplication
- NSMainNibFile
- launcher
-
-
diff --git a/pkg/osx/Info.plist.in b/pkg/osx/Info.plist.in
old mode 100755
new mode 100644
diff --git a/pkg/osx/config.h b/pkg/osx/config.h
deleted file mode 100644
index 77fbac58..00000000
--- a/pkg/osx/config.h
+++ /dev/null
@@ -1,27 +0,0 @@
-// Dummy config.h for developing launcher. Eventually, the launcher
-// will include the top-level config.h for the program.
-
-/* Name of package */
-#define PACKAGE "cocoa-doom"
-
-/* Define to the address where bug reports for this package should be sent. */
-#define PACKAGE_BUGREPORT "fraggle@gmail.com"
-
-/* Define to the full name of this package. */
-#define PACKAGE_NAME "Cocoa Doom"
-
-/* Define to the full name and version of this package. */
-#define PACKAGE_STRING "Cocoa Doom 1.2.1"
-
-/* Define to the one symbol short name of this package. */
-#define PACKAGE_TARNAME "cocoa-doom"
-
-/* Define to the version of this package. */
-#define PACKAGE_VERSION "1.2.1"
-
-/* Define to 1 if you have the ANSI C header files. */
-#define STDC_HEADERS 1
-
-/* Version number of package */
-#define VERSION "1.2.1"
-
diff --git a/pkg/osx/config.make b/pkg/osx/config.make
deleted file mode 100644
index 49905c84..00000000
--- a/pkg/osx/config.make
+++ /dev/null
@@ -1,10 +0,0 @@
-# File included by the main makefile that contains details
-# about the package name. This will eventuall be generated
-# by configure.
-
-PACKAGE = cocoa-doom
-PACKAGE_NAME = Cocoa Doom
-PACKAGE_STRING = Cocoa Doom 1.2.1
-PACKAGE_TARNAME = cocoa-doom
-PACKAGE_VERSION = 1.2.1
-
--
cgit v1.2.3
From c94870783a025514286df1d8bb43cf616b865547 Mon Sep 17 00:00:00 2001
From: Simon Howard
Date: Mon, 4 Jan 2010 22:19:53 +0000
Subject: Fix GNUstep build.
Subversion-branch: /trunk/chocolate-doom
Subversion-revision: 1786
---
pkg/osx/GNUmakefile | 24 ++++++++++++++++++------
1 file changed, 18 insertions(+), 6 deletions(-)
diff --git a/pkg/osx/GNUmakefile b/pkg/osx/GNUmakefile
index cf9d1ffb..67f0fed8 100644
--- a/pkg/osx/GNUmakefile
+++ b/pkg/osx/GNUmakefile
@@ -4,15 +4,15 @@ include config.make
STAGING_DIR=staging
DMG=$(PACKAGE_TARNAME)-$(PACKAGE_VERSION).dmg
+ifndef GNUSTEP_MAKEFILES
+
# DMG file containing package:
$(DMG) : $(STAGING_DIR)
rm -f $@
hdiutil create -volname "$(PACKAGE_STRING)" -srcdir $(STAGING_DIR) $@
-clean : launcher_clean
- rm -f $(DMG)
- rm -rf $(STAGING_DIR)
+endif
# Staging dir build for package:
@@ -26,12 +26,24 @@ $(STAGING_DIR): launcher
cp launcher "$(APP_DIR)/Contents/MacOS/"
# TODO: copy Doom and setup binaries into app dir
# TODO: copy other documentation into staging dir
- find $(STAGING_DIR) -name .svn -delete -exec rm -rf {} \;
+ find $(STAGING_DIR) -name .svn -delete -exec rm -rf {} \; || true
+
+clean : launcher_clean
+ rm -f $(DMG)
+ rm -rf $(STAGING_DIR)
# Launcher build:
-CFLAGS=-Wall -I../..
-LDFLAGS=-framework Cocoa
+CFLAGS = -Wall -I../..
+
+# Are we building using gs_make?
+
+ifdef GNUSTEP_MAKEFILES
+CFLAGS += $(shell gnustep-config --objc-flags)
+LDFLAGS = $(shell gnustep-config --gui-libs)
+else
+LDFLAGS = -framework Cocoa
+endif
LAUNCHER_OBJS= \
AppController.o \
--
cgit v1.2.3
From dfff86ebefb6044183022016da67c7cae691b973 Mon Sep 17 00:00:00 2001
From: Simon Howard
Date: Mon, 4 Jan 2010 22:24:48 +0000
Subject: Include documentation files in package.
Subversion-branch: /trunk/chocolate-doom
Subversion-revision: 1787
---
pkg/osx/GNUmakefile | 10 +++++++++-
1 file changed, 9 insertions(+), 1 deletion(-)
diff --git a/pkg/osx/GNUmakefile b/pkg/osx/GNUmakefile
index 67f0fed8..82c353fe 100644
--- a/pkg/osx/GNUmakefile
+++ b/pkg/osx/GNUmakefile
@@ -3,6 +3,14 @@ include config.make
STAGING_DIR=staging
DMG=$(PACKAGE_TARNAME)-$(PACKAGE_VERSION).dmg
+DOC_FILES=\
+ README \
+ COPYING \
+ ChangeLog \
+ NEWS \
+ BUGS \
+ CMDLINE \
+ TODO
ifndef GNUSTEP_MAKEFILES
@@ -25,7 +33,7 @@ $(STAGING_DIR): launcher
cp Info.plist "$(APP_DIR)/Contents/"
cp launcher "$(APP_DIR)/Contents/MacOS/"
# TODO: copy Doom and setup binaries into app dir
- # TODO: copy other documentation into staging dir
+ for d in $(DOC_FILES); do cp ../../$$d $(STAGING_DIR)/; done
find $(STAGING_DIR) -name .svn -delete -exec rm -rf {} \; || true
clean : launcher_clean
--
cgit v1.2.3
From c401e515b0bbe734fc39517a4d25c96ce487bef4 Mon Sep 17 00:00:00 2001
From: Simon Howard
Date: Mon, 4 Jan 2010 22:45:45 +0000
Subject: Copy binaries into app dir along with libraries.
Subversion-branch: /trunk/chocolate-doom
Subversion-revision: 1788
---
pkg/osx/GNUmakefile | 15 +++++++++++++--
pkg/osx/cp-with-libs | 16 ++++++++++++++++
2 files changed, 29 insertions(+), 2 deletions(-)
create mode 100755 pkg/osx/cp-with-libs
diff --git a/pkg/osx/GNUmakefile b/pkg/osx/GNUmakefile
index 82c353fe..b060f483 100644
--- a/pkg/osx/GNUmakefile
+++ b/pkg/osx/GNUmakefile
@@ -1,6 +1,9 @@
include config.make
+CC=gcc
+STRIP=strip
+
STAGING_DIR=staging
DMG=$(PACKAGE_TARNAME)-$(PACKAGE_VERSION).dmg
DOC_FILES=\
@@ -25,15 +28,23 @@ endif
# Staging dir build for package:
APP_DIR=$(STAGING_DIR)/$(PACKAGE_NAME).app
+APP_BIN_DIR=$(APP_DIR)/Contents/MacOS/
$(STAGING_DIR): launcher
rm -rf $(STAGING_DIR)
mkdir $(STAGING_DIR)
+
cp -R app-skeleton "$(APP_DIR)"
cp Info.plist "$(APP_DIR)/Contents/"
- cp launcher "$(APP_DIR)/Contents/MacOS/"
- # TODO: copy Doom and setup binaries into app dir
+ cp launcher "$(APP_BIN_DIR)/"
+
+ ./cp-with-libs ../../src/chocolate-doom "$(APP_BIN_DIR)"
+ $(STRIP) "$(APP_BIN_DIR)/chocolate-doom"
+ ./cp-with-libs ../../setup/chocolate-setup "$(APP_BIN_DIR)"
+ $(STRIP) "$(APP_BIN_DIR)/chocolate-setup"
+
for d in $(DOC_FILES); do cp ../../$$d $(STAGING_DIR)/; done
+
find $(STAGING_DIR) -name .svn -delete -exec rm -rf {} \; || true
clean : launcher_clean
diff --git a/pkg/osx/cp-with-libs b/pkg/osx/cp-with-libs
new file mode 100755
index 00000000..902ae079
--- /dev/null
+++ b/pkg/osx/cp-with-libs
@@ -0,0 +1,16 @@
+#!/bin/sh
+#
+# Copy a program to the specified destination, along
+# with SDL libraries it depends upon.
+
+BINARY=$1
+DEST=$2
+
+cp "$BINARY" "$DEST"
+
+# Copy libraries; only those with libSDL in the name
+
+otool -L "$BINARY" | grep libSDL | sed 's/^.//; s/(.*//' | while read; do
+ cp "$REPLY" "$DEST"
+done
+
--
cgit v1.2.3
From 37325bbfc1f71111715cf2f4ef2918b6cc5c0ff1 Mon Sep 17 00:00:00 2001
From: Simon Howard
Date: Mon, 4 Jan 2010 22:53:44 +0000
Subject: Fix single space error when listing libraries.
Subversion-branch: /trunk/chocolate-doom
Subversion-revision: 1789
---
pkg/osx/cp-with-libs | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/pkg/osx/cp-with-libs b/pkg/osx/cp-with-libs
index 902ae079..bb4fa001 100755
--- a/pkg/osx/cp-with-libs
+++ b/pkg/osx/cp-with-libs
@@ -10,7 +10,7 @@ cp "$BINARY" "$DEST"
# Copy libraries; only those with libSDL in the name
-otool -L "$BINARY" | grep libSDL | sed 's/^.//; s/(.*//' | while read; do
+otool -L "$BINARY" | grep libSDL | sed 's/^.//; s/ (.*//' | while read; do
cp "$REPLY" "$DEST"
done
--
cgit v1.2.3
From 860a17497bdc189f78f5a0bca000a0451d5ae624 Mon Sep 17 00:00:00 2001
From: Simon Howard
Date: Tue, 5 Jan 2010 15:52:12 +0000
Subject: Move config.make up to pkg/ directory. Use static makefiles to
generate all packages, rather than dynamically generated makefiles. Add
pkg/osx to dist. Make OS X staging directory depend on top level
documentation files. Generate CMDLINE as part of standard build if it is not
already present. Set svn:ignore properties.
Subversion-branch: /trunk/chocolate-doom
Subversion-revision: 1790
---
Makefile.am | 2 ++
configure.in | 4 +---
pkg/.gitignore | 3 +++
pkg/Makefile.am | 28 +++++++++++++++++++++++++++-
pkg/config.make.in | 19 +++++++++++++++++++
pkg/osx/.gitignore | 5 +++++
pkg/osx/GNUmakefile | 24 ++++++++++--------------
pkg/osx/config.make.in | 9 ---------
pkg/win32/GNUmakefile | 26 ++++++++++++++++++++++++++
pkg/win32/GNUmakefile.am | 35 -----------------------------------
pkg/wince/GNUmakefile | 10 ++++++++++
pkg/wince/GNUmakefile.am | 12 ------------
wince/.gitignore | 3 +++
13 files changed, 106 insertions(+), 74 deletions(-)
create mode 100644 pkg/.gitignore
create mode 100644 pkg/config.make.in
create mode 100644 pkg/osx/.gitignore
delete mode 100644 pkg/osx/config.make.in
create mode 100644 pkg/win32/GNUmakefile
delete mode 100644 pkg/win32/GNUmakefile.am
create mode 100644 pkg/wince/GNUmakefile
delete mode 100644 pkg/wince/GNUmakefile.am
create mode 100644 wince/.gitignore
diff --git a/Makefile.am b/Makefile.am
index 906bc76a..662e26bb 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -53,6 +53,8 @@ DIST_SUBDIRS=pkg $(SUBDIRS)
if HAVE_PYTHON
+noinst_DATA=CMDLINE
+
CMDLINE : src/
./man/docgen -p man/CMDLINE.template src/ > $@
diff --git a/configure.in b/configure.in
index 9e95c0f1..8167462e 100644
--- a/configure.in
+++ b/configure.in
@@ -123,9 +123,7 @@ man/Makefile
src/Makefile
pcsound/Makefile
pkg/Makefile
-pkg/wince/GNUmakefile
-pkg/win32/GNUmakefile
-pkg/osx/config.make
+pkg/config.make
pkg/osx/Info.plist
src/resource.rc
src/doom-screensaver.desktop
diff --git a/pkg/.gitignore b/pkg/.gitignore
new file mode 100644
index 00000000..a1dd1cde
--- /dev/null
+++ b/pkg/.gitignore
@@ -0,0 +1,3 @@
+Makefile
+Makefile.in
+config.make
diff --git a/pkg/Makefile.am b/pkg/Makefile.am
index 66cb9ba0..9a607ee8 100644
--- a/pkg/Makefile.am
+++ b/pkg/Makefile.am
@@ -1,3 +1,29 @@
-DIST_SUBDIRS=wince win32
+OSX_FILES= \
+osx/app-skeleton/Contents/PkgInfo \
+osx/app-skeleton/Contents/Resources/128x128.png \
+osx/app-skeleton/Contents/Resources/app.icns \
+osx/app-skeleton/Contents/Resources/launcher.nib/classes.nib \
+osx/app-skeleton/Contents/Resources/launcher.nib/info.nib \
+osx/app-skeleton/Contents/Resources/launcher.nib/keyedobjects.nib \
+osx/GNUmakefile \
+osx/Info.plist.in \
+osx/cp-with-libs \
+osx/main.m \
+osx/AppController.m osx/AppController.h \
+osx/Execute.m osx/Execute.h \
+osx/IWADController.m osx/IWADController.h \
+osx/IWADLocation.m osx/IWADLocation.h \
+osx/LauncherManager.m osx/LauncherManager.h
+
+WINCE_FILES= \
+wince/GNUmakefile \
+wince/wince-cab.cfg \
+wince/wince-cabgen
+
+WIN32_FILES= \
+win32/GNUmakefile \
+win32/README
+
+EXTRA_DIST=$(OSX_FILES) $(WINCE_FILES) $(WIN32_FILES)
diff --git a/pkg/config.make.in b/pkg/config.make.in
new file mode 100644
index 00000000..caedab23
--- /dev/null
+++ b/pkg/config.make.in
@@ -0,0 +1,19 @@
+# File included by package makefiles that contains details
+# about the package name, generated by configure.
+
+PACKAGE = @PACKAGE@
+PACKAGE_NAME = @PACKAGE_NAME@
+PACKAGE_STRING = @PACKAGE_STRING@
+PACKAGE_TARNAME = @PACKAGE_TARNAME@
+PACKAGE_VERSION = @PACKAGE_VERSION@
+
+# Documentation files to distribute with packages.
+
+DOC_FILES=README \
+ COPYING \
+ ChangeLog \
+ NEWS \
+ BUGS \
+ CMDLINE \
+ TODO
+
diff --git a/pkg/osx/.gitignore b/pkg/osx/.gitignore
new file mode 100644
index 00000000..5b7a16ef
--- /dev/null
+++ b/pkg/osx/.gitignore
@@ -0,0 +1,5 @@
+Info.plist
+launcher
+*.o
+*.d
+staging
diff --git a/pkg/osx/GNUmakefile b/pkg/osx/GNUmakefile
index b060f483..92fc5b0f 100644
--- a/pkg/osx/GNUmakefile
+++ b/pkg/osx/GNUmakefile
@@ -1,19 +1,14 @@
-include config.make
+include ../config.make
CC=gcc
STRIP=strip
STAGING_DIR=staging
DMG=$(PACKAGE_TARNAME)-$(PACKAGE_VERSION).dmg
-DOC_FILES=\
- README \
- COPYING \
- ChangeLog \
- NEWS \
- BUGS \
- CMDLINE \
- TODO
+
+TOPLEVEL=../..
+TOPLEVEL_DOCS=$(patsubst %,../../%,$(DOC_FILES))
ifndef GNUSTEP_MAKEFILES
@@ -30,20 +25,21 @@ endif
APP_DIR=$(STAGING_DIR)/$(PACKAGE_NAME).app
APP_BIN_DIR=$(APP_DIR)/Contents/MacOS/
-$(STAGING_DIR): launcher
+$(STAGING_DIR): launcher $(TOPLEVEL_DOCS)
rm -rf $(STAGING_DIR)
mkdir $(STAGING_DIR)
cp -R app-skeleton "$(APP_DIR)"
+ mkdir "$(APP_BIN_DIR)"
cp Info.plist "$(APP_DIR)/Contents/"
cp launcher "$(APP_BIN_DIR)/"
- ./cp-with-libs ../../src/chocolate-doom "$(APP_BIN_DIR)"
+ ./cp-with-libs $(TOPLEVEL)/src/chocolate-doom "$(APP_BIN_DIR)"
$(STRIP) "$(APP_BIN_DIR)/chocolate-doom"
- ./cp-with-libs ../../setup/chocolate-setup "$(APP_BIN_DIR)"
+ ./cp-with-libs $(TOPLEVEL)/setup/chocolate-setup "$(APP_BIN_DIR)"
$(STRIP) "$(APP_BIN_DIR)/chocolate-setup"
- for d in $(DOC_FILES); do cp ../../$$d $(STAGING_DIR)/; done
+ for d in $(DOC_FILES); do cp $(TOPLEVEL)/$$d $(STAGING_DIR)/; done
find $(STAGING_DIR) -name .svn -delete -exec rm -rf {} \; || true
@@ -53,7 +49,7 @@ clean : launcher_clean
# Launcher build:
-CFLAGS = -Wall -I../..
+CFLAGS = -Wall -I$(TOPLEVEL)
# Are we building using gs_make?
diff --git a/pkg/osx/config.make.in b/pkg/osx/config.make.in
deleted file mode 100644
index 67f1c968..00000000
--- a/pkg/osx/config.make.in
+++ /dev/null
@@ -1,9 +0,0 @@
-# File included by the main makefile that contains details
-# about the package name, generated by configure.
-
-PACKAGE = @PACKAGE@
-PACKAGE_NAME = @PACKAGE_NAME@
-PACKAGE_STRING = @PACKAGE_STRING@
-PACKAGE_TARNAME = @PACKAGE_TARNAME@
-PACKAGE_VERSION = @PACKAGE_VERSION@
-
diff --git a/pkg/win32/GNUmakefile b/pkg/win32/GNUmakefile
new file mode 100644
index 00000000..93c6abe1
--- /dev/null
+++ b/pkg/win32/GNUmakefile
@@ -0,0 +1,26 @@
+
+include ../config.make
+
+TOPLEVEL=../..
+
+EXE_FILES=$(TOPLEVEL)/src/$(PACKAGE_TARNAME).exe \
+ $(TOPLEVEL)/src/chocolate-server.exe \
+ $(TOPLEVEL)/setup/chocolate-setup.exe
+
+DLL_FILES=$(TOPLEVEL)/src/SDL.dll \
+ $(TOPLEVEL)/src/SDL_mixer.dll \
+ $(TOPLEVEL)/src/SDL_net.dll
+
+$(PACKAGE_TARNAME)-$(PACKAGE_VERSION)-win32.zip : staging
+ zip -j -r $@ staging/
+
+staging: $(EXE_FILES) $(DLL_FILES) $(patsubst %,../../%,$(DOC_FILES))
+ rm -rf staging
+ mkdir staging
+ cp $(EXE_FILES) $(DLL_FILES) staging/
+ $(STRIP) staging/*.exe
+ for f in $(DOC_FILES); do \
+ cp $(TOPLEVEL)/$$f staging/$$f.txt; \
+ unix2dos staging/$$f.txt; \
+ done
+
diff --git a/pkg/win32/GNUmakefile.am b/pkg/win32/GNUmakefile.am
deleted file mode 100644
index ed86d2cc..00000000
--- a/pkg/win32/GNUmakefile.am
+++ /dev/null
@@ -1,35 +0,0 @@
-
-TOPLEVEL=../..
-
-EXE_FILES=$(TOPLEVEL)/src/@PACKAGE_TARNAME@.exe \
- $(TOPLEVEL)/src/chocolate-server.exe \
- $(TOPLEVEL)/setup/chocolate-setup.exe
-
-DLL_FILES=$(TOPLEVEL)/src/SDL.dll \
- $(TOPLEVEL)/src/SDL_mixer.dll \
- $(TOPLEVEL)/src/SDL_net.dll
-
-DOC_FILES=README \
- COPYING \
- ChangeLog \
- NEWS \
- BUGS \
- CMDLINE \
- TODO
-
-EXTRA_DIST=README
-noinst_DATA=@PACKAGE_TARNAME@-@PACKAGE_VERSION@-win32.zip
-
-@PACKAGE_TARNAME@-@PACKAGE_VERSION@-win32.zip : staging
- zip -j -r $@ staging/
-
-staging: $(EXE_FILES) $(DLL_FILES) $(patsubst %,../../%,$(DOC_FILES))
- rm -rf staging
- mkdir staging
- cp $(EXE_FILES) $(DLL_FILES) staging/
- $(STRIP) staging/*.exe
- for f in $(DOC_FILES); do \
- cp $(TOPLEVEL)/$$f staging/$$f.txt; \
- unix2dos staging/$$f.txt; \
- done
-
diff --git a/pkg/wince/GNUmakefile b/pkg/wince/GNUmakefile
new file mode 100644
index 00000000..073346d7
--- /dev/null
+++ b/pkg/wince/GNUmakefile
@@ -0,0 +1,10 @@
+
+include ../config.make
+
+DEPS=$(shell ./wince-cabgen -d $(CONFIG_FILE))
+CONFIG_FILE=wince-cab.cfg
+OUTPUT_FILE=$(PACKAGE_TARNAME)-$(PACKAGE_VERSION).cab
+
+$(OUTPUT_FILE) : $(CONFIG_FILE) $(DEPS)
+ ./wince-cabgen $< $@
+
diff --git a/pkg/wince/GNUmakefile.am b/pkg/wince/GNUmakefile.am
deleted file mode 100644
index e710e679..00000000
--- a/pkg/wince/GNUmakefile.am
+++ /dev/null
@@ -1,12 +0,0 @@
-
-DEPS=$(shell ./wince-cabgen -d $(CONFIG_FILE))
-CONFIG_FILE=wince-cab.cfg
-OUTPUT_FILE=@PACKAGE_TARNAME@-@PACKAGE_VERSION@.cab
-
-EXTRA_DIST=wince-cabgen $(CONFIG_FILE)
-
-noinst_DATA = $(OUTPUT_FILE)
-
-$(OUTPUT_FILE) : $(CONFIG_FILE) $(DEPS)
- ./wince-cabgen $< $@
-
diff --git a/wince/.gitignore b/wince/.gitignore
new file mode 100644
index 00000000..051d1bd5
--- /dev/null
+++ b/wince/.gitignore
@@ -0,0 +1,3 @@
+Makefile
+Makefile.in
+.deps
--
cgit v1.2.3
From 6fb7afc47cb78584d19ccb10284dd20243b06540 Mon Sep 17 00:00:00 2001
From: Simon Howard
Date: Tue, 5 Jan 2010 17:20:58 +0000
Subject: Add "clean" target to package makefiles.
Subversion-branch: /trunk/chocolate-doom
Subversion-revision: 1791
---
pkg/win32/GNUmakefile | 8 +++++++-
pkg/wince/GNUmakefile | 3 +++
2 files changed, 10 insertions(+), 1 deletion(-)
diff --git a/pkg/win32/GNUmakefile b/pkg/win32/GNUmakefile
index 93c6abe1..626f1845 100644
--- a/pkg/win32/GNUmakefile
+++ b/pkg/win32/GNUmakefile
@@ -11,7 +11,9 @@ DLL_FILES=$(TOPLEVEL)/src/SDL.dll \
$(TOPLEVEL)/src/SDL_mixer.dll \
$(TOPLEVEL)/src/SDL_net.dll
-$(PACKAGE_TARNAME)-$(PACKAGE_VERSION)-win32.zip : staging
+ZIP=$(PACKAGE_TARNAME)-$(PACKAGE_VERSION)-win32.zip
+
+$(ZIP) : staging
zip -j -r $@ staging/
staging: $(EXE_FILES) $(DLL_FILES) $(patsubst %,../../%,$(DOC_FILES))
@@ -24,3 +26,7 @@ staging: $(EXE_FILES) $(DLL_FILES) $(patsubst %,../../%,$(DOC_FILES))
unix2dos staging/$$f.txt; \
done
+clean:
+ rm -f $(ZIP)
+ rm -rf staging
+
diff --git a/pkg/wince/GNUmakefile b/pkg/wince/GNUmakefile
index 073346d7..c237922e 100644
--- a/pkg/wince/GNUmakefile
+++ b/pkg/wince/GNUmakefile
@@ -8,3 +8,6 @@ OUTPUT_FILE=$(PACKAGE_TARNAME)-$(PACKAGE_VERSION).cab
$(OUTPUT_FILE) : $(CONFIG_FILE) $(DEPS)
./wince-cabgen $< $@
+clean:
+ rm -f $(OUTPUT_FILE)
+
--
cgit v1.2.3
From d109ab268f7c7d140bf76d30b4526ef836e070fe Mon Sep 17 00:00:00 2001
From: Simon Howard
Date: Sat, 9 Jan 2010 18:38:48 +0000
Subject: Hook in AppController as delegate for application, add file
associations to property list file.
Subversion-branch: /trunk/chocolate-doom
Subversion-revision: 1792
---
pkg/osx/AppController.m | 1 +
pkg/osx/Info.plist.in | 30 +++++++++++++++++++++
.../Contents/Resources/launcher.nib/classes.nib | 6 +++++
.../Contents/Resources/launcher.nib/info.nib | 4 +--
.../Resources/launcher.nib/keyedobjects.nib | Bin 17192 -> 17360 bytes
5 files changed, 39 insertions(+), 2 deletions(-)
diff --git a/pkg/osx/AppController.m b/pkg/osx/AppController.m
index 81dc56a9..bf72af63 100644
--- a/pkg/osx/AppController.m
+++ b/pkg/osx/AppController.m
@@ -76,6 +76,7 @@
- (BOOL)application:(NSApplication *)application openFile:(NSString *)fileName
{
+ printf("File selected to open: '%s'\n", [fileName UTF8String]);
return NO;
}
diff --git a/pkg/osx/Info.plist.in b/pkg/osx/Info.plist.in
index a7a33b84..8b19777f 100644
--- a/pkg/osx/Info.plist.in
+++ b/pkg/osx/Info.plist.in
@@ -26,5 +26,35 @@
NSApplication
NSMainNibFile
launcher
+
+
+
+ CFBundleDocumentTypes
+
+
+ CFBundleTypeName
+ Doom WAD file
+ CFBundleTypeIconFile
+ app.icns
+ CFBundleTypeRole
+ Viewer
+ CFBundleTypeExtensions
+
+ wad
+
+
+
+ CFBundleTypeName
+ Dehacked patch
+ CFBundleTypeIconFile
+ app.icns
+ CFBundleTypeRole
+ Viewer
+ CFBundleTypeExtensions
+
+ deh
+
+
+
diff --git a/pkg/osx/app-skeleton/Contents/Resources/launcher.nib/classes.nib b/pkg/osx/app-skeleton/Contents/Resources/launcher.nib/classes.nib
index 9092e44b..3ff47e71 100644
--- a/pkg/osx/app-skeleton/Contents/Resources/launcher.nib/classes.nib
+++ b/pkg/osx/app-skeleton/Contents/Resources/launcher.nib/classes.nib
@@ -1,5 +1,11 @@
{
IBClasses = (
+ {
+ CLASS = AppController;
+ LANGUAGE = ObjC;
+ OUTLETS = {launcherManager = id; };
+ SUPERCLASS = NSObject;
+ },
{CLASS = FirstResponder; LANGUAGE = ObjC; SUPERCLASS = NSObject; },
{
ACTIONS = {closeConfigWindow = id; openConfigWindow = id; };
diff --git a/pkg/osx/app-skeleton/Contents/Resources/launcher.nib/info.nib b/pkg/osx/app-skeleton/Contents/Resources/launcher.nib/info.nib
index 63067b23..aecf812a 100644
--- a/pkg/osx/app-skeleton/Contents/Resources/launcher.nib/info.nib
+++ b/pkg/osx/app-skeleton/Contents/Resources/launcher.nib/info.nib
@@ -3,7 +3,7 @@
IBDocumentLocation
- 172 70 612 260 0 0 1440 878
+ 170 140 612 260 0 0 1440 878
IBEditorPositions
29
@@ -13,9 +13,9 @@
446.1
IBOpenObjects
+ 21
29
227
- 21
IBSystem Version
8S2167
diff --git a/pkg/osx/app-skeleton/Contents/Resources/launcher.nib/keyedobjects.nib b/pkg/osx/app-skeleton/Contents/Resources/launcher.nib/keyedobjects.nib
index 85980d2d..345ce976 100644
Binary files a/pkg/osx/app-skeleton/Contents/Resources/launcher.nib/keyedobjects.nib and b/pkg/osx/app-skeleton/Contents/Resources/launcher.nib/keyedobjects.nib differ
--
cgit v1.2.3
From c2f2fa12a68626a3d2a25231d0aa1c6146d555c3 Mon Sep 17 00:00:00 2001
From: Simon Howard
Date: Sat, 9 Jan 2010 18:54:04 +0000
Subject: Initial code to identify file type by extension and add file to
command line.
Subversion-branch: /trunk/chocolate-doom
Subversion-revision: 1793
---
pkg/osx/AppController.h | 5 +++--
pkg/osx/AppController.m | 25 ++++++++++++++++++++++---
pkg/osx/LauncherManager.h | 3 +++
pkg/osx/LauncherManager.m | 6 ++++++
4 files changed, 34 insertions(+), 5 deletions(-)
diff --git a/pkg/osx/AppController.h b/pkg/osx/AppController.h
index 80f9a461..6714eb2f 100644
--- a/pkg/osx/AppController.h
+++ b/pkg/osx/AppController.h
@@ -24,11 +24,12 @@
#define LAUNCHER_APPCONTROLLER_H
#include
-// Uncomment if your application is Renaissance-based
-//#include
+
+#include "LauncherManager.h"
@interface AppController : NSObject
{
+ LauncherManager *launcherManager;
}
+ (void)initialize;
diff --git a/pkg/osx/AppController.m b/pkg/osx/AppController.m
index bf72af63..03a5965b 100644
--- a/pkg/osx/AppController.m
+++ b/pkg/osx/AppController.m
@@ -74,10 +74,29 @@
{
}
-- (BOOL)application:(NSApplication *)application openFile:(NSString *)fileName
+- (BOOL) application:(NSApplication *) application
+ openFile:(NSString *) fileName
{
- printf("File selected to open: '%s'\n", [fileName UTF8String]);
- return NO;
+ NSString *extension;
+
+ extension = [fileName pathExtension];
+
+ if (![extension caseInsensitiveCompare: @"wad"])
+ {
+ [self->launcherManager addFileToCommandLine: fileName
+ forArgument: @"-merge"];
+ }
+ else if (![extension caseInsensitiveCompare: @"deh"])
+ {
+ [self->launcherManager addFileToCommandLine: fileName
+ forArgument: @"-deh"];
+ }
+ else
+ {
+ return NO;
+ }
+
+ return YES;
}
- (void)showPrefPanel:(id)sender
diff --git a/pkg/osx/LauncherManager.h b/pkg/osx/LauncherManager.h
index 11852dcf..de95265a 100644
--- a/pkg/osx/LauncherManager.h
+++ b/pkg/osx/LauncherManager.h
@@ -40,6 +40,9 @@
- (void) launch: (id)sender;
- (void) runSetup: (id)sender;
- (void) awakeFromNib;
+- (void) addFileToCommandLine: (NSString *) fileName
+ forArgument: (NSString *) args;
+
@end
diff --git a/pkg/osx/LauncherManager.m b/pkg/osx/LauncherManager.m
index cda7b3e7..ff90b987 100644
--- a/pkg/osx/LauncherManager.m
+++ b/pkg/osx/LauncherManager.m
@@ -61,6 +61,12 @@
}
}
+- (void) addFileToCommandLine: (NSString *) fileName
+ forArgument: (NSString *) args
+{
+ // TODO
+}
+
- (void) launch: (id)sender
{
NSString *iwad;
--
cgit v1.2.3
From 45f543dbe6800827907fd78649d30480a6d0bd31 Mon Sep 17 00:00:00 2001
From: Simon Howard
Date: Sat, 9 Jan 2010 20:42:30 +0000
Subject: Add file to command line when opened; add link from AppController to
LauncherManager.
Subversion-branch: /trunk/chocolate-doom
Subversion-revision: 1794
---
pkg/osx/LauncherManager.m | 12 +++++++++++-
.../Contents/Resources/launcher.nib/info.nib | 4 ++--
.../Resources/launcher.nib/keyedobjects.nib | Bin 17360 -> 17451 bytes
3 files changed, 13 insertions(+), 3 deletions(-)
diff --git a/pkg/osx/LauncherManager.m b/pkg/osx/LauncherManager.m
index ff90b987..52ce7f82 100644
--- a/pkg/osx/LauncherManager.m
+++ b/pkg/osx/LauncherManager.m
@@ -64,7 +64,17 @@
- (void) addFileToCommandLine: (NSString *) fileName
forArgument: (NSString *) args
{
- // TODO
+ NSString *newCommandLine;
+printf("Add file: %s %s\n", [args UTF8String], [fileName UTF8String]);
+
+ newCommandLine = [self->commandLineArguments stringValue];
+ newCommandLine = [newCommandLine stringByAppendingString: @" "];
+ newCommandLine = [newCommandLine stringByAppendingString: args];
+ newCommandLine = [newCommandLine stringByAppendingString: @" \""];
+ newCommandLine = [newCommandLine stringByAppendingString: fileName];
+ newCommandLine = [newCommandLine stringByAppendingString: @"\""];
+
+ [self->commandLineArguments setStringValue: newCommandLine];
}
- (void) launch: (id)sender
diff --git a/pkg/osx/app-skeleton/Contents/Resources/launcher.nib/info.nib b/pkg/osx/app-skeleton/Contents/Resources/launcher.nib/info.nib
index aecf812a..21e3bb1d 100644
--- a/pkg/osx/app-skeleton/Contents/Resources/launcher.nib/info.nib
+++ b/pkg/osx/app-skeleton/Contents/Resources/launcher.nib/info.nib
@@ -13,9 +13,9 @@
446.1
IBOpenObjects
- 21
- 29
227
+ 29
+ 21
IBSystem Version
8S2167
diff --git a/pkg/osx/app-skeleton/Contents/Resources/launcher.nib/keyedobjects.nib b/pkg/osx/app-skeleton/Contents/Resources/launcher.nib/keyedobjects.nib
index 345ce976..680eaff7 100644
Binary files a/pkg/osx/app-skeleton/Contents/Resources/launcher.nib/keyedobjects.nib and b/pkg/osx/app-skeleton/Contents/Resources/launcher.nib/keyedobjects.nib differ
--
cgit v1.2.3
From a4f038a36435b5d4dd726c2f9e3f6a34e0269ec6 Mon Sep 17 00:00:00 2001
From: Simon Howard
Date: Sat, 9 Jan 2010 21:06:31 +0000
Subject: Clear existing arguments when adding a file.
Subversion-branch: /trunk/chocolate-doom
Subversion-revision: 1795
---
pkg/osx/LauncherManager.m | 8 ++------
1 file changed, 2 insertions(+), 6 deletions(-)
diff --git a/pkg/osx/LauncherManager.m b/pkg/osx/LauncherManager.m
index 52ce7f82..bef0520e 100644
--- a/pkg/osx/LauncherManager.m
+++ b/pkg/osx/LauncherManager.m
@@ -62,15 +62,11 @@
}
- (void) addFileToCommandLine: (NSString *) fileName
- forArgument: (NSString *) args
+ forArgument: (NSString *) arg
{
NSString *newCommandLine;
-printf("Add file: %s %s\n", [args UTF8String], [fileName UTF8String]);
- newCommandLine = [self->commandLineArguments stringValue];
- newCommandLine = [newCommandLine stringByAppendingString: @" "];
- newCommandLine = [newCommandLine stringByAppendingString: args];
- newCommandLine = [newCommandLine stringByAppendingString: @" \""];
+ newCommandLine = [arg stringByAppendingString: @" \""];
newCommandLine = [newCommandLine stringByAppendingString: fileName];
newCommandLine = [newCommandLine stringByAppendingString: @"\""];
--
cgit v1.2.3
From da950e23214018c7dc80dff0cb5566ad46bf30cf Mon Sep 17 00:00:00 2001
From: Simon Howard
Date: Sun, 10 Jan 2010 18:42:35 +0000
Subject: Recursively copy library dependencies into destination package.
Identify libraries to be installed based on the path in which they are
located, rather than whether there is "libSDL" in the name. Use
install_name_tool to change the search path so that the system looks for
libraries in @executable_path@ rather than their location on the machine upon
which the program was built.
Subversion-branch: /trunk/chocolate-doom
Subversion-revision: 1796
---
pkg/osx/cp-with-libs | 102 ++++++++++++++++++++++++++++++++++++++++++++++-----
1 file changed, 93 insertions(+), 9 deletions(-)
diff --git a/pkg/osx/cp-with-libs b/pkg/osx/cp-with-libs
index bb4fa001..18274172 100755
--- a/pkg/osx/cp-with-libs
+++ b/pkg/osx/cp-with-libs
@@ -1,16 +1,100 @@
-#!/bin/sh
+#!/bin/bash
#
# Copy a program to the specified destination, along
-# with SDL libraries it depends upon.
+# with libraries it depends upon.
-BINARY=$1
-DEST=$2
+src_bin=$1
+dest_dir=$2
-cp "$BINARY" "$DEST"
+# Returns true if the specified file is a dylib.
-# Copy libraries; only those with libSDL in the name
+is_dylib() {
+ case "$1" in
+ *.dylib)
+ true
+ ;;
+ *)
+ false
+ ;;
+ esac
+}
-otool -L "$BINARY" | grep libSDL | sed 's/^.//; s/ (.*//' | while read; do
- cp "$REPLY" "$DEST"
-done
+# Returns true if the specified file is in a system location
+# (/System or /usr):
+
+is_sys_lib() {
+ case "$1" in
+ /System/*)
+ true
+ ;;
+ /usr/*)
+ true
+ ;;
+ *)
+ false
+ ;;
+ esac
+}
+
+# Install the specified file to the location in dest_dir, along with
+# any libraries it depends upon (recursively):
+
+install_with_deps() {
+ local src_file
+ local bin_name
+ local dest_file
+ local lib_name
+
+ src_file=$1
+ bin_name=$(basename "$src_file")
+ dest_file="$dest_dir/$bin_name"
+
+ # Already copied into the package? Don't copy again.
+ # Prevents endless recursion.
+
+ if [ -e "$dest_file" ]; then
+ return
+ fi
+
+ echo "Installing $bin_name..."
+
+ # Copy file into package.
+
+ cp "$src_file" "$dest_file"
+
+ # Copy libraries that this file depends on:
+
+ otool -L "$src_file" | tail -n +2 | sed 's/^.//; s/ (.*//' | while read; do
+
+ # Don't copy system libraries
+
+ if is_sys_lib "$REPLY"; then
+ continue
+ fi
+
+ #echo " - $bin_name depends on $REPLY"
+
+ # Copy this library into the package, and:
+ # recursively install any libraries that _this_ library depends on:
+
+ install_with_deps "$REPLY"
+
+ # Change destination binary to depend on the
+ # copy inside the package:
+
+ lib_name=$(basename "$REPLY")
+ install_name_tool -change "$REPLY" "@executable_path@/$lib_name" \
+ "$dest_file"
+ done
+
+ # If this is a library that we have installed, change its id:
+
+ if is_dylib "$dest_file"; then
+ install_name_tool -id "@executable_path@/$bin_name" "$dest_file"
+ fi
+}
+
+# Install the file, and recursively install any libraries:
+
+install_with_deps "$src_bin"
--
cgit v1.2.3
From 7b07b99fa23b112986a6eb54fbec218f7069ef71 Mon Sep 17 00:00:00 2001
From: Simon Howard
Date: Sun, 10 Jan 2010 18:48:21 +0000
Subject: Install docs with a single cp, rather than using a for loop.
Subversion-branch: /trunk/chocolate-doom
Subversion-revision: 1797
---
pkg/osx/GNUmakefile | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/pkg/osx/GNUmakefile b/pkg/osx/GNUmakefile
index 92fc5b0f..3cab6bf7 100644
--- a/pkg/osx/GNUmakefile
+++ b/pkg/osx/GNUmakefile
@@ -39,7 +39,7 @@ $(STAGING_DIR): launcher $(TOPLEVEL_DOCS)
./cp-with-libs $(TOPLEVEL)/setup/chocolate-setup "$(APP_BIN_DIR)"
$(STRIP) "$(APP_BIN_DIR)/chocolate-setup"
- for d in $(DOC_FILES); do cp $(TOPLEVEL)/$$d $(STAGING_DIR)/; done
+ cp $(TOPLEVEL_DOCS) "$(STAGING_DIR)"
find $(STAGING_DIR) -name .svn -delete -exec rm -rf {} \; || true
--
cgit v1.2.3
From 213b88ef3557f680233c6165b5dc6f2185c0f482 Mon Sep 17 00:00:00 2001
From: Simon Howard
Date: Sun, 10 Jan 2010 20:46:15 +0000
Subject: Change "@executable_path@" to "@executable_path"
Subversion-branch: /trunk/chocolate-doom
Subversion-revision: 1799
---
pkg/osx/cp-with-libs | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/pkg/osx/cp-with-libs b/pkg/osx/cp-with-libs
index 18274172..04fb5bc6 100755
--- a/pkg/osx/cp-with-libs
+++ b/pkg/osx/cp-with-libs
@@ -83,14 +83,14 @@ install_with_deps() {
# copy inside the package:
lib_name=$(basename "$REPLY")
- install_name_tool -change "$REPLY" "@executable_path@/$lib_name" \
+ install_name_tool -change "$REPLY" "@executable_path/$lib_name" \
"$dest_file"
done
# If this is a library that we have installed, change its id:
if is_dylib "$dest_file"; then
- install_name_tool -id "@executable_path@/$bin_name" "$dest_file"
+ install_name_tool -id "@executable_path/$bin_name" "$dest_file"
fi
}
--
cgit v1.2.3
From 550b95f79cf8022acc5b335f6ef948b32cd2c615 Mon Sep 17 00:00:00 2001
From: Simon Howard
Date: Mon, 11 Jan 2010 01:35:04 +0000
Subject: When launching a file from the finder, add the new file into the
command line at the appropriate position in the command line string.
Subversion-branch: /trunk/chocolate-doom
Subversion-revision: 1802
---
pkg/osx/LauncherManager.m | 178 ++++++++++++++++++++++++++++++++++++++++++++--
1 file changed, 173 insertions(+), 5 deletions(-)
diff --git a/pkg/osx/LauncherManager.m b/pkg/osx/LauncherManager.m
index bef0520e..a67e5cc9 100644
--- a/pkg/osx/LauncherManager.m
+++ b/pkg/osx/LauncherManager.m
@@ -61,16 +61,184 @@
}
}
+// Get the next command line argument from the command line.
+// The position counter used to iterate over arguments is in 'pos'.
+// The index of the argument that was found is saved in arg_pos.
+
+static NSString *GetNextArgument(NSString *commandLine, int *pos, int *arg_pos)
+{
+ NSRange arg_range;
+
+ // Skip past any whitespace
+
+ while (*pos < [commandLine length]
+ && isspace([commandLine characterAtIndex: *pos]))
+ {
+ ++*pos;
+ }
+
+ if (*pos >= [commandLine length])
+ {
+ return nil;
+ }
+
+ // We are at the start of the argument. This may be a quoted
+ // string argument, or a "normal" one.
+
+ if ([commandLine characterAtIndex: *pos] == '\"')
+ {
+ // Quoted string, skip past first quote
+
+ ++*pos;
+
+ // Save start position:
+
+ *arg_pos = *pos;
+
+ while (*pos < [commandLine length]
+ && [commandLine characterAtIndex: *pos] != '\"')
+ {
+ ++*pos;
+ }
+
+ // Unexpected end of string?
+
+ if (*pos >= [commandLine length])
+ {
+ return nil;
+ }
+
+ arg_range = NSMakeRange(*arg_pos, *pos - *arg_pos);
+
+ // Skip past last quote
+
+ ++*pos;
+ }
+ else
+ {
+ // Normal argument
+
+ // Save position:
+
+ *arg_pos = *pos;
+
+ // Read until end:
+
+ while (*pos < [commandLine length]
+ && !isspace([commandLine characterAtIndex: *pos]))
+ {
+ ++*pos;
+ }
+
+ arg_range = NSMakeRange(*arg_pos, *pos - *arg_pos);
+ }
+
+ return [commandLine substringWithRange: arg_range];
+}
+
+// Given the specified command line argument, find the index
+// to insert the new file within the command line. Returns -1 if the
+// argument is not already within the arguments string.
+
+static int GetFileInsertIndex(NSString *commandLine, NSString *needle)
+{
+ NSString *arg;
+ int arg_pos;
+ int pos;
+
+ pos = 0;
+
+ // Find the command line parameter we are searching
+ // for (-merge, -deh, etc)
+
+ for (;;)
+ {
+ arg = GetNextArgument(commandLine, &pos, &arg_pos);
+
+ // Searched to end of string and never found?
+
+ if (arg == nil)
+ {
+ return -1;
+ }
+
+ if (![arg caseInsensitiveCompare: needle])
+ {
+ break;
+ }
+ }
+
+ // Now skip over existing files. For example, if we
+ // have -file foo.wad bar.wad, the new file should be appended
+ // to the end of the list.
+
+ for (;;)
+ {
+ arg = GetNextArgument(commandLine, &pos, &arg_pos);
+
+ // If we search to the end of the string now, it is fine;
+ // the new string should be added to the end of the command
+ // line. Otherwise, if we find an argument that begins
+ // with '-', it is a new command line parameter and the end
+ // of the list.
+
+ if (arg == nil || [arg characterAtIndex: 0] == '-')
+ {
+ break;
+ }
+ }
+
+ // arg_pos should now contain the offset to insert the new filename.
+
+ return arg_pos;
+}
+
- (void) addFileToCommandLine: (NSString *) fileName
forArgument: (NSString *) arg
{
- NSString *newCommandLine;
+ NSString *commandLine;
+ int insert_pos;
+
+ // Get the current command line
+
+ commandLine = [self->commandLineArguments stringValue];
+
+ // Find the location to insert the new filename:
+
+ insert_pos = GetFileInsertIndex(commandLine, arg);
+
+ // If position < 0, we should add the new argument and filename
+ // to the end. Otherwise, append the new filename to the existing
+ // list of files.
+
+ if (insert_pos < 0)
+ {
+ commandLine = [commandLine stringByAppendingString: @" "];
+ commandLine = [commandLine stringByAppendingString: arg];
+
+ commandLine = [commandLine stringByAppendingString: @" \""];
+ commandLine = [commandLine stringByAppendingString: fileName];
+ commandLine = [commandLine stringByAppendingString: @"\""];
+ }
+ else
+ {
+ NSString *start;
+ NSString *end;
- newCommandLine = [arg stringByAppendingString: @" \""];
- newCommandLine = [newCommandLine stringByAppendingString: fileName];
- newCommandLine = [newCommandLine stringByAppendingString: @"\""];
+ // Divide existing command line in half:
+
+ start = [commandLine substringToIndex: insert_pos];
+ end = [commandLine substringFromIndex: insert_pos];
+
+ // Construct new command line:
+
+ commandLine = [start stringByAppendingString: @" \""];
+ commandLine = [commandLine stringByAppendingString: fileName];
+ commandLine = [commandLine stringByAppendingString: @"\" "];
+ commandLine = [commandLine stringByAppendingString: end];
+ }
- [self->commandLineArguments setStringValue: newCommandLine];
+ [self->commandLineArguments setStringValue: commandLine];
}
- (void) launch: (id)sender
--
cgit v1.2.3
From 160ff32f2fb8ba7112938790044684c61a0b07b1 Mon Sep 17 00:00:00 2001
From: Simon Howard
Date: Mon, 11 Jan 2010 19:10:42 +0000
Subject: Insert new files into the command line at the correct location,
allowing multiple files to be opened at once.
Subversion-branch: /trunk/chocolate-doom
Subversion-revision: 1803
---
pkg/osx/AppController.h | 1 +
pkg/osx/AppController.m | 15 +++++++++++++++
pkg/osx/LauncherManager.h | 1 +
pkg/osx/LauncherManager.m | 47 ++++++++++++++++++++++++++++++++++++++++-------
4 files changed, 57 insertions(+), 7 deletions(-)
diff --git a/pkg/osx/AppController.h b/pkg/osx/AppController.h
index 6714eb2f..88b59043 100644
--- a/pkg/osx/AppController.h
+++ b/pkg/osx/AppController.h
@@ -30,6 +30,7 @@
@interface AppController : NSObject
{
LauncherManager *launcherManager;
+ BOOL filesAdded;
}
+ (void)initialize;
diff --git a/pkg/osx/AppController.m b/pkg/osx/AppController.m
index 03a5965b..32afd9c4 100644
--- a/pkg/osx/AppController.m
+++ b/pkg/osx/AppController.m
@@ -46,6 +46,8 @@
{
}
+ self->filesAdded = NO;
+
return self;
}
@@ -79,6 +81,17 @@
{
NSString *extension;
+ // If this is the first file added, clear out the existing
+ // command line. This allows us to select multiple files
+ // in the finder and open them all together (for TCs, etc).
+
+ if (!self->filesAdded)
+ {
+ [self->launcherManager clearCommandLine];
+ }
+
+ // Add file with appropriate command line option based on extension:
+
extension = [fileName pathExtension];
if (![extension caseInsensitiveCompare: @"wad"])
@@ -96,6 +109,8 @@
return NO;
}
+ self->filesAdded = YES;
+
return YES;
}
diff --git a/pkg/osx/LauncherManager.h b/pkg/osx/LauncherManager.h
index de95265a..eac4cfba 100644
--- a/pkg/osx/LauncherManager.h
+++ b/pkg/osx/LauncherManager.h
@@ -40,6 +40,7 @@
- (void) launch: (id)sender;
- (void) runSetup: (id)sender;
- (void) awakeFromNib;
+- (void) clearCommandLine;
- (void) addFileToCommandLine: (NSString *) fileName
forArgument: (NSString *) args;
diff --git a/pkg/osx/LauncherManager.m b/pkg/osx/LauncherManager.m
index a67e5cc9..0cde9f6e 100644
--- a/pkg/osx/LauncherManager.m
+++ b/pkg/osx/LauncherManager.m
@@ -79,6 +79,7 @@ static NSString *GetNextArgument(NSString *commandLine, int *pos, int *arg_pos)
if (*pos >= [commandLine length])
{
+ *arg_pos = *pos;
return nil;
}
@@ -193,6 +194,42 @@ static int GetFileInsertIndex(NSString *commandLine, NSString *needle)
return arg_pos;
}
+// Given the specified string, append a filename, quoted if necessary.
+
+static NSString *AppendQuotedFilename(NSString *str, NSString *fileName)
+{
+ int i;
+
+ // Search the filename for spaces, and quote if necessary.
+
+ for (i=0; i<[fileName length]; ++i)
+ {
+ if (isspace([fileName characterAtIndex: i]))
+ {
+ str = [str stringByAppendingString: @" \""];
+ str = [str stringByAppendingString: fileName];
+ str = [str stringByAppendingString: @"\" "];
+
+ return str;
+ }
+ }
+
+ str = [str stringByAppendingString: @" "];
+ str = [str stringByAppendingString: fileName];
+
+ return str;
+}
+
+// Clear out the existing command line options.
+// Invoked before the first file is added.
+
+- (void) clearCommandLine
+{
+ [self->commandLineArguments setStringValue: @""];
+}
+
+// Add a file to the command line to load with the game.
+
- (void) addFileToCommandLine: (NSString *) fileName
forArgument: (NSString *) arg
{
@@ -215,10 +252,7 @@ static int GetFileInsertIndex(NSString *commandLine, NSString *needle)
{
commandLine = [commandLine stringByAppendingString: @" "];
commandLine = [commandLine stringByAppendingString: arg];
-
- commandLine = [commandLine stringByAppendingString: @" \""];
- commandLine = [commandLine stringByAppendingString: fileName];
- commandLine = [commandLine stringByAppendingString: @"\""];
+ commandLine = AppendQuotedFilename(commandLine, fileName);
}
else
{
@@ -232,9 +266,8 @@ static int GetFileInsertIndex(NSString *commandLine, NSString *needle)
// Construct new command line:
- commandLine = [start stringByAppendingString: @" \""];
- commandLine = [commandLine stringByAppendingString: fileName];
- commandLine = [commandLine stringByAppendingString: @"\" "];
+ commandLine = AppendQuotedFilename(start, fileName);
+ commandLine = [commandLine stringByAppendingString: @" "];
commandLine = [commandLine stringByAppendingString: end];
}
--
cgit v1.2.3
From 96fc229a12f020a3c51cca8ea1c88887200a2621 Mon Sep 17 00:00:00 2001
From: Simon Howard
Date: Tue, 12 Jan 2010 01:20:48 +0000
Subject: Add document icon file and use for file associations.
Subversion-branch: /trunk/chocolate-doom
Subversion-revision: 1804
---
pkg/Makefile.am | 1 +
pkg/osx/Info.plist.in | 4 ++--
pkg/osx/app-skeleton/Contents/Resources/wadfile.icns | Bin 0 -> 44092 bytes
3 files changed, 3 insertions(+), 2 deletions(-)
create mode 100644 pkg/osx/app-skeleton/Contents/Resources/wadfile.icns
diff --git a/pkg/Makefile.am b/pkg/Makefile.am
index 9a607ee8..b898e728 100644
--- a/pkg/Makefile.am
+++ b/pkg/Makefile.am
@@ -3,6 +3,7 @@ OSX_FILES= \
osx/app-skeleton/Contents/PkgInfo \
osx/app-skeleton/Contents/Resources/128x128.png \
osx/app-skeleton/Contents/Resources/app.icns \
+osx/app-skeleton/Contents/Resources/wadfile.icns \
osx/app-skeleton/Contents/Resources/launcher.nib/classes.nib \
osx/app-skeleton/Contents/Resources/launcher.nib/info.nib \
osx/app-skeleton/Contents/Resources/launcher.nib/keyedobjects.nib \
diff --git a/pkg/osx/Info.plist.in b/pkg/osx/Info.plist.in
index 8b19777f..8b8436f7 100644
--- a/pkg/osx/Info.plist.in
+++ b/pkg/osx/Info.plist.in
@@ -35,7 +35,7 @@
CFBundleTypeName
Doom WAD file
CFBundleTypeIconFile
- app.icns
+ wadfile.icns
CFBundleTypeRole
Viewer
CFBundleTypeExtensions
@@ -47,7 +47,7 @@
CFBundleTypeName
Dehacked patch
CFBundleTypeIconFile
- app.icns
+ wadfile.icns
CFBundleTypeRole
Viewer
CFBundleTypeExtensions
diff --git a/pkg/osx/app-skeleton/Contents/Resources/wadfile.icns b/pkg/osx/app-skeleton/Contents/Resources/wadfile.icns
new file mode 100644
index 00000000..13502a55
Binary files /dev/null and b/pkg/osx/app-skeleton/Contents/Resources/wadfile.icns differ
--
cgit v1.2.3
From a33a26c2c46282d2afdfe543d88bd2ba4373319e Mon Sep 17 00:00:00 2001
From: Simon Howard
Date: Tue, 12 Jan 2010 01:32:24 +0000
Subject: Add missing connection for plutonia.wad set button.
Subversion-branch: /trunk/chocolate-doom
Subversion-revision: 1805
---
.../Contents/Resources/launcher.nib/info.nib | 4 ++--
.../Resources/launcher.nib/keyedobjects.nib | Bin 17451 -> 17541 bytes
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/pkg/osx/app-skeleton/Contents/Resources/launcher.nib/info.nib b/pkg/osx/app-skeleton/Contents/Resources/launcher.nib/info.nib
index 21e3bb1d..aecf812a 100644
--- a/pkg/osx/app-skeleton/Contents/Resources/launcher.nib/info.nib
+++ b/pkg/osx/app-skeleton/Contents/Resources/launcher.nib/info.nib
@@ -13,9 +13,9 @@
446.1
IBOpenObjects
- 227
- 29
21
+ 29
+ 227
IBSystem Version
8S2167
diff --git a/pkg/osx/app-skeleton/Contents/Resources/launcher.nib/keyedobjects.nib b/pkg/osx/app-skeleton/Contents/Resources/launcher.nib/keyedobjects.nib
index 680eaff7..12cf6aa5 100644
Binary files a/pkg/osx/app-skeleton/Contents/Resources/launcher.nib/keyedobjects.nib and b/pkg/osx/app-skeleton/Contents/Resources/launcher.nib/keyedobjects.nib differ
--
cgit v1.2.3
From b777eebd4d4bd3b974b11e1fc4968e6f2b0e65d5 Mon Sep 17 00:00:00 2001
From: Simon Howard
Date: Tue, 12 Jan 2010 20:09:01 +0000
Subject: Place commercial level name strings consecutively in the same array,
so that overflowing the end of one list accesses the start of the next. This
trick is used by pl2.wad for its MAP33 secret level.
Subversion-branch: /trunk/chocolate-doom
Subversion-revision: 1806
---
src/hu_stuff.c | 30 +++++++++++++++++-------------
src/st_stuff.c | 7 -------
2 files changed, 17 insertions(+), 20 deletions(-)
diff --git a/src/hu_stuff.c b/src/hu_stuff.c
index 0ab750fb..9f86c0b9 100644
--- a/src/hu_stuff.c
+++ b/src/hu_stuff.c
@@ -50,9 +50,9 @@
// Locally used constants, shortcuts.
//
#define HU_TITLE (mapnames[(gameepisode-1)*9+gamemap-1])
-#define HU_TITLE2 (mapnames2[gamemap-1])
-#define HU_TITLEP (mapnamesp[gamemap-1])
-#define HU_TITLET (mapnamest[gamemap-1])
+#define HU_TITLE2 (mapnames_commercial[gamemap-1])
+#define HU_TITLEP (mapnames_commercial[gamemap-1 + 32])
+#define HU_TITLET (mapnames_commercial[gamemap-1 + 64])
#define HU_TITLE_CHEX (mapnames[gamemap - 1])
#define HU_TITLEHEIGHT 1
#define HU_TITLEX 0
@@ -171,8 +171,16 @@ char* mapnames[] = // DOOM shareware/registered/retail (Ultimate) names.
"NEWLEVEL"
};
-char* mapnames2[] = // DOOM 2 map names.
+// List of names for levels in commercial IWADs
+// (doom2.wad, plutonia.wad, tnt.wad). These are stored in a
+// single large array; WADs like pl2.wad have a MAP33, and rely on
+// the layout in the Vanilla executable, where it is possible to
+// overflow the end of one array into the next.
+
+char *mapnames_commercial[] =
{
+ // DOOM 2 map names.
+
HUSTR_1,
HUSTR_2,
HUSTR_3,
@@ -206,12 +214,10 @@ char* mapnames2[] = // DOOM 2 map names.
HUSTR_29,
HUSTR_30,
HUSTR_31,
- HUSTR_32
-};
+ HUSTR_32,
+ // Plutonia WAD map names.
-char* mapnamesp[] = // Plutonia WAD map names.
-{
PHUSTR_1,
PHUSTR_2,
PHUSTR_3,
@@ -245,12 +251,10 @@ char* mapnamesp[] = // Plutonia WAD map names.
PHUSTR_29,
PHUSTR_30,
PHUSTR_31,
- PHUSTR_32
-};
-
+ PHUSTR_32,
+
+ // TNT WAD map names.
-char *mapnamest[] = // TNT WAD map names.
-{
THUSTR_1,
THUSTR_2,
THUSTR_3,
diff --git a/src/st_stuff.c b/src/st_stuff.c
index f92d2dda..c3226f1b 100644
--- a/src/st_stuff.c
+++ b/src/st_stuff.c
@@ -259,9 +259,6 @@
// Height, in lines.
#define ST_OUTHEIGHT 1
-#define ST_MAPWIDTH \
- (strlen(mapnames[(gameepisode-1)*9+(gamemap-1)]))
-
#define ST_MAPTITLEX \
(SCREENWIDTH - ST_MAPWIDTH * ST_CHATFONTWIDTH)
@@ -418,10 +415,6 @@ cheatseq_t cheat_clev = CHEAT("idclev", 2);
cheatseq_t cheat_mypos = CHEAT("idmypos", 0);
-//
-extern char* mapnames[];
-
-
//
// STATUS BAR CODE
//
--
cgit v1.2.3
From d1b0870951eaba66da1e11716898b65cbc96302a Mon Sep 17 00:00:00 2001
From: Simon Howard
Date: Tue, 12 Jan 2010 20:09:54 +0000
Subject: Set main menu title based on package name, not fixed string.
Subversion-branch: /trunk/chocolate-doom
Subversion-revision: 1807
---
pkg/osx/AppController.m | 4 +++-
1 file changed, 3 insertions(+), 1 deletion(-)
diff --git a/pkg/osx/AppController.m b/pkg/osx/AppController.m
index 32afd9c4..a26a7c9e 100644
--- a/pkg/osx/AppController.m
+++ b/pkg/osx/AppController.m
@@ -22,6 +22,8 @@
#include "AppController.h"
+#include "config.h"
+
@implementation AppController
+ (void)initialize
@@ -58,7 +60,7 @@
- (void)awakeFromNib
{
- [[NSApp mainMenu] setTitle:@"ChocolateDoom"];
+ [[NSApp mainMenu] setTitle:@PACKAGE_NAME];
}
- (void)applicationDidFinishLaunching:(NSNotification *)aNotif
--
cgit v1.2.3
From 869447ff69c4832dfe0a14c382f67d5dea867def Mon Sep 17 00:00:00 2001
From: Simon Howard
Date: Tue, 12 Jan 2010 20:12:56 +0000
Subject: Move Makefile definitions for CC and STRIP into config.make, use
versions from autoconf.
Subversion-branch: /trunk/chocolate-doom
Subversion-revision: 1808
---
pkg/config.make.in | 27 ++++++++++++++++++---------
pkg/osx/GNUmakefile | 9 ++++-----
2 files changed, 22 insertions(+), 14 deletions(-)
diff --git a/pkg/config.make.in b/pkg/config.make.in
index caedab23..d8d72c60 100644
--- a/pkg/config.make.in
+++ b/pkg/config.make.in
@@ -1,5 +1,14 @@
-# File included by package makefiles that contains details
-# about the package name, generated by configure.
+# Shared file included by the makefiles used to build packages.
+# This contains various information needed by the makefiles,
+# and is autogenerated by configure to include various
+# necessary details.
+
+# Tools needed:
+
+CC = @CC@
+STRIP = @STRIP@
+
+# Package name and version number:
PACKAGE = @PACKAGE@
PACKAGE_NAME = @PACKAGE_NAME@
@@ -9,11 +18,11 @@ PACKAGE_VERSION = @PACKAGE_VERSION@
# Documentation files to distribute with packages.
-DOC_FILES=README \
- COPYING \
- ChangeLog \
- NEWS \
- BUGS \
- CMDLINE \
- TODO
+DOC_FILES = README \
+ COPYING \
+ ChangeLog \
+ NEWS \
+ BUGS \
+ CMDLINE \
+ TODO
diff --git a/pkg/osx/GNUmakefile b/pkg/osx/GNUmakefile
index 3cab6bf7..de2c535a 100644
--- a/pkg/osx/GNUmakefile
+++ b/pkg/osx/GNUmakefile
@@ -1,9 +1,6 @@
include ../config.make
-CC=gcc
-STRIP=strip
-
STAGING_DIR=staging
DMG=$(PACKAGE_TARNAME)-$(PACKAGE_VERSION).dmg
@@ -32,10 +29,12 @@ $(STAGING_DIR): launcher $(TOPLEVEL_DOCS)
cp -R app-skeleton "$(APP_DIR)"
mkdir "$(APP_BIN_DIR)"
cp Info.plist "$(APP_DIR)/Contents/"
+
cp launcher "$(APP_BIN_DIR)/"
+ $(STRIP) "$(APP_BIN_DIR)/launcher"
- ./cp-with-libs $(TOPLEVEL)/src/chocolate-doom "$(APP_BIN_DIR)"
- $(STRIP) "$(APP_BIN_DIR)/chocolate-doom"
+ ./cp-with-libs $(TOPLEVEL)/src/$(PACKAGE_TARNAME) "$(APP_BIN_DIR)"
+ $(STRIP) "$(APP_BIN_DIR)/$(PACKAGE_TARNAME)"
./cp-with-libs $(TOPLEVEL)/setup/chocolate-setup "$(APP_BIN_DIR)"
$(STRIP) "$(APP_BIN_DIR)/chocolate-setup"
--
cgit v1.2.3
From 92eaebfb7a48f05f6f1b3c571b3a703274ac0111 Mon Sep 17 00:00:00 2001
From: Simon Howard
Date: Tue, 12 Jan 2010 20:14:11 +0000
Subject: Rearrange order of Makefile generation to alphabetical order.
Subversion-branch: /trunk/chocolate-doom
Subversion-revision: 1809
---
configure.in | 12 ++++++------
1 file changed, 6 insertions(+), 6 deletions(-)
diff --git a/configure.in b/configure.in
index 8167462e..aa7ce09e 100644
--- a/configure.in
+++ b/configure.in
@@ -115,18 +115,18 @@ AC_DEFUN([AC_DATAROOTDIR_CHECKED])
AC_OUTPUT([
Makefile
-wince/Makefile
-textscreen/Makefile
-textscreen/examples/Makefile
-setup/Makefile
man/Makefile
-src/Makefile
pcsound/Makefile
pkg/Makefile
pkg/config.make
pkg/osx/Info.plist
-src/resource.rc
+src/Makefile
src/doom-screensaver.desktop
+src/resource.rc
+setup/Makefile
setup/setup-res.rc
+textscreen/Makefile
+textscreen/examples/Makefile
+wince/Makefile
])
--
cgit v1.2.3
From b6810a29407df69f57cc3fb00922347fbaeb8550 Mon Sep 17 00:00:00 2001
From: Simon Howard
Date: Tue, 12 Jan 2010 20:15:34 +0000
Subject: Strip executables when building Windows CE packages.
Subversion-branch: /trunk/chocolate-doom
Subversion-revision: 1810
---
pkg/wince/GNUmakefile | 2 ++
1 file changed, 2 insertions(+)
diff --git a/pkg/wince/GNUmakefile b/pkg/wince/GNUmakefile
index c237922e..b6acc3b8 100644
--- a/pkg/wince/GNUmakefile
+++ b/pkg/wince/GNUmakefile
@@ -2,10 +2,12 @@
include ../config.make
DEPS=$(shell ./wince-cabgen -d $(CONFIG_FILE))
+EXECUTABLES=$(filter %.exe, $(DEPS))
CONFIG_FILE=wince-cab.cfg
OUTPUT_FILE=$(PACKAGE_TARNAME)-$(PACKAGE_VERSION).cab
$(OUTPUT_FILE) : $(CONFIG_FILE) $(DEPS)
+ $(STRIP) $(EXECUTABLES)
./wince-cabgen $< $@
clean:
--
cgit v1.2.3
From 009c7a7dd68f00239889a2dd7d6ca41e6817f1f6 Mon Sep 17 00:00:00 2001
From: Simon Howard
Date: Tue, 12 Jan 2010 20:16:25 +0000
Subject: Oops.
Subversion-branch: /trunk/chocolate-doom
Subversion-revision: 1811
---
configure.in | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/configure.in b/configure.in
index aa7ce09e..db76ebef 100644
--- a/configure.in
+++ b/configure.in
@@ -120,11 +120,11 @@ pcsound/Makefile
pkg/Makefile
pkg/config.make
pkg/osx/Info.plist
+setup/Makefile
+setup/setup-res.rc
src/Makefile
src/doom-screensaver.desktop
src/resource.rc
-setup/Makefile
-setup/setup-res.rc
textscreen/Makefile
textscreen/examples/Makefile
wince/Makefile
--
cgit v1.2.3
From df6a794052bc5c5f28ca15eca7d924ae29002d85 Mon Sep 17 00:00:00 2001
From: Simon Howard
Date: Thu, 14 Jan 2010 18:47:03 +0000
Subject: In Chex Quest, use the radiation suit colormap instead of the red
colormaps that are usually used when taking damage (or using the berserk
pack). This matches the Vanilla chex.exe behavior (thanks Fuzztooth).
Subversion-branch: /trunk/chocolate-doom
Subversion-revision: 1812
---
src/st_stuff.c | 11 +++++++++++
1 file changed, 11 insertions(+)
diff --git a/src/st_stuff.c b/src/st_stuff.c
index c3226f1b..d48609b4 100644
--- a/src/st_stuff.c
+++ b/src/st_stuff.c
@@ -974,6 +974,17 @@ void ST_doPaletteStuff(void)
else
palette = 0;
+ // In Chex Quest, the player never sees red. Instead, the
+ // radiation suit palette is used to tint the screen green,
+ // as though the player is being covered in goo by an
+ // attacking flemoid.
+
+ if (gameversion == exe_chex
+ && palette >= STARTREDPALS && palette < STARTREDPALS + NUMREDPALS)
+ {
+ palette = RADIATIONPAL;
+ }
+
if (palette != st_palette)
{
st_palette = palette;
--
cgit v1.2.3
From f176ac404ad709e6c1254f8685f8d9fe7b995115 Mon Sep 17 00:00:00 2001
From: Simon Howard
Date: Fri, 15 Jan 2010 18:13:05 +0000
Subject: Extend osx makefile to allow building of a working GNUstep
application, for testing purposes. Add GNUstep version of Info.plist, remove
app-skeleton directory and move contents up.
Subversion-branch: /trunk/chocolate-doom
Subversion-revision: 1813
---
configure.in | 1 +
pkg/Makefile.am | 17 ++++----
pkg/osx/GNUmakefile | 37 +++++++++++++----
pkg/osx/Info-GNUstep.plist.in | 31 ++++++++++++++
pkg/osx/PkgInfo | 1 +
pkg/osx/Resources/128x128.png | Bin 0 -> 23029 bytes
pkg/osx/Resources/app.icns | Bin 0 -> 51625 bytes
pkg/osx/Resources/app.png | Bin 0 -> 4597 bytes
pkg/osx/Resources/launcher.nib/classes.nib | 46 +++++++++++++++++++++
pkg/osx/Resources/launcher.nib/info.nib | 23 +++++++++++
pkg/osx/Resources/launcher.nib/keyedobjects.nib | Bin 0 -> 17541 bytes
pkg/osx/Resources/wadfile.icns | Bin 0 -> 44092 bytes
pkg/osx/app-skeleton/Contents/PkgInfo | 1 -
.../app-skeleton/Contents/Resources/128x128.png | Bin 23029 -> 0 bytes
pkg/osx/app-skeleton/Contents/Resources/app.icns | Bin 51625 -> 0 bytes
.../Contents/Resources/launcher.nib/classes.nib | 46 ---------------------
.../Contents/Resources/launcher.nib/info.nib | 23 -----------
.../Resources/launcher.nib/keyedobjects.nib | Bin 17541 -> 0 bytes
.../app-skeleton/Contents/Resources/wadfile.icns | Bin 44092 -> 0 bytes
19 files changed, 141 insertions(+), 85 deletions(-)
create mode 100644 pkg/osx/Info-GNUstep.plist.in
create mode 100644 pkg/osx/PkgInfo
create mode 100644 pkg/osx/Resources/128x128.png
create mode 100644 pkg/osx/Resources/app.icns
create mode 100644 pkg/osx/Resources/app.png
create mode 100644 pkg/osx/Resources/launcher.nib/classes.nib
create mode 100644 pkg/osx/Resources/launcher.nib/info.nib
create mode 100644 pkg/osx/Resources/launcher.nib/keyedobjects.nib
create mode 100644 pkg/osx/Resources/wadfile.icns
delete mode 100644 pkg/osx/app-skeleton/Contents/PkgInfo
delete mode 100644 pkg/osx/app-skeleton/Contents/Resources/128x128.png
delete mode 100644 pkg/osx/app-skeleton/Contents/Resources/app.icns
delete mode 100644 pkg/osx/app-skeleton/Contents/Resources/launcher.nib/classes.nib
delete mode 100644 pkg/osx/app-skeleton/Contents/Resources/launcher.nib/info.nib
delete mode 100644 pkg/osx/app-skeleton/Contents/Resources/launcher.nib/keyedobjects.nib
delete mode 100644 pkg/osx/app-skeleton/Contents/Resources/wadfile.icns
diff --git a/configure.in b/configure.in
index db76ebef..2296a654 100644
--- a/configure.in
+++ b/configure.in
@@ -120,6 +120,7 @@ pcsound/Makefile
pkg/Makefile
pkg/config.make
pkg/osx/Info.plist
+pkg/osx/Info-GNUstep.plist
setup/Makefile
setup/setup-res.rc
src/Makefile
diff --git a/pkg/Makefile.am b/pkg/Makefile.am
index b898e728..6a3b38ff 100644
--- a/pkg/Makefile.am
+++ b/pkg/Makefile.am
@@ -1,14 +1,15 @@
OSX_FILES= \
-osx/app-skeleton/Contents/PkgInfo \
-osx/app-skeleton/Contents/Resources/128x128.png \
-osx/app-skeleton/Contents/Resources/app.icns \
-osx/app-skeleton/Contents/Resources/wadfile.icns \
-osx/app-skeleton/Contents/Resources/launcher.nib/classes.nib \
-osx/app-skeleton/Contents/Resources/launcher.nib/info.nib \
-osx/app-skeleton/Contents/Resources/launcher.nib/keyedobjects.nib \
+osx/Resources/128x128.png \
+osx/Resources/app.icns \
+osx/Resources/app.png \
+osx/Resources/wadfile.icns \
+osx/Resources/launcher.nib/classes.nib \
+osx/Resources/launcher.nib/info.nib \
+osx/Resources/launcher.nib/keyedobjects.nib \
osx/GNUmakefile \
-osx/Info.plist.in \
+osx/Info.plist.in osx/Info-GNUstep.plist.in \
+osx/PkgInfo \
osx/cp-with-libs \
osx/main.m \
osx/AppController.m osx/AppController.h \
diff --git a/pkg/osx/GNUmakefile b/pkg/osx/GNUmakefile
index de2c535a..d1894bef 100644
--- a/pkg/osx/GNUmakefile
+++ b/pkg/osx/GNUmakefile
@@ -1,4 +1,9 @@
+# Makefile for building the OS X launcher program and DMG package.
+# It is also possible to build and run the launcher under Unix
+# systems using GNUstep, although this is only here for development
+# and debugging purposes.
+
include ../config.make
STAGING_DIR=staging
@@ -20,17 +25,37 @@ endif
# Staging dir build for package:
APP_DIR=$(STAGING_DIR)/$(PACKAGE_NAME).app
-APP_BIN_DIR=$(APP_DIR)/Contents/MacOS/
+
+# OS X and GNUstep apps have a slightly different internal structure:
+# OS X apps have their files within a containing "Contents" directory
+# that does not exist in GNUstep apps. Similarly, the binaries are
+# installed at the top level, rather than in a "MacOS" directory.
+# Finally, we must install a different Info.plist file.
+
+ifdef GNUSTEP_MAKEFILES
+APP_TOP_DIR=$(APP_DIR)
+APP_BIN_DIR=$(APP_DIR)
+SRC_INFO_PLIST=Info-GNUstep.plist
+else
+APP_TOP_DIR=$(APP_DIR)/Contents
+APP_BIN_DIR=$(APP_DIR)/Contents/MacOS
+SRC_INFO_PLIST=Info.plist
+endif
$(STAGING_DIR): launcher $(TOPLEVEL_DOCS)
rm -rf $(STAGING_DIR)
mkdir $(STAGING_DIR)
- cp -R app-skeleton "$(APP_DIR)"
- mkdir "$(APP_BIN_DIR)"
- cp Info.plist "$(APP_DIR)/Contents/"
+ cp $(TOPLEVEL_DOCS) "$(STAGING_DIR)"
+
+ mkdir -p "$(APP_TOP_DIR)"
+ cp -R Resources "$(APP_TOP_DIR)"
+ cp PkgInfo "$(APP_TOP_DIR)"
+ cp $(SRC_INFO_PLIST) "$(APP_TOP_DIR)/Info.plist"
+
+ mkdir -p "$(APP_BIN_DIR)"
- cp launcher "$(APP_BIN_DIR)/"
+ cp launcher "$(APP_BIN_DIR)"
$(STRIP) "$(APP_BIN_DIR)/launcher"
./cp-with-libs $(TOPLEVEL)/src/$(PACKAGE_TARNAME) "$(APP_BIN_DIR)"
@@ -38,8 +63,6 @@ $(STAGING_DIR): launcher $(TOPLEVEL_DOCS)
./cp-with-libs $(TOPLEVEL)/setup/chocolate-setup "$(APP_BIN_DIR)"
$(STRIP) "$(APP_BIN_DIR)/chocolate-setup"
- cp $(TOPLEVEL_DOCS) "$(STAGING_DIR)"
-
find $(STAGING_DIR) -name .svn -delete -exec rm -rf {} \; || true
clean : launcher_clean
diff --git a/pkg/osx/Info-GNUstep.plist.in b/pkg/osx/Info-GNUstep.plist.in
new file mode 100644
index 00000000..ac6511e2
--- /dev/null
+++ b/pkg/osx/Info-GNUstep.plist.in
@@ -0,0 +1,31 @@
+{
+ ApplicationDescription = "@PACKAGE_NAME@";
+ ApplicationIcon = app.png;
+ ApplicationName = "@PACKAGE_NAME@";
+ ApplicationRelease = @PACKAGE_VERSION@;
+ Copyright = "Copyright (C) 2009-2010";
+ CopyrightDescription = "GNU General Public License, version 2";
+ FullVersionID = @PACKAGE_VERSION@;
+ GSMainMarkupFile = "";
+ NSExecutable = "launcher";
+ NSIcon = app.png;
+ NSMainNibFile = launcher.nib;
+ NSPrincipalClass = NSApplication;
+ NSRole = Application;
+ NSTypes = (
+ {
+ NSHumanReadableName = "Doom WAD file";
+ NSUnixExtensions = ( wad );
+ NSRole = Viewer;
+ NSMimeTypes = (
+ "application/x-doom"
+ );
+ },
+ {
+ NSHumanReadableName = "Dehacked patch";
+ NSUnixExtensions = ( deh );
+ NSRole = Viewer;
+ NSIcon = "wadfile.png";
+ }
+ );
+}
diff --git a/pkg/osx/PkgInfo b/pkg/osx/PkgInfo
new file mode 100644
index 00000000..6f749b0f
--- /dev/null
+++ b/pkg/osx/PkgInfo
@@ -0,0 +1 @@
+APPL????
diff --git a/pkg/osx/Resources/128x128.png b/pkg/osx/Resources/128x128.png
new file mode 100644
index 00000000..0ef1fe9c
Binary files /dev/null and b/pkg/osx/Resources/128x128.png differ
diff --git a/pkg/osx/Resources/app.icns b/pkg/osx/Resources/app.icns
new file mode 100644
index 00000000..9b535a25
Binary files /dev/null and b/pkg/osx/Resources/app.icns differ
diff --git a/pkg/osx/Resources/app.png b/pkg/osx/Resources/app.png
new file mode 100644
index 00000000..5b932e8c
Binary files /dev/null and b/pkg/osx/Resources/app.png differ
diff --git a/pkg/osx/Resources/launcher.nib/classes.nib b/pkg/osx/Resources/launcher.nib/classes.nib
new file mode 100644
index 00000000..3ff47e71
--- /dev/null
+++ b/pkg/osx/Resources/launcher.nib/classes.nib
@@ -0,0 +1,46 @@
+{
+ IBClasses = (
+ {
+ CLASS = AppController;
+ LANGUAGE = ObjC;
+ OUTLETS = {launcherManager = id; };
+ SUPERCLASS = NSObject;
+ },
+ {CLASS = FirstResponder; LANGUAGE = ObjC; SUPERCLASS = NSObject; },
+ {
+ ACTIONS = {closeConfigWindow = id; openConfigWindow = id; };
+ CLASS = IWADController;
+ LANGUAGE = ObjC;
+ OUTLETS = {
+ chex = id;
+ configWindow = id;
+ doom1 = id;
+ doom2 = id;
+ iwadSelector = id;
+ plutonia = id;
+ tnt = id;
+ };
+ SUPERCLASS = NSObject;
+ },
+ {
+ ACTIONS = {setButtonClicked = id; };
+ CLASS = IWADLocation;
+ LANGUAGE = ObjC;
+ OUTLETS = {locationConfigBox = id; };
+ SUPERCLASS = NSObject;
+ },
+ {
+ ACTIONS = {launch = id; runSetup = id; };
+ CLASS = LauncherManager;
+ LANGUAGE = ObjC;
+ OUTLETS = {
+ commandLineArguments = id;
+ iwadController = id;
+ launcherWindow = id;
+ packageLabel = id;
+ };
+ SUPERCLASS = NSObject;
+ }
+ );
+ IBVersion = 1;
+}
\ No newline at end of file
diff --git a/pkg/osx/Resources/launcher.nib/info.nib b/pkg/osx/Resources/launcher.nib/info.nib
new file mode 100644
index 00000000..aecf812a
--- /dev/null
+++ b/pkg/osx/Resources/launcher.nib/info.nib
@@ -0,0 +1,23 @@
+
+
+
+
+ IBDocumentLocation
+ 170 140 612 260 0 0 1440 878
+ IBEditorPositions
+
+ 29
+ 108 337 163 44 0 0 1440 878
+
+ IBFramework Version
+ 446.1
+ IBOpenObjects
+
+ 21
+ 29
+ 227
+
+ IBSystem Version
+ 8S2167
+
+
diff --git a/pkg/osx/Resources/launcher.nib/keyedobjects.nib b/pkg/osx/Resources/launcher.nib/keyedobjects.nib
new file mode 100644
index 00000000..12cf6aa5
Binary files /dev/null and b/pkg/osx/Resources/launcher.nib/keyedobjects.nib differ
diff --git a/pkg/osx/Resources/wadfile.icns b/pkg/osx/Resources/wadfile.icns
new file mode 100644
index 00000000..13502a55
Binary files /dev/null and b/pkg/osx/Resources/wadfile.icns differ
diff --git a/pkg/osx/app-skeleton/Contents/PkgInfo b/pkg/osx/app-skeleton/Contents/PkgInfo
deleted file mode 100644
index 6f749b0f..00000000
--- a/pkg/osx/app-skeleton/Contents/PkgInfo
+++ /dev/null
@@ -1 +0,0 @@
-APPL????
diff --git a/pkg/osx/app-skeleton/Contents/Resources/128x128.png b/pkg/osx/app-skeleton/Contents/Resources/128x128.png
deleted file mode 100644
index 0ef1fe9c..00000000
Binary files a/pkg/osx/app-skeleton/Contents/Resources/128x128.png and /dev/null differ
diff --git a/pkg/osx/app-skeleton/Contents/Resources/app.icns b/pkg/osx/app-skeleton/Contents/Resources/app.icns
deleted file mode 100644
index 9b535a25..00000000
Binary files a/pkg/osx/app-skeleton/Contents/Resources/app.icns and /dev/null differ
diff --git a/pkg/osx/app-skeleton/Contents/Resources/launcher.nib/classes.nib b/pkg/osx/app-skeleton/Contents/Resources/launcher.nib/classes.nib
deleted file mode 100644
index 3ff47e71..00000000
--- a/pkg/osx/app-skeleton/Contents/Resources/launcher.nib/classes.nib
+++ /dev/null
@@ -1,46 +0,0 @@
-{
- IBClasses = (
- {
- CLASS = AppController;
- LANGUAGE = ObjC;
- OUTLETS = {launcherManager = id; };
- SUPERCLASS = NSObject;
- },
- {CLASS = FirstResponder; LANGUAGE = ObjC; SUPERCLASS = NSObject; },
- {
- ACTIONS = {closeConfigWindow = id; openConfigWindow = id; };
- CLASS = IWADController;
- LANGUAGE = ObjC;
- OUTLETS = {
- chex = id;
- configWindow = id;
- doom1 = id;
- doom2 = id;
- iwadSelector = id;
- plutonia = id;
- tnt = id;
- };
- SUPERCLASS = NSObject;
- },
- {
- ACTIONS = {setButtonClicked = id; };
- CLASS = IWADLocation;
- LANGUAGE = ObjC;
- OUTLETS = {locationConfigBox = id; };
- SUPERCLASS = NSObject;
- },
- {
- ACTIONS = {launch = id; runSetup = id; };
- CLASS = LauncherManager;
- LANGUAGE = ObjC;
- OUTLETS = {
- commandLineArguments = id;
- iwadController = id;
- launcherWindow = id;
- packageLabel = id;
- };
- SUPERCLASS = NSObject;
- }
- );
- IBVersion = 1;
-}
\ No newline at end of file
diff --git a/pkg/osx/app-skeleton/Contents/Resources/launcher.nib/info.nib b/pkg/osx/app-skeleton/Contents/Resources/launcher.nib/info.nib
deleted file mode 100644
index aecf812a..00000000
--- a/pkg/osx/app-skeleton/Contents/Resources/launcher.nib/info.nib
+++ /dev/null
@@ -1,23 +0,0 @@
-
-
-
-
- IBDocumentLocation
- 170 140 612 260 0 0 1440 878
- IBEditorPositions
-
- 29
- 108 337 163 44 0 0 1440 878
-
- IBFramework Version
- 446.1
- IBOpenObjects
-
- 21
- 29
- 227
-
- IBSystem Version
- 8S2167
-
-
diff --git a/pkg/osx/app-skeleton/Contents/Resources/launcher.nib/keyedobjects.nib b/pkg/osx/app-skeleton/Contents/Resources/launcher.nib/keyedobjects.nib
deleted file mode 100644
index 12cf6aa5..00000000
Binary files a/pkg/osx/app-skeleton/Contents/Resources/launcher.nib/keyedobjects.nib and /dev/null differ
diff --git a/pkg/osx/app-skeleton/Contents/Resources/wadfile.icns b/pkg/osx/app-skeleton/Contents/Resources/wadfile.icns
deleted file mode 100644
index 13502a55..00000000
Binary files a/pkg/osx/app-skeleton/Contents/Resources/wadfile.icns and /dev/null differ
--
cgit v1.2.3
From 571b9c32f5e054f131abb9c1d0d68eb4c784a764 Mon Sep 17 00:00:00 2001
From: Simon Howard
Date: Fri, 15 Jan 2010 18:40:37 +0000
Subject: Add wadfile.png for GNUstep build.
Subversion-branch: /trunk/chocolate-doom
Subversion-revision: 1814
---
pkg/Makefile.am | 1 +
pkg/osx/Info-GNUstep.plist.in | 1 +
pkg/osx/Resources/wadfile.png | Bin 0 -> 2249 bytes
3 files changed, 2 insertions(+)
create mode 100644 pkg/osx/Resources/wadfile.png
diff --git a/pkg/Makefile.am b/pkg/Makefile.am
index 6a3b38ff..75520fbd 100644
--- a/pkg/Makefile.am
+++ b/pkg/Makefile.am
@@ -4,6 +4,7 @@ osx/Resources/128x128.png \
osx/Resources/app.icns \
osx/Resources/app.png \
osx/Resources/wadfile.icns \
+osx/Resources/wadfile.png \
osx/Resources/launcher.nib/classes.nib \
osx/Resources/launcher.nib/info.nib \
osx/Resources/launcher.nib/keyedobjects.nib \
diff --git a/pkg/osx/Info-GNUstep.plist.in b/pkg/osx/Info-GNUstep.plist.in
index ac6511e2..743816ef 100644
--- a/pkg/osx/Info-GNUstep.plist.in
+++ b/pkg/osx/Info-GNUstep.plist.in
@@ -20,6 +20,7 @@
NSMimeTypes = (
"application/x-doom"
);
+ NSIcon = "wadfile.png";
},
{
NSHumanReadableName = "Dehacked patch";
diff --git a/pkg/osx/Resources/wadfile.png b/pkg/osx/Resources/wadfile.png
new file mode 100644
index 00000000..394a3e33
Binary files /dev/null and b/pkg/osx/Resources/wadfile.png differ
--
cgit v1.2.3
From cd8cf5f1c8c0e6a86ddc3322f33acc29698009f5 Mon Sep 17 00:00:00 2001
From: Simon Howard
Date: Fri, 15 Jan 2010 18:51:35 +0000
Subject: Center the launcher window and config window on startup.
Subversion-branch: /trunk/chocolate-doom
Subversion-revision: 1815
---
pkg/osx/IWADController.m | 2 ++
pkg/osx/LauncherManager.m | 1 +
2 files changed, 3 insertions(+)
diff --git a/pkg/osx/IWADController.m b/pkg/osx/IWADController.m
index f1860301..783ee38f 100644
--- a/pkg/osx/IWADController.m
+++ b/pkg/osx/IWADController.m
@@ -250,6 +250,8 @@ static NSString *IWADFilenames[NUM_IWAD_TYPES + 1] =
- (void) awakeFromNib
{
+ [self->configWindow center];
+
// Set configuration for all IWADs from configuration file.
[self setIWADConfig];
diff --git a/pkg/osx/LauncherManager.m b/pkg/osx/LauncherManager.m
index 0cde9f6e..26684811 100644
--- a/pkg/osx/LauncherManager.m
+++ b/pkg/osx/LauncherManager.m
@@ -304,6 +304,7 @@ static NSString *AppendQuotedFilename(NSString *str, NSString *fileName)
{
[self->packageLabel setStringValue: @PACKAGE_STRING];
[self->launcherWindow setTitle: @PACKAGE_NAME " Launcher"];
+ [self->launcherWindow center];
[self setConfig];
}
--
cgit v1.2.3
From 893c8dbe922b5ee6ac14c3df3b5020817b6797b3 Mon Sep 17 00:00:00 2001
From: Simon Howard
Date: Fri, 15 Jan 2010 19:14:02 +0000
Subject: Fix GNUstep info panel.
Subversion-branch: /trunk/chocolate-doom
Subversion-revision: 1816
---
configure.in | 2 +-
pkg/Makefile.am | 2 +-
pkg/osx/GNUmakefile | 4 ++--
pkg/osx/Info-GNUstep.plist.in | 32 --------------------------------
pkg/osx/Info-gnustep.plist.in | 32 ++++++++++++++++++++++++++++++++
5 files changed, 36 insertions(+), 36 deletions(-)
delete mode 100644 pkg/osx/Info-GNUstep.plist.in
create mode 100644 pkg/osx/Info-gnustep.plist.in
diff --git a/configure.in b/configure.in
index 2296a654..88a5e244 100644
--- a/configure.in
+++ b/configure.in
@@ -120,7 +120,7 @@ pcsound/Makefile
pkg/Makefile
pkg/config.make
pkg/osx/Info.plist
-pkg/osx/Info-GNUstep.plist
+pkg/osx/Info-gnustep.plist
setup/Makefile
setup/setup-res.rc
src/Makefile
diff --git a/pkg/Makefile.am b/pkg/Makefile.am
index 75520fbd..9775fa77 100644
--- a/pkg/Makefile.am
+++ b/pkg/Makefile.am
@@ -9,7 +9,7 @@ osx/Resources/launcher.nib/classes.nib \
osx/Resources/launcher.nib/info.nib \
osx/Resources/launcher.nib/keyedobjects.nib \
osx/GNUmakefile \
-osx/Info.plist.in osx/Info-GNUstep.plist.in \
+osx/Info.plist.in osx/Info-gnustep.plist.in \
osx/PkgInfo \
osx/cp-with-libs \
osx/main.m \
diff --git a/pkg/osx/GNUmakefile b/pkg/osx/GNUmakefile
index d1894bef..d119efa1 100644
--- a/pkg/osx/GNUmakefile
+++ b/pkg/osx/GNUmakefile
@@ -35,7 +35,7 @@ APP_DIR=$(STAGING_DIR)/$(PACKAGE_NAME).app
ifdef GNUSTEP_MAKEFILES
APP_TOP_DIR=$(APP_DIR)
APP_BIN_DIR=$(APP_DIR)
-SRC_INFO_PLIST=Info-GNUstep.plist
+SRC_INFO_PLIST=Info-gnustep.plist
else
APP_TOP_DIR=$(APP_DIR)/Contents
APP_BIN_DIR=$(APP_DIR)/Contents/MacOS
@@ -51,7 +51,7 @@ $(STAGING_DIR): launcher $(TOPLEVEL_DOCS)
mkdir -p "$(APP_TOP_DIR)"
cp -R Resources "$(APP_TOP_DIR)"
cp PkgInfo "$(APP_TOP_DIR)"
- cp $(SRC_INFO_PLIST) "$(APP_TOP_DIR)/Info.plist"
+ cp $(SRC_INFO_PLIST) "$(APP_TOP_DIR)"
mkdir -p "$(APP_BIN_DIR)"
diff --git a/pkg/osx/Info-GNUstep.plist.in b/pkg/osx/Info-GNUstep.plist.in
deleted file mode 100644
index 743816ef..00000000
--- a/pkg/osx/Info-GNUstep.plist.in
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- ApplicationDescription = "@PACKAGE_NAME@";
- ApplicationIcon = app.png;
- ApplicationName = "@PACKAGE_NAME@";
- ApplicationRelease = @PACKAGE_VERSION@;
- Copyright = "Copyright (C) 2009-2010";
- CopyrightDescription = "GNU General Public License, version 2";
- FullVersionID = @PACKAGE_VERSION@;
- GSMainMarkupFile = "";
- NSExecutable = "launcher";
- NSIcon = app.png;
- NSMainNibFile = launcher.nib;
- NSPrincipalClass = NSApplication;
- NSRole = Application;
- NSTypes = (
- {
- NSHumanReadableName = "Doom WAD file";
- NSUnixExtensions = ( wad );
- NSRole = Viewer;
- NSMimeTypes = (
- "application/x-doom"
- );
- NSIcon = "wadfile.png";
- },
- {
- NSHumanReadableName = "Dehacked patch";
- NSUnixExtensions = ( deh );
- NSRole = Viewer;
- NSIcon = "wadfile.png";
- }
- );
-}
diff --git a/pkg/osx/Info-gnustep.plist.in b/pkg/osx/Info-gnustep.plist.in
new file mode 100644
index 00000000..e7436df2
--- /dev/null
+++ b/pkg/osx/Info-gnustep.plist.in
@@ -0,0 +1,32 @@
+{
+ ApplicationName = "@PACKAGE_NAME@";
+ ApplicationDescription = "Doom source port";
+ ApplicationIcon = app.png;
+ ApplicationRelease = @PACKAGE_VERSION@;
+ Copyright = "Copyright (C) 2009-2010";
+ CopyrightDescription = "GNU General Public License, version 2";
+ FullVersionID = @PACKAGE_VERSION@;
+ GSMainMarkupFile = "";
+ NSExecutable = "launcher";
+ NSIcon = app.png;
+ NSMainNibFile = launcher.nib;
+ NSPrincipalClass = NSApplication;
+ NSRole = Application;
+ NSTypes = (
+ {
+ NSHumanReadableName = "Doom WAD file";
+ NSUnixExtensions = ( wad );
+ NSRole = Viewer;
+ NSMimeTypes = (
+ "application/x-doom"
+ );
+ NSIcon = "wadfile.png";
+ },
+ {
+ NSHumanReadableName = "Dehacked patch";
+ NSUnixExtensions = ( deh );
+ NSRole = Viewer;
+ NSIcon = "wadfile.png";
+ }
+ );
+}
--
cgit v1.2.3
From 6e0df0d01676cec59caaafa2cea3910c5a9b51e0 Mon Sep 17 00:00:00 2001
From: Simon Howard
Date: Fri, 15 Jan 2010 19:29:28 +0000
Subject: Don't open the configuration window when the launcher is first run;
display an error message if the user tries to launch the game without an IWAD
selected.
Subversion-branch: /trunk/chocolate-doom
Subversion-revision: 1817
---
pkg/osx/IWADController.m | 7 +------
pkg/osx/LauncherManager.m | 15 +++++++++++----
2 files changed, 12 insertions(+), 10 deletions(-)
diff --git a/pkg/osx/IWADController.m b/pkg/osx/IWADController.m
index 783ee38f..a7730cc7 100644
--- a/pkg/osx/IWADController.m
+++ b/pkg/osx/IWADController.m
@@ -256,17 +256,12 @@ static NSString *IWADFilenames[NUM_IWAD_TYPES + 1] =
[self setIWADConfig];
- // Populate the dropdown IWAD list, and open the configuration
- // dialog if not yet configured.
+ // Populate the dropdown IWAD list.
if ([self setDropdownList])
{
[self setDropdownSelection];
}
- else
- {
- [self openConfigWindow: nil];
- }
}
// Set the DOOMWADPATH environment variable to contain the path to each
diff --git a/pkg/osx/LauncherManager.m b/pkg/osx/LauncherManager.m
index 26684811..0d0ab4ea 100644
--- a/pkg/osx/LauncherManager.m
+++ b/pkg/osx/LauncherManager.m
@@ -284,12 +284,19 @@ static NSString *AppendQuotedFilename(NSString *str, NSString *fileName)
iwad = [self->iwadController getIWADLocation];
args = [self->commandLineArguments stringValue];
- if (iwad != nil)
+ if (iwad == nil)
{
- ExecuteProgram(PACKAGE_TARNAME, [iwad UTF8String],
- [args UTF8String]);
- [NSApp terminate:sender];
+ NSRunAlertPanel(@"No IWAD selected",
+ @"You have not selected an IWAD (game) file.\n\n"
+ "You must configure and select a valid IWAD file "
+ "in order to launch the game.",
+ @"OK", nil, nil);
+ return;
}
+
+ ExecuteProgram(PACKAGE_TARNAME, [iwad UTF8String],
+ [args UTF8String]);
+ [NSApp terminate:sender];
}
- (void) runSetup: (id)sender
--
cgit v1.2.3
From 27b66df2577becac7e34171c297d8fcc820101a9 Mon Sep 17 00:00:00 2001
From: Simon Howard
Date: Sat, 16 Jan 2010 19:20:11 +0000
Subject: Update TODO file.
Subversion-branch: /trunk/chocolate-doom
Subversion-revision: 1818
---
TODO | 21 ++++++++++++---------
1 file changed, 12 insertions(+), 9 deletions(-)
diff --git a/TODO b/TODO
index cd4006a3..b0acb8d3 100644
--- a/TODO
+++ b/TODO
@@ -1,17 +1,22 @@
+Currently in progress:
+
+* OPL MIDI playback (see: opl-branch)
+* Heretic/Hexen support (see: raven-branch)
+* Strife support (see: strife-branch)
+
To do:
-* Install packages:
- - Debian/Ubuntu .deb packages, Fedora .rpm packages.
- - Windows NSIS installer.
- - MacOS X .dmg packages (should be universal binaries!)
+* Demo hashes for regression testing of this and other ports.
* File selector for chocolate-setup, so that WADs can be selected from
a browser, instead of simply typing the filenames.
* Multiplayer:
- Master server for locating servers automatically - makes setting up
public servers easier.
+ - Use UPnP to automatically configure port forwarding for NATted
+ networks.
- Incorporate local LAN search into setup interface.
- Multiplayer options and configuration file (server name, etc)
-* Improve multiplayer startup:
+* Improve multiplayer startup:
- Select an IWAD automatically from the server's game type rather than
all players having to specify -iwad.
- Send list of WADs to load instead of all clients having to specify -file.
@@ -20,16 +25,14 @@ To do:
- Test on and fix for architectures where ((-2) >> 1) != -1
- Use size-specific types (eg. int32_t instead of int)
- Don't make structure packing assumptions when loading levels.
-* Port to every OS and architecture under the sun
+ - Port to every OS and architecture under the sun
Crazy pie in the sky ideas:
* Automatic WAD installer - download and run TCs from a list automatically
(automating the current "instructions on wiki" system).
-* Textscreen interface to the Compet-N database: menu driven system to
+* Textscreen interface to the Compet-N database: menu driven system to
automatically download and play speedruns.
* DWANGO-like interface for finding players and setting up games.
-* Demo hashes for regression testing of this and other ports.
-* OPL emulation
* Video capture mode?
--
cgit v1.2.3
From b95262a16e1561e91b2e60a640c8c9f439d68eb8 Mon Sep 17 00:00:00 2001
From: Simon Howard
Date: Sun, 17 Jan 2010 16:31:03 +0000
Subject: Restore the original cursor when shutting down video code, this
should hopefully fix the problem with the mouse cursor disappearing when
exiting on Win9x (thanks Janizdreg).
Subversion-branch: /trunk/chocolate-doom
Subversion-revision: 1819
---
src/i_video.c | 1 +
1 file changed, 1 insertion(+)
diff --git a/src/i_video.c b/src/i_video.c
index 481ee0ea..6936532d 100644
--- a/src/i_video.c
+++ b/src/i_video.c
@@ -402,6 +402,7 @@ void I_ShutdownGraphics(void)
{
if (initialized)
{
+ SDL_SetCursor(cursors[1]);
SDL_ShowCursor(1);
SDL_WM_GrabInput(SDL_GRAB_OFF);
--
cgit v1.2.3
From 34e73b9fffae922b3be954c98ec3724f4b15cfec Mon Sep 17 00:00:00 2001
From: Simon Howard
Date: Sun, 17 Jan 2010 16:58:37 +0000
Subject: Update NEWS.
Subversion-branch: /trunk/chocolate-doom
Subversion-revision: 1820
---
NEWS | 93 +++++++++++++++++++++++++++++++++++++++++++++++++-------------------
1 file changed, 68 insertions(+), 25 deletions(-)
diff --git a/NEWS b/NEWS
index 2d6db773..9c267b12 100644
--- a/NEWS
+++ b/NEWS
@@ -1,48 +1,91 @@
...
* Chocolate Doom now runs on Windows Mobile/Windows CE!
- * It is possible to rebind most/all of the keys that control
- the menu, shortcuts, automap and weapon switching. The
- main reason for this is to support the Windows CE port
- and other platforms where a full keyboard may not be present.
- * Memory-mapped WAD I/O is disabled by default, as it caused
- various issues, including a slowdown/crash with Plutonia 2
- MAP23. It can be explicitly re-enabled using the '-mmap'
- command line parameter.
+ * It is possible to rebind most/all of the keys that control the
+ menu, shortcuts, automap and weapon switching. The main
+ reason for this is to support the Windows CE port and other
+ platforms where a full keyboard may not be present.
+ * Chocolate Doom now includes a proper Mac OS X package; it is
+ no longer necessary to compile binaries for this system by
+ hand. The package includes a simple graphical launcher
+ program and can be installed simply by dragging the "Chocolate
+ Doom" icon to the Applications folder.
* The video mode auto-adjust code will automatically choose
windowed mode if no fullscreen video modes are available.
- * The zone memory size is automatically reduced on systems
- with a small amount of memory.
- * There is now a second, small textscreen font, so that the
- ENDOOM screen and setup tool can be used on low resolution
- devices (eg. PDAs/embedded devices)
- * The textscreen library now has a scrollable pane widget.
- * Doxygen documentation was added for the textscreen library.
- * The "join game" window in the setup tool now has an option
- to automatically join a game on the local network.
+ * The zone memory size is automatically reduced on systems with
+ a small amount of memory.
+ * The "join game" window in the setup tool now has an option to
+ automatically join a game on the local network.
+ * Chocolate Doom includes some initial hacks for compiling under
+ SDL 1.3.
+ * Recent versions of SDL_mixer include rewritten MIDI code on Mac
+ OS X. If you are using a version of SDL_mixer with the new
+ code, music will now be enabled by default.
+ * Windows Vista and Windows 7 no longer prompt for elevated
+ privileges when running the setup tool (thanks hobbs and
+ MikeRS).
+ * The Windows binaries now have better looking icons (thanks
+ MikeRS).
+ * Magic values specified using the -spechit command line
+ parameter can now be hexadecimal.
+ * DOOMWADDIR/DOOMWADPATH can now specify the complete path to
+ IWAD files, rather than the path to the directory that contains
+ them.
+ * When recording shorttics demos, errors caused by the reduced
+ turning resolution are carried forward, possibly making turning
+ smoother.
Compatibility:
* The A_BossDeath behavior in v1.9 emulation mode was fixed
(thanks entryway)
+ * The "loading" disk icon is drawn more like how it is drawn in
+ Vanilla Doom, also fixing a bug with chook3.wad.
+ * Desync on 64-bit systems with ep1-0500.lmp has (at long last)
+ been fixed (thanks exp(x)).
+ * Donut overrun emulation code imported from Prboom+ (thanks
+ entryway).
+ * The correct level name should now be shown in the automap for
+ pl2.wad MAP33 (thanks Janizdreg).
+ * In Chex Quest, the green radiation suit colormap is now used
+ instead of the red colormaps normally used when taking damage
+ or using the berserk pack. This matches Vanilla chex.exe
+ behavior (thanks Fuzztooth).
Bugs fixed:
+ * Memory-mapped WAD I/O is disabled by default, as it caused
+ various issues, including a slowdown/crash with Plutonia 2
+ MAP23. It can be explicitly re-enabled using the '-mmap'
+ command line parameter.
* Crash when saving games due to the ~/.chocolate-doom/savegames
directory not being created (thanks to everyone who reported
this).
- * Chocolate Doom will now under Win95/98, as the
+ * Chocolate Doom will now run under Win95/98, as the
SetProcessAffinityMask function is looked up dynamically.
* Compilation under Linux with older versions of libc will now
work (the semantics for sched_setaffinity were different in
older versions)
* Sound clipping when using libsamplerate was improved (thanks
David Flater)
- * The audio buffer size is now calculated based on the sample rate,
- so there is not a noticeable delay when using a lower sample
- rate.
- * The manpage documentation for the DOOMWADPATH variable was fixed
- (thanks MikeRS).
- * Compilation with FEATURE_MULTIPLAYER and FEATURE_SOUND disabled
- was fixed.
+ * The audio buffer size is now calculated based on the sample
+ rate, so there is not a noticeable delay when using a lower
+ sample rate.
+ * The manpage documentation for the DOOMWADPATH variable was
+ fixed (thanks MikeRS).
+ * Compilation with FEATURE_MULTIPLAYER and FEATURE_SOUND
+ disabled was fixed.
+ * Fixed crash when using the donut special type and the joining
+ linedef is one sided (thanks Alexander Waldmann).
+ * Key settings in a configuration file that are out of range
+ do not cause a crash (thanks entryway).
+
+ libtextscreen:
+ * There is now a second, small textscreen font, so that the
+ ENDOOM screen and setup tool can be used on low resolution
+ devices (eg. PDAs/embedded devices)
+ * The textscreen library now has a scrollable pane widget. Thanks
+ to LionsPhil for contributing code to scroll up and down using
+ the keyboard.
+ * Doxygen documentation was added for the textscreen library.
1.2.1 (2008-12-10):
--
cgit v1.2.3
From 7f7a7354a5e72f1226f06f6109c0d1bc6cc30133 Mon Sep 17 00:00:00 2001
From: Simon Howard
Date: Mon, 18 Jan 2010 19:14:54 +0000
Subject: Define project short description, copyright, maintainer and URL in
configure.in. Use these for the Info-gnustep.plist file. Add generated .spec
file for building RPM packages.
Subversion-branch: /trunk/chocolate-doom
Subversion-revision: 1821
---
Makefile.am | 3 ++-
configure.in | 14 ++++++++++
pkg/osx/Info-gnustep.plist.in | 10 +++++---
rpm.spec.in | 59 +++++++++++++++++++++++++++++++++++++++++++
4 files changed, 82 insertions(+), 4 deletions(-)
create mode 100644 rpm.spec.in
diff --git a/Makefile.am b/Makefile.am
index 662e26bb..a980acde 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -43,7 +43,8 @@ EXTRA_DIST= \
CMDLINE \
HACKING \
TODO \
- BUGS
+ BUGS \
+ rpm.spec
MAINTAINERCLEANFILES = $(AUX_DIST_GEN)
diff --git a/configure.in b/configure.in
index 88a5e244..05ea5d61 100644
--- a/configure.in
+++ b/configure.in
@@ -1,5 +1,11 @@
AC_INIT(Chocolate Doom, 1.2.1, fraggle@gmail.com, chocolate-doom)
+PACKAGE_SHORTDESC="Conservative Doom source port"
+PACKAGE_COPYRIGHT="Copyright (C) 1993-2010"
+PACKAGE_LICENSE="GNU General Public License, version 2"
+PACKAGE_MAINTAINER="Simon Howard"
+PACKAGE_URL="http://www.chocolate-doom.org/"
+
AC_CONFIG_AUX_DIR(autotools)
orig_CFLAGS="$CFLAGS"
@@ -110,11 +116,19 @@ AC_SUBST(SDLNET_LIBS)
AC_SUBST(ac_aux_dir)
+AC_SUBST(PACKAGE_SHORTDESC)
+AC_SUBST(PACKAGE_COPYRIGHT)
+AC_SUBST(PACKAGE_LICENSE)
+AC_SUBST(PACKAGE_MAINTAINER)
+AC_SUBST(PACKAGE_URL)
+AC_SUBST(PACKAGE_LONGDESC)
+
dnl Shut up the datarootdir warnings.
AC_DEFUN([AC_DATAROOTDIR_CHECKED])
AC_OUTPUT([
Makefile
+rpm.spec
man/Makefile
pcsound/Makefile
pkg/Makefile
diff --git a/pkg/osx/Info-gnustep.plist.in b/pkg/osx/Info-gnustep.plist.in
index e7436df2..da6675ba 100644
--- a/pkg/osx/Info-gnustep.plist.in
+++ b/pkg/osx/Info-gnustep.plist.in
@@ -1,10 +1,14 @@
{
ApplicationName = "@PACKAGE_NAME@";
- ApplicationDescription = "Doom source port";
+ ApplicationDescription = "@PACKAGE_SHORTDESC@";
ApplicationIcon = app.png;
ApplicationRelease = @PACKAGE_VERSION@;
- Copyright = "Copyright (C) 2009-2010";
- CopyrightDescription = "GNU General Public License, version 2";
+ ApplicationURL = "@PACKAGE_URL@";
+ Authors = (
+ "@PACKAGE_MAINTAINER@ <@PACKAGE_BUGREPORT@>"
+ );
+ Copyright = "@PACKAGE_COPYRIGHT@";
+ CopyrightDescription = "@PACKAGE_LICENSE@";
FullVersionID = @PACKAGE_VERSION@;
GSMainMarkupFile = "";
NSExecutable = "launcher";
diff --git a/rpm.spec.in b/rpm.spec.in
new file mode 100644
index 00000000..175ed7c5
--- /dev/null
+++ b/rpm.spec.in
@@ -0,0 +1,59 @@
+
+Name: @PACKAGE@
+Summary: @PACKAGE_SHORTDESC@
+Version: @VERSION@
+Release: 1
+Source: http://mesh.dl.sourceforge.net/project/chocolate-doom/@PACKAGE@-@VERSION@.tar.gz
+URL: @PACKAGE_URL@
+Group: Amusements/Games
+BuildRoot: /var/tmp/@PACKAGE@-buildroot
+License: @PACKAGE_LICENSE@
+Packager: @PACKAGE_MAINTAINER@ <@PACKAGE_BUGREPORT@>
+Prefix: %{_prefix}
+Autoreq: 0
+Requires: libSDL-1.2.so.0, libSDL_mixer-1.2.so.0, libSDL_net-1.2.so.0
+
+%description
+@PACKAGE_NAME@ - @PACKAGE_SHORTDESC@.
+%(sed -n "/==/ q; p " < README)
+See @PACKAGE_URL@ for more information.
+
+%prep
+rm -rf $RPM_BUILD_ROOT
+
+%setup -q
+
+%build
+./configure \
+ --prefix=/usr \
+ --exec-prefix=/usr \
+ --bindir=/usr/bin \
+ --sbindir=/usr/sbin \
+ --sysconfdir=/etc \
+ --datadir=/usr/share \
+ --includedir=/usr/include \
+ --libdir=/usr/lib \
+ --libexecdir=/usr/lib \
+ --localstatedir=/var/lib \
+ --sharedstatedir=/usr/com \
+ --mandir=/usr/share/man \
+ --infodir=/usr/share/info
+make
+
+%install
+%makeinstall
+
+%clean
+rm -rf $RPM_BUILD_ROOT
+
+%files
+%doc %{_mandir}/man5/*
+%doc %{_mandir}/man6/*
+%doc NEWS
+%doc AUTHORS
+%doc README
+%doc COPYING
+%doc CMDLINE
+%doc BUGS
+/usr/games/*
+
--
cgit v1.2.3
From 0a540b154b627aec5e0318fbc8efb1372c41ac38 Mon Sep 17 00:00:00 2001
From: Simon Howard
Date: Mon, 18 Jan 2010 19:29:48 +0000
Subject: Tweak package description slightly.
Subversion-branch: /trunk/chocolate-doom
Subversion-revision: 1822
---
rpm.spec.in | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/rpm.spec.in b/rpm.spec.in
index 175ed7c5..2f9ebb47 100644
--- a/rpm.spec.in
+++ b/rpm.spec.in
@@ -14,8 +14,8 @@ Autoreq: 0
Requires: libSDL-1.2.so.0, libSDL_mixer-1.2.so.0, libSDL_net-1.2.so.0
%description
-@PACKAGE_NAME@ - @PACKAGE_SHORTDESC@.
%(sed -n "/==/ q; p " < README)
+
See @PACKAGE_URL@ for more information.
%prep
--
cgit v1.2.3
From 47f828ea9faf6fbb695fe2b901be466195b2a168 Mon Sep 17 00:00:00 2001
From: Simon Howard
Date: Mon, 18 Jan 2010 19:40:50 +0000
Subject: Fix package source URL.
Subversion-branch: /trunk/chocolate-doom
Subversion-revision: 1823
---
rpm.spec.in | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/rpm.spec.in b/rpm.spec.in
index 2f9ebb47..1b7e90c7 100644
--- a/rpm.spec.in
+++ b/rpm.spec.in
@@ -3,7 +3,7 @@ Name: @PACKAGE@
Summary: @PACKAGE_SHORTDESC@
Version: @VERSION@
Release: 1
-Source: http://mesh.dl.sourceforge.net/project/chocolate-doom/@PACKAGE@-@VERSION@.tar.gz
+Source: http://mesh.dl.sourceforge.net/project/chocolate-doom/@PACKAGE@/@VERSION@/@PACKAGE@-@VERSION@.tar.gz
URL: @PACKAGE_URL@
Group: Amusements/Games
BuildRoot: /var/tmp/@PACKAGE@-buildroot
--
cgit v1.2.3
From bf8974e63b988ae1b5d2fdb0492dfe0bb3613680 Mon Sep 17 00:00:00 2001
From: Simon Howard
Date: Sat, 23 Jan 2010 23:06:45 +0000
Subject: Add menu item to launcher to open a terminal window that can be used
to start the game. Add missing 'edit' menu. Set svn:ignore property for osx
directory.
Subversion-branch: /trunk/chocolate-doom
Subversion-revision: 1824
---
pkg/osx/.gitignore | 2 +
pkg/osx/Execute.h | 1 +
pkg/osx/Execute.m | 86 ++++++++++++++++++++++++
pkg/osx/IWADController.h | 1 +
pkg/osx/IWADController.m | 31 +++++++--
pkg/osx/LauncherManager.h | 2 +-
pkg/osx/LauncherManager.m | 18 +++++
pkg/osx/Resources/launcher.nib/classes.nib | 2 +-
pkg/osx/Resources/launcher.nib/info.nib | 6 +-
pkg/osx/Resources/launcher.nib/keyedobjects.nib | Bin 17541 -> 19494 bytes
10 files changed, 139 insertions(+), 10 deletions(-)
diff --git a/pkg/osx/.gitignore b/pkg/osx/.gitignore
index 5b7a16ef..ca1a7908 100644
--- a/pkg/osx/.gitignore
+++ b/pkg/osx/.gitignore
@@ -1,5 +1,7 @@
Info.plist
+Info-gnustep.plist
launcher
*.o
*.d
+*.dmg
staging
diff --git a/pkg/osx/Execute.h b/pkg/osx/Execute.h
index e92d3a11..2098be8a 100644
--- a/pkg/osx/Execute.h
+++ b/pkg/osx/Execute.h
@@ -25,6 +25,7 @@
void SetProgramLocation(const char *path);
void ExecuteProgram(const char *executable, const char *iwad, const char *args);
+void OpenTerminalWindow(const char *doomwadpath);
#endif /* #ifndef LAUNCHER_EXECUTE_H */
diff --git a/pkg/osx/Execute.m b/pkg/osx/Execute.m
index 1afcab1f..bb4eed45 100644
--- a/pkg/osx/Execute.m
+++ b/pkg/osx/Execute.m
@@ -24,10 +24,16 @@
#include
#include
#include
+#include
#include
#include
+#include
+
+#include "config.h"
+
#define RESPONSE_FILE "/tmp/launcher.rsp"
+#define TEMP_SCRIPT "/tmp/tempscript.sh"
static char *executable_path;
@@ -109,3 +115,83 @@ void ExecuteProgram(const char *executable, const char *iwad, const char *args)
}
}
+// Write a sequence of commands that will display the specified message
+// via shell commands.
+
+static void WriteMessage(FILE *script, char *msg)
+{
+ char *p;
+
+ fprintf(script, "echo \"");
+
+ for (p=msg; *p != '\0'; ++p)
+ {
+ // Start new line?
+
+ if (*p == '\n')
+ {
+ fprintf(script, "\"\necho \"");
+ continue;
+ }
+
+ // Escaped character?
+
+ if (*p == '\\' || *p == '\"')
+ {
+ fprintf(script, "\\");
+ }
+
+ fprintf(script, "%c", *p);
+ }
+
+ fprintf(script, "\"\n");
+}
+
+// Open a terminal window with the PATH set appropriately, and DOOMWADPATH
+// set to the specified value.
+
+void OpenTerminalWindow(const char *doomwadpath)
+{
+ FILE *stream;
+
+ // Generate a shell script that sets the PATH to include the location
+ // where the Doom binaries are, and DOOMWADPATH to include the
+ // IWAD files that have been configured in the launcher interface.
+ // The script then deletes itself and starts a shell.
+
+ stream = fopen(TEMP_SCRIPT, "w");
+
+ fprintf(stream, "#!/bin/sh\n");
+ //fprintf(stream, "set -x\n");
+ fprintf(stream, "PATH=\"%s:$PATH\"\n", executable_path);
+ fprintf(stream, "DOOMWADPATH=\"%s\"\n", doomwadpath);
+ fprintf(stream, "export DOOMWADPATH\n");
+ fprintf(stream, "rm -f \"%s\"\n", TEMP_SCRIPT);
+
+ // Display a useful message:
+
+ fprintf(stream, "clear\n");
+ WriteMessage(stream,
+ "\n"
+ "This command line has the PATH variable configured so that you may\n"
+ "launch the game with whatever parameters you desire.\n"
+ "\n"
+ "For example:\n"
+ "\n"
+ " " PACKAGE_TARNAME " -iwad doom2.wad -file sid.wad -warp 1\n"
+ "\n"
+ "Type 'exit' to exit.\n");
+
+ fprintf(stream, "exec $SHELL\n");
+ fprintf(stream, "\n");
+
+ fclose(stream);
+
+ chmod(TEMP_SCRIPT, 0755);
+
+ // Tell the terminal to open a window to run the script.
+
+ [[NSWorkspace sharedWorkspace] openFile: @TEMP_SCRIPT
+ withApplication: @"Terminal"];
+}
+
diff --git a/pkg/osx/IWADController.h b/pkg/osx/IWADController.h
index 8bdd0d55..90f44667 100644
--- a/pkg/osx/IWADController.h
+++ b/pkg/osx/IWADController.h
@@ -45,6 +45,7 @@
- (BOOL) setDropdownList;
- (void) setDropdownSelection;
- (void) saveConfig;
+- (char *) doomWadPath;
- (void) setEnvironment;
@end
diff --git a/pkg/osx/IWADController.m b/pkg/osx/IWADController.m
index a7730cc7..3c596850 100644
--- a/pkg/osx/IWADController.m
+++ b/pkg/osx/IWADController.m
@@ -264,10 +264,10 @@ static NSString *IWADFilenames[NUM_IWAD_TYPES + 1] =
}
}
-// Set the DOOMWADPATH environment variable to contain the path to each
-// of the configured IWAD files.
+// Generate a value to set for the DOOMWADPATH environment variable
+// that contains each of the configured IWAD files.
-- (void) setEnvironment
+- (char *) doomWadPath
{
IWADLocation *iwadList[NUM_IWAD_TYPES];
NSString *location;
@@ -280,7 +280,7 @@ static NSString *IWADFilenames[NUM_IWAD_TYPES + 1] =
// Calculate length of environment string.
- len = 30;
+ len = 0;
for (i=0; iiwadController doomWadPath];
+
+ OpenTerminalWindow(doomwadpath);
+
+ free(doomwadpath);
+}
+
- (void) awakeFromNib
{
[self->packageLabel setStringValue: @PACKAGE_STRING];
diff --git a/pkg/osx/Resources/launcher.nib/classes.nib b/pkg/osx/Resources/launcher.nib/classes.nib
index 3ff47e71..236f6b67 100644
--- a/pkg/osx/Resources/launcher.nib/classes.nib
+++ b/pkg/osx/Resources/launcher.nib/classes.nib
@@ -30,7 +30,7 @@
SUPERCLASS = NSObject;
},
{
- ACTIONS = {launch = id; runSetup = id; };
+ ACTIONS = {launch = id; openTerminal = id; runSetup = id; };
CLASS = LauncherManager;
LANGUAGE = ObjC;
OUTLETS = {
diff --git a/pkg/osx/Resources/launcher.nib/info.nib b/pkg/osx/Resources/launcher.nib/info.nib
index aecf812a..32b331f5 100644
--- a/pkg/osx/Resources/launcher.nib/info.nib
+++ b/pkg/osx/Resources/launcher.nib/info.nib
@@ -3,18 +3,18 @@
IBDocumentLocation
- 170 140 612 260 0 0 1440 878
+ 484 105 612 260 0 0 1440 878
IBEditorPositions
29
- 108 337 163 44 0 0 1440 878
+ 221 322 205 44 0 0 1440 878
IBFramework Version
446.1
IBOpenObjects
- 21
29
+ 21
227
IBSystem Version
diff --git a/pkg/osx/Resources/launcher.nib/keyedobjects.nib b/pkg/osx/Resources/launcher.nib/keyedobjects.nib
index 12cf6aa5..4f078d7c 100644
Binary files a/pkg/osx/Resources/launcher.nib/keyedobjects.nib and b/pkg/osx/Resources/launcher.nib/keyedobjects.nib differ
--
cgit v1.2.3
From 7c47cdf16112ed6b15e8a918377156035a166f1e Mon Sep 17 00:00:00 2001
From: Simon Howard
Date: Tue, 26 Jan 2010 19:18:18 +0000
Subject: Fix glass hack windows where a linedef is flagged as two sided but
has only one side. Fixes WADs such as OTTAWAU.WAD (thanks Never_Again).
Subversion-branch: /trunk/chocolate-doom
Subversion-revision: 1826
---
NEWS | 2 ++
src/p_map.c | 21 +++++++++++++++++++--
src/p_setup.c | 27 +++++++++++++++++++++++----
src/p_sight.c | 10 +++++++++-
4 files changed, 53 insertions(+), 7 deletions(-)
diff --git a/NEWS b/NEWS
index 9c267b12..abe5aa9d 100644
--- a/NEWS
+++ b/NEWS
@@ -50,6 +50,8 @@
instead of the red colormaps normally used when taking damage
or using the berserk pack. This matches Vanilla chex.exe
behavior (thanks Fuzztooth).
+ * Impassible glass now displays and works the same as in Vanilla,
+ fixing wads such as OTTAWAU.WAD (thanks Never_Again).
Bugs fixed:
* Memory-mapped WAD I/O is disabled by default, as it caused
diff --git a/src/p_map.c b/src/p_map.c
index 89f8f3f8..b50fff2c 100644
--- a/src/p_map.c
+++ b/src/p_map.c
@@ -885,7 +885,17 @@ PTR_AimTraverse (intercept_t* in)
dist = FixedMul (attackrange, in->frac);
- if (li->frontsector->floorheight != li->backsector->floorheight)
+ // Return false if there is no back sector. This should never
+ // be the case if the line is two-sided; however, some WADs
+ // (eg. ottawau.wad) use this as an "impassible glass" trick
+ // and rely on Vanilla Doom's (unintentional) support for this.
+
+ if (li->backsector == NULL)
+ {
+ return false;
+ }
+
+ if (li->frontsector->floorheight != li->backsector->floorheight)
{
slope = FixedDiv (openbottom - shootz , dist);
if (slope > bottomslope)
@@ -973,7 +983,14 @@ boolean PTR_ShootTraverse (intercept_t* in)
dist = FixedMul (attackrange, in->frac);
- if (li->frontsector->floorheight != li->backsector->floorheight)
+ // Check if backsector is NULL. See comment in PTR_AimTraverse.
+
+ if (li->backsector == NULL)
+ {
+ goto hitline;
+ }
+
+ if (li->frontsector->floorheight != li->backsector->floorheight)
{
slope = FixedDiv (openbottom - shootz , dist);
if (slope > aimslope)
diff --git a/src/p_setup.c b/src/p_setup.c
index 5cf7a628..2a3a8f85 100644
--- a/src/p_setup.c
+++ b/src/p_setup.c
@@ -167,6 +167,7 @@ void P_LoadSegs (int lump)
line_t* ldef;
int linedef;
int side;
+ int sidenum;
numsegs = W_LumpLength (lump) / sizeof(mapseg_t);
segs = Z_Malloc (numsegs*sizeof(seg_t),PU_LEVEL,0);
@@ -179,7 +180,7 @@ void P_LoadSegs (int lump)
{
li->v1 = &vertexes[SHORT(ml->v1)];
li->v2 = &vertexes[SHORT(ml->v2)];
-
+
li->angle = (SHORT(ml->angle))<<16;
li->offset = (SHORT(ml->offset))<<16;
linedef = SHORT(ml->linedef);
@@ -188,10 +189,28 @@ void P_LoadSegs (int lump)
side = SHORT(ml->side);
li->sidedef = &sides[ldef->sidenum[side]];
li->frontsector = sides[ldef->sidenum[side]].sector;
- if (ldef-> flags & ML_TWOSIDED)
- li->backsector = sides[ldef->sidenum[side^1]].sector;
- else
+
+ if (ldef-> flags & ML_TWOSIDED)
+ {
+ sidenum = ldef->sidenum[side ^ 1];
+
+ // If the sidenum is out of range, this may be a "glass hack"
+ // impassible window. Point at side #0 (this may not be
+ // the correct Vanilla behavior; however, it seems to work for
+ // OTTAWAU.WAD, which is the one place I've seen this trick
+ // used).
+
+ if (sidenum < 0 || sidenum >= numsides)
+ {
+ sidenum = 0;
+ }
+
+ li->backsector = sides[sidenum].sector;
+ }
+ else
+ {
li->backsector = 0;
+ }
}
W_ReleaseLumpNum(lump);
diff --git a/src/p_sight.c b/src/p_sight.c
index e192567b..79c1bb1d 100644
--- a/src/p_sight.c
+++ b/src/p_sight.c
@@ -173,7 +173,7 @@ boolean P_CrossSubsector (int num)
continue;
line->validcount = validcount;
-
+
v1 = line->v1;
v2 = line->v2;
s1 = P_DivlineSide (v1->x,v1->y, &strace);
@@ -194,6 +194,14 @@ boolean P_CrossSubsector (int num)
if (s1 == s2)
continue;
+ // Backsector may be NULL if this is an "impassible
+ // glass" hack line.
+
+ if (line->backsector == NULL)
+ {
+ return false;
+ }
+
// stop because it is not two sided anyway
// might do this after updating validcount?
if ( !(line->flags & ML_TWOSIDED) )
--
cgit v1.2.3
From cf4d0c3bc80651ec29116d895afeb9c5161b3168 Mon Sep 17 00:00:00 2001
From: Simon Howard
Date: Tue, 26 Jan 2010 19:21:18 +0000
Subject: Minor fix of British spelling -> American.
Subversion-branch: /trunk/chocolate-doom
Subversion-revision: 1827
---
INSTALL | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/INSTALL b/INSTALL
index cb076992..80df9361 100644
--- a/INSTALL
+++ b/INSTALL
@@ -23,7 +23,7 @@ Building Chocolate Doom
On a Unix system, follow the standard instructions for installing an
autotools-based package:
- 1. Run './configure' to initialise the package.
+ 1. Run './configure' to initialize the package.
2. Run 'make' to compile the package.
3. Run 'make install' to install the package.
--
cgit v1.2.3
From a9e2d244a5a37fed344405e40698de2a2969c12a Mon Sep 17 00:00:00 2001
From: Simon Howard
Date: Wed, 27 Jan 2010 19:16:26 +0000
Subject: Add tags files to svn:ignore properties.
Subversion-branch: /trunk/chocolate-doom
Subversion-revision: 1828
---
.gitignore | 3 +++
pcsound/.gitignore | 2 ++
setup/.gitignore | 2 ++
src/.gitignore | 2 ++
textscreen/.gitignore | 2 ++
textscreen/examples/.gitignore | 2 ++
wince/.gitignore | 2 ++
7 files changed, 15 insertions(+)
diff --git a/.gitignore b/.gitignore
index c4da3d0e..34652d0c 100644
--- a/.gitignore
+++ b/.gitignore
@@ -10,9 +10,12 @@ config.log
config.status
config.h
autom4te.cache
+rpm.spec
stamp-h
stamp-h.in
stamp-h1
+tags
+TAGS
# These are the default patterns globally ignored by Subversion:
*.o
diff --git a/pcsound/.gitignore b/pcsound/.gitignore
index 9889f6d5..022c663e 100644
--- a/pcsound/.gitignore
+++ b/pcsound/.gitignore
@@ -3,4 +3,6 @@ Makefile
.deps
libpcsound.a
*.rc
+tags
+TAGS
diff --git a/setup/.gitignore b/setup/.gitignore
index e2da8a59..37c8e4c1 100644
--- a/setup/.gitignore
+++ b/setup/.gitignore
@@ -4,3 +4,5 @@ Makefile
chocolate-setup
*.rc
*.exe
+tags
+TAGS
diff --git a/src/.gitignore b/src/.gitignore
index d7e732ad..973a0073 100644
--- a/src/.gitignore
+++ b/src/.gitignore
@@ -5,3 +5,5 @@ Makefile.in
chocolate-doom
chocolate-server
*.exe
+tags
+TAGS
diff --git a/textscreen/.gitignore b/textscreen/.gitignore
index 6f6e5b3b..3be8ec0c 100644
--- a/textscreen/.gitignore
+++ b/textscreen/.gitignore
@@ -2,3 +2,5 @@ Makefile
Makefile.in
.deps
*.a
+tags
+TAGS
diff --git a/textscreen/examples/.gitignore b/textscreen/examples/.gitignore
index b75bfc6b..cb0fd52c 100644
--- a/textscreen/examples/.gitignore
+++ b/textscreen/examples/.gitignore
@@ -4,3 +4,5 @@ Makefile
guitest
calculator
*.exe
+tags
+TAGS
diff --git a/wince/.gitignore b/wince/.gitignore
index 051d1bd5..d4e88e5a 100644
--- a/wince/.gitignore
+++ b/wince/.gitignore
@@ -1,3 +1,5 @@
Makefile
Makefile.in
.deps
+tags
+TAGS
--
cgit v1.2.3
From 6fbd6eafb3dec01401a033eae2e2ec7a2d00ec1c Mon Sep 17 00:00:00 2001
From: Simon Howard
Date: Fri, 29 Jan 2010 03:55:20 +0000
Subject: Fix indentation/style etc. in mus2mid.c.
Subversion-branch: /trunk/chocolate-doom
Subversion-revision: 1830
---
src/mus2mid.c | 951 +++++++++++++++++++++++++++++-----------------------------
1 file changed, 479 insertions(+), 472 deletions(-)
diff --git a/src/mus2mid.c b/src/mus2mid.c
index 66051bae..f84be548 100644
--- a/src/mus2mid.c
+++ b/src/mus2mid.c
@@ -1,4 +1,4 @@
-// Emacs style mode select -*- C++ -*-
+// Emacs style mode select -*- C++ -*-
//-----------------------------------------------------------------------------
//
// Copyright(C) 1993-1996 Id Software, Inc.
@@ -33,593 +33,600 @@
#include "mus2mid.h"
// MUS event codes
-typedef enum
+typedef enum
{
- mus_releasekey = 0x00,
- mus_presskey = 0x10,
- mus_pitchwheel = 0x20,
- mus_systemevent = 0x30,
- mus_changecontroller = 0x40,
- mus_scoreend = 0x60
+ mus_releasekey = 0x00,
+ mus_presskey = 0x10,
+ mus_pitchwheel = 0x20,
+ mus_systemevent = 0x30,
+ mus_changecontroller = 0x40,
+ mus_scoreend = 0x60
} musevent;
// MIDI event codes
-typedef enum
+typedef enum
{
- midi_releasekey = 0x80,
- midi_presskey = 0x90,
- midi_aftertouchkey = 0xA0,
- midi_changecontroller = 0xB0,
- midi_changepatch = 0xC0,
- midi_aftertouchchannel = 0xD0,
- midi_pitchwheel = 0xE0
+ midi_releasekey = 0x80,
+ midi_presskey = 0x90,
+ midi_aftertouchkey = 0xA0,
+ midi_changecontroller = 0xB0,
+ midi_changepatch = 0xC0,
+ midi_aftertouchchannel = 0xD0,
+ midi_pitchwheel = 0xE0
} midievent;
// Structure to hold MUS file header
-typedef struct
+typedef struct
{
- byte id[4];
- unsigned short scorelength;
- unsigned short scorestart;
- unsigned short primarychannels;
- unsigned short secondarychannels;
- unsigned short instrumentcount;
+ byte id[4];
+ unsigned short scorelength;
+ unsigned short scorestart;
+ unsigned short primarychannels;
+ unsigned short secondarychannels;
+ unsigned short instrumentcount;
} PACKEDATTR musheader;
// Standard MIDI type 0 header + track header
-static byte midiheader[] =
+static byte midiheader[] =
{
- 'M', 'T', 'h', 'd', // Main header
- 0x00, 0x00, 0x00, 0x06, // Header size
- 0x00, 0x00, // MIDI type (0)
- 0x00, 0x01, // Number of tracks
- 0x00, 0x46, // Resolution
- 'M', 'T', 'r', 'k', // Start of track
- 0x00, 0x00, 0x00, 0x00 // Placeholder for track length
+ 'M', 'T', 'h', 'd', // Main header
+ 0x00, 0x00, 0x00, 0x06, // Header size
+ 0x00, 0x00, // MIDI type (0)
+ 0x00, 0x01, // Number of tracks
+ 0x00, 0x46, // Resolution
+ 'M', 'T', 'r', 'k', // Start of track
+ 0x00, 0x00, 0x00, 0x00 // Placeholder for track length
};
// Cached channel velocities
-static byte channelvelocities[] =
-{
- 127, 127, 127, 127, 127, 127, 127, 127,
- 127, 127, 127, 127, 127, 127, 127, 127
+static byte channelvelocities[] =
+{
+ 127, 127, 127, 127, 127, 127, 127, 127,
+ 127, 127, 127, 127, 127, 127, 127, 127
};
// Timestamps between sequences of MUS events
-static unsigned int queuedtime = 0;
+static unsigned int queuedtime = 0;
// Counter for the length of the track
static unsigned int tracksize;
-static byte mus2midi_translation[] =
-{
- 0x00, 0x20, 0x01, 0x07, 0x0A, 0x0B, 0x5B, 0x5D,
- 0x40, 0x43, 0x78, 0x7B, 0x7E, 0x7F, 0x79
+static byte mus2midi_translation[] =
+{
+ 0x00, 0x20, 0x01, 0x07, 0x0A, 0x0B, 0x5B, 0x5D,
+ 0x40, 0x43, 0x78, 0x7B, 0x7E, 0x7F, 0x79
};
// Write timestamp to a MIDI file.
-static boolean midi_writetime(unsigned int time, MEMFILE *midioutput)
+static boolean midi_writetime(unsigned int time, MEMFILE *midioutput)
{
- unsigned int buffer = time & 0x7F;
- byte writeval;
-
- while ((time >>= 7) != 0)
- {
- buffer <<= 8;
- buffer |= ((time & 0x7F) | 0x80);
- }
-
- for (;;)
- {
- writeval = (byte)(buffer & 0xFF);
-
- if (mem_fwrite(&writeval, 1, 1, midioutput) != 1)
- {
- return true;
- }
-
- ++tracksize;
-
- if ((buffer & 0x80) != 0)
- {
- buffer >>= 8;
- }
- else
- {
- queuedtime = 0;
- return false;
- }
- }
+ unsigned int buffer = time & 0x7F;
+ byte writeval;
+
+ while ((time >>= 7) != 0)
+ {
+ buffer <<= 8;
+ buffer |= ((time & 0x7F) | 0x80);
+ }
+
+ for (;;)
+ {
+ writeval = (byte)(buffer & 0xFF);
+
+ if (mem_fwrite(&writeval, 1, 1, midioutput) != 1)
+ {
+ return true;
+ }
+
+ ++tracksize;
+
+ if ((buffer & 0x80) != 0)
+ {
+ buffer >>= 8;
+ }
+ else
+ {
+ queuedtime = 0;
+ return false;
+ }
+ }
}
// Write the end of track marker
-static boolean midi_writeendtrack(MEMFILE *midioutput)
+static boolean midi_writeendtrack(MEMFILE *midioutput)
{
- byte endtrack[] = {0xFF, 0x2F, 0x00};
+ byte endtrack[] = {0xFF, 0x2F, 0x00};
- if (midi_writetime(queuedtime, midioutput))
- {
- return true;
- }
+ if (midi_writetime(queuedtime, midioutput))
+ {
+ return true;
+ }
- if (mem_fwrite(endtrack, 1, 3, midioutput) != 3)
- {
- return true;
- }
+ if (mem_fwrite(endtrack, 1, 3, midioutput) != 3)
+ {
+ return true;
+ }
- tracksize += 3;
- return false;
+ tracksize += 3;
+ return false;
}
// Write a key press event
-static boolean midi_writepresskey(byte channel, byte key,
- byte velocity, MEMFILE *midioutput)
+static boolean midi_writepresskey(byte channel, byte key,
+ byte velocity, MEMFILE *midioutput)
{
- byte working = midi_presskey | channel;
-
- if (midi_writetime(queuedtime, midioutput))
- {
- return true;
- }
-
- if (mem_fwrite(&working, 1, 1, midioutput) != 1)
- {
- return true;
- }
-
- working = key & 0x7F;
-
- if (mem_fwrite(&working, 1, 1, midioutput) != 1)
- {
- return true;
- }
-
- working = velocity & 0x7F;
-
- if (mem_fwrite(&working, 1, 1, midioutput) != 1)
- {
- return true;
- }
-
- tracksize += 3;
-
- return false;
+ byte working = midi_presskey | channel;
+
+ if (midi_writetime(queuedtime, midioutput))
+ {
+ return true;
+ }
+
+ if (mem_fwrite(&working, 1, 1, midioutput) != 1)
+ {
+ return true;
+ }
+
+ working = key & 0x7F;
+
+ if (mem_fwrite(&working, 1, 1, midioutput) != 1)
+ {
+ return true;
+ }
+
+ working = velocity & 0x7F;
+
+ if (mem_fwrite(&working, 1, 1, midioutput) != 1)
+ {
+ return true;
+ }
+
+ tracksize += 3;
+
+ return false;
}
// Write a key release event
-static boolean midi_writereleasekey(byte channel, byte key,
- MEMFILE *midioutput)
+static boolean midi_writereleasekey(byte channel, byte key,
+ MEMFILE *midioutput)
{
- byte working = midi_releasekey | channel;
+ byte working = midi_releasekey | channel;
- if (midi_writetime(queuedtime, midioutput))
- {
- return true;
- }
+ if (midi_writetime(queuedtime, midioutput))
+ {
+ return true;
+ }
- if (mem_fwrite(&working, 1, 1, midioutput) != 1)
- {
- return true;
- }
+ if (mem_fwrite(&working, 1, 1, midioutput) != 1)
+ {
+ return true;
+ }
- working = key & 0x7F;
+ working = key & 0x7F;
- if (mem_fwrite(&working, 1, 1, midioutput) != 1)
- {
- return true;
- }
+ if (mem_fwrite(&working, 1, 1, midioutput) != 1)
+ {
+ return true;
+ }
- working = 0;
+ working = 0;
- if (mem_fwrite(&working, 1, 1, midioutput) != 1)
- {
- return true;
- }
+ if (mem_fwrite(&working, 1, 1, midioutput) != 1)
+ {
+ return true;
+ }
- tracksize += 3;
+ tracksize += 3;
- return false;
+ return false;
}
// Write a pitch wheel/bend event
-static boolean midi_writepitchwheel(byte channel, short wheel,
- MEMFILE *midioutput)
+static boolean midi_writepitchwheel(byte channel, short wheel,
+ MEMFILE *midioutput)
{
- byte working = midi_pitchwheel | channel;
+ byte working = midi_pitchwheel | channel;
- if (midi_writetime(queuedtime, midioutput))
- {
- return true;
- }
+ if (midi_writetime(queuedtime, midioutput))
+ {
+ return true;
+ }
- if (mem_fwrite(&working, 1, 1, midioutput) != 1)
- {
- return true;
- }
+ if (mem_fwrite(&working, 1, 1, midioutput) != 1)
+ {
+ return true;
+ }
- working = wheel & 0x7F;
+ working = wheel & 0x7F;
- if (mem_fwrite(&working, 1, 1, midioutput) != 1)
- {
- return true;
- }
+ if (mem_fwrite(&working, 1, 1, midioutput) != 1)
+ {
+ return true;
+ }
- working = (wheel >> 7) & 0x7F;
+ working = (wheel >> 7) & 0x7F;
- if (mem_fwrite(&working, 1, 1, midioutput) != 1)
- {
- return true;
- }
+ if (mem_fwrite(&working, 1, 1, midioutput) != 1)
+ {
+ return true;
+ }
- tracksize += 3;
- return false;
+ tracksize += 3;
+ return false;
}
// Write a patch change event
static boolean midi_writechangepatch(byte channel, byte patch,
- MEMFILE *midioutput)
+ MEMFILE *midioutput)
{
- byte working = midi_changepatch | channel;
-
- if (midi_writetime(queuedtime, midioutput))
- {
- return true;
- }
+ byte working = midi_changepatch | channel;
- if (mem_fwrite(&working, 1, 1, midioutput) != 1)
- {
- return true;
- }
+ if (midi_writetime(queuedtime, midioutput))
+ {
+ return true;
+ }
- working = patch & 0x7F;
+ if (mem_fwrite(&working, 1, 1, midioutput) != 1)
+ {
+ return true;
+ }
- if (mem_fwrite(&working, 1, 1, midioutput) != 1)
- {
- return true;
- }
+ working = patch & 0x7F;
- tracksize += 2;
-
- return false;
-}
+ if (mem_fwrite(&working, 1, 1, midioutput) != 1)
+ {
+ return true;
+ }
+ tracksize += 2;
+ return false;
+}
// Write a valued controller change event
-static boolean midi_writechangecontroller_valued(byte channel,
- byte control,
- byte value,
- MEMFILE *midioutput)
+
+static boolean midi_writechangecontroller_valued(byte channel,
+ byte control,
+ byte value,
+ MEMFILE *midioutput)
{
- byte working = midi_changecontroller | channel;
+ byte working = midi_changecontroller | channel;
- if (midi_writetime(queuedtime, midioutput))
- {
- return true;
- }
+ if (midi_writetime(queuedtime, midioutput))
+ {
+ return true;
+ }
- if (mem_fwrite(&working, 1, 1, midioutput) != 1)
- {
- return true;
- }
+ if (mem_fwrite(&working, 1, 1, midioutput) != 1)
+ {
+ return true;
+ }
- working = control & 0x7F;
+ working = control & 0x7F;
- if (mem_fwrite(&working, 1, 1, midioutput) != 1)
- {
- return true;
- }
- // Quirk in vanilla DOOM? MUS controller values should be
- // 7-bit, not 8-bit.
+ if (mem_fwrite(&working, 1, 1, midioutput) != 1)
+ {
+ return true;
+ }
- working = value;// & 0x7F;
+ // Quirk in vanilla DOOM? MUS controller values should be
+ // 7-bit, not 8-bit.
- // Fix on said quirk to stop MIDI players from complaining that
- // the value is out of range:
+ working = value;// & 0x7F;
- if (working & 0x80)
- {
- working = 0x7F;
- }
+ // Fix on said quirk to stop MIDI players from complaining that
+ // the value is out of range:
- if (mem_fwrite(&working, 1, 1, midioutput) != 1)
- {
- return true;
- }
+ if (working & 0x80)
+ {
+ working = 0x7F;
+ }
- tracksize += 3;
+ if (mem_fwrite(&working, 1, 1, midioutput) != 1)
+ {
+ return true;
+ }
- return false;
+ tracksize += 3;
+
+ return false;
}
// Write a valueless controller change event
-static boolean midi_writechangecontroller_valueless(byte channel,
- byte control,
- MEMFILE *midioutput)
+static boolean midi_writechangecontroller_valueless(byte channel,
+ byte control,
+ MEMFILE *midioutput)
{
- return midi_writechangecontroller_valued(channel, control, 0,
- midioutput);
+ return midi_writechangecontroller_valued(channel, control, 0,
+ midioutput);
}
static boolean read_musheader(MEMFILE *file, musheader *header)
{
- boolean result;
-
- result = (mem_fread(&header->id, sizeof(byte), 4, file) == 4)
- && (mem_fread(&header->scorelength, sizeof(short), 1, file) == 1)
- && (mem_fread(&header->scorestart, sizeof(short), 1, file) == 1)
- && (mem_fread(&header->primarychannels, sizeof(short), 1, file) == 1)
- && (mem_fread(&header->secondarychannels, sizeof(short), 1, file) == 1)
- && (mem_fread(&header->instrumentcount, sizeof(short), 1, file) == 1);
-
- if (result)
- {
- header->scorelength = SHORT(header->scorelength);
- header->scorestart = SHORT(header->scorestart);
- header->primarychannels = SHORT(header->primarychannels);
- header->secondarychannels = SHORT(header->secondarychannels);
- header->instrumentcount = SHORT(header->instrumentcount);
- }
-
- return result;
+ boolean result;
+
+ result = mem_fread(&header->id, sizeof(byte), 4, file) == 4
+ && mem_fread(&header->scorelength, sizeof(short), 1, file) == 1
+ && mem_fread(&header->scorestart, sizeof(short), 1, file) == 1
+ && mem_fread(&header->primarychannels, sizeof(short), 1, file) == 1
+ && mem_fread(&header->secondarychannels, sizeof(short), 1, file) == 1
+ && mem_fread(&header->instrumentcount, sizeof(short), 1, file) == 1;
+
+ if (result)
+ {
+ header->scorelength = SHORT(header->scorelength);
+ header->scorestart = SHORT(header->scorestart);
+ header->primarychannels = SHORT(header->primarychannels);
+ header->secondarychannels = SHORT(header->secondarychannels);
+ header->instrumentcount = SHORT(header->instrumentcount);
+ }
+
+ return result;
}
-// Read a MUS file from a stream (musinput) and output a MIDI file to
+// Read a MUS file from a stream (musinput) and output a MIDI file to
// a stream (midioutput).
//
// Returns 0 on success or 1 on failure.
-boolean mus2mid(MEMFILE *musinput, MEMFILE *midioutput)
+boolean mus2mid(MEMFILE *musinput, MEMFILE *midioutput)
{
- // Header for the MUS file
- musheader musfileheader;
+ // Header for the MUS file
+ musheader musfileheader;
+
+ // Descriptor for the current MUS event
+ byte eventdescriptor;
+ int channel; // Channel number
+ musevent event;
- // Descriptor for the current MUS event
- byte eventdescriptor;
- int channel; // Channel number
- musevent event;
-
- // Bunch of vars read from MUS lump
- byte key;
- byte controllernumber;
- byte controllervalue;
+ // Bunch of vars read from MUS lump
+ byte key;
+ byte controllernumber;
+ byte controllervalue;
- // Buffer used for MIDI track size record
- byte tracksizebuffer[4];
+ // Buffer used for MIDI track size record
+ byte tracksizebuffer[4];
- // Flag for when the score end marker is hit.
- int hitscoreend = 0;
+ // Flag for when the score end marker is hit.
+ int hitscoreend = 0;
- // Temp working byte
- byte working;
- // Used in building up time delays
- unsigned int timedelay;
+ // Temp working byte
+ byte working;
+ // Used in building up time delays
+ unsigned int timedelay;
- // Grab the header
+ // Grab the header
- if (!read_musheader(musinput, &musfileheader))
- {
- return true;
- }
+ if (!read_musheader(musinput, &musfileheader))
+ {
+ return true;
+ }
#ifdef CHECK_MUS_HEADER
- // Check MUS header
- if (musfileheader.id[0] != 'M'
- || musfileheader.id[1] != 'U'
- || musfileheader.id[2] != 'S'
- || musfileheader.id[3] != 0x1A)
- {
- return true;
- }
+ // Check MUS header
+ if (musfileheader.id[0] != 'M'
+ || musfileheader.id[1] != 'U'
+ || musfileheader.id[2] != 'S'
+ || musfileheader.id[3] != 0x1A)
+ {
+ return true;
+ }
#endif
- // Seek to where the data is held
- if (mem_fseek(musinput, (long)musfileheader.scorestart,
- MEM_SEEK_SET) != 0)
- {
- return true;
- }
-
- // So, we can assume the MUS file is faintly legit. Let's start
- // writing MIDI data...
-
- mem_fwrite(midiheader, 1, sizeof(midiheader), midioutput);
- tracksize = 0;
-
- // Now, process the MUS file:
- while (!hitscoreend)
- {
- // Handle a block of events:
-
- while (!hitscoreend)
- {
- // Fetch channel number and event code:
-
- if (mem_fread(&eventdescriptor, 1, 1, musinput) != 1)
- {
- return true;
- }
-
- channel = eventdescriptor & 0x0F;
- event = eventdescriptor & 0x70;
-
- // Swap channels 15 and 9.
- // MIDI channel 9 = percussion.
- // MUS channel 15 = percussion.
-
- if (channel == 15)
- {
- channel = 9;
- }
- else if (channel == 9)
- {
- channel = 15;
- }
-
- switch (event)
- {
- case mus_releasekey:
- if (mem_fread(&key, 1, 1, musinput) != 1)
- {
- return true;
- }
-
- if (midi_writereleasekey(channel, key, midioutput))
- {
- return true;
- }
-
- break;
-
- case mus_presskey:
- if (mem_fread(&key, 1, 1, musinput) != 1)
- {
- return true;
- }
-
- if (key & 0x80)
- {
- if (mem_fread(&channelvelocities[channel], 1, 1, musinput) != 1)
- {
- return true;
- }
-
- channelvelocities[channel] &= 0x7F;
- }
-
- if (midi_writepresskey(channel, key, channelvelocities[channel], midioutput))
- {
- return true;
- }
-
- break;
-
- case mus_pitchwheel:
- if (mem_fread(&key, 1, 1, musinput) != 1)
- {
- break;
- }
- if (midi_writepitchwheel(channel, (short)(key * 64), midioutput))
- {
- return true;
- }
-
- break;
-
- case mus_systemevent:
- if (mem_fread(&controllernumber, 1, 1, musinput) != 1)
- {
- return true;
- }
- if (controllernumber < 10 || controllernumber > 14)
- {
- return true;
- }
-
- if (midi_writechangecontroller_valueless(channel, mus2midi_translation[controllernumber], midioutput))
- {
- return true;
- }
-
- break;
-
- case mus_changecontroller:
- if (mem_fread(&controllernumber, 1, 1, musinput) != 1)
- {
- return true;
- }
-
- if (mem_fread(&controllervalue, 1, 1, musinput) != 1)
- {
- return true;
- }
-
- if (controllernumber == 0)
- {
- if (midi_writechangepatch(channel, controllervalue, midioutput))
- {
- return true;
- }
- }
- else
- {
- if (controllernumber < 1 || controllernumber > 9)
- {
- return true;
- }
-
- if (midi_writechangecontroller_valued(channel, mus2midi_translation[controllernumber], controllervalue, midioutput))
- {
- return true;
- }
- }
-
- break;
-
- case mus_scoreend:
- hitscoreend = 1;
- break;
-
- default:
- return true;
- break;
- }
-
- if (eventdescriptor & 0x80)
- {
- break;
- }
- }
- // Now we need to read the time code:
- if (!hitscoreend)
- {
- timedelay = 0;
- for (;;)
- {
- if (mem_fread(&working, 1, 1, musinput) != 1)
- {
- return true;
- }
-
- timedelay = timedelay * 128 + (working & 0x7F);
- if ((working & 0x80) == 0)
- {
- break;
- }
- }
- queuedtime += timedelay;
- }
- }
-
- // End of track
- if (midi_writeendtrack(midioutput))
- {
- return true;
- }
-
- // Write the track size into the stream
- if (mem_fseek(midioutput, 18, MEM_SEEK_SET))
- {
- return true;
- }
-
- tracksizebuffer[0] = (tracksize >> 24) & 0xff;
- tracksizebuffer[1] = (tracksize >> 16) & 0xff;
- tracksizebuffer[2] = (tracksize >> 8) & 0xff;
- tracksizebuffer[3] = tracksize & 0xff;
-
- if (mem_fwrite(tracksizebuffer, 1, 4, midioutput) != 4)
- {
- return true;
- }
-
- return false;
+ // Seek to where the data is held
+ if (mem_fseek(musinput, (long)musfileheader.scorestart,
+ MEM_SEEK_SET) != 0)
+ {
+ return true;
+ }
+
+ // So, we can assume the MUS file is faintly legit. Let's start
+ // writing MIDI data...
+
+ mem_fwrite(midiheader, 1, sizeof(midiheader), midioutput);
+ tracksize = 0;
+
+ // Now, process the MUS file:
+ while (!hitscoreend)
+ {
+ // Handle a block of events:
+
+ while (!hitscoreend)
+ {
+ // Fetch channel number and event code:
+
+ if (mem_fread(&eventdescriptor, 1, 1, musinput) != 1)
+ {
+ return true;
+ }
+
+ channel = eventdescriptor & 0x0F;
+ event = eventdescriptor & 0x70;
+
+ // Swap channels 15 and 9.
+ // MIDI channel 9 = percussion.
+ // MUS channel 15 = percussion.
+
+ if (channel == 15)
+ {
+ channel = 9;
+ }
+ else if (channel == 9)
+ {
+ channel = 15;
+ }
+
+ switch (event)
+ {
+ case mus_releasekey:
+ if (mem_fread(&key, 1, 1, musinput) != 1)
+ {
+ return true;
+ }
+
+ if (midi_writereleasekey(channel, key, midioutput))
+ {
+ return true;
+ }
+
+ break;
+
+ case mus_presskey:
+ if (mem_fread(&key, 1, 1, musinput) != 1)
+ {
+ return true;
+ }
+
+ if (key & 0x80)
+ {
+ if (mem_fread(&channelvelocities[channel], 1, 1, musinput) != 1)
+ {
+ return true;
+ }
+
+ channelvelocities[channel] &= 0x7F;
+ }
+
+ if (midi_writepresskey(channel, key,
+ channelvelocities[channel], midioutput))
+ {
+ return true;
+ }
+
+ break;
+
+ case mus_pitchwheel:
+ if (mem_fread(&key, 1, 1, musinput) != 1)
+ {
+ break;
+ }
+ if (midi_writepitchwheel(channel, (short)(key * 64), midioutput))
+ {
+ return true;
+ }
+
+ break;
+
+ case mus_systemevent:
+ if (mem_fread(&controllernumber, 1, 1, musinput) != 1)
+ {
+ return true;
+ }
+ if (controllernumber < 10 || controllernumber > 14)
+ {
+ return true;
+ }
+
+ if (midi_writechangecontroller_valueless(channel,
+ mus2midi_translation[controllernumber],
+ midioutput))
+ {
+ return true;
+ }
+
+ break;
+
+ case mus_changecontroller:
+ if (mem_fread(&controllernumber, 1, 1, musinput) != 1)
+ {
+ return true;
+ }
+
+ if (mem_fread(&controllervalue, 1, 1, musinput) != 1)
+ {
+ return true;
+ }
+
+ if (controllernumber == 0)
+ {
+ if (midi_writechangepatch(channel, controllervalue,
+ midioutput))
+ {
+ return true;
+ }
+ }
+ else
+ {
+ if (controllernumber < 1 || controllernumber > 9)
+ {
+ return true;
+ }
+
+ if (midi_writechangecontroller_valued(channel,
+ mus2midi_translation[controllernumber],
+ controllervalue,
+ midioutput))
+ {
+ return true;
+ }
+ }
+
+ break;
+
+ case mus_scoreend:
+ hitscoreend = 1;
+ break;
+
+ default:
+ return true;
+ break;
+ }
+
+ if (eventdescriptor & 0x80)
+ {
+ break;
+ }
+ }
+ // Now we need to read the time code:
+ if (!hitscoreend)
+ {
+ timedelay = 0;
+ for (;;)
+ {
+ if (mem_fread(&working, 1, 1, musinput) != 1)
+ {
+ return true;
+ }
+
+ timedelay = timedelay * 128 + (working & 0x7F);
+ if ((working & 0x80) == 0)
+ {
+ break;
+ }
+ }
+ queuedtime += timedelay;
+ }
+ }
+
+ // End of track
+ if (midi_writeendtrack(midioutput))
+ {
+ return true;
+ }
+
+ // Write the track size into the stream
+ if (mem_fseek(midioutput, 18, MEM_SEEK_SET))
+ {
+ return true;
+ }
+
+ tracksizebuffer[0] = (tracksize >> 24) & 0xff;
+ tracksizebuffer[1] = (tracksize >> 16) & 0xff;
+ tracksizebuffer[2] = (tracksize >> 8) & 0xff;
+ tracksizebuffer[3] = tracksize & 0xff;
+
+ if (mem_fwrite(tracksizebuffer, 1, 4, midioutput) != 4)
+ {
+ return true;
+ }
+
+ return false;
}
--
cgit v1.2.3
From 8e62a8d877b3c17035aa8fe0e353c5429812a318 Mon Sep 17 00:00:00 2001
From: Simon Howard
Date: Fri, 29 Jan 2010 19:17:56 +0000
Subject: When doing a MUS to MID conversion, allocate MIDI channels so that
the lowest-numbered MIDI channels are used before higher-numbered ones. Fixes
ear-piercing whistle sound in the MAP05 music when playing with timidity and
EAWPATS (thanks entryway / HackNeyed).
Subversion-branch: /trunk/chocolate-doom
Subversion-revision: 1831
---
NEWS | 2 ++
src/mus2mid.c | 91 ++++++++++++++++++++++++++++++++++++++++++++++++++---------
2 files changed, 79 insertions(+), 14 deletions(-)
diff --git a/NEWS b/NEWS
index abe5aa9d..ba7c81b1 100644
--- a/NEWS
+++ b/NEWS
@@ -79,6 +79,8 @@
linedef is one sided (thanks Alexander Waldmann).
* Key settings in a configuration file that are out of range
do not cause a crash (thanks entryway).
+ * Fix ear-piercing whistle when playing the MAP05 MIDI music
+ using timidity with EAWPATS (thanks entryway / HackNeyed).
libtextscreen:
* There is now a second, small textscreen font, so that the
diff --git a/src/mus2mid.c b/src/mus2mid.c
index f84be548..3fea1462 100644
--- a/src/mus2mid.c
+++ b/src/mus2mid.c
@@ -32,6 +32,11 @@
#include "memio.h"
#include "mus2mid.h"
+#define NUM_CHANNELS 16
+
+#define MIDI_PERCUSSION_CHAN 9
+#define MUS_PERCUSSION_CHAN 15
+
// MUS event codes
typedef enum
{
@@ -100,6 +105,8 @@ static byte mus2midi_translation[] =
0x40, 0x43, 0x78, 0x7B, 0x7E, 0x7F, 0x79
};
+static int channel_map[NUM_CHANNELS];
+
// Write timestamp to a MIDI file.
static boolean midi_writetime(unsigned int time, MEMFILE *midioutput)
@@ -346,6 +353,68 @@ static boolean midi_writechangecontroller_valueless(byte channel,
midioutput);
}
+// Allocate a free MIDI channel.
+
+static int midi_allocate_channel(void)
+{
+ int result;
+ int max;
+ int i;
+
+ // Find the current highest-allocated channel.
+
+ max = -1;
+
+ for (i=0; i max)
+ {
+ max = channel_map[i];
+ }
+ }
+
+ // max is now equal to the highest-allocated MIDI channel. We can
+ // now allocate the next available channel. This also works if
+ // no channels are currently allocated (max=-1)
+
+ result = max + 1;
+
+ // Don't allocate the MIDI percussion channel!
+
+ if (result == MIDI_PERCUSSION_CHAN)
+ {
+ ++result;
+ }
+
+ return result;
+}
+
+// Given a MUS channel number, get the MIDI channel number to use
+// in the outputted file.
+
+static int midi_get_channel(int mus_channel)
+{
+ // Find the MIDI channel to use for this MUS channel.
+ // MUS channel 15 is the percusssion channel.
+
+ if (mus_channel == MUS_PERCUSSION_CHAN)
+ {
+ return MIDI_PERCUSSION_CHAN;
+ }
+ else
+ {
+ // If a MIDI channel hasn't been allocated for this MUS channel
+ // yet, allocate the next free MIDI channel.
+
+ if (channel_map[mus_channel] == -1)
+ {
+ channel_map[mus_channel] = midi_allocate_channel();
+ }
+
+ return channel_map[mus_channel];
+ }
+}
+
static boolean read_musheader(MEMFILE *file, musheader *header)
{
boolean result;
@@ -402,6 +471,13 @@ boolean mus2mid(MEMFILE *musinput, MEMFILE *midioutput)
// Used in building up time delays
unsigned int timedelay;
+ // Initialise channel map to mark all channels as unused.
+
+ for (channel=0; channel 19616 bytes
5 files changed, 4 insertions(+), 1 deletion(-)
diff --git a/pkg/osx/LauncherManager.h b/pkg/osx/LauncherManager.h
index 76c74624..e454ab4f 100644
--- a/pkg/osx/LauncherManager.h
+++ b/pkg/osx/LauncherManager.h
@@ -32,6 +32,7 @@
IWADController *iwadController;
id launcherWindow;
+ id launchButton;
id commandLineArguments;
id packageLabel;
diff --git a/pkg/osx/LauncherManager.m b/pkg/osx/LauncherManager.m
index ee7ed3dc..ae91ef4d 100644
--- a/pkg/osx/LauncherManager.m
+++ b/pkg/osx/LauncherManager.m
@@ -330,6 +330,7 @@ static NSString *AppendQuotedFilename(NSString *str, NSString *fileName)
[self->packageLabel setStringValue: @PACKAGE_STRING];
[self->launcherWindow setTitle: @PACKAGE_NAME " Launcher"];
[self->launcherWindow center];
+ [self->launcherWindow setDefaultButtonCell: [self->launchButton cell]];
[self setConfig];
}
diff --git a/pkg/osx/Resources/launcher.nib/classes.nib b/pkg/osx/Resources/launcher.nib/classes.nib
index 236f6b67..7efc837a 100644
--- a/pkg/osx/Resources/launcher.nib/classes.nib
+++ b/pkg/osx/Resources/launcher.nib/classes.nib
@@ -36,6 +36,7 @@
OUTLETS = {
commandLineArguments = id;
iwadController = id;
+ launchButton = id;
launcherWindow = id;
packageLabel = id;
};
diff --git a/pkg/osx/Resources/launcher.nib/info.nib b/pkg/osx/Resources/launcher.nib/info.nib
index 32b331f5..512ee6dd 100644
--- a/pkg/osx/Resources/launcher.nib/info.nib
+++ b/pkg/osx/Resources/launcher.nib/info.nib
@@ -3,7 +3,7 @@
IBDocumentLocation
- 484 105 612 260 0 0 1440 878
+ 325 73 612 260 0 0 1440 878
IBEditorPositions
29
diff --git a/pkg/osx/Resources/launcher.nib/keyedobjects.nib b/pkg/osx/Resources/launcher.nib/keyedobjects.nib
index 4f078d7c..cc763056 100644
Binary files a/pkg/osx/Resources/launcher.nib/keyedobjects.nib and b/pkg/osx/Resources/launcher.nib/keyedobjects.nib differ
--
cgit v1.2.3
From fdcd8dda0935403185ba307304028d3a682297a9 Mon Sep 17 00:00:00 2001
From: Simon Howard
Date: Sat, 30 Jan 2010 16:14:04 +0000
Subject: Change directory to home directory before launching the game, so that
recorded demos go somewhere sensible.
Subversion-branch: /trunk/chocolate-doom
Subversion-revision: 1835
---
NEWS | 3 ++-
pkg/osx/Execute.m | 11 +++++++++++
2 files changed, 13 insertions(+), 1 deletion(-)
diff --git a/NEWS b/NEWS
index ba7c81b1..ac12bded 100644
--- a/NEWS
+++ b/NEWS
@@ -9,7 +9,8 @@
no longer necessary to compile binaries for this system by
hand. The package includes a simple graphical launcher
program and can be installed simply by dragging the "Chocolate
- Doom" icon to the Applications folder.
+ Doom" icon to the Applications folder. (thanks to Rikard Lang
+ for extensive testing and feedback)
* The video mode auto-adjust code will automatically choose
windowed mode if no fullscreen video modes are available.
* The zone memory size is automatically reduced on systems with
diff --git a/pkg/osx/Execute.m b/pkg/osx/Execute.m
index bb4eed45..608443e2 100644
--- a/pkg/osx/Execute.m
+++ b/pkg/osx/Execute.m
@@ -100,6 +100,7 @@ static void DoExec(const char *executable, const char *iwad, const char *args)
void ExecuteProgram(const char *executable, const char *iwad, const char *args)
{
pid_t childpid;
+ char *homedir;
childpid = fork();
@@ -107,6 +108,16 @@ void ExecuteProgram(const char *executable, const char *iwad, const char *args)
{
signal(SIGCHLD, SIG_DFL);
+ // Change directory to home dir before launch, so that any demos
+ // are saved somewhere sensible.
+
+ homedir = getenv("HOME");
+
+ if (homedir != NULL)
+ {
+ chdir(homedir);
+ }
+
DoExec(executable, iwad, args);
}
else
--
cgit v1.2.3
From b4f2d75b34b6e2b9bbb2fa6449125d3446a93a73 Mon Sep 17 00:00:00 2001
From: Simon Howard
Date: Sun, 31 Jan 2010 18:21:50 +0000
Subject: Change Windows resource file to use PACKAGE_COPYRIGHT and
PACKAGE_LICENSE macros.
Subversion-branch: /trunk/chocolate-doom
Subversion-revision: 1836
---
src/resource.rc.in | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/resource.rc.in b/src/resource.rc.in
index 318a3fc6..537b4410 100644
--- a/src/resource.rc.in
+++ b/src/resource.rc.in
@@ -13,7 +13,7 @@ FILETYPE 1
VALUE "FileDescription", "@PACKAGE_STRING@"
VALUE "InternalName", "@PACKAGE_TARNAME@"
VALUE "CompanyName", "@PACKAGE_BUGREPORT@"
- VALUE "LegalCopyright", "GNU General Public License"
+ VALUE "LegalCopyright", "@PACKAGE_COPYRIGHT@. Licensed under @PACKAGE_LICENSE@"
VALUE "ProductName", "@PACKAGE_NAME@"
VALUE "ProductVersion", "@PACKAGE_VERSION@"
}
--
cgit v1.2.3