summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorMichael R Sweet <michael.r.sweet@gmail.com>2019-03-22 14:18:23 -0400
committerMichael R Sweet <michael.r.sweet@gmail.com>2019-03-22 14:18:23 -0400
commit3e5092db04d61d342bfbf4fe35dd252a88459065 (patch)
tree7dfd7be0c0aeeee3132608b13cf10fdb46f7fb61 /test
parentefb349bcb837a6c6beb28e1ffd1055b7736ac20d (diff)
downloadcups-3e5092db04d61d342bfbf4fe35dd252a88459065.tar.gz
Update ippeveprinter to use internal copy of printer.png.
Fix a crash bug in load_legacy_attributes.
Diffstat (limited to 'test')
-rw-r--r--test/Dependencies8
-rw-r--r--test/Makefile12
-rw-r--r--test/ippeveprinter.c53
-rw-r--r--test/printer-png.h426
4 files changed, 481 insertions, 18 deletions
diff --git a/test/Dependencies b/test/Dependencies
index 1c0e51f5f..c7bb16175 100644
--- a/test/Dependencies
+++ b/test/Dependencies
@@ -1,3 +1,6 @@
+ippevepcl.o: ippevepcl.c ippevecommon.h ../cups/cups.h ../cups/file.h \
+ ../cups/versioning.h ../cups/ipp.h ../cups/http.h ../cups/array.h \
+ ../cups/language.h ../cups/pwg.h ../cups/raster.h
ippeveprinter.o: ippeveprinter.c ../cups/cups-private.h \
../cups/string-private.h ../config.h ../cups/versioning.h \
../cups/array-private.h ../cups/array.h ../cups/ipp-private.h \
@@ -5,7 +8,10 @@ ippeveprinter.o: ippeveprinter.c ../cups/cups-private.h \
../cups/language.h ../cups/pwg.h ../cups/http-private.h \
../cups/language-private.h ../cups/transcode.h ../cups/pwg-private.h \
../cups/thread-private.h ../cups/ppd-private.h ../cups/ppd.h \
- ../cups/raster.h
+ ../cups/raster.h printer-png.h
+ippeveps.o: ippeveps.c ippevecommon.h ../cups/cups.h ../cups/file.h \
+ ../cups/versioning.h ../cups/ipp.h ../cups/http.h ../cups/array.h \
+ ../cups/language.h ../cups/pwg.h ../cups/raster.h ../cups/ppd.h
ippfind.o: ippfind.c ../cups/cups-private.h ../cups/string-private.h \
../config.h ../cups/versioning.h ../cups/array-private.h \
../cups/array.h ../cups/ipp-private.h ../cups/cups.h ../cups/file.h \
diff --git a/test/Makefile b/test/Makefile
index de9a541ca..d2e047cb5 100644
--- a/test/Makefile
+++ b/test/Makefile
@@ -278,6 +278,18 @@ ipptool-static: ipptool.o ../cups/$(LIBCUPSSTATIC)
#
+# printer-png.h
+#
+
+printer-png.h: printer.png
+ echo "Generating printer-png.h from printer.png..."
+ echo "static const unsigned char printer_png[] =" >printer-png.h
+ echo "{" >>printer-png.h
+ od -t x1 printer.png | cut -b12- | awk '{printf(" "); for (i = 1; i <= NF; i ++) printf("0x%s,", $$i); print "";}' >>printer-png.h
+ echo "};" >>printer-png.h
+
+
+#
# Dependencies...
#
diff --git a/test/ippeveprinter.c b/test/ippeveprinter.c
index ac83020ea..407e60ace 100644
--- a/test/ippeveprinter.c
+++ b/test/ippeveprinter.c
@@ -63,6 +63,8 @@ extern char **environ;
# include <sys/vfs.h>
#endif /* HAVE_SYS_VFS_H */
+#include "printer-png.h"
+
/*
* Constants...
@@ -1862,6 +1864,10 @@ delete_printer(ippeve_printer_t *printer) /* I - Printer */
free(printer->icon);
if (printer->command)
free(printer->command);
+ if (printer->device_uri)
+ free(printer->device_uri);
+ if (printer->ppdfile)
+ free(printer->ppdfile);
if (printer->directory)
free(printer->directory);
if (printer->hostname)
@@ -4357,7 +4363,7 @@ load_legacy_attributes(
else
{
attr = ippAddOctetString(attrs, IPP_TAG_PRINTER, "printer-supply", printer_supply[0], strlen(printer_supply[0]));
- for (i = 1; i < (int)(sizeof(printer_supply_color) / sizeof(printer_supply_color[0])); i ++)
+ for (i = 1; i < (int)(sizeof(printer_supply) / sizeof(printer_supply[0])); i ++)
ippSetOctetString(attrs, &attr, i, printer_supply[i], strlen(printer_supply[i]));
ippAddStrings(attrs, IPP_TAG_PRINTER, IPP_CONST_TAG(IPP_TAG_TEXT), "printer-supply-description", (int)(sizeof(printer_supply_description) / sizeof(printer_supply_description[0])), NULL, printer_supply_description);
@@ -4784,30 +4790,43 @@ process_http(ippeve_client_t *client) /* I - Client connection */
* Send PNG icon file.
*/
- int fd; /* Icon file */
- struct stat fileinfo; /* Icon file information */
- char buffer[4096]; /* Copy buffer */
- ssize_t bytes; /* Bytes */
+ if (client->printer->icon)
+ {
+ int fd; /* Icon file */
+ struct stat fileinfo; /* Icon file information */
+ char buffer[4096]; /* Copy buffer */
+ ssize_t bytes; /* Bytes */
- fprintf(stderr, "Icon file is \"%s\".\n", client->printer->icon);
+ fprintf(stderr, "Icon file is \"%s\".\n", client->printer->icon);
- if (!stat(client->printer->icon, &fileinfo) && (fd = open(client->printer->icon, O_RDONLY)) >= 0)
- {
- if (!respond_http(client, HTTP_STATUS_OK, NULL, "image/png", (size_t)fileinfo.st_size))
+ if (!stat(client->printer->icon, &fileinfo) && (fd = open(client->printer->icon, O_RDONLY)) >= 0)
{
+ if (!respond_http(client, HTTP_STATUS_OK, NULL, "image/png", (size_t)fileinfo.st_size))
+ {
+ close(fd);
+ return (0);
+ }
+
+ while ((bytes = read(fd, buffer, sizeof(buffer))) > 0)
+ httpWrite2(client->http, buffer, (size_t)bytes);
+
+ httpFlushWrite(client->http);
+
close(fd);
- return (0);
}
+ else
+ return (respond_http(client, HTTP_STATUS_NOT_FOUND, NULL, NULL, 0));
+ }
+ else
+ {
+ fputs("Icon file is internal printer.png.\n", stderr);
- while ((bytes = read(fd, buffer, sizeof(buffer))) > 0)
- httpWrite2(client->http, buffer, (size_t)bytes);
+ if (!respond_http(client, HTTP_STATUS_OK, NULL, "image/png", sizeof(printer_png)))
+ return (0);
+ httpWrite2(client->http, (const char *)printer_png, sizeof(printer_png));
httpFlushWrite(client->http);
-
- close(fd);
}
- else
- return (respond_http(client, HTTP_STATUS_NOT_FOUND, NULL, NULL, 0));
}
else if (!strcmp(client->uri, "/"))
{
@@ -4854,7 +4873,7 @@ process_http(ippeve_client_t *client) /* I - Client connection */
{
_cupsRWLockRead(&(client->printer->rwlock));
- html_printf(client, "<table class=\"striped\" summary=\"Jobs\"><thead><tr><th>Job #</th><th>Name</th><th>Owner</th><th>When</th></tr></thead><tbody>\n");
+ html_printf(client, "<table class=\"striped\" summary=\"Jobs\"><thead><tr><th>Job #</th><th>Name</th><th>Owner</th><th>Status</th></tr></thead><tbody>\n");
for (job = (ippeve_job_t *)cupsArrayFirst(client->printer->jobs); job; job = (ippeve_job_t *)cupsArrayNext(client->printer->jobs))
{
char when[256], /* When job queued/started/finished */
diff --git a/test/printer-png.h b/test/printer-png.h
new file mode 100644
index 000000000..33f2380e1
--- /dev/null
+++ b/test/printer-png.h
@@ -0,0 +1,426 @@
+static const unsigned char printer_png[] =
+{
+ 0x89,0x50,0x4e,0x47,0x0d,0x0a,0x1a,0x0a,0x00,0x00,0x00,0x0d,0x49,0x48,0x44,0x52,
+ 0x00,0x00,0x00,0x80,0x00,0x00,0x00,0x80,0x08,0x06,0x00,0x00,0x00,0xc3,0x3e,0x61,
+ 0xcb,0x00,0x00,0x04,0x24,0x69,0x43,0x43,0x50,0x49,0x43,0x43,0x20,0x50,0x72,0x6f,
+ 0x66,0x69,0x6c,0x65,0x00,0x00,0x38,0x11,0x85,0x55,0xdf,0x6f,0xdb,0x54,0x14,0x3e,
+ 0x89,0x6f,0x52,0xa4,0x16,0x3f,0x20,0x58,0x47,0x87,0x8a,0xc5,0xaf,0x55,0x53,0x5b,
+ 0xb9,0x1b,0x1a,0xad,0xc6,0x06,0x49,0x93,0xa5,0xed,0x4a,0x16,0xa5,0xe9,0xd8,0x2a,
+ 0x24,0xe4,0x3a,0x37,0x89,0xa9,0x1b,0x07,0xdb,0xe9,0xb6,0xaa,0x4f,0x7b,0x81,0x37,
+ 0x06,0xfc,0x01,0x40,0xd9,0x03,0x0f,0x48,0x3c,0x21,0x0d,0x06,0x62,0x7b,0xd9,0xf6,
+ 0xc0,0xb4,0x49,0x53,0x87,0x2a,0xaa,0x49,0x48,0x7b,0xe8,0xc4,0x0f,0x21,0x26,0xed,
+ 0x05,0x55,0xe1,0xbb,0x76,0x62,0x27,0x53,0xc4,0x5c,0xf5,0xfa,0xcb,0x39,0xdf,0x39,
+ 0xe7,0x3b,0xe7,0x5e,0xdb,0x44,0x3d,0x5f,0x69,0xb5,0x9a,0x19,0x55,0x88,0x96,0xab,
+ 0xae,0x9d,0xcf,0x24,0x95,0x93,0xa7,0x16,0x94,0x9e,0x4d,0x8a,0xd2,0xb3,0xd4,0x4b,
+ 0x03,0xd4,0xab,0xe9,0x4e,0x2d,0x91,0xcb,0xcd,0x12,0x2e,0xc1,0x15,0xf7,0xce,0xeb,
+ 0xe1,0x1d,0x8a,0x08,0xcb,0xed,0x91,0xee,0xfe,0x4e,0xf6,0x23,0xbf,0x7a,0x8b,0xdc,
+ 0xd1,0x89,0x22,0x4f,0xc0,0x6e,0x15,0x1d,0x7d,0x19,0xf8,0x0c,0x51,0xcc,0xd4,0x6b,
+ 0xb6,0x4b,0x14,0xbf,0x07,0xfb,0xf8,0x69,0xb7,0x06,0xdc,0xf3,0x1c,0xf0,0xd3,0x36,
+ 0x04,0x02,0xab,0x02,0x97,0x7d,0x9c,0x12,0x78,0xd1,0xc7,0x27,0x3d,0x4e,0x21,0x3f,
+ 0x09,0x8e,0xd0,0x2a,0xeb,0x15,0xad,0x08,0xbc,0x06,0x3c,0xbc,0xd8,0x66,0x2f,0xb7,
+ 0x61,0x5f,0x03,0x18,0xc8,0x93,0xe1,0x55,0x6e,0x1b,0xba,0x22,0x66,0x91,0xb3,0xad,
+ 0x92,0x61,0x72,0xcf,0xe1,0x2f,0x8f,0x71,0xb7,0x31,0xff,0x0f,0x2e,0x9b,0x75,0xf4,
+ 0xec,0x5d,0x83,0x58,0xfb,0x9c,0xa5,0xb9,0x63,0xb8,0x0f,0x89,0xde,0x2b,0xf6,0x54,
+ 0xbe,0x89,0x3f,0xd7,0xb5,0xf4,0x1c,0xf0,0x4b,0xb0,0x5f,0xaf,0xb9,0x49,0x61,0x7f,
+ 0x05,0xf8,0x8f,0xfa,0xd2,0x7c,0x02,0x78,0x1f,0x51,0xf4,0xa9,0x92,0x7d,0x74,0xde,
+ 0xe7,0x47,0x5f,0x5f,0xad,0x14,0xde,0x06,0xde,0x05,0x7b,0xd1,0x70,0xa7,0x0b,0x4d,
+ 0xfb,0x6a,0x75,0x31,0x7b,0x1c,0x18,0xb1,0xd1,0xf5,0x25,0xeb,0x98,0xc8,0x23,0x38,
+ 0xd7,0x75,0x67,0x12,0xb3,0xa4,0x17,0x80,0xef,0x56,0xf8,0xb4,0xd8,0x63,0xe8,0x91,
+ 0xa8,0xc8,0x53,0x69,0xe0,0x61,0xe0,0xc1,0x4a,0x7d,0xaa,0x99,0x5f,0x9a,0x71,0x56,
+ 0xe6,0x84,0xdd,0xcb,0xb3,0x5a,0x99,0xcc,0x02,0x23,0x8f,0x64,0xbf,0xa7,0xcd,0xe4,
+ 0x80,0x07,0x80,0x3f,0xb4,0xad,0xbc,0xa8,0x05,0xcd,0xd2,0x3a,0x37,0x33,0xa2,0x16,
+ 0xf2,0x4b,0x57,0x6b,0x6e,0xae,0xa9,0x41,0xda,0xae,0x9a,0x59,0x51,0x0b,0xfd,0x32,
+ 0x99,0x3b,0x5e,0x8f,0xc8,0x29,0x6d,0xbb,0x95,0xc2,0x94,0x1f,0xcb,0x0e,0xba,0x76,
+ 0xa1,0x19,0xcb,0x16,0x4a,0xc6,0xd1,0xe9,0x26,0x7f,0xad,0x66,0x7a,0x67,0x11,0xda,
+ 0xd8,0x05,0xbb,0x9e,0x17,0xda,0x90,0x9f,0xdd,0xd2,0xec,0x74,0x06,0x18,0x79,0xd8,
+ 0x3f,0xbc,0x3a,0x2f,0xe6,0x06,0x1c,0xdb,0x5d,0xd4,0x52,0x62,0xb6,0xa3,0xc0,0x47,
+ 0xe8,0x44,0x44,0x23,0x4e,0x16,0x2d,0x62,0xd5,0xa9,0x4a,0x3b,0xa4,0x50,0x9e,0x32,
+ 0x94,0xc4,0xbd,0x46,0x36,0x3c,0x25,0x32,0xc8,0x84,0x85,0xc3,0xcb,0x61,0x31,0x22,
+ 0x4f,0xd2,0x12,0x6c,0xdd,0x79,0x39,0x8f,0xe3,0xc7,0x84,0x8c,0xb2,0x17,0xbd,0x2d,
+ 0xa2,0x51,0xa5,0x3b,0xc7,0xaf,0x70,0xbf,0xc9,0xb1,0x58,0x3f,0x53,0xd9,0x01,0xfc,
+ 0x1f,0x62,0xb3,0xec,0x30,0x1b,0x67,0x13,0xa4,0xb0,0x37,0xd8,0x9b,0xec,0x08,0x4b,
+ 0xc1,0x3a,0xc1,0x0e,0x05,0x0a,0x72,0x6d,0x3a,0x15,0x2a,0xd3,0x7d,0x28,0xf5,0xf3,
+ 0xbc,0x4f,0x75,0x54,0x16,0x3a,0x4e,0x50,0xf2,0xfc,0x40,0x7d,0x28,0x88,0x51,0xce,
+ 0xd9,0xef,0x1a,0xfa,0xcd,0x8f,0xfe,0x86,0x9a,0xb0,0x4b,0x2b,0xf4,0x23,0x4f,0xd0,
+ 0x31,0x34,0x5b,0xed,0x13,0x20,0x07,0x13,0x68,0x75,0x37,0xd2,0x3e,0xa7,0x6b,0x6b,
+ 0x3f,0xec,0x0e,0x3c,0xca,0x06,0xbb,0xf8,0xce,0xed,0xbe,0x6b,0x6b,0x74,0xfc,0x71,
+ 0xf3,0x8d,0xdd,0x8b,0x6d,0xc7,0x36,0xb0,0x6e,0xc6,0xb6,0xc2,0xf8,0xd8,0xaf,0xb1,
+ 0x2d,0xfc,0x6d,0x52,0x02,0x3b,0x60,0x7a,0x8a,0x96,0xa1,0xca,0xf0,0x76,0xc2,0x09,
+ 0x78,0x23,0x1d,0x3d,0x5c,0x01,0xd3,0x25,0x0d,0xeb,0x6f,0xe0,0x59,0xd0,0xda,0x52,
+ 0xda,0xb1,0xa3,0xa5,0xea,0xf9,0x81,0xd0,0x23,0x26,0xc1,0x3f,0xc8,0x3e,0xcc,0xd2,
+ 0xb9,0xe1,0xd0,0xaa,0xfe,0xa2,0xfe,0xa9,0x6e,0xa8,0x5f,0xa8,0x17,0xd4,0xdf,0x3b,
+ 0x6a,0x84,0x19,0x3b,0xa6,0x24,0x7d,0x2a,0x7d,0x2b,0xfd,0x28,0x7d,0x27,0x7d,0x2f,
+ 0xfd,0x4c,0x8a,0x74,0x59,0xba,0x22,0xfd,0x24,0x5d,0x95,0xbe,0x91,0x2e,0x05,0x39,
+ 0xbb,0xef,0xbd,0x9f,0x25,0xd8,0x7b,0xaf,0x5f,0x61,0x13,0xdd,0x8a,0x5d,0x68,0xd5,
+ 0x6b,0x9f,0x35,0x27,0x53,0x4e,0xca,0x7b,0xe4,0x17,0xe5,0x94,0xfc,0xbc,0xfc,0xb2,
+ 0x3c,0x1b,0xb0,0x14,0xb9,0x5f,0x1e,0x93,0xa7,0xe4,0xbd,0xf0,0xec,0x09,0xf6,0xcd,
+ 0x0c,0xfd,0x1d,0xbd,0x18,0x74,0x0a,0xb3,0x6a,0x4d,0xb5,0x7b,0x2d,0xf1,0x04,0x18,
+ 0x34,0x0f,0x25,0x06,0x9d,0x06,0xd7,0xc6,0x54,0xc5,0x84,0xab,0x74,0x16,0x59,0xdb,
+ 0x9f,0x93,0xa6,0x52,0x36,0xc8,0xc6,0xd8,0xf4,0x23,0xa7,0x76,0x5c,0x9c,0xe5,0x96,
+ 0x8a,0x78,0x3a,0x9e,0x8a,0x27,0x48,0x89,0xef,0x8b,0x4f,0xc4,0xc7,0xe2,0x33,0x02,
+ 0xb7,0x9e,0xbc,0xf8,0x5e,0xf8,0x26,0xb0,0xa6,0x03,0xf5,0xfe,0x93,0x13,0x30,0x3a,
+ 0x3a,0xe0,0x6d,0x2c,0x4c,0x25,0xc8,0x33,0xe2,0x9d,0x3a,0x71,0x56,0x45,0xf4,0x0a,
+ 0x74,0x9b,0xd0,0xcd,0x5d,0x7e,0x06,0xdf,0x0e,0xa2,0x49,0xab,0x76,0xd6,0x36,0xca,
+ 0x15,0x57,0xd9,0xaf,0xaa,0xaf,0x29,0x09,0x7c,0xca,0xb8,0x32,0x5d,0xd5,0x47,0x87,
+ 0x15,0xcd,0x34,0x15,0xcf,0xe5,0x28,0x36,0x77,0xb8,0xbd,0xc2,0x8b,0xa3,0x24,0xbe,
+ 0x83,0x22,0x8e,0xe8,0x41,0xde,0xfb,0xbe,0x45,0x76,0xdd,0x0c,0x6d,0xee,0x5b,0x44,
+ 0x87,0xff,0xc2,0x3b,0xeb,0x56,0x68,0x5b,0xa8,0x13,0x7d,0xed,0x10,0xf5,0xbf,0x1a,
+ 0xda,0x86,0xf0,0x4e,0x7c,0xe6,0x33,0xa2,0x8b,0x07,0xf5,0xba,0xbd,0xe2,0xe7,0xa3,
+ 0x48,0xe4,0x06,0x91,0x53,0x3a,0xb0,0xdf,0xfb,0x1d,0xe9,0x4b,0xe2,0xdd,0x74,0xb7,
+ 0xd1,0x78,0x80,0xf7,0x55,0xcf,0x27,0x44,0x3b,0x1f,0x37,0x1a,0xff,0xae,0x37,0x1a,
+ 0x3b,0x5f,0x22,0xff,0x16,0xd1,0x65,0xf3,0x3f,0x59,0x00,0x71,0x78,0x6c,0x1b,0x2b,
+ 0x13,0x00,0x00,0x02,0xd6,0x69,0x54,0x58,0x74,0x58,0x4d,0x4c,0x3a,0x63,0x6f,0x6d,
+ 0x2e,0x61,0x64,0x6f,0x62,0x65,0x2e,0x78,0x6d,0x70,0x00,0x00,0x00,0x00,0x00,0x3c,
+ 0x78,0x3a,0x78,0x6d,0x70,0x6d,0x65,0x74,0x61,0x20,0x78,0x6d,0x6c,0x6e,0x73,0x3a,
+ 0x78,0x3d,0x22,0x61,0x64,0x6f,0x62,0x65,0x3a,0x6e,0x73,0x3a,0x6d,0x65,0x74,0x61,
+ 0x2f,0x22,0x20,0x78,0x3a,0x78,0x6d,0x70,0x74,0x6b,0x3d,0x22,0x58,0x4d,0x50,0x20,
+ 0x43,0x6f,0x72,0x65,0x20,0x35,0x2e,0x34,0x2e,0x30,0x22,0x3e,0x0a,0x20,0x20,0x20,
+ 0x3c,0x72,0x64,0x66,0x3a,0x52,0x44,0x46,0x20,0x78,0x6d,0x6c,0x6e,0x73,0x3a,0x72,
+ 0x64,0x66,0x3d,0x22,0x68,0x74,0x74,0x70,0x3a,0x2f,0x2f,0x77,0x77,0x77,0x2e,0x77,
+ 0x33,0x2e,0x6f,0x72,0x67,0x2f,0x31,0x39,0x39,0x39,0x2f,0x30,0x32,0x2f,0x32,0x32,
+ 0x2d,0x72,0x64,0x66,0x2d,0x73,0x79,0x6e,0x74,0x61,0x78,0x2d,0x6e,0x73,0x23,0x22,
+ 0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x72,0x64,0x66,0x3a,0x44,0x65,0x73,
+ 0x63,0x72,0x69,0x70,0x74,0x69,0x6f,0x6e,0x20,0x72,0x64,0x66,0x3a,0x61,0x62,0x6f,
+ 0x75,0x74,0x3d,0x22,0x22,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
+ 0x20,0x20,0x78,0x6d,0x6c,0x6e,0x73,0x3a,0x64,0x63,0x3d,0x22,0x68,0x74,0x74,0x70,
+ 0x3a,0x2f,0x2f,0x70,0x75,0x72,0x6c,0x2e,0x6f,0x72,0x67,0x2f,0x64,0x63,0x2f,0x65,
+ 0x6c,0x65,0x6d,0x65,0x6e,0x74,0x73,0x2f,0x31,0x2e,0x31,0x2f,0x22,0x0a,0x20,0x20,
+ 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x78,0x6d,0x6c,0x6e,0x73,0x3a,
+ 0x70,0x68,0x6f,0x74,0x6f,0x73,0x68,0x6f,0x70,0x3d,0x22,0x68,0x74,0x74,0x70,0x3a,
+ 0x2f,0x2f,0x6e,0x73,0x2e,0x61,0x64,0x6f,0x62,0x65,0x2e,0x63,0x6f,0x6d,0x2f,0x70,
+ 0x68,0x6f,0x74,0x6f,0x73,0x68,0x6f,0x70,0x2f,0x31,0x2e,0x30,0x2f,0x22,0x3e,0x0a,
+ 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x64,0x63,0x3a,0x63,0x72,0x65,
+ 0x61,0x74,0x6f,0x72,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
+ 0x20,0x20,0x3c,0x72,0x64,0x66,0x3a,0x53,0x65,0x71,0x3e,0x0a,0x20,0x20,0x20,0x20,
+ 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x72,0x64,0x66,0x3a,
+ 0x6c,0x69,0x3e,0x4d,0x69,0x63,0x68,0x61,0x65,0x6c,0x20,0x53,0x77,0x65,0x65,0x74,
+ 0x3c,0x2f,0x72,0x64,0x66,0x3a,0x6c,0x69,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,
+ 0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x2f,0x72,0x64,0x66,0x3a,0x53,0x65,0x71,0x3e,
+ 0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x2f,0x64,0x63,0x3a,0x63,
+ 0x72,0x65,0x61,0x74,0x6f,0x72,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
+ 0x20,0x3c,0x64,0x63,0x3a,0x72,0x69,0x67,0x68,0x74,0x73,0x3e,0x0a,0x20,0x20,0x20,
+ 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x72,0x64,0x66,0x3a,0x41,0x6c,
+ 0x74,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
+ 0x20,0x20,0x3c,0x72,0x64,0x66,0x3a,0x6c,0x69,0x20,0x78,0x6d,0x6c,0x3a,0x6c,0x61,
+ 0x6e,0x67,0x3d,0x22,0x78,0x2d,0x64,0x65,0x66,0x61,0x75,0x6c,0x74,0x22,0x3e,0x43,
+ 0x6f,0x70,0x79,0x72,0x69,0x67,0x68,0x74,0x20,0x32,0x30,0x31,0x30,0x20,0x41,0x70,
+ 0x70,0x6c,0x65,0x20,0x49,0x6e,0x63,0x2e,0x3c,0x2f,0x72,0x64,0x66,0x3a,0x6c,0x69,
+ 0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x2f,
+ 0x72,0x64,0x66,0x3a,0x41,0x6c,0x74,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,0x20,0x20,
+ 0x20,0x20,0x3c,0x2f,0x64,0x63,0x3a,0x72,0x69,0x67,0x68,0x74,0x73,0x3e,0x0a,0x20,
+ 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x3c,0x70,0x68,0x6f,0x74,0x6f,0x73,0x68,
+ 0x6f,0x70,0x3a,0x48,0x65,0x61,0x64,0x6c,0x69,0x6e,0x65,0x3e,0x4e,0x65,0x77,0x20,
+ 0x49,0x6d,0x61,0x67,0x65,0x3c,0x2f,0x70,0x68,0x6f,0x74,0x6f,0x73,0x68,0x6f,0x70,
+ 0x3a,0x48,0x65,0x61,0x64,0x6c,0x69,0x6e,0x65,0x3e,0x0a,0x20,0x20,0x20,0x20,0x20,
+ 0x20,0x3c,0x2f,0x72,0x64,0x66,0x3a,0x44,0x65,0x73,0x63,0x72,0x69,0x70,0x74,0x69,
+ 0x6f,0x6e,0x3e,0x0a,0x20,0x20,0x20,0x3c,0x2f,0x72,0x64,0x66,0x3a,0x52,0x44,0x46,
+ 0x3e,0x0a,0x3c,0x2f,0x78,0x3a,0x78,0x6d,0x70,0x6d,0x65,0x74,0x61,0x3e,0x0a,0xef,
+ 0xbe,0x80,0x96,0x00,0x00,0x13,0x0d,0x49,0x44,0x41,0x54,0x78,0xda,0xed,0x9d,0x77,
+ 0x8c,0x15,0xd5,0x17,0xc7,0xef,0x2e,0x2b,0x2a,0x8a,0x08,0x0a,0x22,0x4b,0xb7,0xa1,
+ 0x14,0x1b,0x1a,0x14,0xd1,0x28,0x0a,0x88,0xc4,0x82,0xe5,0x47,0x50,0x62,0x6f,0xc4,
+ 0x9a,0x58,0xc2,0x1f,0x96,0xc4,0x42,0xa2,0x89,0x89,0x25,0xa8,0x3f,0x6b,0xc4,0x1a,
+ 0x8d,0x15,0x15,0xcb,0x82,0x35,0xfa,0xb3,0xa2,0x82,0x91,0x62,0x2c,0x14,0x91,0xa2,
+ 0x80,0x80,0x80,0xc0,0xfc,0xce,0xe7,0xba,0x67,0x32,0x6f,0xde,0xcc,0xbc,0x37,0x6f,
+ 0xdf,0x7b,0xbb,0xef,0xed,0x3d,0xc9,0xdd,0x99,0xbd,0xf7,0x4e,0x79,0xf7,0x7c,0xef,
+ 0x69,0x73,0x4b,0x8d,0x49,0x20,0xcf,0xf3,0x7a,0xc8,0x61,0x9c,0xa4,0xe1,0x92,0x06,
+ 0x48,0xea,0x2c,0xa9,0xad,0x71,0xd4,0x92,0x69,0x93,0xa4,0xe5,0x92,0x66,0x4b,0x6a,
+ 0x90,0xf4,0x6c,0x4d,0x4d,0xcd,0xc2,0xb8,0xca,0x35,0x31,0x8c,0xaf,0x97,0xc3,0x64,
+ 0x49,0xe3,0x25,0xb5,0x71,0x6d,0x5a,0xd1,0xb4,0x45,0xd2,0xd3,0x92,0x26,0x09,0x10,
+ 0x16,0xe7,0x04,0x80,0x30,0x7f,0x14,0xa8,0x91,0xd4,0xc1,0xb5,0x5d,0x55,0xd1,0x6a,
+ 0xa4,0xb9,0x80,0x60,0x7a,0x30,0xb3,0x36,0xc4,0xfc,0x8b,0xe4,0x30,0xcd,0x31,0xbf,
+ 0x2a,0x09,0x9e,0x4e,0x6b,0xe4,0x71,0xb6,0x04,0x68,0xec,0xf9,0xd3,0x9c,0xc8,0x6f,
+ 0x15,0x2a,0x61,0x8c,0x4a,0x82,0x9a,0x80,0xce,0x9f,0xe3,0x7a,0x7e,0xab,0x52,0x07,
+ 0xfd,0xb1,0x09,0x54,0x05,0x4c,0x76,0xcc,0x6f,0x75,0xea,0x60,0xb2,0x95,0x00,0x8d,
+ 0xae,0xde,0x4f,0x4e,0xf4,0xb7,0x4a,0x55,0xd0,0xa7,0xb6,0xd1,0xcf,0x77,0xcc,0x6f,
+ 0x7d,0x04,0xcf,0xc7,0x01,0x80,0xe1,0xae,0x2d,0x5a,0x2d,0x0d,0x47,0x05,0x2c,0x92,
+ 0x93,0x7a,0xd7,0x16,0xad,0x92,0x16,0x03,0x80,0x8d,0xc6,0x85,0x77,0x5b,0x2b,0x6d,
+ 0x02,0x00,0x9e,0x6b,0x87,0xd6,0x4b,0x75,0x69,0x2f,0x58,0xb5,0x6a,0x95,0x99,0x3e,
+ 0xfd,0xdf,0x68,0xe2,0x89,0x27,0x9e,0x68,0xda,0xb5,0x6b,0xe7,0x5a,0xb1,0x82,0x29,
+ 0xb5,0x04,0x98,0x35,0x6b,0x96,0x39,0xf0,0xc0,0x03,0xed,0xf9,0xaf,0xbf,0xfe,0x6a,
+ 0x7a,0xf4,0xe8,0xe1,0x5a,0xb1,0x35,0x49,0x00,0x89,0x1e,0x99,0xed,0xb7,0xdf,0xde,
+ 0x3f,0x77,0xd4,0xca,0x24,0x80,0xa3,0xea,0xa2,0x5a,0xd7,0x04,0x0e,0x00,0xa9,0xe8,
+ 0xc7,0x1f,0x7f,0x34,0x23,0x46,0x8c,0xb0,0x69,0xf9,0xf2,0xe5,0x19,0x65,0x37,0xdf,
+ 0x7c,0xb3,0xcd,0xbf,0xeb,0xae,0xbb,0xec,0xff,0xaf,0xbc,0xf2,0x8a,0x99,0x30,0x61,
+ 0x82,0xd9,0x7d,0xf7,0xdd,0x4d,0xaf,0x5e,0xbd,0xcc,0x69,0xa7,0x9d,0x66,0x66,0xcf,
+ 0x9e,0x9d,0xd7,0x7d,0x7f,0xff,0xfd,0x77,0x73,0xd3,0x4d,0x37,0x99,0xa1,0x43,0x87,
+ 0x9a,0x9d,0x76,0xda,0xc9,0x1c,0x76,0xd8,0x61,0x66,0xf2,0xe4,0xc9,0x66,0xeb,0xd6,
+ 0xad,0x91,0xd7,0xcf,0x98,0x31,0xc3,0x8c,0x1c,0x39,0xd2,0x74,0xeb,0xd6,0xcd,0x6c,
+ 0xbb,0xed,0xb6,0xa6,0x77,0xef,0xde,0xe6,0x88,0x23,0x8e,0x30,0xaf,0xbf,0xfe,0x7a,
+ 0x64,0xfd,0x9f,0x7f,0xfe,0xd9,0x9c,0x7b,0xee,0xb9,0x66,0xbf,0xfd,0xf6,0xb3,0x86,
+ 0xec,0xa1,0x87,0x1e,0x6a,0x6e,0xbd,0xf5,0xd6,0xd8,0xfb,0x87,0x7f,0xdb,0x53,0x4f,
+ 0x3d,0x65,0x4e,0x3e,0xf9,0x64,0xfb,0x6e,0xf7,0xdd,0x77,0x9f,0x2d,0xe3,0xf9,0x2b,
+ 0x56,0xac,0x88,0x6d,0xbb,0x07,0x1e,0x78,0xc0,0xd6,0xbb,0xf7,0xde,0x7b,0xb3,0xca,
+ 0x1e,0x7c,0xf0,0x41,0x73,0xdc,0x71,0xc7,0x99,0x8e,0x1d,0x3b,0x9a,0xee,0xdd,0xbb,
+ 0xdb,0x7b,0x7f,0xfb,0xed,0xb7,0x79,0xb5,0xd5,0x2f,0xbf,0xfc,0x62,0xae,0xbd,0xf6,
+ 0x5a,0xd3,0xbf,0x7f,0x7f,0x33,0x68,0xd0,0xa0,0x74,0x0c,0xf5,0x52,0xd2,0xd7,0x5f,
+ 0x7f,0x8d,0xca,0xb0,0x49,0x8c,0xc0,0x8c,0xb2,0x93,0x4e,0x3a,0xc9,0xe6,0x9f,0x77,
+ 0xde,0x79,0xde,0x93,0x4f,0x3e,0xe9,0x89,0x8d,0xe0,0xd7,0xd5,0xb4,0xe3,0x8e,0x3b,
+ 0x7a,0x6f,0xbe,0xf9,0x66,0xe2,0x7d,0xe7,0xcc,0x99,0xe3,0x1d,0x74,0xd0,0x41,0x59,
+ 0xd7,0x92,0x8e,0x3f,0xfe,0x78,0x6f,0xd3,0xa6,0x4d,0x19,0xd7,0x3e,0xf7,0xdc,0x73,
+ 0x7e,0xb9,0x34,0xa0,0x37,0x64,0xc8,0x10,0x6f,0xe7,0x9d,0x77,0xb6,0xff,0x0b,0xc3,
+ 0xb2,0x9e,0xf5,0xf6,0xdb,0x6f,0x7b,0x9d,0x3a,0x75,0xb2,0xe5,0x7b,0xed,0xb5,0x97,
+ 0x27,0xe0,0xf2,0x04,0x04,0xf6,0xff,0x51,0xa3,0x46,0x79,0x9b,0x37,0x6f,0xce,0xba,
+ 0x26,0xf8,0xdb,0x84,0x91,0x19,0xef,0xf4,0xcc,0x33,0xcf,0x78,0x02,0x38,0x7b,0x2e,
+ 0xcc,0x8d,0x6c,0xb7,0x2d,0x5b,0xb6,0x78,0xc2,0x58,0x5b,0xe7,0xbd,0xf7,0xde,0xf3,
+ 0xf3,0xd7,0xaf,0x5f,0xef,0x9d,0x71,0xc6,0x19,0x36,0xbf,0x7d,0xfb,0xf6,0xde,0xe1,
+ 0x87,0x1f,0xee,0xf5,0xed,0xdb,0xd7,0xfe,0xbf,0xc3,0x0e,0x3b,0x78,0x6f,0xbd,0xf5,
+ 0x56,0x62,0x5b,0x7d,0xf3,0xcd,0x37,0x5e,0xbf,0x7e,0xfd,0xfc,0xff,0x39,0x4f,0x43,
+ 0x25,0x01,0x80,0x20,0xd1,0x6b,0xdb,0xb6,0xad,0x77,0xc9,0x25,0x97,0x78,0x33,0x67,
+ 0xce,0xf4,0xfe,0xf8,0xe3,0x0f,0xcb,0x74,0x91,0x04,0xb6,0x5c,0xa4,0x41,0x16,0x13,
+ 0x83,0xf7,0x15,0x2f,0xc3,0xdb,0x63,0x8f,0x3d,0xbc,0x87,0x1f,0x7e,0xd8,0x13,0x74,
+ 0x7b,0x0b,0x16,0x2c,0xf0,0x2e,0xbd,0xf4,0x52,0xbf,0x5c,0x7a,0x4b,0xc6,0xb5,0x7d,
+ 0xfa,0xf4,0xb1,0xf9,0x57,0x5f,0x7d,0xb5,0x27,0x3d,0xd8,0xcf,0x97,0x5e,0x9e,0xf5,
+ 0x8e,0x2b,0x57,0xae,0xf4,0xc1,0x01,0x48,0x95,0xa8,0xc7,0x33,0xc9,0x97,0xde,0x1d,
+ 0x0b,0x00,0x91,0x18,0x5e,0x5d,0x5d,0x9d,0x05,0x42,0x43,0x43,0x83,0xfd,0x6d,0xe2,
+ 0x1a,0x7b,0x37,0xde,0x78,0xa3,0x2d,0x1f,0x3c,0x78,0x70,0x64,0xbb,0xbd,0xf1,0xc6,
+ 0x1b,0xb6,0x7c,0xef,0xbd,0xf7,0xce,0xc8,0xd7,0xeb,0x00,0xa1,0xf4,0x66,0x3f,0xff,
+ 0xb6,0xdb,0x6e,0xb3,0xf9,0xfb,0xec,0xb3,0x8f,0x05,0x4f,0x5c,0x5b,0xed,0xbf,0xff,
+ 0xfe,0x16,0x30,0x00,0x6f,0xe1,0xc2,0x85,0xde,0xa2,0x45,0x8b,0x9a,0x1f,0x00,0x22,
+ 0x82,0xbd,0xa9,0x53,0xa7,0x66,0x5d,0x0b,0x18,0xf4,0xda,0xc7,0x1e,0x7b,0x2c,0xf6,
+ 0xbe,0x47,0x1e,0x79,0xa4,0x27,0xa2,0x34,0xeb,0xfa,0xa3,0x8e,0x3a,0xca,0x96,0xd3,
+ 0xdb,0x94,0x36,0x6e,0xdc,0xe8,0xd5,0xd6,0xd6,0xda,0xfc,0x77,0xde,0x79,0x27,0xe7,
+ 0xfb,0x5f,0x75,0xd5,0x55,0xb6,0x2e,0xef,0x1a,0x26,0x80,0x45,0x19,0xd2,0x27,0x0e,
+ 0x00,0x0a,0xb4,0x30,0x01,0xd2,0xa0,0x04,0x0b,0xd3,0xd8,0xb1,0x63,0x6d,0xd9,0x1d,
+ 0x77,0xdc,0xe1,0xe7,0x2d,0x5e,0xbc,0xd8,0x97,0x3c,0xfc,0xfe,0x20,0x21,0x85,0xc4,
+ 0xc5,0xb6,0x65,0xaf,0xbe,0xfa,0x6a,0x6c,0x5b,0xed,0xba,0xeb,0xae,0xf6,0xd9,0x85,
+ 0x52,0x49,0x00,0x70,0xce,0x39,0xe7,0xc4,0x5e,0xdf,0xb3,0x67,0x4f,0x5b,0x67,0xe2,
+ 0xc4,0x89,0xb1,0xf7,0xa5,0xe7,0x46,0xd1,0x23,0x8f,0x3c,0xe2,0xd7,0x59,0xb6,0x6c,
+ 0x99,0x9f,0x7f,0xf4,0xd1,0x47,0xdb,0x3c,0xd1,0xe3,0xde,0xfc,0xf9,0xf3,0x13,0xdf,
+ 0xbf,0xbe,0xbe,0xde,0xd6,0xbd,0xff,0xfe,0xfb,0xb3,0xca,0x3e,0xff,0xfc,0x73,0x5b,
+ 0xb6,0xcd,0x36,0xdb,0x64,0xf5,0x3a,0xfd,0x6d,0x62,0x57,0x64,0x95,0x29,0x51,0x46,
+ 0x9d,0xeb,0xaf,0xbf,0x3e,0x23,0x5f,0xec,0x19,0x7b,0x4f,0x12,0xe7,0x4a,0x0f,0x3d,
+ 0xf4,0x90,0xad,0xbf,0xdb,0x6e,0xbb,0x45,0xde,0xef,0x84,0x13,0x4e,0xb0,0xe5,0xb7,
+ 0xdc,0x72,0x4b,0x6c,0x5b,0x45,0xa9,0x88,0x34,0x54,0x57,0x12,0xcb,0xb2,0x36,0xde,
+ 0xb6,0x14,0x71,0x65,0x03,0x48,0x18,0x61,0x69,0xaf,0x17,0x11,0x9d,0x61,0xc4,0x75,
+ 0xee,0xdc,0xd9,0x9e,0x5f,0x7e,0xf9,0xe5,0xe6,0xc3,0x0f,0x3f,0x34,0x9f,0x7d,0xf6,
+ 0x99,0x19,0x38,0x70,0xa0,0x19,0x3f,0x7e,0xbc,0x35,0x8a,0x44,0x1f,0x66,0x5c,0xbf,
+ 0x6e,0xdd,0x3a,0x23,0xbd,0xce,0x37,0xba,0x5e,0x78,0xe1,0x85,0x8c,0xf2,0xbf,0xff,
+ 0xfe,0xdb,0x1e,0xff,0xf9,0xe7,0x1f,0xb3,0x74,0xe9,0x52,0x6b,0x50,0x86,0x49,0x44,
+ 0x78,0xec,0xfb,0x9d,0x7d,0xf6,0xd9,0xe6,0xa3,0x8f,0x3e,0x32,0xa2,0x5a,0xcc,0xed,
+ 0xb7,0xdf,0xee,0xd7,0x7b,0xe2,0x89,0x27,0xec,0x3d,0x31,0x82,0xbb,0x74,0xe9,0xe2,
+ 0xd7,0x9f,0x37,0x6f,0x9e,0xff,0xdc,0x63,0x8f,0x3d,0x36,0xeb,0x7e,0x22,0x49,0xfc,
+ 0x80,0x5b,0x1c,0xed,0xbb,0xef,0xbe,0xe5,0x0d,0x04,0x35,0x95,0xb0,0x72,0xa1,0x35,
+ 0x6b,0xd6,0x14,0x7c,0x6d,0xf8,0xfa,0x53,0x4e,0x39,0xc5,0x7c,0xf2,0xc9,0x27,0x96,
+ 0x01,0xdf,0x7f,0xff,0xbd,0x79,0xf4,0xd1,0x47,0xcd,0xe3,0x8f,0x3f,0x6e,0xad,0x7c,
+ 0x2c,0x6e,0x0d,0x5c,0x89,0x8e,0xcc,0x88,0x68,0x26,0x11,0xd6,0x75,0x14,0x00,0x92,
+ 0x48,0x8c,0x39,0x73,0xc5,0x15,0x57,0x58,0x90,0x89,0x7d,0x60,0xad,0x7a,0x48,0x24,
+ 0x97,0x3d,0x5e,0x78,0xe1,0x85,0x19,0xf5,0x95,0xb1,0xfc,0x16,0xea,0x27,0xbd,0x4b,
+ 0xd5,0xc4,0x01,0xc4,0x68,0xb2,0x47,0xdc,0xc2,0x42,0xaf,0x8d,0xba,0x5e,0x8c,0x2f,
+ 0xf3,0xd5,0x57,0x5f,0x19,0x11,0xab,0xb6,0x97,0xe2,0xce,0xd1,0xf0,0x67,0x9d,0x75,
+ 0x96,0x5f,0x47,0xc4,0xbf,0x7f,0x2e,0xa2,0xd3,0x34,0xaa,0xc0,0xc8,0x24,0xc6,0x55,
+ 0xea,0xf7,0xc3,0x25,0x04,0x8c,0xda,0xeb,0xa1,0x8f,0x3f,0xfe,0xd8,0xfc,0xf0,0xc3,
+ 0x0f,0xd6,0x2d,0x55,0x40,0x28,0xe1,0xee,0x41,0xb8,0xb8,0x49,0xef,0xf2,0xd2,0x4b,
+ 0x2f,0x55,0x0f,0x00,0x54,0x04,0xa3,0x0a,0x0a,0xbd,0x16,0xd1,0x1a,0x05,0x20,0xfc,
+ 0xff,0x0b,0x2e,0xb8,0xc0,0xfa,0xcf,0x97,0x5d,0x76,0x99,0xcd,0x13,0x03,0xca,0xf7,
+ 0xcd,0xc5,0xcd,0xf2,0xbf,0x5d,0x20,0xaa,0x4b,0x41,0x48,0x21,0xe8,0xc5,0x17,0x5f,
+ 0x34,0x7f,0xfd,0xf5,0x97,0x11,0x4f,0xc6,0xfe,0x7f,0xfe,0xf9,0xe7,0x67,0x85,0xce,
+ 0x89,0x41,0x40,0x5f,0x7e,0xf9,0xa5,0xd9,0xb0,0x61,0x43,0xf5,0x44,0x02,0xe3,0xa2,
+ 0xcb,0xdf,0x7d,0xf7,0x9d,0x11,0x8b,0xd5,0x9e,0x13,0x34,0x49,0x7b,0x3d,0x8d,0x0a,
+ 0x1d,0x73,0xcc,0x31,0x46,0x0c,0xaa,0xd8,0xeb,0x01,0x02,0x41,0x23,0x71,0xd7,0x8c,
+ 0x58,0xd3,0x46,0xbc,0x0f,0xbf,0x4c,0xe2,0x08,0xf6,0x88,0x9a,0x28,0x44,0x0d,0xe5,
+ 0x22,0x74,0x39,0x92,0x46,0xfc,0x7b,0x23,0x9e,0x8e,0x79,0xfe,0xf9,0xe7,0x4d,0x9b,
+ 0x36,0x6d,0x8c,0xb8,0x8d,0x59,0x75,0xc5,0x78,0xb5,0xef,0x2a,0x2e,0xb1,0x99,0x32,
+ 0x65,0x4a,0xf3,0x84,0x02,0x4b,0xe1,0x05,0x88,0xce,0xf5,0xee,0xb9,0xe7,0x9e,0x0c,
+ 0x9f,0x5c,0x0c,0x1d,0x1b,0x64,0xa1,0x7c,0xf8,0xf0,0xe1,0x89,0xf7,0xc5,0x9a,0x96,
+ 0x68,0x57,0x46,0x39,0x2e,0x1e,0x56,0x34,0xe5,0x62,0xf0,0xf9,0xf9,0xf8,0xce,0x12,
+ 0x71,0xcc,0x0a,0xde,0xbc,0xfc,0xf2,0xcb,0xfe,0xfd,0x44,0x22,0xf8,0xf9,0xb8,0x97,
+ 0xb8,0x4e,0xe4,0x8b,0xb8,0xf6,0xfe,0xfc,0xf3,0xcf,0xac,0x77,0x59,0xb2,0x64,0x89,
+ 0x27,0x3d,0x32,0x36,0x10,0x94,0x8b,0xf0,0x02,0xb4,0x1d,0x38,0xca,0x67,0xf3,0xd8,
+ 0xba,0x12,0x61,0xf4,0x83,0x3e,0x12,0xb5,0xcc,0x2a,0x27,0x5e,0x12,0xf6,0xed,0x93,
+ 0x78,0xd0,0x22,0xdc,0x40,0x22,0x5e,0x82,0x7a,0x1b,0x10,0xba,0xf2,0xca,0x2b,0xbd,
+ 0x6b,0xae,0xb9,0xc6,0x9e,0x53,0x26,0x56,0xb0,0x8d,0x5e,0x25,0xdd,0x17,0x3f,0x9f,
+ 0x06,0x91,0x70,0xa8,0x6d,0xa0,0x71,0xe3,0xc6,0xd9,0xc0,0x12,0x65,0x04,0x97,0x82,
+ 0x34,0x77,0xee,0x5c,0x9b,0x8f,0x7b,0x27,0xfa,0xde,0xd6,0x3f,0xf5,0xd4,0x53,0x7d,
+ 0xff,0x9a,0x6b,0xc3,0xf4,0xda,0x6b,0xaf,0x79,0xa2,0xaf,0x7d,0x17,0xec,0xcc,0x33,
+ 0xcf,0xf4,0x6e,0xb8,0xe1,0x06,0x1b,0x91,0x53,0x37,0x35,0xec,0x5b,0xa7,0x01,0x80,
+ 0x18,0xa2,0x19,0x91,0x42,0x9e,0x17,0x47,0x00,0x6d,0xf4,0xe8,0xd1,0x7e,0x5d,0x62,
+ 0x1d,0xc4,0x2a,0x88,0x35,0x10,0x15,0xdc,0x6e,0xbb,0xed,0xec,0xef,0xaa,0x28,0x00,
+ 0xd0,0x48,0x04,0x7d,0x34,0x3c,0x4a,0x22,0x58,0xc3,0x0f,0x8a,0xf3,0xf1,0x83,0xf7,
+ 0x15,0xa3,0xc9,0x13,0x9d,0xe9,0x33,0x5d,0x43,0xbc,0x77,0xde,0x79,0x67,0xd6,0x75,
+ 0xf8,0xd5,0x04,0x59,0x82,0xcf,0x22,0x01,0x80,0x49,0x93,0x26,0xd9,0x50,0x6b,0x14,
+ 0x11,0x61,0x24,0xac,0x4c,0xd0,0x2a,0x78,0x1d,0x00,0x18,0x33,0x66,0x4c,0x46,0x9c,
+ 0x21,0x2d,0x00,0x20,0x62,0x12,0x0a,0xcc,0xa8,0xd0,0x72,0x98,0x08,0x2f,0x6b,0x8c,
+ 0x22,0xf8,0x1b,0x0e,0x39,0xe4,0x10,0x4f,0xd4,0x43,0xcb,0x01,0x40,0x12,0x45,0x35,
+ 0x12,0xe2,0x0b,0x91,0xbd,0x7a,0xf5,0xea,0xd4,0xc0,0xa2,0x77,0x88,0x6f,0x6f,0x01,
+ 0x11,0x54,0x27,0x71,0x44,0x58,0xf6,0x83,0x0f,0x3e,0xb0,0x22,0x3f,0x8e,0xf1,0x61,
+ 0x12,0xff,0xdc,0x93,0x0f,0x54,0x9e,0x58,0xeb,0x36,0xa4,0xdb,0xdc,0x84,0x4a,0x7b,
+ 0xff,0xfd,0xf7,0x3d,0x89,0x11,0xc4,0x06,0x9c,0x8a,0x49,0x25,0x8f,0x03,0x60,0x10,
+ 0x05,0xdd,0xaf,0x34,0x84,0x81,0x24,0x3d,0x20,0x55,0x9c,0x60,0xd8,0xb0,0x61,0xe9,
+ 0x02,0x21,0x62,0x28,0xf2,0x15,0xad,0xa5,0x90,0xd8,0x27,0x46,0x42,0xe1,0x6e,0x3c,
+ 0x80,0x23,0x07,0x00,0x47,0x65,0xa0,0xa2,0xaa,0x00,0xfc,0x5a,0xf9,0xd4,0x6a,0xc4,
+ 0xd8,0x4b,0x7d,0xad,0x7c,0x9f,0xf7,0x83,0x28,0xe2,0x01,0x38,0xce,0x94,0x89,0xdc,
+ 0x98,0x40,0xa7,0x02,0x1c,0x39,0x00,0x38,0x72,0x00,0x70,0xe4,0x00,0xe0,0xc8,0x01,
+ 0xc0,0x91,0x03,0x80,0x23,0x07,0x00,0x47,0x0e,0x00,0x8e,0x1c,0x00,0x1c,0x39,0x00,
+ 0x38,0x72,0x00,0x70,0xe4,0x00,0xe0,0xa8,0x8a,0xa9,0x2c,0x13,0x43,0x18,0xa3,0xcf,
+ 0xe8,0xd8,0x69,0xd3,0xa6,0x19,0x99,0x9c,0x99,0x91,0x4f,0x92,0x91,0x2f,0xf6,0x7f,
+ 0x1d,0x36,0xcd,0xb0,0x6f,0x06,0x83,0xc8,0x78,0x38,0x3b,0x75,0x9b,0x2f,0x8c,0x0c,
+ 0xf6,0x60,0xb0,0x04,0x83,0x4b,0x64,0xd8,0x96,0x1d,0x56,0x1e,0x9c,0x28,0xe2,0xa8,
+ 0x30,0x2a,0xd9,0xd7,0x40,0x6e,0xcb,0x74,0x2d,0x19,0x1d,0x6c,0x99,0xae,0xb3,0x73,
+ 0xc8,0x87,0xd1,0x71,0x8f,0xd5,0x32,0x05,0x43,0x54,0x7d,0x86,0x73,0x03,0x90,0x77,
+ 0xdf,0x7d,0xd7,0x96,0xb9,0xa5,0x6a,0x5a,0x90,0x04,0x80,0x51,0x32,0xfe,0xcf,0x5c,
+ 0x7c,0xf1,0xc5,0x96,0xf1,0xf4,0xe2,0xe0,0xf7,0xfd,0x5c,0x0c,0x0e,0x97,0x07,0x89,
+ 0x15,0xca,0x90,0x18,0x2c,0x38,0x01,0x31,0x9e,0x9e,0xf9,0x01,0x48,0x0c,0x07,0x82,
+ 0x16,0x00,0x00,0x7a,0x26,0x33,0x71,0x98,0x74,0x09,0x13,0x8b,0x35,0xb0,0x83,0x29,
+ 0x61,0x32,0x0d,0xdc,0x8a,0x7f,0x98,0xad,0x60,0x61,0xb2,0xa7,0x2c,0x38,0x61,0x41,
+ 0xe0,0x00,0xd0,0x8c,0x00,0x60,0xf2,0xa2,0x8c,0x7d,0xb7,0x22,0x99,0x29,0x4e,0x49,
+ 0xb3,0x83,0xd3,0x10,0x53,0xba,0xd6,0xae,0x5d,0x6b,0xe7,0xd0,0x45,0xcd,0x04,0xa2,
+ 0x0c,0x55,0xc0,0xc0,0x4e,0x47,0x65,0x06,0x00,0x86,0x1b,0x33,0x72,0x31,0xec,0x7e,
+ 0xfa,0xe9,0x27,0xdf,0x90,0x63,0x1a,0x54,0x9c,0x08,0xcf,0x47,0xe4,0x73,0x8e,0xea,
+ 0x00,0x54,0xcc,0xe3,0xdb,0x65,0x97,0x5d,0x32,0xea,0x33,0xcd,0x1a,0x15,0x83,0x41,
+ 0xc8,0xb4,0x6a,0xa6,0x7e,0xb9,0x41,0x4d,0x65,0x02,0x00,0x0d,0x2d,0xe3,0xf7,0x8d,
+ 0xac,0xfe,0x61,0xe7,0xe7,0xd3,0xfb,0x94,0x89,0xda,0x0b,0x9b,0x62,0xe4,0x31,0x9f,
+ 0x8e,0x39,0xf3,0xf4,0x78,0x66,0xf8,0x06,0xcb,0xd0,0xfd,0xa8,0x18,0x12,0x60,0x03,
+ 0x18,0x80,0x21,0x6e,0x51,0x27,0x47,0x45,0x06,0x00,0xa2,0x9d,0x55,0xb4,0xe2,0x56,
+ 0xdd,0x2a,0x16,0xe9,0x8c,0x59,0x05,0x10,0x0c,0x46,0xd4,0xd3,0xeb,0x61,0x38,0xcc,
+ 0x27,0x05,0xa7,0x4f,0x3b,0x2a,0x21,0x00,0x68,0x60,0x0c,0x30,0x16,0x3e,0x90,0x25,
+ 0x54,0x4a,0xfe,0x42,0x41,0x86,0x22,0xe2,0x65,0xf2,0xa6,0xb5,0xf6,0x61,0x3a,0xe2,
+ 0x1e,0x40,0x70,0x6c,0x6e,0xe2,0x7d,0x50,0x53,0x00,0x53,0x16,0x72,0xaa,0x4e,0x00,
+ 0xc0,0x0c,0x7e,0xe8,0xdd,0x77,0xdf,0x5d,0x16,0xe6,0xeb,0x33,0x61,0x38,0x0d,0x0b,
+ 0xf0,0x78,0x3e,0x47,0x0d,0x18,0xc1,0x7c,0xb5,0x37,0x4a,0x41,0xb8,0x9a,0x2c,0x0f,
+ 0xa3,0xe9,0xb7,0xdf,0x7e,0x33,0x32,0x5b,0xd8,0xae,0xc5,0x27,0xd3,0xdc,0xec,0xfa,
+ 0x85,0x78,0x25,0xbc,0x07,0x6b,0x11,0x5c,0x77,0xdd,0x75,0x89,0x36,0x4f,0x45,0x03,
+ 0x80,0x46,0x97,0x45,0x97,0x8c,0xac,0xc3,0x57,0xb6,0x17,0xa2,0x31,0x65,0x62,0xa6,
+ 0xdf,0xd3,0x61,0x36,0xa2,0x5f,0xcf,0x55,0x0a,0xa4,0xd1,0xfd,0xa8,0xaf,0x20,0x43,
+ 0xf5,0x1c,0xa6,0xb2,0x6c,0x0c,0x79,0x78,0x1c,0x30,0x1f,0x0f,0x86,0xa0,0x95,0xda,
+ 0x34,0xfa,0x7c,0x8d,0x3b,0xf0,0x7e,0xcc,0xf5,0x87,0xf1,0xc4,0x23,0x30,0x7a,0x79,
+ 0x97,0x4a,0x8d,0x45,0xd4,0x25,0x31,0x9f,0xc6,0x66,0x79,0x92,0x72,0xeb,0x59,0x15,
+ 0xf9,0xc1,0x1e,0x4f,0x5e,0x50,0x05,0xf0,0x4e,0x30,0x0c,0x49,0x81,0x61,0x08,0x68,
+ 0x60,0x2a,0x0c,0x65,0xed,0x1d,0x7a,0x2d,0x79,0xf4,0x56,0x18,0x48,0x48,0x59,0x66,
+ 0x1b,0xfb,0x71,0x04,0xee,0xc7,0x39,0x0c,0x24,0xe1,0x66,0x76,0xed,0xda,0x35,0x8b,
+ 0x89,0x3c,0x1b,0x00,0xa1,0x8e,0x58,0xf5,0x54,0xa6,0xa7,0xdb,0xc5,0xa9,0xb8,0x17,
+ 0x79,0x04,0xba,0xb8,0xa6,0x58,0xae,0x6f,0x8b,0x02,0x00,0xa2,0xf7,0x8b,0x2f,0xbe,
+ 0x28,0xfb,0x4b,0xa9,0xe8,0x0f,0xf6,0x78,0x05,0x00,0x0d,0x4f,0xa3,0xcb,0xc2,0x8b,
+ 0x76,0xe5,0x0f,0xce,0x61,0x9e,0xaa,0x2b,0x75,0x45,0x49,0xf4,0x62,0x98,0xca,0x79,
+ 0xbe,0xa4,0x5e,0x07,0xf7,0x22,0xd0,0x84,0x01,0xca,0xe2,0x4f,0xac,0xf0,0xc5,0x37,
+ 0x09,0xf5,0x46,0x08,0x72,0xc1,0x74,0xde,0xa7,0xea,0x8c,0x40,0x6d,0x00,0x10,0xae,
+ 0xeb,0xf2,0x94,0x53,0x05,0x04,0x25,0x80,0x82,0x40,0x63,0xfe,0xf4,0x7a,0x3e,0x02,
+ 0xc9,0x12,0xaf,0x96,0xc1,0x69,0x42,0xc9,0xfa,0xbb,0xb8,0x9f,0x26,0xa4,0x03,0x00,
+ 0xa1,0xbe,0x4a,0x17,0x7a,0x3c,0xf9,0xa7,0x9f,0x7e,0xba,0x5d,0xd8,0x89,0x68,0x23,
+ 0x65,0xb8,0xa9,0x1a,0xdd,0x54,0x80,0x55,0x7a,0x18,0x3a,0x16,0x00,0xda,0x10,0x30,
+ 0xa3,0x9c,0xa4,0x92,0x47,0x99,0x11,0xb4,0x05,0x10,0xbd,0x2c,0x0e,0x15,0x14,0xb7,
+ 0xfa,0xae,0x41,0x5b,0x21,0x6c,0x33,0xf0,0xbf,0xe6,0xc1,0x34,0xe2,0x17,0x2a,0x49,
+ 0x60,0x2e,0xff,0x47,0x25,0xd4,0x4b,0x78,0x2d,0xc1,0x7c,0xe2,0x19,0xf9,0xd4,0xcf,
+ 0x15,0x20,0x6b,0x0a,0x21,0xb5,0xf8,0xbd,0xb2,0x56,0x42,0x4e,0x70,0x26,0x02,0x00,
+ 0x46,0x34,0x07,0x01,0x3a,0x15,0xfb,0x80,0x90,0x89,0xa3,0xe8,0x70,0x7e,0x14,0x96,
+ 0x78,0x14,0x53,0x61,0xa8,0x26,0x98,0xa7,0x3a,0x5f,0x99,0xad,0x29,0x9f,0xde,0xaa,
+ 0xae,0x6f,0x53,0x18,0x5c,0x4c,0x86,0xe6,0x0b,0x20,0x6d,0x2f,0x82,0x64,0x80,0x9b,
+ 0xff,0x69,0x9b,0x24,0x15,0x18,0x0b,0x00,0x18,0xa0,0xd6,0x6f,0xb9,0x88,0x97,0x67,
+ 0x25,0x31,0x54,0x0f,0xbd,0x17,0x86,0x21,0xee,0xf9,0x11,0x94,0xc1,0x4c,0xfd,0xf8,
+ 0x43,0x19,0x47,0xfd,0x10,0x94,0x8b,0x01,0x1c,0xb9,0x47,0xa1,0x21,0xea,0x62,0xd7,
+ 0x2f,0x26,0x80,0xd4,0x48,0x46,0x42,0x06,0xf7,0x70,0x42,0x65,0xf1,0x7f,0x92,0x9a,
+ 0xaa,0x4b,0xea,0x05,0xe5,0x0c,0xb3,0xf2,0x2c,0x9e,0x89,0x6e,0x67,0xc5,0x0e,0xd5,
+ 0xc9,0x04,0x82,0xa0,0x38,0x2b,0xbb,0xd0,0x77,0x2c,0x35,0xc3,0xcb,0x65,0x2f,0xd1,
+ 0x59,0x58,0x7e,0x36,0xf8,0xb1,0x4c,0xdf,0x11,0x55,0x40,0x7e,0x92,0x14,0x48,0x04,
+ 0x40,0x39,0xdd,0x3f,0xf5,0xbf,0xe9,0xe5,0x3c,0x97,0x45,0x16,0xc9,0x43,0x94,0xe5,
+ 0xd3,0x43,0xd2,0x32,0xa4,0xd4,0x0c,0x2d,0x76,0x8f,0x0f,0xd7,0xc7,0x13,0xd1,0x91,
+ 0x52,0x51,0xd7,0xe9,0xb7,0x15,0x16,0xc7,0x4c,0xe2,0x63,0x8b,0xfa,0x8e,0xaa,0xa2,
+ 0x1e,0xd4,0x02,0x86,0xa6,0x34,0x60,0x53,0xcb,0xd3,0xea,0xe4,0x62,0x4b,0x94,0xb8,
+ 0xf7,0xa1,0x63,0xd0,0x3e,0xb2,0xbc,0x5d,0x64,0xf8,0x3c,0xf8,0x7e,0x6a,0x4b,0x35,
+ 0xe9,0x5b,0x40,0x39,0x09,0x83,0x4e,0x45,0xbe,0xa3,0x68,0x22,0xae,0x91,0x24,0x75,
+ 0x82,0x60,0xca,0x47,0x8a,0xbb,0x51,0xc1,0x15,0x4c,0x41,0x03,0x37,0xc8,0xe8,0x34,
+ 0xea,0xdb,0x01,0xa0,0x42,0x19,0x1f,0x64,0x7e,0x14,0x20,0x9a,0x1c,0x0a,0xce,0x45,
+ 0xb8,0x61,0x1d,0x3a,0x74,0x70,0xdc,0x28,0x61,0x2c,0x84,0x40,0x54,0x5c,0xaf,0x8f,
+ 0x12,0xf9,0x69,0x99,0x5f,0x30,0x00,0x78,0x20,0xcc,0x0f,0x8f,0xd3,0x4b,0x32,0x64,
+ 0x70,0x57,0x48,0xb9,0x5e,0x10,0xe3,0xaf,0x52,0xf7,0x23,0x2e,0x66,0x30,0x28,0x8a,
+ 0xf9,0xc1,0x7b,0x86,0x9f,0x19,0x57,0x5e,0x12,0x00,0xc0,0x20,0xdc,0xb3,0xa8,0x1f,
+ 0x18,0xf5,0x72,0xcb,0x96,0xaf,0x35,0x6d,0xb6,0xe9,0x69,0x76,0xec,0xd0,0xd3,0x68,
+ 0x55,0xaa,0x71,0xee,0x57,0x97,0xf3,0xcd,0x5b,0x36,0x98,0x65,0x4b,0xff,0x67,0xea,
+ 0xbb,0xfd,0xe3,0xbb,0x7f,0x95,0x16,0xac,0x09,0xff,0xfe,0xf0,0x31,0x1f,0x06,0xe5,
+ 0x13,0x82,0x0f,0xeb,0xff,0xa8,0x77,0x2b,0x19,0x00,0xd8,0x19,0x23,0xdf,0xcf,0x9f,
+ 0xcb,0x57,0xac,0x31,0xdd,0x7a,0x8d,0x30,0xdd,0xba,0xef,0x2f,0x3c,0x96,0x17,0x34,
+ 0x8d,0x3f,0xbe,0xe6,0x5f,0xa6,0x9b,0x50,0x5b,0x6c,0xda,0xb8,0x44,0xfe,0xae,0x6c,
+ 0x96,0xcf,0xab,0xa5,0x0e,0xe7,0xe6,0x4b,0xb9,0xf6,0x31,0x88,0x7a,0x9f,0x28,0xd5,
+ 0x50,0x12,0x00,0x84,0x27,0x7a,0x24,0x11,0xa1,0x64,0xaf,0x4d,0x27,0xb3,0xf7,0x80,
+ 0xa1,0xa6,0x26,0x0f,0x86,0x6e,0xda,0xb8,0xde,0x6c,0xd9,0xba,0xca,0x02,0x2c,0x1f,
+ 0x31,0xd6,0x52,0x18,0x56,0x4c,0xc0,0xe1,0xe7,0xf3,0x19,0x3a,0x6e,0xa8,0x7b,0x5c,
+ 0x2f,0x0f,0xfe,0xf6,0x34,0x6a,0x20,0x35,0x00,0x88,0x2c,0x69,0x58,0x31,0x97,0x88,
+ 0xfd,0x73,0xd5,0x6a,0x33,0x60,0xf0,0x7f,0x4c,0x97,0x1e,0x5d,0xf3,0xba,0xf7,0xfc,
+ 0x39,0x1f,0x9b,0xf6,0xed,0xb6,0xf8,0xf7,0xcf,0x47,0x64,0x07,0x27,0x8a,0xe4,0x12,
+ 0xb9,0xa5,0x0e,0xd6,0x14,0xe3,0x7e,0x3a,0x1a,0x2a,0xad,0x04,0x28,0xd4,0x13,0x48,
+ 0x0d,0x00,0x7a,0x7f,0xdc,0x76,0x2d,0xe1,0x1f,0xb8,0xd9,0xdb,0xce,0xf4,0xee,0x37,
+ 0xc8,0xb4,0xef,0xb8,0x53,0x14,0xfc,0x33,0x8c,0x80,0xf5,0x6b,0x57,0x99,0x9f,0xe7,
+ 0xce,0x30,0x5d,0x3a,0xef,0x9a,0x37,0xc0,0x4a,0xe1,0x5e,0x35,0x67,0x78,0x19,0xd1,
+ 0x4f,0xef,0x4f,0x52,0x7f,0x49,0x7a,0xbe,0x10,0x35,0x90,0x1a,0x00,0x3a,0x08,0x22,
+ 0x2f,0xda,0xba,0xc1,0xcc,0x9f,0xfd,0xbe,0xa9,0xef,0x3b,0x20,0xbb,0x71,0x02,0x26,
+ 0xc0,0xba,0x35,0x2b,0xcc,0xdc,0x59,0xef,0x9a,0x0e,0xdb,0x33,0xd7,0xaf,0x5d,0xd9,
+ 0x44,0x7e,0xb9,0x55,0x48,0xd2,0xf3,0xe8,0xf5,0xba,0x97,0xa2,0x7e,0x18,0x8b,0x02,
+ 0x4e,0x1c,0xa8,0x0a,0xed,0x18,0xa9,0x01,0x00,0x42,0x51,0x03,0xf9,0x50,0x8f,0xfa,
+ 0xdd,0xcc,0xb2,0x05,0x33,0xcd,0xd2,0x79,0x0d,0xb1,0x3d,0x44,0x63,0x0a,0x5d,0xe4,
+ 0xa3,0x46,0x6d,0x6d,0xfb,0xa2,0xf6,0xa8,0x7c,0x7a,0x6c,0x50,0x85,0xe8,0x79,0xa9,
+ 0x0c,0xd0,0xb8,0xe7,0xe9,0x84,0x9b,0xe0,0xe7,0xf7,0xa4,0x51,0x4d,0xc5,0x08,0x00,
+ 0x15,0x0c,0x00,0x76,0xfd,0x42,0x05,0x30,0x35,0x4b,0x87,0x52,0xc5,0x3d,0x38,0xf8,
+ 0x51,0xa7,0x14,0x3a,0xb6,0xa9,0x6e,0x5b,0xa9,0x3e,0xd8,0xe4,0xea,0xad,0x4a,0x0c,
+ 0x3a,0x61,0x20,0x2b,0xfb,0x0a,0x86,0x3f,0xd9,0xea,0x48,0xe3,0x5c,0xba,0x3e,0x4a,
+ 0x12,0x44,0xe5,0x17,0xd5,0x0d,0xfc,0xf4,0xd3,0x4f,0xfd,0x97,0x64,0x30,0x42,0xa1,
+ 0x3d,0xb2,0xdc,0x46,0x56,0xb9,0xeb,0xe7,0xf3,0xfb,0x61,0x3c,0x5e,0x4f,0xf8,0x7b,
+ 0x7d,0x9c,0x21,0x18,0x06,0x1b,0xf5,0x82,0xef,0x11,0xf4,0x04,0x4a,0x02,0x00,0x82,
+ 0x40,0x3a,0x60,0x34,0x8d,0xdb,0x11,0x57,0x5e,0x0a,0x83,0x2e,0x78,0xcf,0x42,0x82,
+ 0x23,0x85,0x5a,0xe0,0x69,0xca,0x61,0x38,0x2e,0xb5,0x0e,0x2b,0x2f,0x46,0xbb,0x94,
+ 0xc5,0x08,0xe4,0xc5,0x40,0x2c,0x49,0x11,0xa8,0xe3,0xe7,0x1c,0x15,0x8f,0xe2,0x46,
+ 0xf0,0x44,0xa9,0x9d,0x70,0x27,0x4c,0x23,0x95,0x9a,0x6c,0xed,0xe8,0xa8,0x1d,0x44,
+ 0x99,0x5b,0xa4,0xa1,0xe9,0xa4,0xeb,0x23,0xe5,0xa3,0xff,0xa3,0xf2,0x4b,0x1e,0x07,
+ 0x88,0x93,0x0a,0x95,0x3e,0x41,0xa2,0x12,0x29,0xce,0x08,0x4d,0x23,0x8d,0xdd,0x78,
+ 0x80,0x0a,0x65,0x7c,0x92,0x3b,0x98,0x4a,0xe2,0xb8,0xe6,0xac,0x3c,0xe6,0x27,0x01,
+ 0x21,0xed,0x60,0x5e,0x07,0x80,0x0a,0x05,0x40,0xd4,0x60,0x90,0x42,0xa4,0x80,0x03,
+ 0x40,0x15,0x00,0x21,0x78,0x9e,0xd6,0xe5,0x75,0x00,0xa8,0x70,0x35,0xd0,0x14,0xfd,
+ 0xef,0x00,0x50,0xc1,0xcc,0x0f,0x47,0xfc,0x0a,0xb5,0x01,0xdc,0x02,0x7b,0x55,0x22,
+ 0x01,0xe2,0x6c,0x04,0x07,0x80,0x2a,0xf5,0xfd,0xa3,0x98,0x5c,0x88,0x31,0xe8,0x54,
+ 0x40,0x85,0x51,0xdc,0xc7,0x9e,0x42,0x6d,0x00,0x27,0x01,0xaa,0xc8,0x00,0x74,0x81,
+ 0xa0,0x56,0x06,0x84,0x38,0x30,0xb8,0x40,0x50,0x2b,0x62,0xbc,0x8e,0x1b,0x08,0x0f,
+ 0x04,0x71,0x46,0x60,0x2b,0x54,0x0b,0x25,0x19,0x0f,0xd0,0x12,0x96,0x65,0x75,0x94,
+ 0xed,0x05,0x44,0x19,0x81,0x85,0x8c,0x07,0xc8,0x09,0x00,0xb7,0x16,0x7f,0xe5,0xc4,
+ 0x01,0x9c,0x1b,0xe8,0x44,0x7f,0x6a,0x43,0xd0,0x01,0xa0,0xc2,0x0d,0x41,0x37,0x1e,
+ 0xa0,0x15,0x8b,0x7f,0xf7,0x2d,0xc0,0x19,0x81,0x59,0x06,0x61,0x78,0x0f,0x46,0x07,
+ 0x80,0x56,0x00,0x04,0x9d,0x9b,0x11,0x3e,0x77,0x00,0xa8,0x62,0xe6,0xeb,0x84,0x10,
+ 0xed,0xf5,0xc1,0x39,0x86,0x4e,0x05,0x54,0x31,0x29,0xb3,0x83,0x8c,0x0e,0xee,0xa0,
+ 0xa2,0xfb,0x29,0x39,0x15,0x50,0xa5,0xa4,0x8c,0x0f,0x33,0x3d,0x0c,0x80,0xd1,0xa3,
+ 0x47,0x3b,0x00,0x54,0x23,0x69,0x64,0x36,0xd8,0xd3,0x75,0x3f,0x05,0x05,0x06,0x1b,
+ 0x6b,0x0f,0x1b,0x36,0x2c,0xaf,0xbd,0x0c,0x72,0x02,0x80,0xb9,0x80,0xac,0x39,0xeb,
+ 0xa8,0xe5,0x88,0x7f,0xed,0xf1,0x0a,0x80,0xa0,0x3a,0x60,0x69,0xfd,0xb1,0x63,0xc7,
+ 0xda,0xd9,0x45,0xcc,0xce,0xd6,0x19,0xdc,0x05,0xc7,0x01,0x82,0x6b,0xd2,0x3a,0x6a,
+ 0xfe,0xde,0x1f,0xdc,0xf1,0x44,0x37,0xd3,0xd0,0xfc,0x3d,0xf7,0xdc,0xd3,0x8c,0x1f,
+ 0x3f,0xde,0xae,0xdf,0x40,0xd2,0xcd,0xaf,0x92,0x00,0x10,0x2b,0x01,0x74,0xaa,0xf1,
+ 0xc0,0x81,0x03,0xed,0xd6,0xb0,0x8e,0x9a,0x9f,0xf9,0xda,0xd3,0x83,0x3d,0x5e,0x25,
+ 0x02,0x3a,0x9f,0xdd,0x56,0x59,0x41,0x9c,0x0d,0x23,0x58,0x45,0x5c,0x97,0xf3,0x29,
+ 0x18,0x00,0x88,0x0f,0x76,0xf2,0x64,0xb7,0xd0,0x52,0xee,0xd5,0xe7,0x28,0x37,0xf3,
+ 0x59,0x3b,0x30,0x6c,0xf4,0x31,0x43,0x7b,0xe8,0xd0,0xa1,0x76,0xab,0x5d,0x36,0xd2,
+ 0x80,0xe9,0xec,0x1d,0x80,0xd4,0xe6,0x1c,0x09,0x90,0x4b,0x05,0xd4,0x25,0x31,0x1f,
+ 0xf1,0xc1,0x8d,0x46,0x8d,0x1a,0x55,0xf2,0x2d,0x63,0x1d,0x45,0x13,0x0b,0x46,0xea,
+ 0x26,0x5a,0xca,0xc8,0x03,0x0e,0x38,0xc0,0x4a,0x66,0xec,0x33,0x7a,0x38,0x47,0x56,
+ 0x6e,0x65,0xc7,0x10,0x00,0xc0,0xea,0x2d,0xa8,0x00,0xdd,0x26,0x2f,0x97,0x11,0xc8,
+ 0x92,0x94,0x6d,0xa3,0x00,0x80,0x21,0x01,0x8a,0xfa,0xf5,0xeb,0x67,0x97,0x2f,0x2b,
+ 0xd7,0xee,0xa1,0x8e,0xfe,0x25,0x7a,0xbd,0xee,0xdb,0x44,0xaf,0x1e,0x32,0x64,0x88,
+ 0x3d,0xea,0x3e,0x87,0x4c,0xcb,0x87,0xf9,0x48,0x02,0x8c,0x3f,0x18,0xcf,0x11,0xe6,
+ 0xc3,0xbb,0x5c,0xbd,0x1f,0xde,0x03,0x80,0xe5,0x92,0xea,0xc3,0x00,0xa0,0xf7,0xc3,
+ 0x7c,0x6e,0xc6,0x03,0x0e,0x3e,0xf8,0x60,0x2b,0x0d,0x1a,0x1a,0x1a,0x9c,0x3a,0x28,
+ 0x13,0xf3,0x49,0x18,0x76,0xb8,0x74,0x6a,0xd5,0xd3,0xab,0x75,0x3d,0x65,0x74,0x3c,
+ 0xfc,0xa1,0xf7,0x93,0xe0,0x13,0x79,0xd4,0xc9,0x83,0xf9,0xd0,0xf2,0x1a,0x31,0x26,
+ 0xa6,0xcb,0xc9,0xc8,0x28,0xbd,0x83,0xfb,0xb7,0x72,0xe5,0x4a,0xbb,0x77,0x20,0x3b,
+ 0x71,0xb2,0xbd,0x2a,0x79,0x48,0x03,0xb6,0x79,0x67,0xf3,0x64,0xe7,0x22,0x16,0x97,
+ 0xd0,0xe5,0x30,0x18,0x43,0x6e,0xd0,0xa0,0x41,0xfe,0x8e,0x68,0xf4,0x76,0xf2,0x61,
+ 0x30,0x75,0x82,0x89,0x3c,0xca,0x74,0xa1,0x8e,0x14,0x7b,0x19,0xbe,0x85,0x04,0x68,
+ 0x88,0x02,0x80,0xaa,0x00,0x10,0x86,0x68,0xd1,0x00,0x04,0x3b,0x7a,0x50,0x46,0x9e,
+ 0x06,0x23,0xd4,0x27,0x75,0x54,0x38,0x05,0x57,0x37,0x85,0x81,0xca,0x78,0x65,0x3a,
+ 0x7c,0x80,0xd9,0x1c,0xf9,0x1f,0x09,0xa0,0x7b,0x2c,0x51,0x4f,0x19,0x9f,0x72,0x89,
+ 0xbb,0x06,0x24,0x40,0x0f,0x39,0xc1,0xcf,0x6b,0x13,0x15,0x78,0xc0,0x00,0x61,0xfd,
+ 0x5a,0xf6,0xe0,0x45,0x02,0x70,0xe4,0x7f,0x16,0x89,0x62,0x5d,0xbb,0xb4,0x1f,0x1f,
+ 0x1c,0x25,0x83,0x20,0xc8,0x7c,0xed,0xed,0x88,0xf6,0x20,0xe3,0x95,0xe9,0x1a,0xe8,
+ 0x29,0x70,0xf7,0x52,0xf4,0x78,0x9f,0x3a,0xb9,0x70,0xa1,0x30,0xf0,0x69,0xf9,0x67,
+ 0x42,0x56,0x94,0xa8,0x71,0x6f,0x5c,0x1e,0xae,0x6b,0xd7,0xf0,0x42,0x0a,0x00,0xb5,
+ 0x4e,0xcb,0xbd,0xc3,0x58,0xb5,0x32,0x5f,0x01,0xa0,0x06,0x9e,0x02,0x20,0xc8,0x78,
+ 0xdd,0x06,0x4e,0x99,0xde,0x84,0x75,0x99,0x9e,0x86,0xf7,0x35,0x8d,0xe2,0x1b,0x23,
+ 0x70,0x8e,0xa4,0xac,0x2d,0x40,0x34,0xf0,0xa0,0x3b,0x89,0xc2,0x78,0xb5,0x4e,0x9d,
+ 0x04,0x28,0x8d,0x04,0x50,0xf5,0x4b,0x02,0x08,0xc1,0xb0,0x6e,0x91,0xf6,0x2a,0x66,
+ 0x37,0x8a,0xfe,0x72,0x9f,0xc5,0x35,0x01,0x46,0x8f,0x92,0xc3,0xb4,0x28,0x55,0xa0,
+ 0x40,0x08,0x6f,0xe9,0xee,0x6c,0x80,0xd2,0xd9,0x00,0x1a,0x87,0xd1,0x9d,0xd0,0x9b,
+ 0xd8,0xdb,0xc3,0xa2,0x7f,0x8c,0xdc,0x6b,0xba,0x7d,0x5e,0x88,0xc9,0x17,0xc9,0x61,
+ 0x4a,0x1c,0x08,0x94,0xd1,0xf9,0x6e,0x49,0xe6,0xa8,0x69,0xea,0xa0,0x88,0x4c,0x0f,
+ 0x32,0x7f,0xa2,0xdc,0xf3,0xbf,0xfe,0xb3,0x22,0x18,0x8c,0x24,0x78,0x36,0x4a,0x1d,
+ 0x38,0xaa,0x68,0x42,0xec,0x8f,0xd3,0x9e,0xef,0xdb,0x79,0x11,0xe8,0xa3,0x42,0x7f,
+ 0x49,0x53,0x1b,0x11,0xe3,0xa8,0xb2,0x69,0x4b,0x23,0x2f,0xfb,0x87,0x99,0x1f,0x29,
+ 0x01,0x42,0xd2,0x00,0x17,0x71,0x9c,0xa4,0xe1,0x92,0x06,0x48,0xea,0x6c,0x42,0x61,
+ 0x63,0x47,0x2d,0x8e,0x08,0xed,0x13,0xdd,0x9d,0xdd,0x18,0xe3,0x79,0x16,0x6b,0x3f,
+ 0xae,0xf2,0xff,0x01,0x71,0x8a,0x65,0x57,0x95,0xb3,0xe7,0x00,0x00,0x00,0x00,0x00,
+ 0x49,0x45,0x4e,0x44,0xae,0x42,0x60,0x82,
+
+};